@charset "UTF-8";
/*==============================
設定
==============================*/
html {
  scroll-padding-top: 114px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/*==========================
共通クラス
==========================*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: min(120px, 8.3333333333vw);
  padding-left: min(120px, 8.3333333333vw);
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.section__title.right {
  text-align: right;
}
.section__title.center {
  text-align: center;
}

.section__title-main {
  line-height: 1;
  letter-spacing: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(80px, 6.9444444444vw, 100px);
  font-weight: 400;
  color: #BFAFAA;
}
@media screen and (max-width: 767px) {
  .section__title-main {
    font-size: 46px;
  }
}

.section__title-main--outline {
  color: #fff;
  -webkit-text-stroke: 1px #BFAFAA;
}

/* text-stroke 非対応ブラウザ用 */
@supports not (-webkit-text-stroke: 1px #BFAFAA) {
  .section__title-main--outline {
    text-shadow: 1px 0 #BFAFAA, -1px 0 #BFAFAA, 0 1px #BFAFAA, 0 -1px #BFAFAA;
  }
}
.section__title-main--white {
  color: #fff;
}

.section__title-sub {
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-top: 3px;
  font-size: 28px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .section__title-sub {
    font-size: 16px;
  }
}

/*==========================
fade-in アニメーション
==========================*/
.fadein-bottom {
  opacity: 0;
  transition: opacity 1.5s, transform 1.5s;
  transform: translate(0, 30px);
}

.fadein-bottom.common__btn {
  transition: opacity 1.5s, transform 1.5s, background-color 0.3s ease;
}

.fadein-bottom.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*==========================
共通ボタン
==========================*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 50px;
  padding: 10px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-primary::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
}

.btn-primary--outline {
  border: 1px solid #662700;
  background-color: #ffffff;
}
.btn-primary--outline::before {
  background-image: url(../img/icon_doc_brown.svg);
}
.btn-primary--outline:hover {
  background-color: #662700;
  border-color: #662700;
}
.btn-primary--outline:hover::before {
  background-image: url(../img/icon_doc_white.svg);
}
.btn-primary--outline:hover .btn-primary__text {
  color: #fff;
}
.btn-primary--outline .btn-primary__text {
  color: #662700;
}

.btn-primary--fill {
  border: 1px solid #662700;
  background-color: #662700;
}
.btn-primary--fill::before {
  background-image: url(../img/icon_mail_white.svg);
}
.btn-primary--fill:hover {
  background-color: #fff;
}
.btn-primary--fill:hover::before {
  background-image: url(../img/icon_mail_brown.svg);
}
.btn-primary--fill:hover .btn-primary__text {
  color: #662700;
}
.btn-primary--fill .btn-primary__text {
  color: #fff;
}

.btn-primary__text {
  line-height: 1;
  font-size: min(14px, 3.7333333333vw);
  font-weight: 700;
  transition: color 0.3s ease;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  min-height: 50px;
  border-radius: 4px;
  border: 2px solid #BF3232;
  padding: 6px 10px;
  background-color: #BF3232;
  transition: background-color 0.3s ease;
}
.btn-secondary:hover {
  background: #fff;
}
.btn-secondary:hover .btn-secondary__text {
  color: #BF3232;
}

.btn-secondary--calender::before,
.btn-secondary--chat::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-secondary--calender::before {
  background-image: url(../img/icon_calendar.svg);
}
.btn-secondary--calender:hover::before {
  background-image: url(../img/icon_calendar_red.svg);
}

.btn-secondary--chat::before {
  background-image: url(../img/icon_chat.svg);
}
.btn-secondary--chat:hover::before {
  background-image: url(../img/icon_chat_red.svg);
}

.btn-secondary__text {
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  color: #ffffff;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn-secondary__text {
    font-size: min(14px, 3.7333333333vw);
  }
}

.btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.btn-tel.btn-tel--bg {
  background-color: #F5F1ED;
}
.btn-tel:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/icon_call.svg);
  transition: background-image 0.3s ease;
}
.btn-tel:hover {
  background-color: #543B29;
}
.btn-tel:hover:before {
  background-image: url(../img/icon_call_white.svg);
}
.btn-tel:hover .btn-tel__number {
  color: #fff;
}
.btn-tel:hover .btn-tel__note {
  color: #fff;
}

.btn-tel__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}

.btn-tel__inner-column {
  flex-direction: column;
  gap: 4px;
}

.btn-tel__number {
  line-height: 1;
  font-size: 18px;
  font-weight: 800;
  color: #543B29;
  transition: color 0.3s ease;
}

.btn-tel__note {
  font-size: 10px;
  color: #543B29;
  line-height: 1;
  transition: color 0.3s ease;
}

.btn__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .btn__group {
    gap: 8px;
  }
}

.btn__lead {
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  .btn__lead {
    font-size: 12px;
  }
}

/*==========================
共通カード（2col）
==========================*/
.card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .card__list {
    margin-top: 32px;
  }
}

.card__item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .card__item {
    width: 100%;
  }
}

.card__link {
  display: block;
  transition: opacity 0.3s ease;
}
.card__link:hover {
  opacity: 0.6;
}
.card__link:hover .card__image img {
  transform: scale(1.1);
}

.card__image {
  aspect-ratio: 29/18;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card__image {
    aspect-ratio: 335/180;
  }
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.card__body {
  padding-top: 16px;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card__date {
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 500;
  color: #662700;
}

.card__category {
  padding: 4px;
  border-radius: 2px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 12px;
  background-color: #662700;
  color: #fff;
  transition: opacity 0.3s ease;
  text-decoration: none !important;
}
.card__category:hover {
  opacity: 0.6;
}

.card__title__link {
  transition: opacity 0.3s ease;
}
.card__title__link:hover {
  opacity: 0.6;
}

.card__category--helpful {
  background-color: #71b932;
}

.card__title {
  margin-top: 8px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 20px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 16px;
  }
}

.card__text {
  margin-top: 8px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 15px;
  }
}

/*==========================
共通カード（リスト型）
==========================*/
.card__list--flex {
  flex-direction: column;
  flex-wrap: nowrap;
  margin-top: 0;
}
.card__list--flex .card__item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .card__list--flex .card__item {
    flex-direction: column;
  }
}
.card__list--flex .card__link {
  width: 47.3%;
}
@media screen and (max-width: 767px) {
  .card__list--flex .card__link {
    width: 100%;
  }
}
.card__list--flex .card__image {
  aspect-ratio: 41/28;
}
@media screen and (max-width: 767px) {
  .card__list--flex .card__image {
    aspect-ratio: 335/240;
  }
}
.card__list--flex .card__body {
  flex: 1;
  padding-top: 0;
}
.card__list--flex .card__title {
  font-size: clamp(16px, 1.6666666667vw, 24px);
}

/*==========================
共通カード（サイドバー）
==========================*/
.card__list--sidebar {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 0;
}
.card__list--sidebar .card__item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .card__list--sidebar .card__item {
    align-items: flex-start;
  }
}
.card__list--sidebar .card__link {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .card__list--sidebar .card__link {
    width: 30%;
  }
}
.card__list--sidebar .card__image {
  aspect-ratio: 3/2;
}
@media screen and (max-width: 767px) {
  .card__list--sidebar .card__image {
    aspect-ratio: 5/4;
  }
}
.card__list--sidebar .card__body {
  flex: 1;
  padding-top: 0;
}
.card__list--sidebar .card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.card__list--sidebar .card__date {
  font-size: 10px;
}
.card__list--sidebar .card__category {
  font-size: 9px;
}
.card__list--sidebar .card__title {
  font-size: 12px;
  font-weight: 500;
}

/* =========================
header
========================= */
.header {
  position: fixed;
  width: 100%;
  height: 90px;
  top: 24px;
  padding-inline: 20px;
  z-index: 1000;
}
@media screen and (max-width: 1279px) {
  .header {
    top: 0;
    height: 60px;
    padding-inline: 0;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  height: inherit;
  margin-inline: auto;
  padding-inline: 24px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1279px) {
  .header__inner {
    max-width: 100%;
    border-radius: 0;
  }
}

.header__logo {
  max-width: 178px;
}
@media screen and (max-width: 1279px) {
  .header__logo {
    max-width: 140px;
  }
}

.header__logo a {
  display: block;
  width: 100%;
  height: 110%;
  transition: opacity 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1279px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.header__nav-link {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #662700;
  transition: width 0.3s ease;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 1279px) {
  .header__actions {
    display: none;
  }
}

/* =========================
hamburger
========================= */
.header__hamburger__button {
  display: none;
}
@media screen and (max-width: 1279px) {
  .header__hamburger__button {
    position: absolute;
    display: block;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 18px;
    border: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
    z-index: 2000;
  }
  .header__hamburger__button.active {
    width: 20px;
  }
}

.header__hamburger__line {
  position: absolute;
  display: block;
  width: inherit;
  height: 2px;
  background-color: #4f372c;
  left: 0;
  transition: transform 0.3s ease;
}
.header__hamburger__line:nth-child(1) {
  top: 0;
}
.header__hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger__line:nth-child(3) {
  bottom: 0;
}

.header__hamburger__button.active .header__hamburger__line:nth-child(1) {
  top: 50%;
  transform: skewY(45deg) translateY(-50%);
}
.header__hamburger__button.active .header__hamburger__line:nth-child(2) {
  display: none;
}
.header__hamburger__button.active .header__hamburger__line:nth-child(3) {
  bottom: 50%;
  transform: skewY(-45deg) translateY(50%);
}

/* =========================
overlay
========================= */
.header__hamburger__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1090;
}

.header__hamburger__overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
drawer（右→左スライド）
========================= */
.header__hamburger__content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1100;
}

.header__hamburger__content.active {
  pointer-events: auto;
}

.header__hamburger__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .header__hamburger__panel {
    width: 100%;
  }
}

.header__hamburger__content.active .header__hamburger__panel {
  transform: translateX(0);
}

/* head */
.header__hamburger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}

.header__hamburger__logo {
  display: inline-flex;
  align-items: center;
}

.header__hamburger__logo-img {
  width: 150px;
  height: auto;
}

/* drawer内の×ボタンは常に見せる */
.header__hamburger__head .header__hamburger__button {
  display: inline-flex;
}

/* lead */
.header__hamburger__cta-lead {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 20px;
}

.header__hamburger__cta-lead-text {
  display: inline-block;
  margin-inline: auto;
  line-height: 1.4;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #543B29;
}

/* cta */
.header__hamburger__cta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  padding: 0 20px;
}

/* tel */
.header__hamburger__tel .btn-tel {
  margin: 6px 20px 0;
}

/* list */
.header__hamburger__nav {
  margin-top: 24px;
}

.header__hamburger__list {
  border-top: 1px solid #F5F1ED;
}

.header__hamburger__item {
  border-bottom: 1px solid #F5F1ED;
}

.header__hamburger__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 26px;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.header__hamburger__link:hover {
  background-color: #F5F1ED;
}
.header__hamburger__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../img/icon_arrow_right.svg) no-repeat center center/contain;
}

.header__hamburger__jp {
  margin-right: 16px;
  letter-spacing: -0.08em;
  font-weight: 700;
}

.header__hamburger__en {
  margin-right: auto;
  line-height: 1.7;
  font-size: 10px;
  color: #8E8E8E;
}

/* header foot */
.header__hamburger__foot {
  display: flex;
  gap: 10px;
  margin: 22px 20px;
}
.header__hamburger__foot .btn-primary {
  width: 100%;
}

/* ======================================
MV / Swiper
====================================== */
#top-page .mv {
  position: relative;
  width: 100%;
  height: 84vh;
}
#top-page .mv__swiper {
  width: 100%;
  height: 100%;
}
#top-page .mv__slide {
  position: relative;
  overflow: hidden;
}
#top-page .mv__media {
  position: relative;
  width: 100%;
  height: 100%;
}
#top-page .mv__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-page .mv__content {
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  max-width: 1240px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #top-page .mv__content {
    top: 34%;
    left: 52%;
    width: calc(100% - 32px);
  }
}
#top-page .mv__catch {
  line-height: 1.44;
  letter-spacing: -0.01em;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
#top-page .mv__catch span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #top-page .mv__catch {
    line-height: 1.6;
    font-size: min(36px, 5.8666666667vw);
  }
}
#top-page .mv__sup {
  margin-left: 3px;
  vertical-align: text-top;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-size: 12px;
  font-weight: 700;
}
#top-page .mv__logo {
  display: inline-block;
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  #top-page .mv__logo {
    width: min(250px, 49.0666666667vw);
  }
}
#top-page .mv__logo.mv__logo--01 {
  margin-top: 8px;
}
#top-page .mv__logo.mv__logo--02 {
  max-width: 210px;
}
@media screen and (max-width: 767px) {
  #top-page .mv__logo.mv__logo--02 {
    width: min(210px, 45.3333333333vw);
  }
}
#top-page .mv__note {
  margin-top: 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/*==========================
下層/MV
==========================*/
.sub__mv {
  position: relative;
  height: 320px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sub__mv {
    height: 240px;
    margin-top: 60px;
  }
}
.sub__mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

#topics-archive .sub__mv,
#topics-single .sub__mv {
  background-image: url("../img/header-topics-pc.jpg");
  background-image: url("../img/header-topics-pc.webp");
}
@media screen and (max-width: 767px) {
  #topics-archive .sub__mv,
  #topics-single .sub__mv {
    background-image: url("../img/header-topics-sp.jpg");
    background-image: url("../img/header-topics-sp.webp");
  }
}

#works-archive .sub__mv,
#works-single .sub__mv {
  background-image: url("../img/header-work-pc.jpg");
  background-image: url("../img/header-work-pc.webp");
}
@media screen and (max-width: 767px) {
  #works-archive .sub__mv,
  #works-single .sub__mv {
    background-image: url("../img/header-work-sp.jpg");
    background-image: url("../img/header-work-sp.webp");
  }
}

#feature-archive .sub__mv,
#feature-single .sub__mv {
  background-image: url("../img/header-feature-pc.jpg");
  background-image: url("../img/header-feature-pc.webp");
}
@media screen and (max-width: 767px) {
  #feature-archive .sub__mv,
  #feature-single .sub__mv {
    background-image: url("../img/header-feature-sp.jpg");
    background-image: url("../img/header-feature-sp.webp");
  }
}

#service .sub__mv {
  background-image: url("../img/header-service-pc.jpg");
  background-image: url("../img/header-service-pc.webp");
}
@media screen and (max-width: 767px) {
  #service .sub__mv {
    background-image: url("../img/header-service-sp.jpg");
    background-image: url("../img/header-service-sp.webp");
  }
}

#faq .sub__mv {
  background-image: url("../img/header-faq-pc.jpg");
  background-image: url("../img/header-faq-pc.webp");
}
@media screen and (max-width: 767px) {
  #faq .sub__mv {
    background-image: url("../img/header-faq-sp.jpg");
    background-image: url("../img/header-faq-sp.webp");
  }
}

#company .sub__mv {
  background-image: url("../img/header-company-pc.jpg");
  background-image: url("../img/header-company-pc.webp");
}
@media screen and (max-width: 767px) {
  #company .sub__mv {
    background-image: url("../img/header-company-sp.jpg");
    background-image: url("../img/header-company-sp.webp");
  }
}

#privacy .sub__mv {
  background-image: url("../img/header-privacypolicy-pc.jpg");
  background-image: url("../img/header-privacypolicy-pc.webp");
}
@media screen and (max-width: 767px) {
  #privacy .sub__mv {
    background-image: url("../img/header-privacypolicy-sp.jpg");
    background-image: url("../img/header-privacypolicy-sp.webp");
  }
}

#contact .sub__mv,
#thanks-contact .sub__mv {
  background-image: url("../img/header-contact-pc.jpg");
  background-image: url("../img/header-contact-pc.webp");
}
@media screen and (max-width: 767px) {
  #contact .sub__mv,
  #thanks-contact .sub__mv {
    background-image: url("../img/header-contact-sp.jpg");
    background-image: url("../img/header-contact-sp.webp");
  }
}

#catalog .sub__mv,
#thanks-catalog .sub__mv {
  background-image: url("../img/header-catalog-pc.jpg");
  background-image: url("../img/header-catalog-pc.webp");
}
@media screen and (max-width: 767px) {
  #catalog .sub__mv,
  #thanks-catalog .sub__mv {
    background-image: url("../img/header-catalog-sp.jpg");
    background-image: url("../img/header-catalog-sp.webp");
  }
}

#reservation .sub__mv,
#thanks-reservation .sub__mv {
  background-image: url("../img/header-showroom-pc.jpg");
  background-image: url("../img/header-showroom-pc.webp");
}
@media screen and (max-width: 767px) {
  #reservation .sub__mv,
  #thanks-reservation .sub__mv {
    background-image: url("../img/header-showroom-sp.jpg");
    background-image: url("../img/header-showroom-sp.webp");
  }
}

#consultation .sub__mv,
#thanks-consultation .sub__mv {
  background-image: url("../img/header-online-pc.jpg");
  background-image: url("../img/header-online-pc.webp");
}
@media screen and (max-width: 767px) {
  #consultation .sub__mv,
  #thanks-consultation .sub__mv {
    background-image: url("../img/header-online-sp.jpg");
    background-image: url("../img/header-online-sp.webp");
  }
}

.sub__mv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 140px 40px 30px 40px;
}
@media screen and (max-width: 767px) {
  .sub__mv__inner {
    justify-content: center;
    padding: 20px;
  }
}

.sub__mv__title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(64px, 6.1111111111vw, 88px);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .sub__mv__title {
    font-size: 46px;
  }
}

#contact .sub__mv__title,
#thanks-contact .sub__mv__title,
#catalog .sub__mv__title,
#thanks-catalog .sub__mv__title,
#consultation .sub__mv__title,
#thanks-consultation .sub__mv__title,
#reservation .sub__mv__title,
#thanks-reservation .sub__mv__title {
  font-family: "Libre Baskerville", serif;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
}
@supports not (-webkit-text-stroke: 1px #fff) {
  #contact .sub__mv__title,
  #thanks-contact .sub__mv__title,
  #catalog .sub__mv__title,
  #thanks-catalog .sub__mv__title,
  #consultation .sub__mv__title,
  #thanks-consultation .sub__mv__title,
  #reservation .sub__mv__title,
  #thanks-reservation .sub__mv__title {
    text-shadow: 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
  }
}

.sub__mv__subtitle {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .sub__mv__subtitle {
    font-size: 18px;
  }
}

/*==========================
パンくず
==========================*/
.breadcrumbs {
  padding-block: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  font-size: 12px;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding-block: 12px;
    font-size: 10px;
  }
}
.breadcrumbs .inner > *:not(:last-child) {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .inner > *:not(:last-child) {
    margin-right: 6px;
  }
}

/*==========================
TOPページ／event cta
==========================*/
#top-page .mv-cta {
  position: relative;
  margin: -130px auto 0;
  padding: 0 min(120px, 8.3333333333vw) 50px;
  box-sizing: content-box;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta {
    margin: -35vh auto 0;
    padding: 0 20px 40px;
  }
}
#top-page .mv-cta .inner {
  max-width: 1200px;
  border-radius: 24px;
  background: #F5F1ED;
  padding: min(40px, 2.7777777778vw);
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta .inner {
    padding: 20px;
  }
}
#top-page .mv-cta__top {
  display: flex;
  align-items: flex-end;
  gap: 4vw;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__top {
    flex-direction: column;
    gap: 16px;
  }
}
#top-page .mv-cta__header {
  display: flex;
  align-items: flex-end;
  width: 56%;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__header {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
#top-page .mv-cta__header-main {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__header-main {
    width: 100%;
  }
}
#top-page .mv-cta__title-area {
  text-align: center;
}
#top-page .mv-cta__title {
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-size: clamp(12px, 1.5277777778vw, 22px);
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__title {
    line-height: 1.4;
    font-size: 12px;
  }
}
#top-page .mv-cta__staff {
  max-width: clamp(70px, 7.5694444444vw, 109px);
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__staff {
    max-width: min(55px, 14.6666666667vw);
  }
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__lead {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 15px;
    background: #fff;
  }
}
#top-page .mv-cta__lead span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 18px 16px;
  border-radius: 4px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__lead span {
    margin-top: 0;
    padding: 0;
  }
}
#top-page .mv-cta__lead-icon {
  width: 15px;
}
#top-page .mv-cta__lead-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#top-page .mv-cta__lead-text {
  font-size: clamp(12px, 1.1111111111vw, 16px);
  font-weight: 700;
  color: #543B29;
  line-height: 1.2;
}
#top-page .mv-cta__gallery {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
#top-page .mv-cta__gallery-item {
  width: 31%;
}
#top-page .mv-cta__links {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__links {
    flex-direction: column;
    gap: 16px;
    margin-top: 14px;
  }
}
#top-page .mv-cta__links .btn__group {
  width: 32%;
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__links .btn__group {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #top-page .mv-cta__links .btn__lead {
    font-size: clamp(11px, 0.9722222222vw, 14px);
  }
}
#top-page .mv-cta__links .btn-secondary {
  min-height: 60px;
}
#top-page .mv-cta__links .btn-tel {
  min-height: 60px;
}
#top-page .mv-cta__links .btn-tel__number {
  font-size: clamp(16px, 1.5277777778vw, 22px);
}
@media screen and (max-width: 767px) {
  #top-page .mv-cta__links .btn-tel__number {
    font-size: 22px;
  }
}

/*==========================
TOPページ／feature
==========================*/
#top-page .feature {
  padding-block: 50px;
}
@media screen and (max-width: 767px) {
  #top-page .feature {
    padding-block: 40px;
  }
}
#top-page .feature__button {
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  #top-page .feature__button {
    margin-top: 32px;
  }
}
#top-page .feature__button .btn-primary {
  width: 100%;
  height: 60px;
  max-width: 388px;
}
#top-page .feature__button .btn-primary::before {
  background-image: url(../img/icon_doc_white.svg);
}
#top-page .feature__button .btn-primary:hover::before {
  background-image: url(../img/icon_doc_brown.svg);
}

/*==========================
TOPページ／consultation
==========================*/
#top-page .consultation {
  padding-block: 50px;
}
@media screen and (max-width: 767px) {
  #top-page .consultation {
    padding-block: 120px 40px;
  }
}
#top-page .consultation__head {
  position: relative;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__head {
    padding-bottom: 0;
  }
}
#top-page .consultation__head::before {
  position: absolute;
  display: block;
  content: "";
  top: -72px;
  right: 0;
  aspect-ratio: 651/604;
  width: 55%;
  height: auto;
  background: url(../img/consultation_bg.jpg) no-repeat right top/contain;
  opacity: 0.3;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__head::before {
    top: -80px;
    right: -20px;
    width: 65%;
  }
}
#top-page .consultation__content {
  margin-top: 32px;
}
#top-page .consultation__lead {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 20px;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__lead {
    font-size: 16px;
  }
}
#top-page .consultation__description {
  margin-top: 24px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__description {
    font-size: 15px;
  }
}
#top-page .consultation__card__list {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__card__list {
    gap: 32px;
    margin-top: 30px;
  }
}
#top-page .consultation__card__list .card__item {
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
#top-page .consultation__card__list .card__image {
  border-radius: 4px;
  aspect-ratio: 29/16;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__card__list .card__image {
    aspect-ratio: 335/240;
  }
}
#top-page .consultation__card__list .card__body {
  padding: 32px 24px 24px;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__card__list .card__body {
    padding: 16px 20px;
  }
}
#top-page .consultation__card__list .card__title {
  margin-top: 0;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #top-page .consultation__button {
    text-align: center;
  }
}
#top-page .consultation__button .btn-primary {
  margin-top: 24px;
  width: 100%;
  height: 60px;
}
#top-page .consultation__button .btn-primary::before {
  background-image: url(../img/icon_calendar.svg);
}
#top-page .consultation__button .btn-primary:hover::before {
  background-image: url(../img/icon_calendar_brown.svg);
}
@media screen and (max-width: 767px) {
  #top-page .consultation__button .btn-primary {
    max-width: 388px;
    margin-top: 16px;
  }
}

/*==========================
TOPページ／features(タブ)
==========================*/
#top-page .features-tab {
  max-width: 1200px;
  margin: 0 auto;
  padding-block: 50px;
  padding-right: min(120px, 8.3333333333vw);
  padding-left: min(120px, 8.3333333333vw);
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab {
    padding-block: 40px;
    padding-right: 0;
    padding-left: 0;
  }
}
#top-page .features-tab__input {
  display: none;
}
#top-page .features-tab__tab-list {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__tab-list {
    gap: 4px;
  }
}
#top-page .features-tab__tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 8px) / 2);
  height: 80px;
  border: 2px solid #662700;
  border-bottom: 0px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 1.6666666667vw, 24px);
  font-weight: 700;
  color: #662700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#top-page .features-tab__tab-item:hover {
  background-color: #662700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__tab-item {
    width: calc((100% - 4px) / 2);
    height: 40px;
    padding-inline: 8px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    line-height: 1.3;
    font-size: min(14px, 3.7333333333vw);
  }
}
#top-page .features-tab__content {
  display: none;
  padding: 64px min(80px, 5.5555555556vw);
  background: #F5F1ED;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__content {
    padding: 64px 20px;
  }
}
#top-page {
  /* コンテンツ切り替え */
}
#top-page #features-tab-buy:checked ~ #features-tab-buy-content {
  display: block;
}
#top-page #features-tab-current:checked ~ #features-tab-current-content {
  display: block;
}
#top-page {
  /* アクティブタブ */
}
#top-page #features-tab-buy:checked ~ .features-tab__tab-list .features-tab__tab-item:nth-child(1),
#top-page #features-tab-current:checked ~ .features-tab__tab-list .features-tab__tab-item:nth-child(2) {
  background-color: #662700;
  color: #fff;
}
#top-page .features-tab__layout {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
#top-page .features-tab__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__header {
    flex-direction: column-reverse;
    gap: 32px;
  }
}
#top-page .features-tab__header .section__title {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__header .section__title {
    width: 100%;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
#top-page .features-tab__header-text {
  width: 59%;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__header-text {
    width: 100%;
  }
}
#top-page .features-tab__header .section__title-main {
  font-size: clamp(64px, 6.9444444444vw, 100px);
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__header .section__title-main {
    font-size: 46px;
  }
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__header .section__title-sub {
    font-size: 15px;
  }
}
#top-page .features-tab__lead {
  line-height: 1.5;
  letter-spacing: -0.06em;
  font-size: clamp(20px, 2.2222222222vw, 32px);
  color: #662700;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__lead {
    letter-spacing: 0;
    font-size: 20px;
  }
}
#top-page .features-tab__lead span {
  font-weight: 700;
}
#top-page .features-tab__body {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__body {
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }
}
#top-page .features-tab__body-text {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__body-text {
    width: 100%;
  }
}
#top-page .features-tab__body-media {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__body-media {
    width: 100%;
  }
}
#top-page .features-tab__body-media img {
  width: 100%;
}
#top-page .features-tab__copy {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 20px;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__copy {
    font-size: 16px;
  }
}
#top-page .features-tab__desc {
  line-height: 2;
  letter-spacing: 0.04em;
}
#top-page .features-tab__desc:not(:first-of-type) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__desc {
    margin-top: 28px;
    font-size: 15px;
  }
}
#top-page .features-tab__desc + .features-tab__copy {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  #top-page .features-tab__desc + .features-tab__copy {
    margin-top: 24px;
  }
}

/*==========================
TOPページ／gallery
==========================*/
#top-page .gallery {
  padding-bottom: 100px;
  overflow: hidden;
  background-color: #F5F1ED;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
@media screen and (max-width: 767px) {
  #top-page .gallery__track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
    animation: gallery-marquee 22s linear infinite;
    will-change: transform;
  }
}
#top-page .gallery__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  #top-page .gallery__list {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
#top-page .gallery__item {
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 320/380;
  width: 22.4%;
  height: auto;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  #top-page .gallery__item {
    aspect-ratio: 240/280;
    width: 240px;
  }
}
#top-page .gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-page .gallery__list--clone {
  display: none;
}
@media screen and (max-width: 767px) {
  #top-page .gallery__list--clone {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
}
@keyframes gallery-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*==========================
TOPページ／service
==========================*/
#top-page .service {
  padding-block: 50px 100px;
}
@media screen and (max-width: 767px) {
  #top-page .service {
    padding-block: 40px;
  }
}
#top-page .service .inner {
  max-width: 900px;
}
#top-page .service__img {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #top-page .service__img {
    margin-top: 32px;
  }
}
#top-page .service__description {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #top-page .service__description {
    margin-top: 32px;
  }
}
#top-page .service__text {
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #top-page .service__text {
    font-size: 15px;
  }
}
#top-page .service__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top-page .service__button {
    margin-top: 32px;
  }
}
#top-page .service__button .btn-primary {
  width: 100%;
  height: 60px;
  max-width: 388px;
}
@media screen and (max-width: 767px) {
  #top-page .service__button .btn-primary {
    margin-top: 32px;
  }
}
#top-page .service__button .btn-primary::before {
  background-image: url(../img/icon_house_white.svg);
}
#top-page .service__button .btn-primary:hover::before {
  background-image: url(../img/icon_house_brown.svg);
}

/*==========================
TOPページ／works
==========================*/
#top-page .works {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  #top-page .works {
    padding-block: 40px;
  }
}
#top-page .works__card__list {
  margin-top: 40px;
}
#top-page .works__button {
  margin-top: 40px;
  text-align: center;
}
#top-page .works__button .btn-primary {
  width: 100%;
  height: 60px;
  max-width: 388px;
}
@media screen and (max-width: 767px) {
  #top-page .works__button .btn-primary {
    margin-top: 32px;
  }
}
#top-page .works__button .btn-primary::before {
  background-image: url(../img/icon_chat2_white.svg);
}
#top-page .works__button .btn-primary:hover::before {
  background-image: url(../img/icon_chat2_brown.svg);
}

/*==========================
TOPページ／showroom
==========================*/
#top-page .showroom {
  padding-block: 100px;
  background: #F5F1ED;
}
@media screen and (max-width: 767px) {
  #top-page .showroom {
    padding-block: 40px;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  #top-page .showroom .section__title-main {
    color: #fff;
    -webkit-text-stroke: 1px #BFAFAA;
  }
}
#top-page .showroom__header {
  display: flex;
  justify-content: space-between;
  gap: min(64px, 4.4444444444vw);
}
@media screen and (max-width: 767px) {
  #top-page .showroom__header {
    flex-direction: column;
    gap: 32px;
  }
}
#top-page .showroom__header .section__title {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__header .section__title {
    width: 100%;
  }
}
#top-page .showroom__header .section__title-main {
  font-size: clamp(48px, 6.9444444444vw, 100px);
}
@media screen and (max-width: 767px) {
  #top-page .showroom__header .section__title-main {
    font-size: 46px;
  }
}
#top-page .showroom__content {
  flex: 1;
  align-self: flex-end;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__content {
    width: 100%;
    margin-top: 0;
  }
}
#top-page .showroom__lead {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: clamp(17px, 1.3888888889vw, 20px);
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__lead {
    font-size: 16px;
  }
}
#top-page .showroom__description {
  margin-top: 24px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__description {
    line-height: 2;
    margin-top: 16px;
    font-size: 15px;
  }
}
#top-page .showroom__body {
  background-color: #ffffff;
  margin-top: 64px;
  padding: 40px;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__body {
    margin-top: 32px;
    padding: 0;
    border-radius: 0;
  }
}
#top-page .showroom__gallery {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__gallery {
    gap: 8px;
  }
}
#top-page .showroom__gallery-item {
  overflow: hidden;
  width: calc((100% - 24px) / 3);
  aspect-ratio: 252/270;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__gallery-item {
    aspect-ratio: 1/1;
    width: calc((100% - 16px) / 3);
  }
}
#top-page .showroom__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-page .showroom__overview {
  max-width: 800px;
  margin: 32px auto 0;
}
#top-page .showroom__title {
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__title {
    font-size: 20px;
  }
}
#top-page .showroom__details {
  margin-top: 24px;
  border-top: 1px solid #DFDFDF;
}
#top-page .showroom__detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0px;
  border-bottom: 1px solid #DFDFDF;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__detail-row {
    font-size: 15px;
  }
  #top-page .showroom__detail-row:first-child {
    border-bottom: none;
  }
}
#top-page .showroom__detail-label {
  width: 80px;
}
#top-page .showroom__detail-value {
  flex: 1;
}
#top-page .showroom__detail-tel {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
#top-page .showroom__detail-tel:hover {
  opacity: 0.6;
}
#top-page .showroom__map {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__map {
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #DFDFDF;
  }
}
#top-page .showroom__map iframe {
  height: 240px;
}
#top-page .showroom__map-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__map-link {
    margin-top: 18px;
  }
}
#top-page .showroom__map-link:hover {
  opacity: 0.7;
}
#top-page .showroom__map-link__icon {
  display: inline-block;
  aspect-ratio: 4/5;
  width: 16px;
}
#top-page .showroom__map-text {
  text-decoration: underline;
}
#top-page .showroom__detail-text + .showroom__detail-text {
  margin-top: 28px;
}
#top-page .showroom__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__cta {
    margin-top: 32px;
  }
}
#top-page .showroom__cta .btn__group {
  width: calc((100% - 24px) / 2);
}
@media screen and (max-width: 767px) {
  #top-page .showroom__cta .btn__group {
    width: 100%;
  }
}
#top-page .showroom__cta .btn__group:last-child {
  width: 100%;
}
#top-page .showroom__cta .btn-secondary,
#top-page .showroom__cta .btn-tel {
  min-height: 60px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__cta .btn-tel__inner {
    flex-direction: column;
  }
}
#top-page .showroom__cta .btn-tel__number {
  font-size: clamp(16px, 1.5277777778vw, 22px);
}
@media screen and (max-width: 767px) {
  #top-page .showroom__cta .btn-tel__number {
    font-size: 22px;
  }
}
#top-page .showroom__company {
  max-width: 800px;
  margin: 64px auto 0;
  padding: 40px 40px 48px;
  border-radius: 24px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company {
    margin-block: 0;
    padding: 64px 0 40px;
  }
}
#top-page .showroom__company__header {
  padding-bottom: 34px;
  border-bottom: 1px solid #dfdfdf;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__header {
    padding-bottom: 24px;
  }
}
#top-page .showroom__company__title {
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__title {
    font-size: 20px;
  }
}
#top-page .showroom__company__body {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__body {
    margin-top: 24px;
  }
}
#top-page .showroom__company__lead {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__lead {
    align-items: stretch;
    gap: 16px;
  }
}
#top-page .showroom__company__image {
  width: 27%;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__image {
    width: 30%;
  }
}
#top-page .showroom__company__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-page .showroom__company__heading-group {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__heading-group {
    align-self: center;
  }
}
#top-page .showroom__company__heading {
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 20px;
  font-weight: 700;
  color: #543B29;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__heading {
    font-size: 15px;
  }
}
#top-page .showroom__company__logo {
  max-width: 295px;
  margin-top: 8px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__logo {
    max-width: 216px;
  }
}
#top-page .showroom__company__text-group {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__text-group {
    margin-top: 24px;
  }
}
#top-page .showroom__company__text {
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__text {
    line-height: 2;
    font-size: 15px;
  }
}
#top-page .showroom__company__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__button {
    margin-top: 14px;
  }
}
#top-page .showroom__company__button .btn-primary {
  width: 100%;
  max-width: 388px;
  height: 60px;
}
#top-page .showroom__company__button .btn-primary::before {
  background-image: url(../img/icon_company_white.svg);
}
#top-page .showroom__company__button .btn-primary:hover::before {
  background-image: url(../img/icon_company_brown.svg);
}
#top-page .showroom__company__button .btn-primary__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #top-page .showroom__company__button .btn-primary__text {
    font-size: 14px;
  }
}

/*==========================
TOPページ／topics
==========================*/
#top-page .topics {
  padding-block: 100px;
  border-radius: 32px;
  background: url("../img/topics_bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  #top-page .topics {
    padding: 80px 20px;
    border-radius: 24px;
  }
}
#top-page .topics .inner {
  padding: 40px;
  box-sizing: border-box;
  border-radius: 24px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  #top-page .topics .inner {
    padding: 40px 20px;
  }
}
#top-page .topics__layout {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  #top-page .topics__layout {
    display: block;
  }
}
#top-page .topics__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24%;
}
@media screen and (max-width: 767px) {
  #top-page .topics__left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #top-page .topics__left .section__title {
    text-align: center;
  }
}
#top-page .topics__left .section__title-main {
  font-size: clamp(48px, 4.4444444444vw, 64px);
}
@media screen and (max-width: 767px) {
  #top-page .topics__left .section__title-main {
    font-size: 46px;
  }
}
#top-page .topics__right {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #top-page .topics__right {
    margin-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #top-page .topics__button {
    margin-top: 24px;
    text-align: center;
  }
}
#top-page .topics__button .btn-primary {
  width: 100%;
  max-width: 270px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  #top-page .topics__button .btn-primary {
    max-width: 388px;
  }
}
#top-page .topics__button .btn-primary::before {
  background-image: url(../img/icon_memo_white.svg);
}
#top-page .topics__button .btn-primary:hover::before {
  background-image: url(../img/icon_memo_brown.svg);
}
#top-page .topics__button .btn-primary__text {
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
#top-page .topics-item {
  padding-block: 24px;
  border-bottom: 1px dashed #c9c9c9;
}
@media screen and (max-width: 767px) {
  #top-page .topics-item {
    padding-block: 20px 24px;
  }
}
#top-page .topics-item:first-child {
  border-top: 1px dashed #c9c9c9;
}
#top-page .topics-item__link {
  display: block;
  transition: opacity 0.3s ease;
}
#top-page .topics-item__link:hover {
  opacity: 0.6;
}
#top-page .topics-item__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
#top-page .topics-item__label {
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s ease;
}
#top-page .topics-item__label:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #top-page .topics-item__label {
    padding: 4px 8px;
    font-size: 12px;
  }
}
#top-page .topics-item__label--news {
  background-color: #8a5b43;
}
#top-page .topics-item__label--event {
  background-color: #4caf50;
}
#top-page .topics-item__date {
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #00282E;
}
@media screen and (max-width: 767px) {
  #top-page .topics-item__date {
    line-height: 2;
    font-size: 15px;
  }
}
#top-page .topics-item__text {
  margin-top: 6px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #00282E;
}
@media screen and (max-width: 767px) {
  #top-page .topics-item__text {
    margin-top: 8px;
    line-height: 2;
    font-size: 15px;
  }
}

/*==========================
TOPページ／CTA
==========================*/
@media screen and (max-width: 767px) {
  #top-page .cta .btn__lead {
    font-size: min(12px, 2.9333333333vw);
  }
}
@media screen and (max-width: 767px) {
  #top-page .cta .btn-secondary__text {
    font-size: min(14px, 3.7333333333vw);
  }
}

/*==========================
cta（共通パーツ）
==========================*/
.cta {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-block: 20px;
  }
}

.cta__radius {
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.cta .inner {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .cta .inner {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.cta .btn__group {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 767px) {
  .cta .btn__group {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .cta .btn__group:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cta .btn__lead {
    font-size: 12px;
  }
}
.cta .btn__lead span {
  font-weight: 700;
}
.cta .btn-secondary,
.cta .btn-tel {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .cta .btn-secondary,
  .cta .btn-tel {
    height: 50px;
  }
  .cta .btn-secondary::before,
  .cta .btn-tel::before {
    display: none;
  }
}
.cta .btn-secondary .btn-secondary__text,
.cta .btn-tel .btn-secondary__text {
  font-size: 14px;
}
/*==========================
CTA（2カラム）（共通パーツ）
==========================*/
@media screen and (max-width: 767px) {
  .cta__2col {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .cta__2col .inner {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cta__2col .btn__group {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cta__2col .btn-secondary {
    height: 60px;
  }
}
.cta__2col .btn-secondary--calender::before,
.cta__2col .btn-secondary--chat::before {
  display: block;
}

/*==========================
footer gallery
==========================*/
.footer__gallery {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .footer__gallery__track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
    animation: gallery-marquee 22s linear infinite;
    will-change: transform;
  }
}

.footer__gallery__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__gallery__list {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.footer__gallery__item {
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 22%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer__gallery__item {
    width: 240px;
  }
}

.footer__gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__gallery__list--clone {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__gallery__list--clone {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
}

/*==========================
page top
==========================*/
.page-top {
  width: 100%;
  font-family: "Libre Baskerville", serif;
  background-color: #d9d2cb;
  transition: opacity 0.3s ease;
}
.page-top:hover {
  opacity: 0.6;
}

.page-top__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .page-top__link {
    padding: 24px 0;
  }
}

.page-top__icon {
  width: 16px;
}

.page-top__text {
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-size: 14px;
  color: #543B29;
}

/*==========================
footer
==========================*/
.footer {
  background-color: #543B29;
  padding: 54px 0;
}

.footer__branding {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .footer__branding {
    flex-direction: column;
    justify-content: center;
  }
}

.footer__logo {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 140px;
  }
}

.footer__tagline {
  margin-top: 8px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__tagline {
    margin-top: 0;
    text-align: center;
  }
}

.footer__nav {
  margin-top: 14px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
}

.footer__nav-item {
  margin-right: 30px;
  margin-top: 15px;
}

.footer__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__cta {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.footer__cta .btn-primary {
  min-width: 240px;
}

.footer__copyright {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 60px;
    text-align: center;
  }
}

.footer__copyright-text {
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 10px;
  color: #fff;
}

/*==========================
footer（フォームページ用）
==========================*/
.footer--form {
  padding: 35px 0;
}
@media screen and (max-width: 767px) {
  .footer--form {
    padding: 64px 0 24px;
  }
}
.footer--form .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media screen and (max-width: 767px) {
  .footer--form .inner {
    display: block;
  }
}
.footer--form .footer__copyright {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .footer--form .footer__copyright {
    margin-top: 64px;
  }
}

/*==========================
下層／サービス紹介ページ
==========================*/
#service .service {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  #service .service {
    padding-block: 64px;
  }
}
#service .service__title {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 36px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #service .service__title {
    font-size: 20px;
  }
}
#service .service__about {
  padding-bottom: 64px;
}
#service .service__about-title {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #service .service__about-title {
    font-size: 20px;
  }
}
#service .service__about-text {
  margin-top: 24px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #service .service__about-text {
    font-size: 15px;
  }
}
#service .service__about-cards {
  display: flex;
  margin-top: 64px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #service .service__about-cards {
    flex-direction: column;
    gap: 40px;
  }
}
#service .service__about-card {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #service .service__about-card {
    width: 100%;
  }
}
#service .service__about-card__image {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  aspect-ratio: 29/18;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#service .service__about-card--standard .service__about-card__image {
  background-image: -webkit-image-set(url("../img/service_standard-bg.webp") type("image/webp"), url("../img/service_standard-bg.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/service_standard-bg.webp") type("image/webp"), url("../img/service_standard-bg.jpg") type("image/jpeg"));
}
#service .service__about-card--standard .service__about-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(61, 45, 34, 0.81);
}
#service .service__about-card--wellness .service__about-card__image {
  background-image: -webkit-image-set(url("../img/service_wellness-bg.webp") type("image/webp"), url("../img/service_wellness-bg.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/service_wellness-bg.webp") type("image/webp"), url("../img/service_wellness-bg.jpg") type("image/jpeg"));
}
#service .service__about-card--wellness .service__about-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(32, 87, 38, 0.81);
}
#service .service__about-card__image-content {
  text-align: center;
  z-index: 1;
}
#service .service__about-card__image-title {
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Libre Baskerville", serif;
  font-size: min(64px, 4.4444444444vw);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  #service .service__about-card__image-title {
    font-size: 32px;
  }
}
#service .service__about-card__image-subtitle {
  font-size: clamp(14px, 1.6666666667vw, 16px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  #service .service__about-card__image-subtitle {
    font-size: 15px;
  }
}
#service .service__about-card__title {
  margin-top: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #service .service__about-card__title {
    font-size: 16px;
  }
}
#service .service__about-card__text {
  margin-top: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #service .service__about-card__text {
    font-size: 15px;
  }
}
#service .service__plan {
  padding-block: 28px 64px;
}
@media screen and (max-width: 767px) {
  #service .service__plan {
    padding-block: 0 64px;
  }
}
#service .service__plan-header {
  text-align: center;
}
#service .service__plan-area-tabs {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  #service .service__plan-area-tabs {
    flex-wrap: wrap;
  }
}
#service .service__plan-area-tab {
  padding: 8px;
  border-radius: 2px;
  border: 1px solid #662700;
  line-height: 1;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  color: #662700;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #service .service__plan-area-tab {
    font-size: 15px;
  }
}
#service .service__plan-area-tab--active {
  background-color: #662700;
  color: #ffffff;
}
#service .service__plan-panels {
  margin-top: 24px;
}
#service .service__plan-panel {
  display: none;
  padding: 40px min(120px, 8.3333333333vw);
  background-color: #F5F1ED;
}
@media screen and (max-width: 767px) {
  #service .service__plan-panel {
    padding: 40px 20px;
  }
}
#service .service__plan-panel--active {
  display: block;
}
#service .service__plan-slide-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #service .service__plan-slide-tabs {
    gap: 24px;
  }
}
#service .service__plan-slide-tab {
  position: relative;
  padding: 0;
  background-color: transparent;
  border: none;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 16px;
  color: #1a1a1a;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#service .service__plan-slide-tab:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #service .service__plan-slide-tab {
    font-size: 14px;
  }
}
#service .service__plan-slide-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background-color: transparent;
  transition: 0.3s;
}
#service .service__plan-slide-tab--active::after {
  background-color: #1a1a1a;
}
#service .service__plan-swiper-wrap {
  position: relative;
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 0 min(120px, 8.3333333333vw);
}
@media screen and (max-width: 767px) {
  #service .service__plan-swiper-wrap {
    margin: 24px auto 0;
    padding: 0 20px;
  }
}
#service .service__plan-swiper {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
#service .service__plan-slide {
  align-self: center;
}
#service .service__plan-slide img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  #service .service__plan-slide img {
    max-height: 330px;
  }
}
#service .service__plan-arrow {
  position: absolute;
  top: 50%;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #service .service__plan-arrow {
    width: 15px;
  }
}
#service .service__plan-arrow--prev {
  left: 0;
  background-image: url("../img/icon_arrow_prev.svg");
}
#service .service__plan-arrow--next {
  right: 0;
  background-image: url("../img/icon_arrow_next.svg");
}
#service .service__usage {
  padding-block: 0 64px;
}
#service .service__usage-header {
  text-align: center;
}
#service .service__usage-cards {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  #service .service__usage-cards {
    flex-direction: column;
  }
}
#service .service__usage-card {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 767px) {
  #service .service__usage-card {
    width: 100%;
  }
}
#service .service__usage-card__image {
  width: 100%;
}
#service .service__usage-card__image img {
  width: 100%;
  aspect-ratio: 373/260;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service__usage-card__tags {
  display: flex;
  margin-top: 8px;
  gap: 8px;
}
#service .service__usage-card__tag {
  padding: 4px;
  border-radius: 2px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}
#service .service__usage-card__tag--standard {
  background-color: #543B29;
}
#service .service__usage-card__tag--wellness {
  background-color: #518055;
}
#service .service__usage-card__title {
  margin-top: 9px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #service .service__usage-card__title {
    font-size: 20px;
  }
}
#service .service__usage-card__text {
  margin-top: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #service .service__usage-card__text {
    font-size: 15px;
  }
}
#service .service__comparison-header {
  text-align: center;
}
#service .service__comparison-table-wrap {
  margin-top: 24px;
}
#service .service__comparison-table {
  table-layout: auto;
  border-collapse: collapse;
  width: 100%;
}
#service .service__comparison-table__head-cell {
  padding: 0 12px 6px;
  background-color: transparent;
}
#service .service__comparison-table__head-cell--empty {
  width: 15%;
  min-width: 170px;
  padding: 0 0 6px;
}
#service .service__comparison-table__head-cell--standard {
  width: 42.5%;
}
#service .service__comparison-table__head-cell--wellness {
  width: 42.5%;
}
#service .service__comparison-table__head-label {
  display: block;
  padding: 9px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 1.6666666667vw, 24px);
  font-weight: 600;
  color: #ffffff;
}
#service .service__comparison-table__head-label--standard {
  background-color: #543B29;
}
#service .service__comparison-table__head-label--wellness {
  background-color: #5b8a59;
}
#service .service__comparison-table__label,
#service .service__comparison-table__data {
  padding: 16px;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
  vertical-align: middle;
}
#service .service__comparison-table__label {
  width: 15%;
  min-width: 170px;
  border-left: 1px solid #DFDFDF;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 700;
  color: #543B29;
}
#service .service__comparison-table__data {
  width: 42.5%;
  border-left: 1px solid #DFDFDF;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}
#service .service__comparison-table__data--wellness {
  background: #F1F3F1;
}
#service .service__comparison-table__row .service__comparison-table__data:last-child {
  border-right: 1px solid #DFDFDF;
}
#service .service__comparison-sp__block + .service__comparison-sp__block {
  margin-top: 16px;
}
#service .service__comparison-sp__head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 8px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
#service .service__comparison-sp__head--standard {
  background-color: #543B29;
}
#service .service__comparison-sp__head--wellness {
  background-color: #5b8a59;
}
#service .service__comparison-sp__row {
  display: flex;
  border-top: 1px solid #DFDFDF;
}
#service .service__comparison-sp__row:first-of-type {
  margin-top: 8px;
}
#service .service__comparison-sp__row:last-of-type {
  border-bottom: 1px solid #DFDFDF;
}
#service .service__comparison-sp__label,
#service .service__comparison-sp__data {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  border-right: 1px solid #DFDFDF;
}
#service .service__comparison-sp__label {
  justify-content: center;
  width: 32%;
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 14px;
  color: #543B29;
}
#service .service__comparison-sp__data {
  flex: 1;
  border-right: 1px solid #DFDFDF;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 15px;
}
#service .service__comparison-sp__row:first-child .service__comparison-sp__label,
#service .service__comparison-sp__row:first-child .service__comparison-sp__data {
  border-top: 1px solid #DFDFDF;
}
#service .service__comparison-notes {
  margin-top: 24px;
}
#service .service__comparison-note {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/*==========================
下層／works一覧ページ
==========================*/
#works-archive .works-archive {
  padding-block: 20px 80px;
}
@media screen and (max-width: 767px) {
  #works-archive .works-archive {
    padding-block: 32px 64px;
  }
}
#works-archive .works-archive .card__title {
  font-size: clamp(18px, 1.5277777778vw, 22px);
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  #works-archive .works-archive .card__title {
    font-size: 16px;
  }
}

/*==========================
下層／works詳細ページ
==========================*/
#works-single .works-single {
  padding-block: 72px 0;
}
@media screen and (max-width: 767px) {
  #works-single .works-single {
    padding-block: 64px 0;
  }
}
#works-single .works-single__header {
  display: flex;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__header {
    display: block;
  }
}
#works-single .works-single__meta {
  width: 33.6%;
  padding: 6px 24px 6px 0;
  border-right: 1px solid #662700;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__meta {
    width: 100%;
    padding: 0 0 32px;
    border-right: none;
    border-bottom: 1px solid #662700;
  }
}
#works-single .works-single__number {
  font-family: "Libre Baskerville", serif;
  font-size: 40px;
  color: #662700;
}
#works-single .works-single__date {
  display: block;
  margin-top: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 500;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__date {
    margin-top: 14px;
  }
}
#works-single .works-single__date-label {
  font-size: 12px;
  font-weight: 500;
}
#works-single .works-single__name {
  margin-top: 8px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 20px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__name {
    margin-top: 8px;
    font-size: 16px;
  }
}
#works-single .works-single__info {
  margin-top: 16px;
}
#works-single .works-single__info-row {
  display: flex;
  gap: min(40px, 2.7777777778vw);
}
@media screen and (max-width: 767px) {
  #works-single .works-single__info-row {
    gap: 40px;
    font-size: 15px;
  }
}
#works-single .works-single__info-label {
  min-width: 66px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 600;
}
#works-single .works-single__info-text {
  letter-spacing: 0.04em;
  line-height: 1.7;
}
#works-single .works-single__concept {
  flex: 1;
  padding-left: 64px;
  padding: 6px 0 6px min(64px, 4.4444444444vw);
}
@media screen and (max-width: 767px) {
  #works-single .works-single__concept {
    padding: 32px 0 0;
  }
}
#works-single .works-single__lead {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__lead {
    display: block;
  }
}
#works-single .works-single__lead-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 8px 11px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background-color: #662700;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__lead-tag {
    padding: 8px;
  }
}
#works-single .works-single__title {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__title {
    margin-top: 6px;
    font-size: 16px;
  }
}
#works-single .works-single__body {
  margin-top: 24px;
}
#works-single .works-single__paragraph {
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  #works-single .works-single__paragraph {
    font-size: 15px;
  }
}
#works-single .works-single-text {
  margin-top: 64px;
}
#works-single .works-single-text__title {
  padding-bottom: 8px;
  border-bottom: 1px solid #E4DDD9;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 20px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #works-single .works-single-text__title {
    padding-bottom: 6px;
    font-size: 16px;
  }
}
#works-single .works-single-text__desc {
  margin-top: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #works-single .works-single-text__desc {
    font-size: 15px;
  }
}
#works-single .works-single-gallery {
  margin-top: 64px;
}
#works-single .works-single-gallery__title {
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #works-single .works-single-gallery__title {
    font-size: 16px;
  }
}
#works-single .works-single-gallery__list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #works-single .works-single-gallery__list {
    flex-direction: column;
  }
}
#works-single .works-single-gallery__item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  #works-single .works-single-gallery__item {
    width: 100%;
  }
}
#works-single .works-single-gallery__image {
  width: 100%;
  aspect-ratio: 29/20;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #works-single .works-single-gallery__image {
    aspect-ratio: 335/240;
  }
}
#works-single .works-single-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works-single .works-single-gallery__caption {
  margin-top: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #works-single .works-single-gallery__caption {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  #works-single #works-single .cta {
    padding-top: 64px;
  }
}

/*==========================
下層／feature（特集記事）一覧
==========================*/
#feature-archive .feature-archive {
  padding-block: 80px 0;
}
@media screen and (max-width: 767px) {
  #feature-archive .feature-archive {
    padding-block: 64px 0;
  }
}
#feature-archive .feature-archive__empty {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  #feature-archive .feature-archive__empty {
    text-align: center;
  }
}

/*==========================
下層／詳細ページ共通スタイル
==========================*/
.feature-single .has-sidebar__main h1,
.feature-single .has-sidebar__main h2,
.feature-single .has-sidebar__main h3,
.feature-single .has-sidebar__main h4,
.feature-single .has-sidebar__main h5,
.feature-single .has-sidebar__main h6,
.topics-single__content__container h1,
.topics-single__content__container h2,
.topics-single__content__container h3,
.topics-single__content__container h4,
.topics-single__content__container h5,
.topics-single__content__container h6 {
  margin: 24px 0;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main h1,
  .feature-single .has-sidebar__main h2,
  .feature-single .has-sidebar__main h3,
  .feature-single .has-sidebar__main h4,
  .feature-single .has-sidebar__main h5,
  .feature-single .has-sidebar__main h6,
  .topics-single__content__container h1,
  .topics-single__content__container h2,
  .topics-single__content__container h3,
  .topics-single__content__container h4,
  .topics-single__content__container h5,
  .topics-single__content__container h6 {
    margin-block: 16px;
  }
}
.feature-single .has-sidebar__main h1,
.topics-single__content__container h1 {
  font-size: 36px;
  font-weight: bold;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main h1,
  .topics-single__content__container h1 {
    font-size: 20px;
  }
}
.feature-single .has-sidebar__main h2,
.topics-single__content__container h2 {
  padding-bottom: 7px;
  border-bottom: 1px solid #D8BCAE;
  font-size: 24px;
  font-weight: 500;
}
.feature-single .has-sidebar__main h2:not(:first-child),
.topics-single__content__container h2:not(:first-child) {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main h2,
  .topics-single__content__container h2 {
    font-size: 18px;
  }
}
.feature-single .has-sidebar__main h3,
.topics-single__content__container h3 {
  margin-top: 48px;
  padding-left: 16px;
  border-left: 4px solid #662700;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main h3,
  .topics-single__content__container h3 {
    font-size: 16px;
  }
}
.feature-single .has-sidebar__main h4,
.topics-single__content__container h4 {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main h4,
  .topics-single__content__container h4 {
    font-size: 15px;
  }
}
.feature-single .has-sidebar__main h5,
.topics-single__content__container h5 {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main h5,
  .topics-single__content__container h5 {
    font-size: 14px;
  }
}
.feature-single .has-sidebar__main h6,
.topics-single__content__container h6 {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main h6,
  .topics-single__content__container h6 {
    font-size: 13px;
  }
}
.feature-single .has-sidebar__main p,
.topics-single__content__container p {
  margin: 24px 0;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main p,
  .topics-single__content__container p {
    margin: 16px 0;
    font-size: 15px;
  }
}
.feature-single .has-sidebar__main ul,
.feature-single .has-sidebar__main ol,
.topics-single__content__container ul,
.topics-single__content__container ol {
  margin: 24px 0;
  padding: 16px 8px 16px 40px;
  list-style: none;
  list-style-type: revert;
  line-height: 1.7;
  letter-spacing: 0.04em;
  background: #F6F2F0;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main ul,
  .feature-single .has-sidebar__main ol,
  .topics-single__content__container ul,
  .topics-single__content__container ol {
    margin: 16px 0;
    font-size: 15px;
  }
}
.feature-single .has-sidebar__main a,
.topics-single__content__container a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.feature-single .has-sidebar__main a:hover,
.topics-single__content__container a:hover {
  opacity: 0.6;
}
.feature-single .has-sidebar__main figure,
.topics-single__content__container figure {
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main figure,
  .topics-single__content__container figure {
    margin: 16px 0;
  }
}
.feature-single .has-sidebar__main .wp-element-caption,
.topics-single__content__container .wp-element-caption {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main .wp-element-caption,
  .topics-single__content__container .wp-element-caption {
    font-size: 10px;
  }
}
.feature-single .has-sidebar__main table,
.topics-single__content__container table {
  /* theadがある場合（thead内のth） */
}
.feature-single .has-sidebar__main table thead tr:first-child > th,
.topics-single__content__container table thead tr:first-child > th {
  background: #fff1dc;
  color: #662700;
}
.feature-single .has-sidebar__main table,
.topics-single__content__container table {
  /* theadがない場合（tbody or 直下の最初のtrのtd） */
}
.feature-single .has-sidebar__main table > tbody:first-child > tr:first-child > td,
.topics-single__content__container table > tbody:first-child > tr:first-child > td {
  background: #fff1dc;
  color: #662700;
}
.feature-single .has-sidebar__main table td,
.topics-single__content__container table td {
  border-color: #662700;
}
.feature-single .has-sidebar__main table th,
.feature-single .has-sidebar__main table td,
.topics-single__content__container table th,
.topics-single__content__container table td {
  line-height: 1.5;
}
.feature-single .has-sidebar__main mark.has-inline-color,
.topics-single__content__container mark.has-inline-color {
  background-color: transparent !important;
  background-image: linear-gradient(transparent 60%, #fef169 60%);
}
.feature-single .has-sidebar__main .feature_faq-q,
.feature-single .has-sidebar__main .feature_faq-a,
.topics-single__content__container .feature_faq-q,
.topics-single__content__container .feature_faq-a {
  text-indent: -30px;
  padding-left: 30px;
}
.feature-single .has-sidebar__main .feature_faq-q::first-letter,
.feature-single .has-sidebar__main .feature_faq-a::first-letter,
.topics-single__content__container .feature_faq-q::first-letter,
.topics-single__content__container .feature_faq-a::first-letter {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  color: red;
}
@media screen and (max-width: 767px) {
  .feature-single .has-sidebar__main .feature_faq-q::first-letter,
  .feature-single .has-sidebar__main .feature_faq-a::first-letter,
  .topics-single__content__container .feature_faq-q::first-letter,
  .topics-single__content__container .feature_faq-a::first-letter {
    font-size: 20px;
  }
}
.feature-single .has-sidebar__main .feature_faq-q,
.topics-single__content__container .feature_faq-q {
  font-weight: bold;
  color: #543B29;
}
.feature-single .has-sidebar__main .feature_faq-q::first-letter,
.topics-single__content__container .feature_faq-q::first-letter {
  color: #662700;
}
.feature-single .has-sidebar__main .feature_faq-a::first-letter,
.topics-single__content__container .feature_faq-a::first-letter {
  color: #f26a15;
}
.feature-single .has-sidebar__main #ez-toc-container,
.topics-single__content__container #ez-toc-container {
  padding: 30px;
}
.feature-single .has-sidebar__main #ez-toc-container li,
.feature-single .has-sidebar__main #ez-toc-container ul,
.feature-single .has-sidebar__main #ez-toc-container ul li,
.feature-single .has-sidebar__main div.ez-toc-widget-container,
.feature-single .has-sidebar__main div.ez-toc-widget-container li,
.topics-single__content__container #ez-toc-container li,
.topics-single__content__container #ez-toc-container ul,
.topics-single__content__container #ez-toc-container ul li,
.topics-single__content__container div.ez-toc-widget-container,
.topics-single__content__container div.ez-toc-widget-container li {
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.single-post__button {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .single-post__button {
    flex-direction: column;
    align-items: center;
    margin-top: 64px;
  }
}

.has-sidebar__container .single-post__button-prev,
.has-sidebar__container .single-post__button-archive,
.has-sidebar__container .single-post__button-next {
  width: 240px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .has-sidebar__container .single-post__button-prev,
  .has-sidebar__container .single-post__button-archive,
  .has-sidebar__container .single-post__button-next {
    width: 100%;
    max-width: 300px;
  }
}

.single-post__button-prev,
.single-post__button-archive,
.single-post__button-next {
  width: 300px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .single-post__button-prev,
  .single-post__button-archive,
  .single-post__button-next {
    width: 100%;
    max-width: 300px;
  }
}
.single-post__button-prev .btn-primary,
.single-post__button-archive .btn-primary,
.single-post__button-next .btn-primary {
  width: 100%;
  text-decoration: none !important;
}
.single-post__button-prev .btn-primary::before,
.single-post__button-archive .btn-primary::before,
.single-post__button-next .btn-primary::before {
  display: none;
}
.single-post__button-prev .btn-primary:hover,
.single-post__button-archive .btn-primary:hover,
.single-post__button-next .btn-primary:hover {
  opacity: 1 !important;
}
.single-post__button-prev .btn-primary__text,
.single-post__button-archive .btn-primary__text,
.single-post__button-next .btn-primary__text {
  font-size: clamp(12px, 1.1111111111vw, 16px);
}
@media screen and (max-width: 767px) {
  .single-post__button-prev .btn-primary__text,
  .single-post__button-archive .btn-primary__text,
  .single-post__button-next .btn-primary__text {
    font-size: 15px;
  }
}

/*==========================
下層／feature（特集記事）詳細ページ
==========================*/
#feature-single .feature-single {
  padding-block: 80px 0;
}
@media screen and (max-width: 767px) {
  #feature-single .feature-single {
    padding-block: 64px 0;
  }
}

/*==========================
下層／検索結果一覧・カテゴリー一覧ページ
==========================*/
.feature-archive__result {
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 36px;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  .feature-archive__result {
    font-size: 18px;
  }
}

/*==========================
サイドバー
==========================*/
.has-sidebar__container {
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .has-sidebar__container {
    display: block;
    padding-bottom: 42px;
  }
}

.has-sidebar__main {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .has-sidebar__main {
    width: 100%;
  }
}

.has-sidebar__inner {
  max-width: 700px;
  margin: 32px auto 0;
}

.sidebar {
  position: sticky;
  top: 114px;
  align-self: flex-start;
  flex: 1;
  min-width: 190px;
}
@media screen and (max-width: 767px) {
  .sidebar {
    position: static;
    top: auto;
  }
}

.sidebar__title {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #662700;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .sidebar__title {
    padding-bottom: 12px;
  }
}

.sidebar__block {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .sidebar__block {
    margin-top: 56px;
  }
}

.search-form {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 50px;
  border: 2px solid #662700;
  border-radius: 4px;
  overflow: hidden;
  background-color: #ffffff;
}

.search-field {
  width: calc(100% - 50px);
  min-width: 0;
  padding: 0 16px;
  border: none;
  outline: none;
  background-color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #1a1a1a;
}

.search-submit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  border: none;
  background-color: #662700;
  cursor: pointer;
}

.sidebar__category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar__category-item {
  padding: 6px;
  border-radius: 2px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 700;
  background-color: #662700;
  color: #fff;
  transition: opacity 0.3s ease;
}
.sidebar__category-item:hover {
  opacity: 0.6;
}

.sidebar__category-item--helpful {
  background-color: #71b932;
}

/*==========================
下層／TOPICS（トピックス）一覧・詳細共通
==========================*/
.topics__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topics__date {
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .topics__date {
    font-size: 14px;
  }
}

.topics__category {
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 700;
  background-color: #662700;
  color: #fff;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .topics__category {
    padding: 6px 8px;
    font-size: 12px;
  }
}
.topics__category:hover {
  opacity: 0.6;
}
.topics__category.topics__category--event {
  background: #63B83F;
}

/*==========================
下層／TOPICS（トピックス）一覧・カテゴリー一覧ページ（共通パーツ）
==========================*/
.topics-archive {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .topics-archive {
    padding-block: 68px;
  }
}

.topics-archive__item + .topics-archive__item {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .topics-archive__item + .topics-archive__item {
    margin-top: 44px;
  }
}

.topics-archive__link {
  transition: opacity 0.3s ease;
}
.topics-archive__link:hover {
  opacity: 0.6;
}

.topics-archive__title {
  margin-top: 8px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .topics-archive__title {
    font-size: 16px;
  }
}

.topics-archive__excerpt {
  margin-top: 8px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .topics-archive__excerpt {
    font-size: 15px;
  }
}

/*==========================
一覧ページ共通ページネーション
==========================*/
.archive__pagination {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .archive__pagination {
    margin-top: 64px;
  }
}

.archive__pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .archive__pagination-list {
    gap: 8px;
  }
}

.archive__pagination-item .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 30px;
  border-radius: 4px;
  border: 1px solid #662700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .archive__pagination-item .page-numbers {
    width: 24px;
    font-size: 14px;
  }
}
.archive__pagination-item .page-numbers.current {
  background: #662700;
  color: #fff;
}

/*==========================
下層／TOPICS（トピックス）詳細ページ
==========================*/
#topics-single .topics-single {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  #topics-single .topics-single {
    padding-block: 68px;
  }
}

/*==========================
下層／会社概要ページ
==========================*/
#company .section__title-main {
  color: #C3B0AA;
}
#company .company__promise .section__title-main {
  color: #A48D7D;
}
#company .company__mission {
  padding-block: 80px 100px;
}
@media screen and (max-width: 767px) {
  #company .company__mission {
    padding-block: 64px;
  }
}
#company .company__mission__text {
  margin-top: 32px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 32px;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #company .company__mission__text {
    margin-top: 36px;
    font-size: 16px;
  }
}
#company .company__promise {
  position: relative;
  padding-block: 100px;
  background: url(../img/header-company-pc.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  #company .company__promise {
    padding-block: 80px;
  }
}
#company .company__promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(84, 59, 41, 0.88);
  z-index: 0;
}
#company .company__promise .inner {
  position: relative;
  z-index: 1;
}
#company .company__promise .section__title-sub {
  color: #ffffff;
}
#company .company__promise-lead {
  margin-top: 36px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-size: 36px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  #company .company__promise-lead {
    margin-top: 32px;
    font-size: 16px;
  }
}
#company .company__promise-list {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  #company .company__promise-list {
    margin-top: 20px;
  }
}
#company .company__promise-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(228, 221, 217, 0.2);
}
@media screen and (max-width: 767px) {
  #company .company__promise-item {
    gap: 8px;
  }
}
#company .company__promise-number {
  line-height: 1;
  letter-spacing: -0.01em;
  font-family: "Libre Baskerville", serif;
  font-size: 32px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  #company .company__promise-number {
    font-size: 24px;
  }
}
#company .company__promise-text {
  line-height: 2;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #company .company__promise-text {
    font-size: 15px;
  }
}
#company .company__profile {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  #company .company__profile {
    padding-block: 80px;
  }
}
#company .company__profile .inner {
  display: flex;
  gap: min(64px, 4.4444444444vw);
}
@media screen and (max-width: 767px) {
  #company .company__profile .inner {
    display: block;
  }
}
#company .company__profile .section__title-main {
  font-size: min(64px, 4.4444444444vw);
}
@media screen and (max-width: 767px) {
  #company .company__profile .section__title-main {
    letter-spacing: -0.01em;
    font-size: 46px;
  }
}
#company .company__profile-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #company .company__profile-list {
    margin-top: 32px;
    font-size: 15px;
  }
}
#company .company__profile-head {
  width: 180px;
  padding: 16px;
  border-bottom: 1px solid #662700;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #company .company__profile-head {
    width: 100%;
    padding: 8px 16px 0;
    border-bottom: none;
  }
}
#company .company__profile-data {
  width: calc(100% - 180px);
  padding: 16px;
  border-bottom: 1px solid #DFDFDF;
}
@media screen and (max-width: 767px) {
  #company .company__profile-data {
    width: 100%;
    padding: 0 16px 8px;
  }
}
#company .company__history {
  padding-block: 100px;
  background: #F5F1ED;
}
@media screen and (max-width: 767px) {
  #company .company__history {
    padding-block: 80px;
  }
}
#company .company__history__container {
  padding: 80px 64px;
  background: #fff;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  #company .company__history__container {
    padding: 64px 20px;
    border-radius: 24px;
  }
}
#company .company__history-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #company .company__history-list {
    display: block;
    margin-top: 8px;
    font-size: 15px;
  }
}
#company .company__history-year {
  position: relative;
  width: 100px;
  padding: 24px 0 0 16px;
  padding-left: 18px;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #company .company__history-year {
    width: 100%;
  }
}
#company .company__history-year::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  transform: translateX(-50%);
  width: 1px;
  background: #662700;
}
#company .company__history-year:first-of-type::before {
  top: 36px;
  transform: translate(-50%);
}
#company .company__history-year:last-of-type::before {
  bottom: calc(100% - 36px);
  transform: translate(-50%);
}
#company .company__history-year::after {
  content: "";
  position: absolute;
  top: 38px;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #662700;
  z-index: 1;
}
#company .company__history-text {
  width: calc(100% - 100px);
  padding: 24px 0 0 16px;
}
@media screen and (max-width: 767px) {
  #company .company__history-text {
    position: relative;
    width: 100%;
    padding: 0 0 0 16px;
  }
  #company .company__history-text::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    transform: translateX(-50%);
    width: 1px;
    background: #662700;
  }
  #company .company__history-text:last-of-type::before {
    display: none;
  }
}
#company .company__history-note {
  margin: 24px auto 0;
  max-width: 800px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #company .company__history-note {
    margin-top: 32px;
    font-size: 15px;
  }
}
#company .company__history-note__link {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
#company .company__history-note__link:hover {
  opacity: 0.6;
}
#company .company__cta {
  position: relative;
  padding-block: 64px;
  background: url(../img/header-company-pc.webp) no-repeat center center/cover;
}
#company .company__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(84, 59, 41, 0.88);
  z-index: 0;
}
#company .company__cta .inner {
  position: relative;
  z-index: 1;
}
#company .company__cta__container {
  max-width: 800px;
  margin-inline: auto;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #company .company__cta__container {
    padding: 32px 20px;
    border-radius: 16px;
  }
}
#company .company__cta__container .btn__lead {
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  color: #543B29;
}
#company .company__cta__container .btn-secondary {
  flex-direction: row-reverse;
  gap: 8px;
  margin: 16px auto 0;
  max-width: 388px;
  border-color: #d9d2cb;
  background: #d9d2cb;
}
#company .company__cta__container .btn-secondary::before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/icon_link_brown.svg);
}
#company .company__cta__container .btn-secondary:hover {
  border-color: #543B29;
  background: #543B29;
}
#company .company__cta__container .btn-secondary:hover::before {
  background-image: url(../img/icon_link_beige.svg);
}
#company .company__cta__container .btn-secondary:hover .btn-secondary__text {
  color: #d9d2cb;
}
#company .company__cta__container .btn-secondary__text {
  font-size: 14px;
  color: #543B29;
}

/*==========================
下層／フォームページ共通
==========================*/
.form {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .form {
    padding-block: 64px;
  }
}

.form-step {
  margin-bottom: 56px;
}
.form-step .inner {
  max-width: 800px;
}

.form-step__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-step__item {
  position: relative;
  width: 28%;
  border: 1px solid #662700;
  background-color: #fff;
  padding: 11px;
}

.form-step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #662700;
  border-right: 2px solid #662700;
  transform: translateY(-50%) rotate(45deg);
}

.is-current {
  border: 1px solid #662700;
  background-color: #662700;
}
.is-current .form-step__text {
  color: #fff;
}

.form-step__text {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #662700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.layout-nocover .nocover-body .center-wrap {
  width: 800px;
}

.contact-links {
  margin-top: 40px;
}
.contact-links .inner {
  max-width: 800px;
}

.contact-links__item + .contact-links__item {
  margin-top: 16px;
}

.contact-links__link {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: underline;
  font-weight: 500;
  color: #662700;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact-links__link {
    line-height: 1.2;
  }
}
.contact-links__link:hover {
  opacity: 0.6;
}

.contact-links__link::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icon_arrow_right.svg) no-repeat center center/contain;
  left: 0;
}

/*==========================
下層／サンクスページ共通
==========================*/
.thanks .inner {
  max-width: 800px;
  margin-inline: auto;
}

.thanks__title {
  padding-bottom: 16px;
  border-bottom: 1px solid #E5DDD9;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .thanks__title {
    font-size: 24px;
  }
}

.thanks__text-container {
  max-width: 600px;
  margin: 40px auto 0;
}

.thanks__lead {
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  .thanks__lead {
    line-height: 1.5;
    font-size: 20px;
  }
}

.thanks__text {
  margin-top: 40px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.thanks__tel {
  margin-top: 40px;
}
.thanks__tel .btn-tel {
  min-height: 60px;
}
.thanks__tel .btn-tel__inner {
  flex-direction: column;
}
.thanks__tel .btn-tel__number {
  font-size: 22px;
}

.thanks__button {
  margin-top: 40px;
  text-align: center;
}
.thanks__button .btn-primary {
  position: relative;
  width: 100%;
  height: 60px;
  max-width: 300px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .thanks__button .btn-primary {
    max-width: 388px;
  }
}
.thanks__button .btn-primary::before {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icon_arrow_btn.svg);
}
.thanks__button .btn-primary:hover::before {
  background-image: url(../img/icon_arrow_btn_white.svg);
}
.thanks__button .btn-primary__text {
  font-size: 16px;
}

/*==========================
下層／プライバシーポリシーページ
==========================*/
#privacy .privacy {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  #privacy .privacy {
    padding-block: 64px;
  }
}
#privacy .privacy__text {
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__text {
    font-size: 15px;
  }
}
#privacy .privacy__text + .privacy__text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__text + .privacy__text {
    margin-top: 28px;
  }
}
#privacy .privacy__heading-title {
  margin-top: 64px;
  padding-bottom: 8px;
  border-bottom: 1px solid #543B29;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 36px;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__heading-title {
    font-size: 20px;
  }
}
#privacy .privacy__heading-title + .privacy__text {
  margin-top: 24px;
}
#privacy .privacy__list {
  margin-top: 26px;
  padding-left: 20px;
  list-style: none;
  list-style-type: revert;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__list {
    font-size: 15px;
  }
}
#privacy .privacy__item {
  line-height: 1.7;
  letter-spacing: 0.04em;
}
#privacy .privacy__item + .privacy__item {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  #privacy .privacy__item + .privacy__item {
    margin-top: 28px;
  }
}
#privacy .privacy__list-child {
  padding-left: 16px;
  list-style: none;
  list-style-type: revert;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/*==========================
下層／よくある質問ページ
==========================*/
#faq .faq {
  padding-block: 80px 0;
}
@media screen and (max-width: 767px) {
  #faq .faq {
    padding-block: 64px 0;
  }
}
#faq .faq-accordion__container {
  max-width: 1000px;
  margin-inline: auto;
}
#faq .faq-accordion__container + .faq-accordion__container {
  margin-top: 40px;
}
#faq .faq-header__title {
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #faq .faq-header__title {
    font-size: 20px;
  }
}
#faq .faq-accordion {
  margin-top: 24px;
  border-top: 1px solid #D8BCAE;
}
#faq .faq-accordion__item {
  border-bottom: 1px solid #D8BCAE;
}
#faq .faq-accordion__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 56px 26px 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #faq .faq-accordion__title {
    padding: 24px 48px 24px 0;
  }
}
#faq .faq-accordion__label {
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #faq .faq-accordion__label {
    font-size: 20px;
  }
}
#faq .faq-accordion__label--answer {
  color: #f26a15;
}
#faq .faq-accordion__question {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #543B29;
}
@media screen and (max-width: 767px) {
  #faq .faq-accordion__question {
    font-size: 15px;
  }
}
#faq .faq-accordion__content {
  display: none;
  padding: 0 56px 24px 0;
}
@media screen and (max-width: 767px) {
  #faq .faq-accordion__content {
    padding: 0 0 24px 0;
  }
}
#faq .faq-accordion__answer-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
#faq .faq-accordion__answer__text {
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #faq .faq-accordion__answer__text {
    line-height: 2;
    font-size: 15px;
  }
}
#faq .faq-accordion__answer__text + .faq-accordion__answer__text {
  margin-top: 16px;
}
#faq .faq-accordion__title::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 16px;
  height: 10px;
  background: url("../img/icon_arrow.svg") no-repeat center center/contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
}
#faq .faq-accordion__title.open::after {
  transform: translateY(-50%) rotate(180deg);
}
#faq .faq-cta {
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  #faq .faq-cta {
    margin-top: 40px;
  }
}
#faq .faq-cta__inner {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  #faq .faq-cta__inner {
    flex-direction: column;
    gap: 20px;
    padding-inline: 0;
  }
}
#faq .faq-cta__text-area {
  position: relative;
  width: 80%;
  max-width: 770px;
  margin-bottom: 32px;
  padding: 24px 40px;
  border-radius: 12px;
  background-color: #F5F1ED;
}
@media screen and (max-width: 767px) {
  #faq .faq-cta__text-area {
    width: 100%;
    margin-bottom: 0;
    padding: 20px;
  }
}
#faq .faq-cta__text-area::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -38px;
  width: 0;
  height: 0;
  border-bottom: 22px solid transparent;
  border-left: 40px solid #F5F1ED;
  transform: rotate(-7deg);
  transform-origin: left center;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #faq .faq-cta__text-area::after {
    display: none;
  }
}
#faq .faq-cta__lead {
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 20px;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #faq .faq-cta__lead {
    line-height: 1.7;
    letter-spacing: 0.04em;
    font-size: 18px;
  }
}
#faq .faq-cta__strong {
  font-weight: 700;
  color: #543B29;
}
#faq .faq-cta__sub {
  margin-top: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 700;
  color: #662700;
}
#faq .faq-cta__image {
  flex: 1;
  min-width: 100px;
}
@media screen and (max-width: 767px) {
  #faq .faq-cta__image {
    min-width: unset;
    max-width: 110px;
    margin-inline: auto;
  }
}

/*==========================
404ページ
==========================*/
#not-found-page .not-found-page {
  padding-block: 190px 80px;
  text-align: center;
  background: #F5F1ED;
}
@media screen and (max-width: 767px) {
  #not-found-page .not-found-page {
    padding-block: 140px 80px;
  }
}
#not-found-page .contents__title {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 48px;
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #not-found-page .contents__title {
    font-size: 30px;
  }
}
#not-found-page .contents__subtitle {
  font-weight: 700;
  color: #662700;
}
@media screen and (max-width: 767px) {
  #not-found-page .contents__subtitle {
    font-size: 14px;
  }
}
#not-found-page .not-found__desc {
  margin-top: 40px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #not-found-page .not-found__desc {
    font-size: 14px;
  }
}
#not-found-page .not-found-page__button {
  margin-top: 40px;
}
#not-found-page .not-found-page__button .btn-primary {
  position: relative;
  width: 100%;
  height: 60px;
  max-width: 300px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  #not-found-page .not-found-page__button .btn-primary {
    max-width: 388px;
  }
}
#not-found-page .not-found-page__button .btn-primary::before {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icon_arrow_btn.svg);
}
#not-found-page .not-found-page__button .btn-primary:hover::before {
  background-image: url(../img/icon_arrow_btn_white.svg);
}
#not-found-page .not-found-page__button .btn-primary__text {
  font-size: 16px;
}