@charset "UTF-8";
/***********************共通設定************************/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-疑似要素
======================================================
----------------------------------------------------*/
/*----------------------------------------------------
テキストホバーで線を表示する

//html例：<p>テキスト<a href="" class="link_text"><span>こちら</span></a>テキス</p>
spanタグにhoverしたときに線画出るようにしている。

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/* アニメーション名を指定する */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/*----------------------------------------------------
kv
----------------------------------------------------*/
#kv {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}
#kv:before {
  display: block;
  padding-top: 100vh;
  content: "";
}
#kv .image {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  width: 100%;
  height: 100%;
}
#kv .image::after {
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #082945;
  opacity: 0.6;
}
#kv .image source,
#kv .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
}
#kv h1 {
  position: absolute;
  bottom: 60px;
  left: 0;
  margin: 0 20px 40px 20px;
  width: auto;
  text-align: left;
  color: #FFFFFF;
  font-weight: 400;
  z-index: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  #kv h1 {
    margin: 0 80px 80px 80px;
    bottom: 165px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  #kv h1 {
    margin: 0 40px 80px;
    bottom: 24px;
  }
}
#kv h1 .catch {
  font-size: 24px;
  line-height: 1.8148;
  letter-spacing: 0.1em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #kv h1 .catch {
    font-size: 56px;
    line-height: 1.6;
    letter-spacing: 0.16em;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  #kv h1 .catch {
    font-size: 40px;
  }
}
#kv h1 .sub_catch {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #kv h1 .sub_catch {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.16em;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  #kv h1 .sub_catch {
    font-size: 18px;
  }
}
#kv h1 span {
  display: block;
}
#kv .kv_cc {
  margin-left: 20px;
  text-align: left;
  position: absolute;
  bottom: 38px;
  left: 0;
  z-index: 2;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #FFFFFF;
  font-size: 13px;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #kv .kv_cc {
    margin-left: 80px;
    bottom: 90px;
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.16em;
    display: block;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  #kv .kv_cc {
    display: none;
  }
}

/*----------------------------------------------------
headline
----------------------------------------------------*/
#headline {
  padding: 14px 0;
  /* 751- */
  text-align: initial;
}
@media all and (min-width: 751px) {
  #headline {
    padding: 14px 0;
  }
}
#headline a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  /* 751- */
}
#headline a:hover {
  text-decoration: none;
}
@media all and (min-width: 751px) {
  #headline a {
    max-width: 1000px;
    margin: 0 auto;
  }
  #headline a:hover {
    text-decoration: none;
  }
  #headline a:hover .title span {
    background-size: 100% 1px; /* 線の横幅を100%にする */
    color: #272727;
  }
  #headline a:hover .arrow {
    right: 0px;
  }
}
@media all and (min-width: 1000px) {
  #headline .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
#headline .title {
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 2.166;
  font-weight: 400;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  /* -750 */
  /* 751- */
}
#headline .title span {
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: -webkit-gradient(linear, left top, right top, from(#272727), to(#272727));
  background-image: linear-gradient(90deg, #272727, #272727); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (max-width: 750px) {
  #headline .title {
    padding-right: 30px;
  }
}
@media all and (min-width: 751px) {
  #headline .title {
    font-size: 15px;
    letter-spacing: 0.12em;
    line-height: 2.166;
    max-width: 600px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media all and (min-width: 1000px) {
  #headline .title {
    max-width: 500px;
  }
}
#headline .info {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #headline .info {
    margin-bottom: 0px;
  }
}
#headline .info .date {
  font-size: 11px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-right: 16px;
}
#headline .info .category {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #3e88c8;
  position: relative;
}
@media all and (min-width: 751px) {
  #headline .info .date {
    font-size: 14px;
    margin-right: 46px;
  }
  #headline .info .category {
    font-size: 14px;
  }
}
#headline .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #eceff2;
  /* 751- */
}
#headline .arrow::after {
  content: "";
  position: absolute;
  background: url("../images/top/information/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media all and (min-width: 751px) {
  #headline .arrow {
    width: 25px;
    height: 25px;
    right: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #headline .arrow::after {
    content: "";
    position: absolute;
    background: url("../images/top/information/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 8px;
    height: 8px;
  }
}

/*----------------------------------------------------
reasons
----------------------------------------------------*/
#reasons {
  position: relative;
  background: #0f3656;
  color: #FFFFFF;
  /* 751- */
  /* -750 */
  /* 751- */
}
#reasons::before {
  content: "";
  position: absolute;
  background: url("../images/top/bg_logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 58.733%;
  height: 200px;
  right: 20px;
}
@media all and (min-width: 751px) {
  #reasons::before {
    top: 151px;
    width: 52%;
    height: 306px;
  }
}
@media all and (min-width: 1000px) {
  #reasons::before {
    top: 110px;
    width: 54%;
    height: 306px;
  }
}
@media all and (min-width: 1300px) {
  #reasons::before {
    top: 70px;
  }
}
@media all and (min-width: 1400px) {
  #reasons::before {
    width: 782px;
    top: 50px;
  }
}
@media all and (min-width: 1500px) {
  #reasons::before {
    right: calc(50% - 330px);
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
#reasons .list {
  margin-top: 40px;
}
#reasons .list ul {
  border-bottom: solid 1px #FFFFFF;
}
#reasons .list li .image {
  margin: 40px auto;
  width: 75.85%;
}
#reasons .list li a {
  position: relative;
  display: block;
  color: #FFFFFF;
  border: solid 1px #FFFFFF;
  border-width: 1px 0;
  text-align: left;
  padding: 20px 0 60px;
}
#reasons .list li a::before, #reasons .list li a::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 20px;
  right: 0;
}
#reasons .list li a::before {
  width: 21px;
  height: 21px;
  margin-top: -10px;
  border-radius: 100vh;
  background: #FFFFFF;
}
#reasons .list li a::after {
  width: 3px;
  height: 3px;
  border-top: 1px solid #0f3656;
  border-right: 1px solid #0f3656;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 9px 8px;
}
#reasons .list li a:hover {
  text-decoration: none;
}
#reasons .list li .shoulder {
  font-family: "Noto sans", sans-serif;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.12em;
}
#reasons .list li .re_txt {
  letter-spacing: 0.12em;
  line-height: 2;
}
#reasons .list li h3 {
  margin: 1.7em 0 1em;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.12em;
  /* 751- */
}
@media all and (min-width: 751px) {
  #reasons .list li h3 {
    margin: 1.4em 0 0;
  }
}
#reasons .goDetail {
  margin-top: 40px;
}
#reasons .goDetail a {
  color: #FFFFFF;
}
#reasons .goDetail a:hover {
  text-decoration: none;
}
#reasons .more {
  display: none;
  position: relative;
  font-family: "Noto sans", sans-serif;
  text-align: right;
  font-size: 13px;
  line-height: 1.78;
  letter-spacing: 0.12em;
  padding: 1em 2em 1em 1em;
  cursor: pointer;
}
#reasons .more::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 4px;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 0.6em 1.7em;
}
@media all and (max-width: 750px) {
  #reasons .more {
    display: block;
  }
  #reasons .list li {
    display: none;
  }
  #reasons .list li:first-child {
    display: block;
  }
}
@media all and (min-width: 751px) {
  #reasons .column {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #reasons .images {
    position: relative;
    margin-top: 0;
    width: 41.666%;
  }
  #reasons .images::before {
    display: block;
    content: "";
    padding-top: 132%;
  }
  #reasons .images li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.84, 0.04, 0.45, 0.97);
            transition-timing-function: cubic-bezier(0.84, 0.04, 0.45, 0.97);
  }
  #reasons .images li.view {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  #reasons .list {
    margin-top: 0;
    width: 51.666%;
  }
  #reasons .list ul {
    border-bottom: none;
  }
  #reasons .list li a {
    padding: 22px 18% 65px 0;
    border-width: 1px 0 0;
    opacity: 0.3;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.84, 0.04, 0.45, 0.97);
            transition-timing-function: cubic-bezier(0.84, 0.04, 0.45, 0.97);
  }
  #reasons .list li a::before, #reasons .list li a::after {
    bottom: 50%;
    right: 20px;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.84, 0.04, 0.45, 0.97);
            transition-timing-function: cubic-bezier(0.84, 0.04, 0.45, 0.97);
  }
  #reasons .list li a::before {
    width: 38px;
    height: 38px;
    margin-bottom: -19px;
  }
  #reasons .list li a::after {
    width: 5px;
    height: 5px;
    margin: 0 15px -3px;
  }
  #reasons .list li .shoulder {
    font-size: 12px;
  }
  #reasons .list li h3 {
    margin-top: 2.2em;
    font-size: 24px;
    line-height: 1.83;
    /* 751- */
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  #reasons .list li h3 {
    margin-top: 1.5em;
  }
}
@media all and (min-width: 751px) {
  #reasons .list li .re_txt {
    /* 751- */
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  #reasons .list li .re_txt {
    padding-top: 25px;
    font-size: 15px;
  }
}
@media all and (min-width: 751px) {
  #reasons .list li.view a {
    opacity: 1;
  }
  #reasons .list li.view a::before, #reasons .list li.view a::after {
    opacity: 1;
    right: 0;
  }
  #reasons .goDetail {
    margin-top: 80px;
  }
}

/*----------------------------------------------------
products
----------------------------------------------------*/
#products {
  /* hoverアニメーション */
}
#products a:hover {
  text-decoration: none;
}
#products .sectionTitle {
  margin-bottom: 32px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #products .sectionTitle {
    margin-bottom: 67px;
  }
}
#products .lt {
  text-align: initial;
  margin-bottom: 41px;
  /* 751- */
}
#products .lt li {
  border-bottom: 1px solid #D0D0D0;
}
#products .lt li:first-child {
  border-top: 1px solid #D0D0D0;
}
#products .lt li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 32px 0 89px;
}
#products .lt li a .image {
  text-align: center;
}
#products .lt li a .image img {
  max-width: 190px;
}
@media all and (min-width: 751px) {
  #products .lt {
    margin-bottom: 80px;
  }
  #products .lt li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 39px;
       -moz-column-gap: 39px;
            column-gap: 39px;
    padding-left: 30px;
  }
  #products .lt li a .image {
    width: 31.5%;
  }
  #products .lt li a .image img {
    max-width: 284px;
  }
  #products .lt li a .textArea {
    width: 50%;
  }
}
#products .lt li a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #products .lt li a:hover .btn {
    -webkit-transform: rotate(-390deg);
            transform: rotate(-390deg);
  }
  #products .lt li a:hover .btn::before {
    opacity: 1;
  }
  #products .lt li a:hover .image img {
    opacity: 0;
  }
}
@-webkit-keyframes LoopCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes LoopCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
#products .image {
  position: relative;
  /* -750 */
  /* 751- */
}
#products .image::before {
  content: "";
  position: absolute;
  display: block;
  background: #eceff2;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
#products .image img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 750px) {
  #products .image {
    margin-bottom: 30px;
  }
}
@media all and (min-width: 751px) {
  #products .image::before {
    width: 22vw;
    height: 22vw;
  }
}
#products .image::before {
  width: 190px;
  height: 190px;
}
@media all and (min-width: 1200px) {
  #products .image::before {
    width: 286px;
    height: 286px;
  }
}
#products .title {
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 25px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #products .title {
    margin-bottom: 51px;
    font-size: 24px;
  }
}
#products .detail {
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 2.666;
  /* 751- */
}
@media all and (min-width: 751px) {
  #products .detail {
    font-size: 15px;
  }
}
#products .btn {
  position: absolute;
  width: 28px;
  height: 28px;
  left: calc(50% - 14px);
  top: calc(100% - 59px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #products .btn {
    width: 50px;
    height: 50px;
    top: 50%;
    left: calc(100% - 100px);
    left: auto;
    right: 0;
  }
  #products .btn::before {
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    content: "";
    position: absolute;
    background: url("../images/top/products/btn_hover.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
#products .number {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /*↓縦書きの記述*/
  white-space: pre; /*↓縦書きの記述を改行させないための記述*/
  display: inline-block;
  position: absolute;
  top: 32px;
  left: 0;
  font-weight: 200;
  color: #272727;
  font-family: "Noto sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  #products .number {
    font-size: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/*----------------------------------------------------
customerVoice
----------------------------------------------------*/
#customerVoice {
  position: relative;
  background: #182E41;
  overflow: hidden;
  /* 751- */
}
#customerVoice::before {
  content: "";
  position: absolute;
  background: url("../images/top/customervoice/bg_mashine.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 238px;
  height: 269px;
  top: 0;
  right: 0px;
}
@media all and (min-width: 751px) {
  #customerVoice::before {
    content: "";
    position: absolute;
    background: url("../images/top/customervoice/bg_mashine.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 378px;
    height: 359px;
    top: 80px;
    right: 80px;
  }
}
#customerVoice .sectionTitle {
  margin-bottom: 35px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .sectionTitle {
    margin-bottom: 70px;
  }
}
#customerVoice .slider li {
  margin-right: 3vw !important;
  margin-left: 3vw !important;
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .slider li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 2vw !important;
    margin-left: 2vw !important;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1380px) {
  #customerVoice .slider li {
    width: auto !important;
  }
}
#customerVoice .slider li:first-child a {
  /* 751- */
}
#customerVoice .slider li a {
  display: block;
  /* 751- */
}
#customerVoice .slider li a .contents {
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .slider li a .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    max-width: 362px;
  }
}
#customerVoice .slider li a .contents .thumbnail {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#customerVoice .slider li a .contents .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  aspect-ratio: 1.345/1;
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .slider li a .contents .thumbnail img {
    aspect-ratio: 1.341/1;
  }
}
#customerVoice .slider li a .contents .voice_detail {
  text-align: left;
  color: white;
}
#customerVoice .slider li a .contents .voice_detail .title {
  padding: 24px 0 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.722;
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .slider li a .contents .voice_detail .title {
    padding: 15px 0 19px;
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 1.722;
  }
}
#customerVoice .slider li a .contents .voice_detail .catch_copy {
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.722;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .slider li a .contents .voice_detail .catch_copy {
    font-size: 20px;
    letter-spacing: 0.12em;
    line-height: 1.722;
  }
}
#customerVoice .slider li a .contents .voice_detail .catch_copy span {
  background-image: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#FFFFFF));
  background-image: linear-gradient(90deg, #FFFFFF, #FFFFFF);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#customerVoice .slider li a .contents .voice_detail .text_content {
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 2.3;
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .slider li a .contents .voice_detail .text_content {
    padding-top: 29px;
    font-size: 15px;
    letter-spacing: 0.12em;
    line-height: 2.2;
  }
}
@media (hover: hover) {
  #customerVoice .slider li a:hover .contents .thumbnail img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  #customerVoice .slider li a:hover .contents .voice_detail .catch_copy span {
    background-size: 100% 1px;
  }
}
#customerVoice .goDetail {
  margin-top: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #customerVoice .goDetail {
    margin-top: 80px;
  }
}

/*----------------------------------------------------
information
----------------------------------------------------*/
#information a:hover {
  text-decoration: none;
}
#information .lt {
  margin-bottom: 35px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #information .lt {
    margin-bottom: 73px;
  }
}
#information .sectionTitle {
  margin-bottom: 39px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #information .sectionTitle {
    margin-bottom: 80px;
  }
}
#information .tab_box .tab_contents > li {
  display: none;
}
#information .tab_box .tab_contents > li.is_active {
  display: block;
  -webkit-animation-name: fadeInTab;
          animation-name: fadeInTab;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeInTab {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInTab {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#information .tab_box .tab_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 280px;
  margin: 0 auto 40px;
  /* 751- */
}
#information .tab_box .tab_buttons > li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-bottom: 13px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-bottom: 1px solid #BDBDBD;
}
#information .tab_box .tab_buttons > li span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#information .tab_box .tab_buttons > li.is_active {
  color: #3e88c8;
  border-bottom: 1px solid #366288;
}
#information .tab_box .tab_buttons > li:hover {
  cursor: pointer;
}
@media all and (min-width: 751px) {
  #information .tab_box .tab_buttons {
    max-width: 400px;
    margin: 0 auto 80px;
  }
  #information .tab_box .tab_buttons > li {
    padding-bottom: 17px;
  }
  #information .tab_box .tab_buttons > li span::before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    background-color: #366288;
    bottom: -1px;
    left: 0;
  }
  #information .tab_box .tab_buttons > li:not(.is_active):hover {
    color: #366288;
  }
  #information .tab_box .tab_buttons > li:not(.is_active):hover span::before {
    width: 100%;
  }
}
/*# sourceMappingURL=top.css.map */