@charset "UTF-8";
/* animation */
.fadeinFirst {
  -webkit-animation-name: fadeinF;
          animation-name: fadeinF;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.fadeinSecond {
  -webkit-animation-name: fadeinF;
          animation-name: fadeinF;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeinF {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeinF {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ヘッダー調整 */
#header_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  height: 4rem;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 760px) {
  #header_bottom {
    overflow: hidden;
    width: 100%;
    height: 3rem;
  }
  #header_bottom_inner {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    height: 3rem;
  }
  #header_bottom_inner nav {
    position: absolute;
    right: 0;
    bottom: 1rem;
  }
  #header_bottom_inner nav ul li {
    display: inline-block;
    height: 1rem;
    margin-left: 1rem;
    font-size: 1rem;
    font-weight: bold;
  }
  #header_bottom_inner nav ul li a {
    padding-bottom: 0.5rem;
  }
  #header_bottom_inner nav ul li .dummylocation {
    border-bottom: solid 6px rgba(255, 255, 255, 0);
  }
}

.navLogo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: rgba(255, 255, 255, 0);
}

.navlogo_ON {
  fill: white;
}

.nav_contact_icon_ON {
  width: 40px;
  height: 1rem;
}

.nav_contact_icon_OFF {
  width: 0;
  height: 0;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.nav_unshown {
  display: none;
}

/* 759 under */
@media screen and (max-width: 759px) {
  #header_contact {
    display: none;
  }
  .nav_contact_icon {
    width: 40px;
    height: 1rem;
  }
  .list_mailicon::after {
    content: "お問い合わせ";
  }
  #nav_drawer {
    position: relative;
  }
  #nav_open {
    position: fixed;
    top: 0;
    right: -1px;
    width: 30px;
    height: 22px;
    padding: 10px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 0 0 0 10px;
  }
  #nav_open span,
  #nav_open span:before,
  #nav_open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #555;
    display: block;
    content: "";
    cursor: pointer;
  }
  #nav_open span:before {
    bottom: -8px;
  }
  #nav_open span:after {
    bottom: -16px;
  }
  #nav_close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #nav_content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: -1px;
    z-index: 9999;
    width: 15rem;
    max-width: 90%;
    height: 100%;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
  }
  #nav_input:checked ~ #nav_close {
    display: block;
    opacity: 0.5;
  }
  #nav_input:checked ~ #nav_content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
            box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  nav ul li {
    margin: 1rem;
    padding: 0.5rem;
  }
}

/* トップへ戻るボタン */
.sub_footer {
  position: relative;
  width: 100%;
  margin: 3rem 0 0 0;
}

.pageTop {
  display: none;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 51px;
  height: 51px;
  background-color: rgba(255, 255, 255, 0.8);
}

.pageTop_absolute {
  position: absolute;
  bottom: 0;
}

/* footer */
.footer_2box {
  margin-top: 0.5rem;
  background-color: #000033;
  color: #ffffff;
}

@media screen and (min-width: 760px) {
  .footer_2box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer_2box a:link,
.footer_2box a:visited {
  color: #ffffff;
}

#footer_company {
  background-color: #000033;
  line-height: 1.4rem;
}

@media screen and (min-width: 760px) {
  #footer_company {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 45%;
    padding: 2rem 0.5rem 0 5%;
  }
}

@media screen and (max-width: 759px) {
  #footer_company {
    padding: 2rem 1rem;
  }
}

#footer_company div {
  display: block;
  max-width: 469px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 auto;
}

#footer_company div,
#footer_company span {
  color: #ffffff;
}

#footer_company .address {
  font-size: 85%;
}

#footer_nav {
  padding: 2rem 0.5rem 2rem 7%;
  background-color: #003366;
  font-size: 85%;
  line-height: 2rem;
}

@media screen and (min-width: 760px) {
  #footer_nav {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 55%;
  }
}

#footer_nav div {
  max-width: 630px;
}

#footer_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#footer_nav ul li {
  -webkit-flex-basis: 31%;
      -ms-flex-preferred-size: 31%;
          flex-basis: 31%;
  padding: 0.2rem 0;
  list-style: none;
}

/* コピーライト */
#copyright {
  margin: 0.5rem auto 3rem;
  background-color: #ffffff;
  color: gray;
  font-size: 0.8rem;
  text-align: center;
}

/* ロゴ調整 */
.header_top_logo {
  width: 105px;
  height: 38px;
  margin-left: 0.8rem;
}

/* ロゴとキャッチコピー */
#Catchphrase {
  font-size: 0.6rem;
}

#Catchphrase svg {
  fill: #cc0000;
}

#Catchphrase span {
  display: block;
  margin-left: 0.8rem;
  color: #990000;
}

#header_contact {
  margin-right: 0.7rem;
}

/* svgデータは非表示 */
.svgdata {
  position: absolute;
  width: 0;
  height: 0;
}

/* javascriptOFFの時の処理 */
.noscript {
  color: red;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1rem;
}

.javascript_on_block,
.javascript_on_inline {
  display: none;
}

/* basic */
img {
  max-width: 100%;
  height: auto;
}

input:not(.check) {
  width: 99%;
  height: 1.5rem;
  padding-left: 0.2rem;
}

textarea {
  width: 100%;
  height: 10rem;
  padding-left: 0.2rem;
}

/* text layout */
#main {
  display: block;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 2rem;
}

section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.box-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  margin-right: 1.5rem;
}

.box_inlineblock {
  display: inline-block;
}

.attention {
  color: red;
  font-weight: bold;
}

.textunderline {
  text-decoration: underline;
}

.textindent {
  padding-left: 1rem;
}

.telnumber {
  display: inline-block;
}

.bolder {
  font-weight: bolder;
}

.underline {
  border-bottom: solid 1px gray;
}

.domain::before {
  content: "@";
}

.dot::before {
  content: ".";
}

.contentTitle_index {
  padding: 0 1.5rem 1rem;
}

.contentTitle_index h1 {
  font-size: 1.6rem;
  font-weight: bolder;
}

.contentTitle_index h2 {
  font-size: 1.1rem;
  font-weight: bolder;
}

.contentTitle {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 1.5rem 1rem;
}

.contentTitle h1 {
  font-size: 1.6rem;
}

.contentText {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ★ X埋め込み用 */
.content {
    max-width: 1200px;
    margin: 1rem auto;
}

.contentText_x {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media screen and (min-width: 760px) {
    .content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  } 

.text {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-flex-basis: 650%;
        -ms-flex-preferred-size: 65%;
            flex-basis: 65%;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-right: 40px;
    margin-left: 5px;
  }

.x-column {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    -webkit-flex-basis: 35%;
        -ms-flex-preferred-size: 35%;
            flex-basis: 35%;
    margin-left: 20px;
    /* margin-top: 10px; */
    margin-bottom:30px;
  }

@media (max-width: 768px) {
    .text, .x-column {
      width: 100%;
    }
  }

/* contact box */
#footer_contact_box {
  display: block;
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 3rem;
  padding: 0 0.3rem 5rem 0.3rem;
  font-weight: bold;
}

#contact_box_top {
  background-color: #748595;
}

#contact_box_top .title {
  padding-top: 2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
}

#contact_box_top .consultation {
  padding: 1rem 0 1rem 10%;
  background-image: url(../image/icon/icon_contact_p.png);
  background-repeat: no-repeat;
  background-position: 90% 0;
  font-weight: bold;
  line-height: 2;
  color: #ffffff;
}

@media screen and (min-width: 500px) {
  #contact_box_top .consultation {
    background-size: 90px 84px;
  }
}

@media screen and (max-width: 499px) {
  #contact_box_top .consultation {
    background-size: 45px 42px;
  }
}

#contact_box_bottom {
  border: 1px solid #748595;
  padding: 1rem 0 0.5rem 0;
  color: #667584;
  font-weight: bold;
  line-height: 1.5rem;
}

@media screen and (min-width: 500px) {
  #contact_box_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
  #contact_box_bottom .bottom_left {
    -webkit-flex-basis: 42%;
        -ms-flex-preferred-size: 42%;
            flex-basis: 42%;
    padding-left: 4%;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  #contact_box_bottom .bottom_right {
    -webkit-flex-basis: 58%;
        -ms-flex-preferred-size: 58%;
            flex-basis: 58%;
  }
}

@media screen and (max-width: 499px) {
  #contact_box_bottom {
    text-align: center;
  }
  #contact_box_bottom .bottom_left {
    margin-bottom: 1rem;
  }
}

#contact_box_bottom a:link,
#contact_box_bottom a:visited {
  font-weight: bold;
  color: #667584;
}

#contact_box_bottom .telnumber {
  font-size: 1.6rem;
  font-style: "ＭＳ Ｐゴシック", sans_serif;
  color: #667584;
}

#contact_box_bottom .tel_time {
  font-size: 0.8rem;
  color: #667584;
}

.noscript_topimg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  height: 496px;
}

.noscript_topimg div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% / 3);
}

.noscript_topimg .noscript_inner {
  display: inline-block;
  width: 100%;
  min-height: 12rem;
  padding: 0 1rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.75);
}

@media screen and (min-width: 760px) {
  .noscript_topimg h1 {
    font-size: 1.1rem;
    font-weight: bold;
  }
  .noscript_topimg .to_block {
    display: block;
  }
}

@media screen and (max-width: 759px) {
  .noscript_topimg h1 {
    font-weight: bold;
  }
  .noscript_topimg .noscript_inner {
    font-size: 0.8rem;
  }
}

.noscript_topimg .left {
  height: 100%;
  background-image: url("../image/photo/CAN01_960x496px.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

.noscript_topimg .center {
  height: 100%;
  background-image: url("../image/photo/CAN02_960x496px.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.noscript_topimg .right {
  height: 100%;
  background-image: url("../image/photo/CAN03_960x496px.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* baseとほぼ同じ内容 */
#header_bottom {
  background: #003366;
}

#header_bottom_inner nav ul li a:hover,
#header_bottom_inner nav ul li .yourlocation {
  border-bottom: solid 6px #bfd2f0;
  color: #bfd2f0;
}

#header_bottom_inner nav a {
  color: #fff;
}

@media only screen and (max-width: 760px) {
  #header_bottom_inner nav ul li a,
  #header_bottom_inner nav ul li a.yourlocation {
    color: #000; 
  }
  #header_bottom_inner nav ul li a:hover,
  #header_bottom_inner nav ul li .yourlocation {
    border-bottom: solid 6px skyblue;
    color: #000;
  }
}

.h1_underline {
  overflow: visible;
  display: block;
  width: 3.5rem;
  height: 0;
  margin-top: 0.3rem;
  padding: 0;
  border-top: solid 6px rgba(70, 130, 180, 0.6);
}

.contentText {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.5rem;
}

/* index.css */
.inner:last-of-type {
  margin: auto 1.5rem;
}

.inner:not(:last-of-type) {
  margin: auto 1rem;
}

#main {
  margin-top: 0;
}

section {
  margin: 2rem 0;
}

section:not(:nth-child(even)) {
  padding-bottom: 2rem;
}

.top_image {
  padding-bottom: 1rem;
}

.contentTitle {
  position: relative;
  z-index: -1;
  padding-top: 3rem;
  margin-top: -3rem;
}

.attention_text {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  line-height: 1.7rem;
}

#icon_box {
  display: block;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding-bottom: 1rem;
}

#icon_box div {
  width: 160px;
  margin: 0 1rem;
  padding: 0;
  font-size: 0.8rem;
  text-align: center;
}

#icon_box p {
  margin-top: 1rem;
  line-height: 1.2rem;
}

#icon_box a:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#nps_strong_box {
  padding-top: 2rem;
}

#nps_strong_box .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0;
}

#nps_strong_box .inner div:not(.strong_no) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0;
  padding: 0 1rem;
  width: calc(100% - 1rem);
}

#nps_strong_box .inner div:first-child {
  margin-top: 0;
}

#nps_strong_box .inner .left {
  background: #b0c4de;
  font-size: 1.2rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
}

#nps_strong_box .inner .left .strong_no {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.5rem;
  height: 100%;
  margin-left: -1rem;
  margin-right: 1rem;
  padding: 0 1rem;
  background: #000033;
  color: #ffffff;
}

#nps_strong_box .inner .right {
  background: #f5f5f5;
  line-height: 1.4rem;
}

@media screen and (min-width: 760px) {
  #nps_strong_box .inner div {
    min-height: 4rem;
  }
  #nps_strong_box .inner div:not(.strong_no) {
    width: calc(50% - 2rem);
  }
  #nps_strong_box .inner div:nth-child(2) {
    margin-top: 0;
  }
}

#concept_box .main_can {
  padding: 0;
}

#concept_box .main_can .left {
  background-image: url("../image/icon/NPS_CAN01.svg"), url("../image/photo/CAN01_960x496px.jpg");
}

#concept_box .main_can .center {
  background-image: url("../image/icon/NPS_CAN02.svg"), url("../image/photo/CAN02_960x496px.jpg");
}

#concept_box .main_can .right {
  background-image: url("../image/icon/NPS_CAN03.svg"), url("../image/photo/CAN03_960x496px.jpg");
}

#concept_box .main_can div:not(.morebtn) {
  max-width: 100%;
  max-height: 15rem;
  min-height: 11rem;
  background-color: black;
  background-repeat: no-repeat, no-repeat;
  background-position: left 1rem top 1rem, left center;
  background-size: 5.5rem, cover;
  position: relative;
}

#concept_box .main_can p {
  position: absolute;
  top: 5.5rem;
  left: 2rem;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

#concept_box .main_can .morebtn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 5rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: #ffffff solid 1px;
  text-align: center;
}

#concept_box .main_can .morebtn a {
  padding: 0 0.5rem;
  display: block;
  color: #ffffff;
}

#concept_box .main_can .morebtn a:hover {
  background: black;
  border-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 760px) {
  #concept_box .main_can {
    width: 1200px;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #concept_box .main_can div:not(.morebtn) {
    width: 100%;
    height: 15rem;
  }
}

#company_box .inner p:nth-child(3) {
  padding-top: 1rem;
}

#recruit_box {
  padding-top: 2rem;
}

/* fadein animation */
.fadeinbox {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadeinbox.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* slide show */
.slide-class {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

.animation-slide {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 100%;
}

/* ★スライドに矢印を表示 */
.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev {
  left: -25px;
  z-index: 1;
}

.slick-next {
  right: -25px;
}

.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev:before {
  content: '←';
}

.slick-next:before {
  content: '→';
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}


.s-fade-txt {
  position: absolute;
  width: 90%;
  height: 85%;
  bottom: 0;
  right: 0;
  color: white;
  opacity: 0;
}

@media screen and (min-width: 760px) {
  .s-fade-txt h1 {
    padding-bottom: 2.5rem;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-style: normal;
  }
  .s-fade-txt .slide_detail {
    position: absolute;
    font-size: 1.4rem;
  }
  .s-fade-txt .slide_detail p {
    width: 100%;
    padding-bottom: 1rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 759px) {
  .s-fade-txt h1 {
    font-size: 1.5rem;
    padding-right: 1rem;
  }
  .s-fade-txt .slide_detail {
    display: none;
  }
}

.s-fade-txt a,
.s-fade-txt a:visited {
  color: white;
}

.s-fade-txt .npscan_link {
  position: absolute;
  right: 5%;
  bottom: 10%;
  border: 1.2px solid white;
  background-color: #003366;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  padding: 0.3rem 0.8rem;
}

.s-fade-txt .npscan_link:hover {
  background-color: rgba(70, 130, 180, 0.8);
}

.slick-active .s-fade-txt {
  -webkit-animation: fadein 0.6s ease 0.3s 1 normal both;
          animation: fadein 0.6s ease 0.3s 1 normal both;        
}

.slick-active .s-fade-txt .slide_detail {
  -webkit-animation: fadein 0.8s ease 0.5s 1 normal both;
          animation: fadein 0.8s ease 0.5s 1 normal both;
}

.slick-active .s-fade-txt .npscan_link {
  -webkit-animation: fadein 0.8s ease 0.8s 1 normal both;
          animation: fadein 0.8s ease 0.8s 1 normal both;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .inner {
    padding-left: 0;
  }
}

/* お知らせ用に追加 */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px; 
}

.wrapper {
  width: 70%;
  padding: 0 0 15px;
  margin: 0 auto;
}

.wrapper2 {
  width: 70%;
  padding: 0px;
  margin: 0 auto;
}

.wrapper-title {
      text-align: center;
      margin-bottom: 10px;
  }

.wrapper-title p {
      color: #4c586f;
  }

.wrapper-title h3 {
  margin: 35px 0 0;
  padding: 0 0 6px;
  font-size: 26px;
}  

  /* news */
.news-list {
  width: 80%;
  margin: 0 auto;
  padding: 13px 0;
  border-bottom: 1px solid #ccc; /* 各お知らせの区切り線 */
}

.news-list:last-child {
  /* border-bottom: none;  */
  margin-bottom: 40px;
}

.news-list li {
  padding-bottom: 10px;
  margin-bottom: 20px;
  list-style: none;
  border-bottom: 1px solid;
  font-size: 80%;
}

.linebreak {
  white-space:pre-wrap;
}

.wrapper-title .news-title {
  font-size: 32px;
  margin-bottom: 5px;
}

.wrapper-title .info-title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 5px;
}

.news-item {
  color: #6699CC;
  font-weight: bold;
  font-size: 18px;
}

.news-item a {
  color: #6699CC;
  text-decoration: none;
}

.news-item a:visited {
  color: #6699CC;
}

.news-item a:hover {
  text-decoration: underline;
  color: #6699CC; 
}
