@charset "UTF-8";
/* ===========================
   Web Fonts
   =========================== */
/* Noto Serif */
@font-face {
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/NotoSerif-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/NotoSerif-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/NotoSerif-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/NotoSerif-Bold.ttf') format('truetype');
}
/* Noto Serif JP */
@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/NotoSerifJP-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/NotoSerifJP-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/NotoSerifJP-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/NotoSerifJP-Bold.ttf') format('truetype');
}
/* ===========================
   リセット
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
/* ===========================
   基本設定
   =========================== */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Serif", "Noto Serif JP", serif;
  line-height: 1.6;
  color: #1e1e1e;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
/* ===========================
   ユーティリティ
   =========================== */
/* PC時のみ表示 */
.pc-only {
  display: none;
}
/* SP時のみ表示 */
.sp-only {
  display: block;
}
/* ===========================
   共通レイアウト
   =========================== */
.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 101;
  height: 55px;
  transition: transform 0.3s;
  will-change: transform;
}
.header--hidden {
  transform: translateY(-100%);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
h1.header__logo {
  width: 60px;
}
.header__logo a {
  display: block;
  line-height: 1;
}
.header__logo-image {
  display: block;
}
/* ナビゲーション(PC) */
.header__nav {
  display: none;
}
.header__nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header__nav-item a {
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  color: #231815;
}
/* SNSアイコン */
.header__sns {
  display: block;
  width: 20px;
}
.header__sns-icon {
  display: block;
}
/* ハンバーガーメニュー */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  position: relative;
  width: 20px;
}
.header__hamburger span {
  width: 100%;
  height: 2px;
  background-color: #231815;
  transition: all 0.3s;
}
.header__hamburger.is-active span {
  background-color: #1e1e1e;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(4px) rotate(30deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-30deg);
}
/* オーバーレイ */
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 99;
}
.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
/* ナビゲーション(スマホ) */
.header__nav.is-active {
  display: block;
  position: fixed;
  top: 55px;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: calc(100vh - 55px);
  background-color: #eeebdf;
  padding: 10px 35px 0;
  transform: translateX(0);
  z-index: 100;
  overflow-y: auto;
}
.header__nav.is-active .header__nav-list {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.header__nav.is-active .header__nav-item {
  padding: 30px 0;
  border-bottom: 1px solid #FFF;
  width: 100%;
}
.header__nav.is-active .header__nav-item a {
  color: #1e1e1e;
  font-size: 14px;
  display: block;
  font-weight: 600;
}
/* メインコンテンツ */
.main {
  min-height: calc(100vh - 200px);
}
/* ヒーローセクション */
.hero {
  width: 100%;
  height: auto;
  position: relative;
}
.hero__swiper {
  width: 100%;
  height: auto;
}
/* SP用スライダーのみ表示 */
.hero__swiper--pc {
  display: none;
}
.hero__swiper--sp {
  display: block;
  aspect-ratio: 5 / 8;
}
.hero__slide {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hero__logo {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 45%;
}
.hero__logo-image {
  height: auto;
  display: block;
}
.hero__copy {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__copy-ja {
  writing-mode: vertical-rl;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #231815;
}
.hero__copy-ja span {
  background-color: rgba(255, 255, 255, 1);
  padding: 5px 6px 5px 5px;
  line-height: 1;
  display: inline-block;
}
.hero__copy-ja span:first-child {
  margin-left: 10px;
  padding-bottom: 0;
}
.hero__copy-ja span.punctuation {
  background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 50%,
        transparent 50%,
        transparent 100%
    );
  padding: 0 6px 5px 5px;
  display: inline-block;
}
.hero__copy-en {
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
  color: #231815;
}
.hero__scroll {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero__scroll-text {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #231815;
}
.hero__scroll-icon {
  width: 1px;
  height: 25px;
  background-color: #231815;
  position: relative;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
/* セクション */
.section {
  padding: 50px 5% 0;
}
.section__inner {
  max-width: 1350px;
  margin: 0 auto;
}
.section__title {
  font-size: 15px;
  color: #AC9C63;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 25px;
  text-align: center;
}
/* テキスト部分の初期状態 */
.section__title-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(-30px);
}
/* テキストのアニメーション */
.section__title.is-visible .section__title-text {
  animation: fadeInDown 0.8s ease-out forwards;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* コンテンツ要素の初期状態 */
#about-us .section__text-ja,
#about-us .section__image,
#about-us .section__text-en,
#quality-standards .section__text-ja,
#quality-standards .quality-items,
#quality-standards .quality-visual,
#quality-standards .section__text-en,
#sns .section__content,
#faq dl {
  opacity: 0;
  transform: translateY(-30px);
}

/* コンテンツ要素のアニメーション */
#about-us .section__text-ja.is-visible,
#about-us .section__image.is-visible,
#about-us .section__text-en.is-visible,
#quality-standards .section__text-ja.is-visible,
#quality-standards .quality-items.is-visible,
#quality-standards .quality-visual.is-visible,
#quality-standards .section__text-en.is-visible,
#sns .section__content.is-visible,
#faq dl.is-visible {
  animation: fadeInDown 0.8s ease-out forwards;
}

/* 時間差アニメーション */
#about-us .section__text-ja.is-visible {
  animation-delay: 0s;
}
#about-us .section__image.is-visible {
  animation-delay: 0.2s;
}
#about-us .section__text-en.is-visible {
  animation-delay: 0.4s;
}

#quality-standards .section__text-ja.is-visible {
  animation-delay: 0s;
}
#quality-standards .quality-items.is-visible {
  animation-delay: 0.2s;
}
#quality-standards .quality-visual.is-visible {
  animation-delay: 0.4s;
}
#quality-standards .section__text-en.is-visible {
  animation-delay: 0.6s;
}

#sns .section__content.is-visible {
  animation-delay: 0s;
}

#faq dl:nth-child(1).is-visible {
  animation-delay: 0s;
}
#faq dl:nth-child(2).is-visible {
  animation-delay: 0.2s;
}
#faq dl:nth-child(3).is-visible {
  animation-delay: 0.4s;
}
#faq dl:nth-child(4).is-visible {
  animation-delay: 0.6s;
}
#faq dl:nth-child(5).is-visible {
  animation-delay: 0.8s;
}

/* 二重線 */
.section__title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.5px;
  background-image: linear-gradient(to bottom, #ac9c63 1px, transparent 1px, transparent 3.5px, #ac9c63 3.5px);
}
/* アイコン */
.section__title::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 44px;
  height: 67px;
  background-image: url('../img/fuji.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transform: rotateX(90deg) rotateZ(-90deg) scale(0);
  transform-origin: top left;
}
/* アニメーション適用 */
.section__title.is-visible::before {
  animation: rotateRight 1.2s ease-out forwards, sway 3s ease-in-out 1.2s infinite;
  transform-origin: top center;
}
@keyframes rotateRight {
  0% {
    opacity: 0;
    transform: rotateX(90deg) rotateZ(-90deg) scale(0);
  }
  83.33% {
    opacity: 1;
    transform: rotateX(0deg) rotateZ(0deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) rotateZ(0deg) scale(1) rotate(-1.8deg);
  }
}
@keyframes sway {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
.section__content {
  margin: 0 auto;
  padding: 0 10px;
}
.section__text-ja, .section__text-en {
  text-align: center;
  white-space: nowrap;
}
.section__text-ja p {
  font-size: 14px;
  line-height: 2.0;
}
.section__text-en p {
  font-size: 12px;
  line-height: 2.0;
}

/* ===========================
   ABOUT USセクション
   =========================== */
#about-us {
  padding-top: 35px;
}
#about-us .section__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#about-us .section__image {
  width: 56%;
  margin: 0 auto;
}
#about-us .section__image-item {
  width: 100%;
  height: auto;
  display: block;
}
#about-us .section__image span{
    display: block;
    text-align: center;
  font-size: 11px;
  margin-top: 10px;
}

/* ===========================
   QUALITY STANDARDSセクション
   =========================== */
#quality-standards .section__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
/* Quality Items */
.quality-items-box{
  background-color: rgba(172, 156, 99, 0.2);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

}
.quality-items {
  width: 225px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.quality-items h3 {
  writing-mode: vertical-rl;
  background-color: #FFF;
  border-radius: 25px;
  padding: 15px 2px 15px 0;
    font-size: 12px;
    font-weight: 400;
    text-orientation: upright;
}
.quality-items dl {
  display: inline-block;
  vertical-align: top;
}
.quality-items dt {
  font-size: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.quality-items dd {
  text-align: center;
}
.quality-visual{
  width: 240px;
  margin: 25px auto 0;
}

/* ===========================
   CAREセクション
   =========================== */
.care-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section__list-ja {
  background-color: rgba(172, 156, 99, 0.2);
  padding: 20px;
}

.care-items__img {
  background-color: #FFF;
}

/* ===========================
   SNSセクション
   =========================== */
.eapps-instagram-feed-header-small .eapps-instagram-feed-header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 25px;
}
#eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more {
    background: #eeebdf;
    color: #000;
    border: 1px solid #ac9c63;
    border-radius: 25px;
    font-family: 'Noto Serif';
    width: 33%;
    font-size: 10px;
    font-weight: 600;
    margin: 20px auto 0;
}
#eapps-instagram-feed-1 a.eapps-instagram-feed-header-follow-button, #eapps-instagram-feed-1 a.eapps-instagram-feed-header-follow-button:hover{
    background: #eeebdf;
    color: #000;
    border: 1px solid #ac9c63;
    border-radius: 25px;
    font-family: 'Noto Serif';
    font-size: 10px;
    font-weight: 600;
}
.es-load-more-button {
  font-size: 0 !important;
}
.es-load-more-button:after {
  content: "View more" !important;
  font-size: 10px !important;
}

/* ===========================
   FAQセクション
   =========================== */
#faq {
  margin-bottom: 30px;
}
#faq .section__title {
  margin-bottom: 40px;
}
dt.faq__question {
  border: 1px solid #ac9c63;
  background-color: #eeebdf;
  border-radius: 50px;
  font-size: 12.5px;
  padding: 12px 20px 12px 36px;
  line-height: 1.2;
  position: relative;
  margin: 0 0 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}
dt.faq__question::before {
  content: "";
  background-image: url(../img/question-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 11px;
  height: 16px;
  position: absolute;
  left: 18px;
  top: auto;
}
dt.faq__question::after {
  content: "";
  background-image: url(../img/faq-btn.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  height: 11px;
  display: block;
  position: absolute;
  top: 50%;
  right: 6.5%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
dt.faq__question.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
span.faq__question-en {
  color: #595858;
  font-size: 9px;
}
#faq dl {
  overflow: hidden;
}
.faq__answer {
  font-size: 11px;
  line-height: 2;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
  background-color: #fff;
  padding: 0;
}
.faq__answer.is-open {
  grid-template-rows: 1fr;
}
.faq__answer-inner {
  overflow: hidden;
  padding: 0 20px;
}
.faq__answer.is-open .faq__answer-inner {
  padding: 0 20px 40px;
}
.faq__answer li {
  text-indent: -1em;
  padding-left: 1em;
}
.faq__answer-inner p.faq__answer-en, .faq__answer-inner ul.faq__answer-en li {
  color: #575757;
}
.faq__answer-inner p.faq__answer-en {
  margin-top: 20px;
}
a.sns-btn {
  font-size: 10px;
  border: 1px solid #ac9c63;
  background-color: #eeebdf;
  border-radius: 30px;
  padding: 5px 10px 5px 45px;
  position: relative;
  display: block;
  margin: 20px auto 0;
  width: 100px;
}
a.sns-btn::before {
  content: "";
  background-image: url(../img/instagram-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

/* フッター */
.footer {
    background-color: #eeebdf;
    color: #1e1e1e;
    padding: 15px 0;
    text-align: center;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__logo {
    width: 57px;
    margin: 0 auto 7.5px;
}
.footer__copyright {
  font-size: 7px;
}
/* ===========================
   PC
   =========================== */

@media screen and (min-width: 1024px) {
  /* 表示切り替え */
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  /* PC用ヘッダーを90pxに */
  .header {
    height: 90px;
  }
  h1.header__logo {
    width: 117px;
  }
  /* PC用ヒーローを画像比率に合わせる */
  .hero {
    height: auto;
  }
  .hero__swiper {
    height: auto;
  }
  /* PC用スライダーのみ表示 */
  .hero__swiper--pc {
    display: block;
    aspect-ratio: 2 / 1;
  }
  .hero__swiper--sp {
    display: none;
  }
  /* PC用は画像比率を保つ */
  .hero__slide {
    height: auto;
  }
  .hero__image {
    height: auto;
    object-fit: contain;
  }
  /* PC用はロゴを中央に配置、clampで柔軟なサイズに */
  .hero__logo {
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 30vw, 412px);
  }
  .hero__logo-image {
    width: 100%;
    height: auto;
  }
  /* PC用はキャッチコピーを左上と左下に */
  .hero__copy {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    margin-top: 0;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(30px, 3.5vw, 50px) clamp(80px, 10vw, 140px);
  }
  .hero__copy-ja {
    font-size: 24px;
  }
  .hero__copy-ja span {
    padding: 5px 8px 5px 5px;
  }
  .hero__copy-ja span.punctuation {
    padding: 0 8px 5px 5px;
  }
  .hero__copy-en {
    font-size: 16px;
    text-align: left;
  }
  .hero__scroll {
    gap: 12px;
  }
  .hero__scroll-text {
    font-size: 12px;
  }
  .hero__scroll-icon {
    width: 2px;
    height: 60px;
  }  
  .header__nav {
    display: block;
    flex: 1;
  }
  .header__nav-list {
    justify-content: center;
  }
  .header__sns {
    display: block;
  }
  .header__hamburger {
    display: none;
  }
  .header__overlay {
    display: none;
  }
  .section {
    padding: 100px 0 0;
  }
  #about-us {
    padding-top: 75px;
  }
  /* PC用アイコンサイズ */
  .section__title::before {
    bottom: -95px;
    width: 80px;
    height: 124px;
  }
  /* PC用セクションタイトル */
  .section__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
   .section__title::after {
    height: 7px;
    background-image: linear-gradient(to bottom, #ac9c63 1px, transparent 1px, transparent 6px, #ac9c63 6px);
  }
  /* PC用セクションコンテンツpadding */
  .section__content {
    max-width: 1200px;
    margin: 0 0 0 25px;
    padding: 0;
  }
  /* PC用テキストを左寄せに */
  .section__text-ja, .section__text-en {
    text-align: left;
    white-space: normal;
  }
  /* PC用テキストフォントサイズ */
  .section__text-ja p {
    font-size: 21px;
    line-height: 2.2;
  }
  .section__text-en p {
    font-size: 17px;
    font-weight: 500;
    color: #575757;
    line-height: 2.2;
  }
  /* ABOUT USセクション */
  #about-us .section__content {
    display: grid;
    grid-template-columns: 720fr 480fr;
    gap: 50px 0;
  }
  #about-us .section__text-ja {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }
  #about-us .section__image {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    padding-top: 75px;
  }
  #about-us .section__image span {
    font-size: 18px;
    margin-top: 25px;
}
  #about-us .section__text-en {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }
  /* QUALITY STANDARDSセクション */
  #quality-standards .section__content {
    display: grid;
    grid-template-columns: 720fr 480fr;
    gap: 50px 0;
  }
  #quality-standards .section__text-ja {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }
  #quality-standards .quality-images {
    margin-top: 75px;
    grid-column: 2;
    grid-row: 1 / 3;
  }
  #quality-standards .section__text-en {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }
.quality-items-box{
  width: auto;
  position: static;
  left: auto;
  transform: none;
}
  .quality-items {
    width: auto;
  padding: 40px 30px;
  gap: 40px;
}
.quality-items h3 {
  padding: 30px 10px;
  font-size: 20px;
}
.quality-items dt {
  font-size: 18px;
}
.quality-visual{
  width: auto;
  margin-top: 50px;
}
  /* CAREセクション */
  #care .section__content {
  max-width: none;
  margin: 0;
  padding: 0;
}
  #care .care-items {
    background-color: rgba(172, 156, 99, 0.2);
      width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px calc((100vw - 1200px) / 2);  /* 左右のpaddingで中身を制限 */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  }
  #care .section__list-ja {
    background-color: transparent;
    padding: 0;
  }

  #care .care-items__img {
    background-color: transparent;
  }

  /* SNSセクション */
  #sns .section__title {
    margin-bottom: 100px;
  }
  #sns .section__content {
    width: 650px;
    margin: 0 auto;
    padding: 0;
  }
  #eapps-instagram-feed-1 a.eapps-instagram-feed-header-follow-button, #eapps-instagram-feed-1 a.eapps-instagram-feed-header-follow-button:hover{
    font-size: 19px;
    padding: 5px 26px;
    height: auto;
  }
  .eapps-instagram-feed-header-follow-button-icon{
    width: 40px;
    height: 40px;
  }
  #eapps-instagram-feed-1 .eapps-instagram-feed-posts-grid-load-more{
    font-size: 19px;
    padding: 15px 0;
    line-height: 1;
    height: auto;
  }
  .es-load-more-button:after {
    font-size: 19px !important;
  }


  /* PC用FAQセクション */
  #faq {
    margin-top: 125px;
    margin-bottom: 150px;
  }
  #faq .section__title {
    margin-bottom: 75px;
  }
  #faq .section__content {
    width: 940px;
    margin: 0 auto;
    padding: 0;
  }
  /* PC用FAQ質問スタイル */
  dt.faq__question {
    font-size: 21px;
    margin-bottom: 50px;
    padding: 20px 20px 20px 85px;
  }
  dt.faq__question::before {
    width: 19px;
    height: 29px;
    left: 48px;
  }
  dt.faq__question::after {
    width: 33px;
    height: 24px;
  }
  span.faq__question-en {
    font-size: 16px;
    font-weight: 600;
  }
  .faq__answer-inner p, .faq__answer-inner ul li {
    font-size: 21px;
  }
  .faq__answer-inner p.faq__answer-en, .faq__answer-inner ul.faq__answer-en li {
    font-size: 17px;
  }
  .faq__answer-inner p.faq__answer-en {
    margin-top: 35px;
  }
  .faq__answer-inner {
    overflow: hidden;
    padding: 0 48px;
  }
  .faq__answer.is-open .faq__answer-inner {
    padding: 0 48px 50px;
  }
  a.sns-btn {
    width: 210px;
    font-size: 19px;
    padding: 5px 26px 5px 45px;
    text-align: center;
  }
  a.sns-btn::before {
    left: 40px;
  }
  /* フッター */
  .footer__logo {
    width: 121px;
  }
}