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

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

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/* アニメーション名を指定する */
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
main {
  text-align: initial;
}

/*----------------------------------------------------
お客様の声　一覧ページ
----------------------------------------------------*/
#voice {
  margin: 52px 0 80px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #voice {
    margin: 105px 0 130px;
  }
}
#voice .lt li {
  border-bottom: 1px solid #D0D0D0;
}
#voice .lt li:first-child a {
  padding: 0 0 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #voice .lt li:first-child a {
    padding: 0 0 44px;
  }
}
#voice .lt li a {
  display: block;
  padding: 40px 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  #voice .lt li a {
    padding: 44px 0;
  }
}
#voice .lt li a .contents {
  /* 751- */
}
@media all and (min-width: 751px) {
  #voice .lt li a .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#voice .lt li a .contents .thumbnail {
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 296px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #voice .lt li a .contents .thumbnail {
    margin: 0;
    padding: 0;
    max-width: 300px;
  }
}
#voice .lt 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.333/1;
}
#voice .lt li a .contents .voice_detail {
  /* 751- */
}
@media all and (min-width: 751px) {
  #voice .lt li a .contents .voice_detail {
    width: calc(100% - 345px);
  }
}
#voice .lt 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) {
  #voice .lt li a .contents .voice_detail .title {
    padding: 0 0 70px;
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 1.722;
  }
}
#voice .lt 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) {
  #voice .lt li a .contents .voice_detail .catch_copy {
    font-size: 24px;
    letter-spacing: 0.12em;
    line-height: 1.722;
  }
}
#voice .lt li a .contents .voice_detail .catch_copy span {
  background-image: -webkit-gradient(linear, left top, right top, from(#3f3f3f), to(#3f3f3f));
  background-image: linear-gradient(90deg, #3f3f3f, #3f3f3f);
  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;
}
@media (hover: hover) {
  #voice .lt li a:hover .contents .thumbnail img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  #voice .lt li a:hover .contents .voice_detail .catch_copy span {
    background-size: 100% 1px;
  }
}

/*----------------------------------------------------
お客様の声　詳細ページ
----------------------------------------------------*/
#single {
  padding-top: 60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single {
    padding-top: 78px;
  }
}
#single .contents {
  padding-bottom: 45px;
  border-bottom: 1px solid #D0D0D0;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .contents {
    padding-bottom: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
#single .contents .thumbnail_area .thumbnail {
  margin: 0 auto;
  max-width: 296px;
  width: 100%;
  height: 100%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .contents .thumbnail_area .thumbnail {
    margin: 0;
    max-width: 300px;
  }
}
#single .contents .thumbnail_area .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.333/1;
}
#single .contents .voice_detail {
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .contents .voice_detail {
    width: calc(100% - 260px);
  }
}
#single .contents .voice_detail .title {
  padding: 45px 0 12px;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .contents .voice_detail .title {
    padding: 0 0 40px;
    font-size: 16px;
    letter-spacing: 0.15em;
    line-height: 1.7;
  }
}
#single .contents .voice_detail .catch_copy {
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  #single .contents .voice_detail .catch_copy {
    font-size: 28px;
    letter-spacing: 0.12em;
    line-height: 1.7;
  }
}
#single #singleContents p {
  /* 751- */
}
@media all and (min-width: 751px) {
  #single #singleContents p {
    padding-top: 24px;
  }
}
/*# sourceMappingURL=voice.css.map */