@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

/***************************************
追加カスタムcss 202604～

変数は:rootセレクタ内にまとめています
料金一覧以外、今後はFLOCSSのルールに従ってクラス命名しています
メディアクエリは375px、768px、992pxの3段階で基本は記述しています。（一部例外あり）
共通パーツは変数の下にまとめています。
****************************************/

/* CSS変数 --------------------------------------------------------------- */
:root {
  --gc-bg-header:          #ffffff;
  --gc-color-gold:         #c9a84c;
  --gc-color-gold-light:   #e2cb8a;
  --gc-color-gold-dark:    #9a7430;
  --gc-color-gold-muted:    #bc9c22;
  --gc-color-gold-border:    #be9156;
  --gc-color-white:        #ffffff;
  --gc-color-dark:         #1a1a1a;
  --gc-color-gray: #d9d9d9;
  --gc-color-gray-border: #f5f3ef;
  --gc-color-text-sub:     rgba(30, 30, 30, 0.60);
  --gc-color-line-green:   #06c755;
  --gc-color-line-red:     #ff3131;
  --gc-gold-grad: linear-gradient(
    135deg,
    #9a7430 0%, #c9a84c 28%, #e2cb8a 50%, #c9a84c 72%, #9a7430 100%
  );
  --gc-header-h-pc:        80px;
  --gc-header-h-sp:        56px;
  --gc-fixed-contact-h:    60px;
  --gc-fixed-contact-h-sp: 60px;
  --gc-z-header:           1000;
  --gc-z-sp-menu:          1100;
  --gc-z-overlay:          1050;
  --gc-z-fixed:            900;
  --gc-easing:             0.25s ease;
  --gc-font-serif:         "Noto Serif JP", "游明朝", "Yu Mincho", serif;
}

/* 共通パーツ --------------------------------------------------------------- */
.u-tab_only,
.u-pc_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-mobile_only {
    display: none;
  }
  .u-tab_only {
    display: block;
  }
}
@media screen and (min-width: 980px) {
  .u-mobile-tab_only {
    display: none;
  }
  .u-tab_only {
    display: none;
  }
  .u-pc_only {
    display: block;
  }
}

/* ==========================================================================
  ヘッダー / SPドロワー / 追従ボタン / MV
========================================================================== */

/* ==========================================================================
  p-header
========================================================================== */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--gc-z-header);
  background-color: var(--gc-bg-header);
  border-bottom: 2px solid var(--gc-color-gold);
}

.p-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .p-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
}

/* ヘッダー右側コンテナ */
.p-header__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-header__right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 0;
  }
}

/* p-header__top --------------------------------------------------------- */
.p-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  gap: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-header__top {
    gap: 16px;
    padding: 10px 0 8px;
  }
}

/* ロゴ */
.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  max-width: 130px;
  width: 100%;
}
.p-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    padding-right: 6px;
    width: 15%;
    min-width: 120px;
    max-width: 170px;
  }
}

/* 営業情報 */
.p-header__meta {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__meta {
    display: block;
    min-width: 0;
  }
}

.p-header__meta-hours,
.p-header__meta-closed {
  margin: 0;
  font-size: clamp(0.625rem, 0.9vw, 0.75rem);
  line-height: 1.6;
  color: var(--gc-color-text-sub);
  font-family: var(--gc-font-serif);
}

/* アクションエリア */
.p-header__actions {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

/* 電話番号 */
.p-header__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;  
  justify-content: center;
  gap: 4px;
  color: var(--gc-color-gold);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: var(--gc-font-serif);
  -webkit-transition: all var(--gc-easing);
  transition: all var(--gc-easing);
}
@media (any-hover: hover) {
  .p-header__tel:hover {
    opacity: 0.85;
    transition: all var(--gc-easing);
  }
}
@media screen and (min-width: 768px) {
  .p-header__tel {
    -webkit-box-pack: start;
    -ms-flex-pack: start;  
    justify-content: flex-start;
    gap: 6px;
    font-size: 0.875rem;
  }
}

.p-header__tel-icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(59%) saturate(397%) hue-rotate(4deg) brightness(93%) contrast(88%);
  filter: brightness(0) saturate(100%) invert(65%) sepia(59%) saturate(397%) hue-rotate(4deg) brightness(93%) contrast(88%);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-header__tel-icon {
    width: 20px;
    height: 20px;
  }
}

/* CTAボタン共通 */
.p-header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  font-family: var(--gc-font-serif);
  border: 1px solid transparent;
  -webkit-transition: opacity var(--gc-easing), -webkit-transform var(--gc-easing), background var(--gc-easing), color var(--gc-easing), border-color var(--gc-easing);
  transition: opacity var(--gc-easing), transform var(--gc-easing), background var(--gc-easing), color var(--gc-easing), border-color var(--gc-easing);
}
@media screen and (min-width: 768px) {
  .p-header__btn {
    padding: 9px clamp(12px, 1.4vw, 18px);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
  }
}
@media (any-hover: hover) {
  .p-header__btn:hover {
    opacity: 0.85;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    transition: opacity var(--gc-easing), transform var(--gc-easing), background var(--gc-easing), color var(--gc-easing), border-color var(--gc-easing);
  }
}
.p-header__btn-icon,
.p-header__btn img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-header__btn-icon,
  .p-header__btn img {
    width: 20px;
    height: 20px;
  }
}

.p-header__btn--web {
  background: var(--gc-gold-grad);
  color: var(--gc-color-white);
  border-color: transparent;
}
@media (any-hover: hover) {
  .p-header__btn--web:hover {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    background: var(--gc-color-white);
    color: var(--gc-color-gold);
    border-color: var(--gc-color-gold);
  }
  .p-header__btn--web:hover img {
    -webkit-filter: brightness(0) saturate(100%) invert(72%) sepia(53%) saturate(436%) hue-rotate(4deg) brightness(85%) contrast(89%);
    filter: brightness(0) saturate(100%) invert(72%) sepia(53%) saturate(436%) hue-rotate(4deg) brightness(85%) contrast(89%);
  }
}

.p-header__btn--line {
  background: var(--gc-color-line-green);
  color: var(--gc-color-white);
  border-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-header__btn--line {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .p-header__btn--line .p-header__btn-icon {
    width: 24px;
    height: 24px;
  }
}
@media (any-hover: hover) {
  .p-header__btn--line:hover {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    background: var(--gc-color-white);
    color: var(--gc-color-line-green);
    border-color: var(--gc-color-line-green);
  }
}

/* ==========================================================================
   p-hamburger（SP専用）
========================================================================== */
.p-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 6px;
  width: 44px;
  height: 48px;
  padding: 5px 0 0;
  background: transparent;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-hamburger {
    display: none;
  }
}

.p-hamburger__line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gc-color-gold);
  border-radius: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-hamburger__line:nth-child(2) {
  width: 38px;
}

.p-hamburger__line:nth-child(3) {
  width: 32px;
}

.p-hamburger::after {
  content: "MENU";
  display: block;
  color: var(--gc-color-gold);
  font-family: var(--gc-font-serif);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1;
  margin-top: 3px;
  padding-left: 0.22em;
}

.p-hamburger.is-active .p-hamburger__line:nth-child(1) {
  width: 28px;
  -webkit-transform: translateY(6.5px) rotate(45deg);
  transform: translateY(6.5px) rotate(45deg);
}
.p-hamburger.is-active .p-hamburger__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.p-hamburger.is-active .p-hamburger__line:nth-child(3) {
  width: 28px;
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
  transform: translateY(-6.5px) rotate(-45deg);
}

.p-hamburger.is-active::after {
  opacity: 0;
}

/* ==========================================================================
  p-header__nav（PC用グローバルナビ・2段構成）
========================================================================== */
.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-header__nav-item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  padding: 8px 4px;
  text-decoration: none;
  text-align: center;
  font-family: var(--gc-font-serif);
  position: relative;
  overflow: hidden;
  -webkit-transition: background-color var(--gc-easing);
  transition: background-color var(--gc-easing);
}
.p-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gc-gold-grad);
  -webkit-transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  .p-header__nav-link:hover::after {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav-link {
    padding: 8px 6px;
  }
}

/* 1段目：英字 */
.p-header__nav-main {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gc-color-dark);
  letter-spacing: 0.1em;
  line-height: 1;
}

/* 2段目：日本語（ゴールド） */
.p-header__nav-sub {
  display: block;
  font-size: 0.625rem;
  color: var(--gc-color-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}


/* ドロップダウン */
/* ==========================================================================
  p-sp-menu（SPドロワーメニュー）
========================================================================== */
.p-sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  height: 100%;
  background-color: #ffffff;
  border-left: 2px solid var(--gc-color-gold);
  z-index: var(--gc-z-sp-menu);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.p-sp-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-sp-menu__inner {
  padding: 72px 0 40px;
}

.p-sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-sp-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 14px 38px 14px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  -webkit-transition: background-color var(--gc-easing);
  transition: background-color var(--gc-easing);
}

.p-sp-menu__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gc-color-gold);
  border-right: 1px solid var(--gc-color-gold);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.p-sp-menu__link-main {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gc-color-dark);
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: var(--gc-font-serif);
  white-space: nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-sp-menu__link-sub {
  display: block;
  width: 100%;
  font-size: 0.625rem;
  color: var(--gc-color-gold);
  letter-spacing: 0.04em;
  margin-top: 3px;
  font-weight: 400;
  font-family: var(--gc-font-serif);
  white-space: nowrap;
}

/* SP電話 */
.p-sp-menu__contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 10px;
  padding: 18px 20px 0;
}
.p-sp-menu__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  min-height: 46px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--gc-font-serif);
  text-decoration: none;
  border-radius: 3px;
}
.p-sp-menu__contact-link--tel img {
  -webkit-filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
  filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
}
.p-sp-menu__contact-link--line {
  color: #ffffff;
  background-color: var(--gc-color-line-green);
}
.p-sp-menu__contact-link--web {
  color: #1c1207;
  background: var(--gc-gold-grad);
}
.p-sp-menu__contact-link--web img {
    -webkit-filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
          filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
}

.p-sp-menu__contact-link img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* オーバーレイ */
.p-sp-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: var(--gc-z-overlay);
}
.p-sp-menu__overlay.is-open { display: block; }

/* ==========================================================================
  p-fixed-contact（追従コンタクトボタン）
========================================================================== */
.p-fixed-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--gc-z-fixed);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--gc-fixed-contact-h-sp);
  -webkit-box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .p-fixed-contact {
    left: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
    max-width: none;
    border-radius: 0;
    background: #ffffff;
    border-top: 2px solid var(--gc-color-gold);
    -webkit-box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
            box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    height: 70px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    padding: 12px 24px;
  }
  .p-fixed-contact__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 280px;
    min-width: 160px;
    border-radius: 4px;
    height: 44px;
    padding: 0 20px;
  }
}

.p-fixed-contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--gc-font-serif);
  -webkit-transition: opacity var(--gc-easing), -webkit-filter var(--gc-easing);
  transition: opacity var(--gc-easing), filter var(--gc-easing);
}
.p-fixed-contact__item:hover {
  opacity: 0.88;
  -webkit-filter: brightness(1.08);
          filter: brightness(1.08);
}
@media screen and (min-width: 768px) {
  .p-fixed-contact__item {
    font-size: 0.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8px;
  }
}

.p-fixed-contact__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.p-fixed-contact__icon img,
.p-fixed-contact__icon svg {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-fixed-contact__icon img,
  .p-fixed-contact__icon svg {
    width: 22px;
    height: 22px;
  }
  .p-fixed-contact__item--line .p-fixed-contact__icon img {
    width: 28px;
    height: 28px;
  }
}

.p-fixed-contact__text {
  display: block;
  line-height: 1;
}

/* 電話予約 */
.p-fixed-contact__item--tel {
  background: var(--gc-gold-grad);
  color: #1c1207;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.p-fixed-contact__item--tel .p-fixed-contact__icon img {
  -webkit-filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
  filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
}
.p-fixed-contact__item--tel .p-fixed-contact__icon svg { fill: #1c1207; }

/* LINE予約 */
.p-fixed-contact__item--line {
  background-color: var(--gc-color-line-green);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.p-fixed-contact__item--line .p-fixed-contact__icon svg { fill: #ffffff; }

/* WEB予約 */
.p-fixed-contact__item--web {
  background: linear-gradient(
    135deg,
    #7a5c1e 0%, #b8943e 28%, #d4b870 50%, #b8943e 72%, #7a5c1e 100%
  );
  color: #1c1207;
}
.p-fixed-contact__item--web .p-fixed-contact__icon img {
  -webkit-filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
          filter: brightness(0) saturate(100%) invert(6%) sepia(31%) saturate(1416%) hue-rotate(349deg) brightness(94%) contrast(95%);
}
.p-fixed-contact__item--web .p-fixed-contact__icon svg { fill: #1c1207; }

/* ==========================================================================
   p-sp-menu__close（SPドロワー閉じるボタン）
========================================================================== */
.p-sp-menu__close {
  position: fixed;
  top: 8px;
  right: 12px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-sp-menu__close-line {
  position: absolute;
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gc-color-gold);
  border-radius: 1px;
}
.p-sp-menu__close-line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-sp-menu__close-line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}


.p-footer {
  padding-bottom: 74px;
}

/* ==========================================================================
   p-tel-modal
========================================================================== */
.p-tel-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.p-tel-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-tel-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.p-tel-modal__dialog {
  position: relative;
  width: min(100%, 480px);
  padding: 42px 30px 34px;
  background: #fff;
  border: 2px solid var(--gc-color-gold);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  color: var(--gc-color-dark);
  font-family: var(--gc-font-serif);
  text-align: center;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.p-tel-modal.is-open .p-tel-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.p-tel-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.42);
  pointer-events: none;
}

.p-tel-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--gc-color-gold);
  cursor: pointer;
}

.p-tel-modal__close span {
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gc-color-gold);
}

.p-tel-modal__close span:nth-child(1) {
  transform: rotate(45deg);
}

.p-tel-modal__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.p-tel-modal__label {
  margin: 0 0 14px;
  color: var(--gc-color-gold-dark);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.p-tel-modal__number {
  margin: 0;
  color: var(--gc-color-dark);
  font-size: clamp(1.75rem, 1.214rem + 2.29vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.p-tel-modal__note {
  margin: 18px auto 0;
  max-width: 360px;
  color: var(--gc-color-text-sub);
  font-size: 0.8125rem;
  line-height: 1.8;
}

body.is-tel-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-tel-modal {
    padding: 18px;
  }

  .p-tel-modal__dialog {
    padding: 40px 22px 30px;
  }
}
/* tel PC時はa:telかからないようにする */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    cursor: pointer;
  }
}

main {
  margin-top: var(--gc-header-h-sp);
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 100px;
  }
}

/* ==========================================================
  下層ページ　MV  p-mv-*
  ========================================================== */
.p-mv {
  background: center / cover no-repeat url(../img/page/page_mv.png);
  height: 30vh;
  max-height: 450px;
  min-height: 140px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .p-mv {
    height: 40vh;
    max-height: 520px;
  }
}

.p-mv.--underline {
  background: none;
}
.p-mv.--underline::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: center / cover no-repeat url(../img/page/page_mv.png);
  opacity: 0.8;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.p-mv__textarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  height: 100%;
  font-family: var(--gc-font-serif);
  position: relative;
  z-index: 3;
}

.p-mv__textarea span {
  color: #fff;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-mv__textarea span {
    font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  }
}

.p-mv__title {
  font-size: clamp(1.5rem, 1.143rem + 1.79vw, 2rem);
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--gc-font-serif);
}
.p-mv__title.--underline {
  border-bottom: var(--gc-color-gold-muted) 2px solid;
  padding: 0 1em 5px;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: clamp(2rem, -0.007rem + 4.18vw, 3.125rem);
  }
}

/* 共通パーツEND --------------------------------------------------------------- */

/* ==========================================================
  料金一覧
    ========================================================== */
.pricelist * {
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 375px) {
  .pricelist__mini_only {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pricelist__sp_only {
    display: none;
  }
}

/* ---- アンカーリンク---- */
.pricelist-nav {
  background: #fff;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .pricelist-nav {
    padding: 130px 0 140px;
  }
}

.pricelist-nav__inner {
  width: 90.66666666%;
  max-width: 1120px;
  margin-inline: auto;
}

.pricelist-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .pricelist-nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, -0.114rem + 2.84vw, 1.875rem) clamp(1rem, -0.162rem + 2.42vw, 1.5rem);
  }
}
.pricelist-nav__link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  color: #1a1a1a;
  border: 3px solid #be9156;
  padding: 16px 5px;
  font-size: clamp(0.75rem, 0.482rem + 1.34vw, 1.125rem);
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
  position: relative;
  min-height: 70px;
}
@media screen and (min-width: 768px) {
  .pricelist-nav__link {
    font-size: clamp(1rem, 0.727rem + 0.57vw, 1.125rem);
    min-height: 3.5em;
  }
}
@media (any-hover: hover) {
  .pricelist-nav__link:hover {
    background: #be9156;
    color: #fff;
  }
}
.pricelist-nav__link::after {
  position: absolute;
  content: "";
  right: calc(50% - 5px);
  bottom: 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
  margin-bottom: 2px;
}

/* ---- アコーディオンメニュー ---- */
.pricelist-section__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #1a1a1a;
  border: 3px solid #be9156;
  font-weight: 700;
  text-align: center;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  padding: 10px 5px;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  min-height: 3em;
  height: 100%;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (any-hover: hover) {
  .pricelist-section__heading:hover {
    background: #be9156;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .pricelist-section__heading {
    font-size: clamp(1rem, 0.727rem + 0.57vw, 1.125rem);
  }
}
/* details/summary のデフォルトマーカーを非表示 */
summary.pricelist-section__heading {
  list-style: none;
}
summary.pricelist-section__heading::-webkit-details-marker {
  display: none;
}
.pricelist-section__heading::after {
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  right: 8px;
  display: inline-block;
  width: 16px;
  height: 16px;
  mask-image: url(../img/page/price/price_arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1a;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
details.is-open .pricelist-section__heading::after {
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .pricelist-section__heading::after {
    top: calc(50% - 12px);
    right: 12px;
    width: 24px;
    height: 24px;
  }
}
@media (any-hover: hover) {
  .pricelist-section__heading:hover::after {
    background-color: #fff;
    transition: all 0.3s ease;
  }
}
.pricelist-section__body {
  padding-top: 16px;
}

.pricelist-table {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .pricelist-table { margin-bottom: 28px; }
}
.pricelist-table:last-of-type {
  margin-bottom: 0;
}

.pricelist-table table {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .pricelist-table table {
    display: table;
  }
}

.pricelist-table thead {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .pricelist-table thead {
    display: table-header-group;
  }
}

.pricelist-table tbody {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #1a1a1a;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .pricelist-table tbody {
    display: table-row-group;
    border: none;
  }
}

.pricelist-table thead tr,
.pricelist-table tbody tr {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .pricelist-table thead tr {
    display: table-row;
  }
}

.pricelist-table tbody tr {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #1a1a1a;
}
.pricelist-table tbody tr:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .pricelist-table tbody tr {
    display: table-row;
    border: none;
  }
}

.pricelist-table__th {
  background: #e8cf91;
  color: #1a1a1a;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  padding: 16px 5px;
  text-align: center;
  border: 1px solid #1a1a1a;
  font-weight: 700;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .pricelist-table__th {
    font-size: clamp(1rem, 0.727rem + 0.57vw, 1.125rem);
    min-height: 3.5em;
  }
}

.pricelist-table__td {
  display: block;
  width: 100%;
  border: none;
  box-sizing: border-box;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  color: #1a1a1a;
  padding: 10px 5px 0;
  background: #fff;
  text-align: center;
  font-weight: 700;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .pricelist-table__td {
    display: table-cell;
    font-size: clamp(0.875rem, 0.33rem + 1.14vw, 1.125rem);
    border: 1px solid #1a1a1a;
    padding: 16px;
    min-height: 3.5em;
  }
}

.pricelist-table__th--name,
.pricelist-table__td--name {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.pricelist-table__td--name {
  color: #be9156;
}
@media screen and (min-width: 768px) {
  .pricelist-table__th--name,
  .pricelist-table__td--name {
    display: table-cell;
    width: 61.5%;
  }
  .pricelist-table__td--name {
    color: #1a1a1a;
  }
}

/* thead：「金額」th を非表示、名称 th を全幅のヘッダーバーに */
.pricelist-table__th--price {
  display: none;
}
@media screen and (min-width: 768px) {
  .pricelist-table__th--price {
    display: table-cell;
    width: calc(100% - 61.5%);
  }
}

.pricelist-table__td--price {
  padding: 5px 5px 10px;
}
@media screen and (min-width: 768px) {
  .pricelist-table__td--price {
    width: calc(100% - 61.5%);
    text-align: start;
    padding: 16px;
  }
}

.pricelist-table__campaign {
  color: #ff3131;
}
.pricelist-table__subheading {
  margin-right: 1em;
}

/* ---- pricelist-note ---- */
.pricelist-note {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .pricelist-note {
    margin-top: 20px;
  }
}

.pricelist-note li {
  font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
  line-height: 1.4;
  text-align: left;
  position: relative;
  padding-left: 1.25em;
}
@media screen and (min-width: 768px) {
  .pricelist-note li {
    font-size: clamp(0.875rem, 0.33rem + 1.14vw, 1.125rem);
  }
}

.pricelist-note li::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

/* ---- 料金ページ メインビュー背景 ---- */
.pricelist .price_banner {
  background: center / cover no-repeat url(../img/page/price/price_mv.png);
  height: 30vh;
  max-height: 450px;
}
@media screen and (min-width: 992px) {
  .pricelist .price_banner {
    height: 40vh;
    max-height: 520px;
  }
}

.price__mv-textarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.price__mv-textarea span {
  color: #fff;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price__mv-textarea span {
    font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  }
}

.price__mv-title {
  font-size: clamp(1.5rem, 1.143rem + 1.79vw, 2rem);
  text-align: center;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .price__mv-title {
    font-size: clamp(2rem, -0.007rem + 4.18vw, 3.125rem);
  }
}

/* ---- 丸数字リスト ---- */
.pricelist-table__num-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricelist-table__num-list li {
  position: relative;
  padding-left: 1.5em;
  text-align: left;
}
.pricelist-table__num-list li::before {
  position: absolute;
  left: 0;
}
.pricelist-table__num-list li:nth-child(1)::before { content: "①"; }
.pricelist-table__num-list li:nth-child(2)::before { content: "②"; }
.pricelist-table__num-list li:nth-child(3)::before { content: "③"; }
.pricelist-table__num-list li:nth-child(4)::before { content: "④"; }
.pricelist-table__num-list li:nth-child(5)::before { content: "⑤"; }
.pricelist-table__num-list li:nth-child(6)::before { content: "⑥"; }
.pricelist-table__num-list li:nth-child(7)::before { content: "⑦"; }
.pricelist-table__num-list li:nth-child(8)::before { content: "⑧"; }
.pricelist-table__num-list li:nth-child(9)::before { content: "⑨"; }
.pricelist-table__num-list li:nth-child(10)::before { content: "⑩"; }

/* ==========================================================
  医療脱毛ページ (menu/datumo)  p-datumo-*
  ========================================================== */

/* フォント・スクロール */
.p-datumo  {
  font-family: var(--gc-font-serif);
}

/* ── 内部ナビ ─────────────────────────────── */
.p-datumo-nav {
  background: #fff;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .p-datumo-nav {
    padding: 36px 0;
  }
}

.p-datumo-nav__inner {
  width: 90.667%;
  max-width: 1120px;
  margin-inline: auto;
}

.p-datumo-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-datumo-nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 26px;
    max-width: 937px;
  }
}

.p-datumo-nav__link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  background: var(--gc-color-white);
  border: 3px solid var(--gc-color-gold-border);
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
  overflow: hidden;
  padding: 10px 5px 22px;
}
@media screen and (min-width: 768px) {
  .p-datumo-nav__link {
    max-width: none;
  }
}

.p-datumo-nav__link::after {
  content: none;
}
@media (any-hover: hover) {
  .p-datumo-nav__link:hover {
    background-color: var(--gc-color-gold-muted);
    border-color: var(--gc-color-gold-muted);
    opacity: 1;
  }
}

.p-datumo-nav__link-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  height: 100%;
  max-height: 60px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-datumo-nav__link-img-wrap {
    max-height: 120px;
  }
}

.p-datumo-nav__link-img-wrap img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 56px;
  object-fit: contain;
  transition: filter 0.3s;
}
@media screen and (min-width: 768px) {
  .p-datumo-nav__link-img-wrap img {
    max-height: 113px;
  }
}

.p-datumo-nav__link-img-wrap.--high img {
  max-height: 60px;
}
@media screen and (min-width: 768px) {
  .p-datumo-nav__link-img-wrap.--high img {
    max-height: 120px;
  }
}

.p-datumo-nav__link-text {
  padding: 10px 0;
  font-size: clamp(0.75rem, 2.3vw, 1.125rem);
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  color: var(--gc-color-dark);
  position: relative;
  flex: 1;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-datumo-nav__link-text {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
  }
}

.p-datumo-nav__link-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 9px;
  height: 9px;
  border-left: 1px solid var(--gc-color-dark);
  border-bottom: 1px solid var(--gc-color-dark);
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .p-datumo-nav__link:hover .p-datumo-nav__link-img-wrap img {
    filter: brightness(0) invert(1);
  }

  .p-datumo-nav__link:hover .p-datumo-nav__link-text {
    color: var(--gc-color-white);
  }

  .p-datumo-nav__link:hover .p-datumo-nav__link-text::after {
    border-color: var(--gc-color-white);
  }
}

/* ── 共通セクション ──────────────────────── */
.p-datumo-section {
  padding-block: 60px;
}

.p-datumo-section.--dark {
  background: var(--gc-color-dark);
}

.p-datumo-section.--gray {
  background: var(--gc-color-gray);
}

.p-datumo-section.--price {
  padding-block: 60px 0;
}

.p-datumo-section__inner {
  width: 90%;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-datumo-section__inner {
    max-width: 1080px;
  }
}

.p-datumo-section__heading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}

.p-datumo-section__heading img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: clamp(40px, 7vw, 80px);
  object-fit: contain;
  display: block;
}

.p-datumo-section__heading.--consult img {
  width: auto;
  height: 100%;
  max-height: clamp(70px, 9.6vw, 116px);
  object-fit: contain;
  display: block;
}

.p-datumo-section__lead {
  font-size: clamp(0.75rem, 2.3vw, 1.125rem);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-datumo-section__lead {
    font-size: clamp(0.75rem, 1.5vw, 1.125rem);
    line-height: 1.8;
  }
}

.p-datumo-section.--dark .p-datumo-section__lead {
  color: var(--gc-color-white);
  font-weight: 700;
}
.p-datumo-section__lead-highlight {
  color: #ffdaa1;
}

/* ── 当院の医療脱毛 feature cards ────────── */
.p-datumo-features {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-datumo-features {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2vw, 1.5rem);
    max-width: none;
  }
}

.p-datumo-feature {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
  gap: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-datumo-feature {
    gap: 10px;
  }
}

.p-datumo-feature__icon {
  display: none;
}

.p-datumo-feature__img-wrap {
  display: block;
  overflow: hidden;
  background: linear-gradient(90deg, #a6a6a6 0%, #fff 100%);
  width: 100%;
  flex-shrink: 0;
}

.p-datumo-feature__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-datumo-feature__content {
  flex: 1;
}

.p-datumo-feature__num {
  font-size: clamp(1.125rem, 3.1vw, 1.5rem);
  font-weight: 700;
  color: #e8cf91;
  letter-spacing: 0.1em;
  line-height: 1.2;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-datumo-feature__num {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }
}

.p-datumo-feature__header {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .p-datumo-feature__header {
    margin-bottom: 10px;
  }
}

.p-datumo-feature__title {
  font-size: clamp(1.125rem, 3.1vw, 1.5rem);
  font-weight: 700;
  color: #e8cf91;
  line-height: 1.2;
  margin: 0;
  font-family: var(--gc-font-serif);
}
@media screen and (min-width: 768px) {
  .p-datumo-feature__title {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }
}

.p-datumo-feature__text {
  font-size: clamp(0.75rem, 2.3vw, 1.125rem);
  color: var(--gc-color-white);
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
  border-left: 2px solid #e8cf91;
  padding-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-datumo-feature__text {
    font-size: clamp(0.75rem, 1.5vw, 1.125rem);
    padding-left: 2.5em;
  }
}

/* ── 比較テーブル ─────────────────────────── */

.p-datumo-diff-table {
  width: 100%;
  color: var(--gc-color-dark);
  border-collapse: collapse;
  font-size: clamp(1rem, 2.3vw, 1.125rem);
  line-height: 1.4;
  font-family: var(--gc-font-serif);
}

@media screen and (min-width: 768px) {
  .p-datumo-diff-table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: clamp(0.75rem, 1.5vw, 1.125rem);
  }
}

.p-datumo-diff-table,
.p-datumo-diff-table thead,
.p-datumo-diff-table tbody,
.p-datumo-diff-table tr,
.p-datumo-diff-table th,
.p-datumo-diff-table td {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-datumo-diff-table {
    display: table;
  }
  .p-datumo-diff-table thead {
    display: table-header-group;
  }
  .p-datumo-diff-table tbody {
    display: table-row-group;
  }
  .p-datumo-diff-table tr {
    display: table-row;
  }
  .p-datumo-diff-table th,
  .p-datumo-diff-table td {
    display: table-cell;
  }
}

.p-datumo-diff-table tr {
  margin-top: 20px;
}
.p-datumo-diff-table tr:nth-child(1) {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-datumo-diff-table tr {
    margin-top: 0;
  }
}

.p-datumo-diff-table td {
  padding: 10px 2px;
  border: 2px solid var(--gc-color-gray-border);
  border-top: 0;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
}
.p-datumo-diff-table th {
  padding: 10px 2px;
  border: 2px solid var(--gc-color-gray-border);
  border-bottom: 0;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-datumo-diff-table td {
    padding: 20px 5px;
    border-left: 0;
  }
  .p-datumo-diff-table th {
    padding: 20px 5px;
    border-left: 0;
    border-bottom: 2px solid var(--gc-color-gray-border);
  }
}

.p-datumo-diff-table th.col-medical,
.p-datumo-diff-table td.col-medical {
  border: 2px solid var(--gc-color-dark);
}
@media screen and (min-width: 768px) {
  .p-datumo-diff-table th.col-medical,
  .p-datumo-diff-table td.col-medical {
    border: 2px solid var(--gc-color-dark);
    border-top: 0;
  }
  .p-datumo-diff-table th.col-medical {
    border-top: 2px solid var(--gc-color-dark);
  }
}

.p-datumo-diff-table th.p-datumo-diff-table__label {
  color: var(--gc-color-gold-muted);
  font-size: clamp(1.125rem, 3.1vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .p-datumo-diff-table th.p-datumo-diff-table__label {
    color: var(--gc-color-dark);
    font-size: clamp(0.75rem, 1.5vw, 1.125rem);
    border-top: 0;
    border-left: 2px solid var(--gc-color-gray-border);
    border-right: 0;
  }
  .p-datumo-diff-table th.p-datumo-diff-table__head-blank {
    border-top: 2px solid var(--gc-color-gray-border);
    border-left: 2px solid var(--gc-color-gray-border);
    border-right: 0;
    width: 200px;
    max-width: 20%;
  }
}

.p-datumo-diff-table__medical::before,
.p-datumo-diff-table__esthetic::before {
  position: static;
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1rem, 2.3vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
}
.p-datumo-diff-table__medical::before {
  content: "医療脱毛";
}
.p-datumo-diff-table__esthetic::before {
  content: "エステ・サロン";
}
@media screen and (min-width: 768px) {
  .p-datumo-diff-table__medical::before,
  .p-datumo-diff-table__esthetic::before {
    display: none;
  }
}

.p-datumo-diff-table__highlight {
  color: var(--gc-color-line-red);
  font-weight: 700;
}

.p-datumo-diff-table__head-row th {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-datumo-diff-table__head-row th {
    display: table-cell;
  }
}

/* ── 脱毛部位一覧 ────────────────────────── */

/* 人気の脱毛部位 */
.p-datumo-popular__heading-wrap {
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-datumo-popular__heading-wrap {
    margin-bottom: 50px;
  }
}

.p-datumo-parts-all {
  width: 100%;
  margin: 0;
}

.p-datumo-popular__heading-wrap img,
.p-datumo-parts-all img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-datumo-parts-sub {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  background: var(--gc-color-white);
}
@media screen and (min-width: 768px) {
  .p-datumo-parts-sub {
    gap: 4px;
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

.p-datumo-parts-sub-card {
  overflow: hidden;
}

.p-datumo-parts-sub-card__img-wrap {
  overflow: hidden;
}

.p-datumo-parts-sub-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── 料金セクション ──────────────────────── */
.p-datumo-price .pricelist-table {
  margin-bottom: 20px;
}

/* ── 割引セクション ──────────────────────── */
.p-datumo-discount {
  border-top: 4px solid #1a1a1a;
  border-bottom: 4px solid #1a1a1a;
  margin-top: 20px;
  padding: 20px 0 40px;
}
.p-datumo-discount__heading {
  color: var(--gc-color-gold-muted);
  font-size: 1.125rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-datumo-discount__heading {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }
}

@media screen and (min-width: 768px) {
  .p-datumo-discount__heading span {
    display: inline-block;
    margin-right: 1em;
  }
}

.p-datumo-discount__note-bar {
  font-size: clamp(0.75rem, 2.3vw, 1.125rem);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-datumo-discount__note-bar {
    font-size: clamp(0.75rem, 1.5vw, 1.125rem);
  }
}

.p-datumo-discount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-datumo-discount-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-datumo-discount-card {
  overflow: hidden;
}

.p-datumo-discount-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── 施術の流れ ──────────────────────────── */
.p-datumo-flow__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-datumo-flow__list {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.p-datumo-flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-datumo-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: calc(0% - clamp(20px, 2.5vw, 30px));
  right: calc(50% - clamp(9.5px, 1.5vw, 19px));
  display: block;
  width: clamp(9.5px, 1.5vw, 19px);
  height: clamp(17.5px, 2.9vw, 35px);
  transform: rotate(90deg);
  background: center / contain no-repeat url(../../assets/img/page/menu/datumo/step-arrow.png);
}
@media screen and (min-width: 768px) {
  .p-datumo-flow-step:not(:last-child) {
    padding-inline-end: clamp(12px, 2vw, 24px);
  }
  .p-datumo-flow-step:not(:last-child)::after {
    right: 2px;
    top: calc(50% - clamp(17.5px, 2.9vw, 35px) / 2);
    transform: rotate(0deg);
  }
}

.p-datumo-flow-step__card {
  border: 2px solid var(--gc-color-gray);
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.p-datumo-flow-step__num-bar {
  background: var(--gc-color-gold-muted);
  color: var(--gc-color-white);
  font-weight: 700;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  text-align: center;
  padding: 10px 5px;
  letter-spacing: 0.05em;
  font-family: var(--gc-font-serif);
}
@media screen and (min-width: 768px) {
  .p-datumo-flow-step__num-bar {
    padding: 20px 5px;
    font-size: clamp(1rem, 2vw, 1.5rem);
  }
}

.p-datumo-flow-step__card-body {
  padding: 10px 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-datumo-flow-step__card-body {
    padding: 20px 2px;
    gap: 10px;
  }
}

.p-datumo-flow-step__img-wrap {
  width: 100%;
  height: auto;
}

.p-datumo-flow-step__img {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 100px;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-datumo-flow-step__img {
    width: 100%;
    max-width: none;
  }
}

.p-datumo-flow-step__title {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--gc-color-dark);
  text-align: center;
  line-height: 1.2;
  font-family: var(--gc-font-serif);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-datumo-flow-step__title {
    padding: 20px 5px;
    font-size: clamp(1rem, 2vw, 1.5rem);
  }
}

.p-datumo-flow-step__text {
  font-size: clamp(1rem, 2.3vw, 1.125rem);
  color: var(--gc-color-dark);
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-datumo-flow-step__text {
    font-size: clamp(0.75rem, 1.3vw, 1rem);
    line-height: 1.6;
  }
}

/* ── FAQ ──────────────────────────────────── */
.p-datumo-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.p-datumo-faq-item__q {
  display: flex;
  list-style: none;
  align-items: flex-start;
  padding-block: 20px 10px;
  padding-right: clamp(38px, 5.9vw, 46px);
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(1rem, 2.3vw, 1.125rem);
  color: var(--gc-color-dark);
  position: relative;
  gap: 6px;
  border-bottom: 4px solid #000;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-datumo-faq-item__q {
    padding-block: 20px 5px;
    padding-right: 74px;
    font-size: clamp(0.75rem, 1.5vw, 1.125rem);
  }
}

summary.p-datumo-faq-item__q::-webkit-details-marker {
  display: none;
}

.p-datumo-faq-item__q::before,
.p-datumo-faq-item__q::after {
  content: "";
  position: absolute;
  inset-inline-end: 5px;
  top: 50%;
  width: clamp(1.25rem, 4.1vw, 2rem);
  height: 2px;
  background: #000;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
@media screen and (min-width: 768px) {
  .p-datumo-faq-item__q::before,
  .p-datumo-faq-item__q::after {
    inset-inline-end: 24px;
    width: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.p-datumo-faq-item__q::before {
  transform: translateY(-50%);
}
.p-datumo-faq-item__q::after {
  color: transparent;
  transform: translateY(-50%) rotate(90deg);
}

.p-datumo-faq-item__details.is-open .p-datumo-faq-item__q::before {
  transform: translateY(-50%) rotate(180deg);
}
.p-datumo-faq-item__details.is-open .p-datumo-faq-item__q::after {
  content: "";
  opacity: 0;
  transform: translateY(-50%) rotate(180deg);
}

.p-datumo-faq-item__q-text {
  flex: 1;
}

.p-datumo-faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.p-datumo-faq-item__a-inner {
  overflow: hidden;
}

.p-datumo-faq-item__a-content {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: clamp(1rem, 2.3vw, 1.125rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--gc-color-dark);
  padding-block: 10px;
}
@media screen and (min-width: 768px) {
  .p-datumo-faq-item__a-content {
    padding-block: 5px 20px;
    font-size: clamp(0.75rem, 1.5vw, 1.125rem);
  }
}

.p-datumo-faq-item__details {
  display: block;
}

.p-datumo-faq-item__details.is-open .p-datumo-faq-item__a {
  grid-template-rows: 1fr;
}

/* ==========================================================
  FAQ more（よくある質問の下）p-datumo-faq-more
  ========================================================== */
  .p-datumo-faq-more {
    background: linear-gradient(90deg, #000 0%, #737373 100%);
    background-position: 0 0;
    background-size: 100% 100%;
    padding: 20px;
    text-align: center;
    transition: none;
  }
  @media screen and (min-width: 768px) {
    .p-datumo-faq-more {
      padding: 22px clamp(20px, 5.8vw, 70px) 35px;
    }
  }
  
  .p-datumo-faq-more__text {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--gc-color-gold-muted);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: var(--gc-font-serif);
  }
  
  .p-datumo-faq-more__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 1.5em 10px;
    border: 1px solid var(--gc-color-gold-muted);
    color: var(--gc-color-gold-muted);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 700;
    text-decoration: none;
    font-family: var(--gc-font-serif);
    letter-spacing: 0.05em;
    transition: color 0.3s, border-color 0.3s;
  }

  .p-datumo-faq-more__btn-arrow {
    display: inline-block;
    transition: transform 0.3s;
  }

  @media (any-hover: hover) {
  .p-datumo-faq-more__btn:hover {
      opacity: 1;
    }

    .p-datumo-faq-more__btn:hover .p-datumo-faq-more__btn-arrow {
      transform: translateX(8px);
    }
  }

/* ==========================================================
  ご相談CTA p-datumo-consult
  ========================================================== */
.p-datumo-consult {
  padding-block: 60px;
  position: relative;
}
.p-datumo-consult::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: center / cover no-repeat url(../img/page/page_mv.png);
  opacity: 0.8;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-datumo-consult {
    padding-block: 80px;
  }
}

.p-datumo-consult__buttons {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-datumo-consult__buttons {
    flex-direction: row;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }
}

.p-datumo-consult__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  width: 100%;
  min-height: 86px;
  padding: 10px 2px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--gc-font-serif);
  letter-spacing: 0.04em;
  line-height: 1.25;
  transition: opacity var(--gc-easing);
}
@media screen and (min-width: 768px) {
  .p-datumo-consult__btn {
    width: min(100%, 420px);
    min-height: clamp(100px, 10vw, 131px);
    padding: 5px 5px;
    gap: clamp(4px, 1vw, 12px);
    font-size: clamp(1.375rem, 3.8vw, 2rem);
    letter-spacing: 0;
  }
}
@media (any-hover: hover) {
  .p-datumo-consult__btn:hover {
    opacity: 0.85;
  }
}

.p-datumo-consult__btn--tel {
  background: #b88445;
  color: var(--gc-color-white);
  flex-direction: column;
  gap: 4px;
  border: none;
}

.p-datumo-consult__btn--line {
  background: var(--gc-color-line-green);
  color: var(--gc-color-white);
  order: 3;
}

.p-datumo-consult__btn--web {
  background: #b88445;
  color: var(--gc-color-white);
  border: none;
  order: 2;
}

.p-datumo-consult__inner {
  max-width: 1380px;
}

.p-datumo-consult__btn-icon {
  display: block;
  width: clamp(20px, 3.3vw, 40px);
  height: clamp(20px, 3.3vw, 40px);
  object-fit: contain;
  flex-shrink: 0;
}

.p-datumo-consult__btn--tel .p-datumo-consult__btn-icon,
.p-datumo-consult__btn--web .p-datumo-consult__btn-icon {
  filter: brightness(0) invert(1);
}

.p-datumo-consult__btn--web .p-datumo-consult__btn-icon {
  width: clamp(40px, 5vw, 60px);
  height: clamp(25px, 3.1vw, 38px);
}

.p-datumo-consult__btn--line .p-datumo-consult__btn-icon {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .p-datumo-consult__btn--line .p-datumo-consult__btn-icon {
    width: clamp(32px, 5.3vw, 64px);
    height: clamp(32px, 5.3vw, 64px);
  }
}

.p-datumo-consult__btn-text {
  display: flex;
  align-items: center;
  line-height: 1.15;
}

.p-datumo-consult__btn-sub {
  display: block;
  font-size: clamp(1rem, 3.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-datumo-consult__btn-sub {
    font-size: clamp(0.875rem, 2.3vw, 1.75rem);
  }
}

.p-datumo-consult__btn-main {
  display: block;
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.5rem, 4.4vw, 2.125rem);
}
@media screen and (min-width: 768px) {
  .p-datumo-consult__btn-main {
    font-size: clamp(1.125rem, 2.8vw, 2.125rem);
  }
}

.p-datumo-consult__btn--tel .p-datumo-consult__btn-main {
  letter-spacing: 0;
}

