@charset "UTF-8";
/* =============================
   Breakpoints
============================= */
.br-sp {
  display: none;
}

.br-pc {
  display: inline;
}

.br-sp-small {
  display: none;
}

/* SPのみ表示切替 */
@media screen and (max-width: 767px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
  .br-sp-small {
    display: none;
  }
}
/* SP小サイズのみ表示切替 */
@media screen and (max-width: 480px) {
  .br-sp-small {
    display: inline;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: none;
  }
}
:root {
  /* base */
  --color-text: #46330b;
  --color-muted: #46330b;
  --color-border: #a28952;
  --color-bg: #ffffff;
  /* accent */
  --color-gold-text: #a28952;
  --color-gold-dark: #46330b;
  --color-gold: var(--color-gold-text);
}

:root {
  /* layout */
  --container: 120.0rem;
  /* radius */
  --radius-sm: 0.6rem;
  --radius-md: 1.2rem;
  /* typography */
  --font-english: "Playfair Display", "Times New Roman", serif;
  --font-japanese: "Hiragino Mincho ProN", "Hiragino Mincho", "Yu Mincho", serif;
  --font-sans: var(--font-japanese);
  --font-serif: var(--font-english);
  /* fixed header / sp bottom bar */
  --header-h: 8.0rem;
  --sp-bottom-bar-h: 8.0rem;
  /* breakpoints */
  --bp-tab: 1024px;
  --bp-sp: 768px;
}

/* header高さがSPで変わるなら、変数も切り替える */
[data-scroll-top] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
[data-scroll-top].is-visible {
  opacity: 1;
  pointer-events: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

.l-main {
  display: block;
}

/* 英語・インドネシア語時：欧文フォント切り替え・x-height補正 */
html[data-lang=en] body,
html[data-lang=id] body {
  font-family: var(--font-english);
  font-size: 1.7rem;
}

/* ⚠ 全要素lowercaseは危険なので「英字見出し等」に限定推奨 */
html[data-lang=en] .c-title__en,
html[data-lang=en] .p-hero__title,
html[data-lang=en] .p-hero__lead {
  text-transform: lowercase;
}

html[data-lang=en] .c-title__en::first-letter,
html[data-lang=en] .p-hero__title::first-letter,
html[data-lang=en] .p-hero__lead::first-letter {
  text-transform: uppercase;
}

/* =============================
  Base
============================= */
html {
  font-size: 62.5%; /* 1rem = 10px */
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 0.3rem solid rgba(168, 143, 85, 0.45);
  outline-offset: 0.2rem;
}

/* =============================
  リセット
============================= */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-style: normal;
}

body {
  margin: 0;
  width: 100%;
}

a,
button {
  cursor: revert;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-inline-size: 100%;
  max-block-size: 100%;
  vertical-align: middle;
  object-fit: cover;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
  user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  line-break: after-white-space;
  user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

:where(figure, h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(ul, ol, dl) {
  padding: 0;
  margin: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background-color: #ffffff;
  overflow-x: visible;
}

.l-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.6rem;
  min-width: 0;
}

@media screen and (max-width: 767px) {
  :root {
    --header-h: 6.0rem;
  }
}
.l-header__left {
  display: flex;
  align-items: center;
}

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

.l-header__logo {
  display: block;
  width: auto;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    height: 3.2rem;
  }
}

/* 右側（nav + actions + lang） */
.l-header__group {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  min-width: 0;
}

.l-header__nav {
  display: flex;
  align-items: center;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.l-header__nav-item {
  display: flex;
  align-items: center;
}

.l-header__nav-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0.8rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold-text);
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-width: 0;
}

.l-header__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}

.l-header__lang {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 600;
  color: #a28952;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
}

.c-button {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* SP/タブレット */
@media screen and (max-width: 1100px) {
  .l-header__group {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.2rem 1.6rem;
  }
  .l-header__nav-list {
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
  }
}
/* =========================
  Hamburger（SPのみ）
========================= */
.l-header__burger {
  display: none;
}

.l-header__burger-line {
  display: block;
  width: 4rem;
  height: 0.3rem;
  background: var(--color-gold-text);
  border-radius: 99rem;
}

@media screen and (max-width: 1100px) {
  .l-header__inner {
    min-height: 6rem;
    padding: 1.2rem 1rem;
  }
  .l-header__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    width: 5rem;
    height: 5rem;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  .l-header__nav {
    display: none;
  }
  /* SP下固定バー（actionsのみ） */
  .l-header__right {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.2rem 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -0.4rem 1.2rem rgba(0, 0, 0, 0.08);
    z-index: 900; /* headerよりは下でもOK / 上にしたいなら1001など */
    overflow: hidden;
  }
  .l-header__actions {
    display: flex;
    gap: 1.2rem;
    width: calc(100% - 3.2rem);
    margin: 0 auto;
  }
  .l-header__actions .c-button {
    flex: 1;
    min-height: 4.6rem;
    padding: 0;
    font-size: 1.6rem;
    min-width: 0;
  }
  .l-header__lang {
    display: none;
  }
}
/* ======================================
  l-drawer（HTML+JS仕様に完全一致）
  - overlay : .l-drawer__overlay[data-drawer-overlay] (hidden制御)
  - drawer  : #sp-drawer.l-drawer (hidden制御 + .is-openでスライド)
====================================== */
/* overlay */
.l-drawer__overlay[data-drawer-overlay] {
  position: fixed;
  inset: 0;
  z-index: 1999; /* drawer(2000)より下、header(1000)より上 */
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* hiddenが外れたら表示 */
.l-drawer__overlay[data-drawer-overlay]:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

/* drawer本体（#sp-drawer） */
#sp-drawer.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(36rem, 88vw);
  height: 100dvh;
  z-index: 2000;
  background: #ffffff;
  box-shadow: -0.8rem 0 2.4rem rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

/* open */
#sp-drawer.l-drawer.is-open {
  transform: translateX(0);
}

/* inner */
.l-drawer__inner {
  padding: 1rem 1rem 3.2rem 2rem;
}

/* head */
.l-drawer__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
}

.l-drawer__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold-text);
}

/* close button（あなたのHTMLは × 文字なので装飾は最小） */
.l-drawer__close {
  width: 4.4rem;
  height: 4.4rem;
  border: 0;
  background: transparent;
  color: var(--color-gold-text);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

/* nav */
.l-drawer__nav {
  margin-top: 2.4rem;
}

.l-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.l-drawer__link {
  display: block;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid rgba(162, 137, 82, 0.25);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-gold-text);
  text-decoration: none;
}

/* lang block */
.l-drawer__lang-label {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-gold-text);
}

.l-drawer__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  height: 4.8rem;
  padding: 0 1.6rem;
  border: 0.1rem solid rgba(162, 137, 82, 0.65);
  background: #ffffff;
  color: var(--color-gold-text);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}

.l-drawer__close {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.l-drawer__close::before,
.l-drawer__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4rem;
  height: 0.4rem;
  background: var(--color-gold-text);
  transform-origin: center;
  border-radius: 99rem;
}

.l-drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ======================================
  Header Nav underline animation
====================================== */
.l-header__nav-link {
  position: relative; /* 線の基点 */
  transition: color 0.3s ease;
}

/* 下線 */
.l-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 0.2rem;
  background: var(--color-gold-text);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

/* hover */
.l-header__nav-link:hover::after {
  transform: scaleX(1);
}

/* current（必要なら） */
/* ======================================
  Lang Menu (Header / Drawer 共通)
  HTML仕様：
  - [data-lang-menu-btn] : 開閉ボタン（PC/SP両方に存在）
  - [data-lang-menu]     : メニューul（PC/SP両方に存在）
  - [data-lang-label]    : 表示ラベルspan（PC/SP両方に存在）
====================================== */
/* =========================
  Reset（メニュー内ボタンのデフォルトを消す）
========================= */
.l-header__lang-btn,
.l-drawer__lang-btn,
.l-header__lang-menu button,
.l-drawer__lang-menu button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: 1;
}

/* ul/li のデフォルトを確実に消す（黒丸対策） */
.l-header__lang-menu,
.l-drawer__lang-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__lang-menu > li,
.l-drawer__lang-menu > li {
  margin: 0;
  padding: 0;
}

/* =========================
  Header（PC）
========================= */
.l-header__lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* トグルボタン */
.l-header__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  height: 3.8rem;
  padding: 0 1.2rem;
  background: #ffffff;
  color: var(--color-gold-text);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}

/* 矢印 */
.l-header__lang-btn::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.2rem solid currentColor;
  border-bottom: 0.2rem solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.2rem;
}

.l-header__lang-btn:hover {
  border-color: rgba(162, 137, 82, 0.85);
}

.l-header__lang-btn:active {
  transform: translateY(0.1rem);
}

.l-header__lang-btn:focus-visible {
  outline: 0.2rem solid rgba(162, 137, 82, 0.8);
  outline-offset: 0.3rem;
}

/* ドロップダウン */
.l-header__lang-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  z-index: 1800;
  width: 10rem;
  padding: 0.6rem;
  background: #ffffff;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.12);
}

/* メニュー項目ボタン */
.l-header__lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  border-radius: 0.8rem;
  color: var(--color-gold-dark);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.l-header__lang-menu button:hover {
  background: rgba(162, 137, 82, 0.1);
}

.l-header__lang-menu button:focus-visible {
  outline: 0.2rem solid rgba(162, 137, 82, 0.8);
  outline-offset: 0.2rem;
}

/* =========================
  Drawer（SP）※白背景ドロワー前提
========================= */
.l-drawer__lang-label {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-gold-text);
}

/* SPトグルボタン（横幅100%） */
.l-drawer__lang-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  height: 4.8rem;
  padding: 0 1.4rem;
  background: #ffffff;
  color: var(--color-gold-text);
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}

.l-drawer__lang-btn::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-right: 0.2rem solid currentColor;
  border-bottom: 0.2rem solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.2rem;
}

.l-drawer__lang-btn:hover {
  background: rgba(162, 137, 82, 0.06);
}

.l-drawer__lang-btn:active {
  transform: translateY(0.1rem);
}

.l-drawer__lang-btn:focus-visible {
  outline: 0.2rem solid rgba(162, 137, 82, 0.8);
  outline-offset: 0.3rem;
}

/* SPメニュー（※ absoluteにしない：下に積む） */
.l-drawer__lang-menu {
  margin-top: 0.8rem;
  padding: 0.6rem;
  background: #ffffff;
}

/* SPメニュー項目ボタン */
.l-drawer__lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.1rem 1rem;
  border-radius: 0.8rem;
  color: #252525;
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.l-drawer__lang-menu button:hover {
  background: rgba(162, 137, 82, 0.1);
}

.l-drawer__lang-menu button:focus-visible {
  outline: 0.2rem solid rgba(162, 137, 82, 0.8);
  outline-offset: 0.2rem;
}

/* ======================================
  SP時：ヘッダー右下固定バーで PC言語を隠す（あなたの既存仕様に合わせる）
====================================== */
@media screen and (max-width: 1100px) {
  .l-header__lang {
    display: none;
  }
}
.l-footer {
  background: #ffffff;
  color: #1a1209;
  position: relative;
  padding: 3rem 0 5rem;
}

.l-footer__inner {
  padding-top: 6.4rem;
  padding-bottom: 0;
}

.l-footer__brand {
  margin-bottom: 4rem;
}

.l-footer__logo {
  display: inline-block;
  text-decoration: none;
}
.l-footer__logo-img {
  width: 28rem;
  height: auto;
}

.l-footer__address {
  margin: 1.6rem 0 0;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: rgba(26, 18, 9, 0.55);
  line-height: 1.7;
}

.l-footer__divider {
  height: 0.1rem;
  background: #1a1209;
  margin: 0;
}

.l-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 8rem;
}

.l-footer__nav-group {
  display: flex;
  align-items: flex-start;
  gap: 8rem;
  padding: 4rem 0;
}

.l-footer__nav-title {
  margin: 0 0 2rem;
  font-family: var(--font-serif, "Times New Roman", "Noto Serif JP", serif);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(26, 18, 9, 0.45);
}

.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-footer__link-item {
  display: flex;
  align-items: center;
}
.l-footer__link-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.1rem;
  height: 1.2rem;
  background: #1a1209;
  margin: 0 1.6rem;
}

.l-footer__link {
  text-decoration: none;
  color: #1a1209;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.l-footer__link:hover {
  opacity: 0.5;
}

.l-footer__bottom {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2rem 0 3.2rem;
}

.l-footer__policy {
  flex: 1;
}

.l-footer__policy-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-footer__policy-item {
  display: flex;
  align-items: center;
}
.l-footer__policy-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.1rem;
  height: 1.1rem;
  background: rgba(26, 18, 9, 0.25);
  margin: 0 1.6rem;
}

.l-footer__policy-link {
  text-decoration: none;
  color: rgba(26, 18, 9, 0.55);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  transition: color 0.2s ease;
}
.l-footer__policy-link:hover {
  color: #1a1209;
}

.l-footer__copyright {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: rgba(26, 18, 9, 0.45);
  font-weight: 400;
  white-space: nowrap;
  padding: 0;
  margin-right: 3.2rem;
}

.l-footer__top-btn {
  position: fixed;
  right: 3.2rem;
  bottom: 3.2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 0.15rem solid rgba(26, 18, 9, 0.4);
  background: #ffffff;
  color: #1a1209;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 0.4rem 1.6rem rgba(26, 18, 9, 0.12);
}
.l-footer__top-btn:hover {
  background: rgba(26, 18, 9, 0.08);
  border-color: #1a1209;
}

.l-footer__top-icon {
  display: block;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__top-btn {
    right: 1.6rem;
    bottom: 7.6rem;
    width: 4.4rem;
    height: 4.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .l-footer__inner {
    padding-top: 4.8rem;
  }
  .l-footer__logo-img {
    width: 24rem;
  }
  .l-footer__brand {
    margin-bottom: 3.2rem;
  }
  .l-footer__nav-group {
    flex-direction: column;
    gap: 3.2rem;
    padding: 3.2rem 0;
  }
  .l-footer__links {
    gap: 0.8rem 0;
  }
  .l-footer__link-item:not(:last-child)::after {
    margin: 0 1.2rem;
  }
  .l-footer__bottom {
    flex-wrap: wrap;
    gap: 1.6rem;
    padding: 2rem 0 3.2rem;
    position: relative;
  }
  .l-footer__policy {
    flex: 0 0 100%;
    order: 1;
  }
  .l-footer__policy-list {
    flex-wrap: wrap;
    gap: 0.8rem 0;
  }
  .l-footer__copyright {
    order: 2;
    white-space: normal;
    font-size: 1rem;
    margin-right: 0;
  }
  .l-footer__top-btn {
    right: 1.6rem;
    bottom: 7.6rem;
    width: 4.4rem;
    height: 4.4rem;
  }
}
.l-footer__address {
  font-style: normal;
  margin-top: 1rem;
}

.l-footer__address-text {
  display: inline-block;
}

.l-footer__map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  color: #8a7a4f;
  text-decoration: underline;
}

.l-footer__map-link:hover {
  opacity: 0.7;
}

.l-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* イレギュラー：中身も100%（ただし左右余白は維持） */
.l-container--fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 完全100%（左右余白も無しにしたい時だけ） */
.l-container--full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.c-button {
  --btn-bg: transparent;
  --btn-color: #a28952;
  --btn-border: #a28952;
  --btn-bg-hover: #a28952;
  --btn-color-hover: #ffffff;
  --btn-border-hover: #a28952;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 2rem;
  min-height: 5.2rem;
  min-width: 12rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--btn-color);
  background: var(--btn-bg);
  border: 0.1rem solid var(--btn-border);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) {
  .c-button:hover {
    background: var(--btn-bg-hover);
    color: var(--btn-color-hover);
    border-color: var(--btn-border-hover);
  }
}
.c-button:focus-visible {
  outline: 0.2rem solid rgba(165, 138, 85, 0.35);
  outline-offset: 0.2rem;
}

/* fill：15rem固定 */
.c-button--fill {
  min-width: 15rem;
  --btn-bg: #a28952;
  --btn-color: #ffffff;
  --btn-border: #a28952;
  --btn-bg-hover: #ffffff;
  --btn-color-hover: #a28952;
  --btn-border-hover: #a28952;
}

/* outline：15rem固定 */
.c-button--outline {
  min-width: 15rem;
  --btn-bg: #ffffff;
  --btn-color: #a28952;
  --btn-border: #a28952;
  --btn-bg-hover: #a28952;
  --btn-color-hover: #ffffff;
  --btn-border-hover: #a28952;
}

/* gold：32rem固定 */
.c-button--gold {
  min-width: 32rem;
  min-height: 5.2rem;
  padding: 1rem 2rem;
  font-family: var(--font-english);
  letter-spacing: 0.08em;
  --btn-bg: rgba(168, 143, 85, 0.9);
  --btn-color: #ffffff;
  --btn-border: rgba(168, 143, 85, 0.9);
  --btn-bg-hover: #ffffff;
  --btn-color-hover: rgba(168, 143, 85, 0.9);
  --btn-border-hover: rgba(168, 143, 85, 0.9);
}

/* white-outline：32rem固定 */
.c-button--white-outline {
  min-width: 32rem;
  min-height: 5.2rem;
  padding: 1rem 2rem;
  font-family: var(--font-english);
  letter-spacing: 0.08em;
  --btn-bg: transparent;
  --btn-color: #ffffff;
  --btn-border: rgba(255, 255, 255, 0.8);
  --btn-bg-hover: #ffffff;
  --btn-color-hover: #a28952;
  --btn-border-hover: #ffffff;
}

/* wide */
.c-button--wide {
  width: 100%;
  max-width: 42rem;
  padding: 1.8rem 2.4rem;
  min-height: 7.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.c-button--arrow-right::after {
  content: "";
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0 1rem 1.4rem;
  border-color: transparent transparent transparent currentColor;
  z-index: 1;
}

.c-title {
  margin: 0 0 2.4rem;
}

.c-title__en {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--color-gold-text);
  text-transform: none;
}

.c-title__ja {
  margin: 0;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--color-gold-text);
}

.c-title--center {
  text-align: center;
}

/* ======================================
  c-section-title
====================================== */
.c-section-title {
  margin: 0 0 1.6rem;
  font-family: var(--font-english);
  font-size: 6.4rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-gold-text);
  position: relative;
  padding-bottom: 1.6rem;
}
.c-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background: rgba(168, 143, 85, 0.55);
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 3.6rem;
  }
}

/* ======================================
  c-hero-kv
====================================== */
.c-hero-kv {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  /* まずはベース（タブレット想定） */
  display: grid;
  grid-template-columns: 2fr 8fr;
  /* 高さ：タブレットは固定しない（テキストが伸びてもOK）
     ただし伸びすぎ防止で上限は 100vh まで許容 */
  min-height: 52rem;
  height: auto;
  max-height: 100vh;
  /* =============================
     背景レイヤー（左ミント / 右画像）
  ============================= */
}
.c-hero-kv__mint {
  background: rgb(201, 236, 232);
}
.c-hero-kv__image {
  position: relative;
  overflow: hidden;
}
.c-hero-kv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-hero-kv {
  /* =============================
     文字エリア（パネルを縦中央・横は少し左）
  ============================= */
}
.c-hero-kv__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--header-h);
  padding-left: 8%;
  padding-right: var(--gutter);
  padding-bottom: 3.2rem;
}
.c-hero-kv {
  /* =============================
     パネル
  ============================= */
}
.c-hero-kv__panel {
  width: min(90rem, 70%);
  padding: 4.8rem 2.6rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
}
.c-hero-kv__title {
  margin: 0;
  font-family: var(--font-english);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-gold-dark);
  font-size: clamp(4.8rem, 3.2vw, 6rem);
  line-height: 1.15;
  text-align: center;
}
.c-hero-kv__rule {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: rgba(162, 137, 82, 0.55);
  margin: 2rem 0 2.8rem;
}
.c-hero-kv__lead {
  margin: 0 0 2.8rem;
  font-family: var(--font-japanese);
  color: var(--color-gold-dark);
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.c-hero-kv__text {
  font-family: var(--font-japanese);
  color: rgba(70, 51, 11, 0.82);
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
.c-hero-kv__text p {
  margin: 0;
}
.c-hero-kv__text p + p {
  margin-top: 1.2rem;
}
.c-hero-kv {
  /* ======================================
    ≥1100px：3:7 / 70vh
  ====================================== */
}
@media screen and (min-width: 1100px) {
  .c-hero-kv {
    grid-template-columns: 1fr;
    /* 高さ：70vh（TOPより低め固定） */
    height: 70vh;
    min-height: 52rem;
    max-height: 70vh;
  }
  .c-hero-kv__panel {
    width: min(85rem, 70%);
  }
  .c-hero-kv__inner {
    padding-top: var(--header-h);
    padding-left: 8%;
    padding-right: var(--gutter);
    padding-bottom: 3.2rem;
  }
}
.c-hero-kv {
  /* ======================================
    768〜1099px：2:8 / 高さは可変（最大100vhまで）
  ====================================== */
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .c-hero-kv {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 60rem;
    max-height: 100vh;
  }
  .c-hero-kv__inner {
    padding-top: var(--header-h);
    padding-left: 6%;
    padding-right: var(--gutter);
    padding-bottom: 3.2rem;
  }
  .c-hero-kv__panel {
    width: min(82rem, 82%);
  }
}
.c-hero-kv {
  /* ======================================
    SP：ミントは“座布団”としてパネル背面に
    ※最終仕様：パネル=ミント / 背面=白（逆）
  ====================================== */
}
@media screen and (max-width: 767px) {
  .c-hero-kv {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 56rem;
    max-height: none;
  }
  .c-hero-kv__mint {
    background: transparent;
  }
  .c-hero-kv__image {
    min-height: 50rem;
  }
  .c-hero-kv__inner {
    padding-top: var(--header-h);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-bottom: 4rem;
    position: absolute;
    inset: 0;
    z-index: 2;
    justify-content: center;
  }
  .c-hero-kv__panel {
    position: relative;
    width: 95%;
    margin: 0 auto;
    /* 最終：SPは詰める */
    padding: 1.2rem;
    /* 背面の“白座布団” */
  }
  .c-hero-kv__panel::before {
    content: "";
    position: absolute;
    top: -1.6rem;
    right: 0rem;
    width: 100%;
    height: 100%;
  }
  .c-hero-kv__title {
    font-size: 3.6rem;
    line-height: 1.2;
  }
  .c-hero-kv__rule {
    margin: 1.6rem 0 2rem;
  }
  .c-hero-kv__lead {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .c-hero-kv__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .c-hero-kv__text p + p {
    margin-top: 1rem;
  }
}

/* ------------------------------
  hero 本体
------------------------------ */
.p-hero {
  /* header分を差し引いた高さ */
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  /* fixed header の下に配置 */
  margin-top: var(--header-h);
  padding-bottom: clamp(1.6rem, 3vh, 6.4rem);
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding-bottom: clamp(1.2rem, 2.5vh, 4.8rem);
  }
}

/* ------------------------------
  inner（ここをflexにするのが重要）
------------------------------ */
.p-hero__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    padding: 1rem 1.6rem 0;
  }
}

/* ------------------------------
  media（画像ブロック）
------------------------------ */
.p-hero__media {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2.4rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-hero__media {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__media {
    grid-template-columns: 1fr;
  }
}

/* 左大 */
.p-hero__media-left {
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.4rem;
  background-color: #f3f4f6;
}

/* 右（上下2枚） */
.p-hero__media-right {
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr 0.55fr;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-hero__media-right {
    grid-template-rows: 1fr;
  }
}

.p-hero__media-top,
.p-hero__media-bottom {
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.4rem;
  background-color: #f3f4f6;
}

/* ------------------------------
  画像ラッパー
------------------------------ */
.p-hero__img {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  object-fit: cover;
}

/* 画像本体 */
.p-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------------------------------
  content（タイトル＋CTA）
------------------------------ */
.p-hero__content {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  max-width: 98%;
  margin: clamp(1.2rem, 2.5vh, 2.4rem) auto 0;
  display: grid;
  grid-template-columns: 1fr 44rem;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 1100px) {
  .p-hero__content {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 4.4rem;
  }
}

.p-hero__title {
  margin: 0 0 1.2rem;
  font-size: 4.6rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #6b5a3a;
  border-bottom: 0.1rem solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 480px) {
  .p-hero__title {
    font-size: 3.2rem;
  }
}

.p-hero__lead {
  margin: 0;
  font-size: 2.4rem;
  color: #6b5a3a;
}
@media screen and (max-width: 767px) {
  .p-hero__lead {
    font-size: 1.6rem;
  }
}

.p-hero__cta {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
@media screen and (max-width: 1100px) {
  .p-hero__cta {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-hero__media.swiper {
    display: block;
    width: 100%;
  }
  .p-hero__media.swiper .swiper-wrapper {
    height: 100%;
  }
  .p-hero__media.swiper .swiper-slide {
    height: 100%;
  }
  /* 各スライド内の画像ブロックをフル高さに */
  .p-hero__media.swiper .p-hero__media-left,
  .p-hero__media.swiper .p-hero__media-top,
  .p-hero__media.swiper .p-hero__media-bottom {
    height: 100%;
  }
  .p-hero__media.swiper .p-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .p-hero__title,
  .p-hero__lead {
    white-space: pre-line;
  }
}
/* SP hero swiper の安定化 */
@media (max-width: 768px) {
  [data-hero-slider].swiper {
    overflow: hidden;
    transform: translateZ(0);
  }
  [data-hero-slider] .swiper-slide {
    overflow: hidden;
  }
  [data-hero-slider] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
} /* iOS Safari：スクロール時のヒーロー画像伸縮抑制 */
@supports (-webkit-touch-callout: none) {
  .p-hero {
    height: calc(100svh - var(--header-h));
  }
  .p-hero__media-left,
  .p-hero__media-top,
  .p-hero__media-bottom {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }
  .p-hero__img img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* utility */
.p-hospitality__cell, .p-hospitality__panel-ja, .p-doctor__role, .p-doctor__specialty,
.p-doctor__affiliation, .p-glance__lead p, .p-about__title,
.p-about__text {
  white-space: pre-line;
}

.u-skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: #ffffff;
  border: 0.1rem solid var(--color-border);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.u-skip-link:focus {
  transform: translateY(1.2rem);
  left: 1.2rem;
}

/* 言語切り替え（data-lang運用ならこちらに統一） */
.lang-en {
  display: none;
}

html[data-lang=en] .lang-ja {
  display: none;
}

html[data-lang=en] .lang-en {
  display: inline;
}

/* SP下固定バーがある場合の余白 */
@media screen and (max-width: 767px) {
  body {
    padding-bottom: var(--sp-bottom-bar-h);
  }
}
/* 英語・インドネシア語時：段落の整列 */
html[data-lang=en] .p-about__text p,
html[data-lang=en] .p-hero__lead,
html[data-lang=en] .p-about__title,
html[data-lang=en] .p-glance__lead,
html[data-lang=en] .p-hospitality__lead,
html[data-lang=en] .p-doctor__role,
html[data-lang=en] .p-doctor__specialty,
html[data-lang=en] .p-doctor__affiliation,
html[data-lang=id] .p-about__text p,
html[data-lang=id] .p-hero__lead,
html[data-lang=id] .p-about__title,
html[data-lang=id] .p-glance__lead,
html[data-lang=id] .p-hospitality__lead,
html[data-lang=id] .p-doctor__role,
html[data-lang=id] .p-doctor__specialty,
html[data-lang=id] .p-doctor__affiliation {
  text-align: left;
}

/* ======================================
  p-about
====================================== */
.p-about {
  position: relative;
  padding-top: 18rem;
  background: #ffffff;
}

.p-about__marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 4.8rem;
}

.p-about__marquee-track {
  display: flex;
  width: max-content;
  animation: about-marquee 36s linear infinite;
  will-change: transform;
}

.p-about__marquee-group {
  display: flex;
  align-items: stretch;
  gap: 2.4rem;
  padding-right: 2.4rem;
  flex-shrink: 0;
}

.p-about__gallery-item {
  margin: 0;
  width: 24rem;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ffffff;
  flex-shrink: 0;
}

.p-about__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about__inner {
  margin: 0 auto;
  text-align: center;
}

.p-about__line {
  display: block;
  width: 100%;
  height: 0.1rem;
  margin: 3.2rem auto 3.2rem;
  background: rgba(165, 138, 85, 0.55);
}

.p-about__text {
  display: grid;
  gap: 2rem;
}

.p-about__text p {
  margin: 0;
  font-family: var(--font-serif, "Times New Roman", "Noto Serif JP", serif);
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(165, 138, 85, 0.85);
}

.p-about__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3vw, 4.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-gold-text);
}

@keyframes about-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1.2rem));
  }
}
@media screen and (max-width: 767px) {
  .p-about::before {
    content: "";
  }
  .p-about {
    padding-top: 0;
    margin: 5rem auto 3rem;
  }
  .p-about__marquee {
    margin-bottom: 3.2rem;
  }
  .p-about__marquee-track {
    animation-duration: 28s;
  }
  .p-about__marquee-group {
    gap: 1.2rem;
    padding-right: 1.2rem;
  }
  .p-about__gallery-item {
    width: 16rem;
    aspect-ratio: 4/3;
  }
  .p-about__inner {
    position: relative;
    z-index: 1;
    padding-right: 0;
  }
  .p-about__title {
    text-align: left;
  }
  .p-about__line {
    margin: 2.4rem auto;
  }
  .p-about__text p {
    font-size: 1.6rem;
    line-height: 2;
    text-align: justify;
  }
  /* SPは改行を減らして読みやすく */
  .p-about__text br {
    display: none;
  }
}
.p-glance {
  position: relative;
  min-height: 110vh;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .p-glance {
    min-height: 220vh;
  }
}

.p-glance__sticky {
  position: sticky;
  top: 0;
  height: 90vh;
  z-index: 0;
}

/* 背景 */
.p-glance__bg {
  position: absolute;
  inset: 0;
  background: url("../img/fv06.png") center/cover no-repeat;
  filter: saturate(0.55);
  pointer-events: none;
}

/* 背景の白フィルター */
.p-glance__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.p-glance__content {
  position: relative;
  z-index: 1;
  margin-top: -80vh;
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-glance__content {
    padding: 6rem 0 8rem;
  }
}

.p-glance__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ======================================
  features
====================================== */
.p-glance__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-glance__features {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
}

.p-glance-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.p-glance-card__img {
  display: block;
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.p-glance-card__label {
  margin: 0;
  padding: 1.2rem 1.2rem 1.4rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold-text);
  text-align: center;
  background: #fff;
}

/* ======================================
  lead
====================================== */
.p-glance__lead {
  margin-top: 9rem;
  text-align: center;
  color: var(--color-gold-dark);
}
.p-glance__lead p {
  margin: 0.8rem 0;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-glance__lead p {
    padding: 0 2rem;
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
  }
}

/* ======================================
  title
====================================== */
.p-glance__title {
  margin: 6rem 0 2.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-glance__title {
    margin: 6rem 2rem 2.6rem;
    text-align: left;
  }
}

.p-glance__title-en {
  font-family: var(--font-english);
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  letter-spacing: 0.04em;
  color: var(--color-gold-text);
}

/* ======================================
  stats
====================================== */
.p-glance__stats {
  margin-top: 2.4rem;
  padding: 0 2rem;
  backdrop-filter: blur(2px);
}

.p-glance__stats-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-glance__stats-top {
    grid-template-columns: 1fr;
  }
}

.p-glance__stats-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media screen and (max-width: 1100px) {
  .p-glance__stats-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-glance__stats-bottom {
    grid-template-columns: 1fr;
  }
}

.p-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 12rem;
  padding: 2rem 1.6rem;
  text-align: center;
  border: 0.1rem solid rgba(70, 51, 11, 0.35);
  background: rgba(255, 255, 255, 0.78);
}

.p-stat__num {
  margin: 0 0 0.8rem;
  font-family: var(--font-english);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-gold-text);
}

.p-stat__unit {
  font-size: 1.6rem;
}

.p-stat__cap {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: var(--color-gold-text);
}

.p-stat__sub {
  margin: 0;
  font-size: 1.6rem;
  color: var(--color-gold-text);
}

/* ======================================
  modal
====================================== */
.p-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.p-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(80%, 80rem);
  height: min(80vh, 75rem);
  background: #ffffff;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.p-modal__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 3;
  width: 4rem;
  height: 4rem;
  border: 0;
  border-radius: 50%;
  background: #a28952;
  color: #ffffff;
  font-size: 3.4rem;
  line-height: 1;
  cursor: pointer;
}
.p-modal__body {
  display: block;
  flex: 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}
.p-modal__body--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  height: 100%;
  padding: 8rem;
  box-sizing: border-box;
}
.p-modal__image {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.p-modal__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}
.p-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}
.p-modal__content--wide {
  height: 100%;
  padding: 8rem 8rem 4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.p-modal__title {
  margin: 0 0 2rem;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-gold-text);
  flex-shrink: 0;
}
.p-modal__text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2;
}

/* ======================================
  body scroll lock
====================================== */
html.is-modal-open,
body.is-modal-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

body.is-modal-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

body.is-modal-open .l-footer__top-btn,
body.is-modal-open .l-footer__top-btn.is-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ======================================
  equipment modal swiper
====================================== */
.p-modal-swiper {
  width: 100%;
  max-width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.p-modal-swiper__frame {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr) 4.8rem;
  align-items: center;
  column-gap: 1.6rem;
  flex: 1;
  min-height: 0;
}

.p-modal-swiper__viewport {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.p-modal-swiper .swiper-wrapper {
  align-items: stretch;
}

.p-modal-swiper .swiper-slide {
  width: 100%;
  box-sizing: border-box;
  height: auto;
}

.p-modal-slide {
  margin: 0;
}

.p-modal-slide__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-modal-slide__image {
    aspect-ratio: 12/9;
  }
}
.p-modal-slide__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-modal-slide__text {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.7;
}

/* ======================================
  swiper arrows
====================================== */
.p-modal-swiper .swiper-button-prev,
.p-modal-swiper .swiper-button-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0;
  background: none;
  border: 0;
  box-shadow: none;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
}

.p-modal-swiper .swiper-button-prev::after,
.p-modal-swiper .swiper-button-next::after {
  content: none;
}

.p-modal-swiper .swiper-button-prev::before,
.p-modal-swiper .swiper-button-next::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-top: 0.2rem solid rgba(168, 143, 85, 0.9);
  border-right: 0.2rem solid rgba(168, 143, 85, 0.9);
}

.p-modal-swiper .swiper-button-prev::before {
  transform: rotate(-135deg);
}

.p-modal-swiper .swiper-button-next::before {
  transform: rotate(45deg);
}

/* ======================================
  swiper pagination
====================================== */
.p-modal-swiper .swiper-pagination {
  position: static;
  margin-top: 2rem;
  text-align: center;
  flex-shrink: 0;
}

/* ======================================
  mobile
====================================== */
@media screen and (max-width: 767px) {
  .p-modal__dialog {
    width: calc(100% - 3.2rem);
    height: min(65vh, 60rem);
  }
  .p-modal__body--split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5.6rem 2rem 2.4rem;
  }
  .p-modal__image {
    height: auto;
  }
  .p-modal__image img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .p-modal__content--wide {
    padding: 5.6rem 2rem 2.4rem;
  }
  .p-modal__title {
    font-size: 2.2rem;
  }
  .p-modal__text {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .p-modal__close {
    top: 1.2rem;
    right: 1.2rem;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 3rem;
  }
  .p-modal-swiper__frame {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    column-gap: 0.8rem;
  }
  .p-modal-swiper .swiper-button-prev,
  .p-modal-swiper .swiper-button-next {
    width: 3.6rem;
    height: 3.6rem;
  }
  .p-modal-swiper .swiper-button-prev::before,
  .p-modal-swiper .swiper-button-next::before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .p-modal-slide__text {
    font-size: 1.4rem;
  }
}
.p-specialists {
  padding: 9rem 0 10rem;
  background: #ffffff;
}

.p-specialists__head {
  margin: 0 auto;
}

.p-specialists__lead {
  margin-top: 1.6rem;
  color: var(--color-muted);
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-specialists__lead {
    font-size: 1.6rem;
  }
}
.p-specialists__lead p {
  margin: 0 0 0.8rem;
}

.p-specialists__slider {
  margin-top: 5.2rem;
  position: relative;
  width: 70%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-specialists__slider {
    width: 100%;
    margin: 0 auto;
  }
}

/* Swiper */
.p-specialists-swiper {
  position: relative;
  padding: 0 4.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-specialists-swiper {
    padding: 0 0 3.2rem;
  }
}

.p-doctor {
  position: relative;
  min-height: 52rem;
  display: grid;
  place-items: center;
}

.p-doctor__figure {
  margin: 0;
  width: min(56rem, 72%);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-doctor__figure {
    width: min(34rem, 86%);
  }
}

.p-doctor__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.p-doctor__card {
  position: absolute;
  right: 12%;
  bottom: 0;
  min-height: auto;
  width: 40rem;
  background: #f8fffd;
  padding: 1.6rem 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* 右下のグリーンアクセント */
  box-shadow: inset -0.4rem -0.4rem 0 0 rgb(13, 133, 107);
}
@media screen and (max-width: 767px) {
  .p-doctor__card {
    right: 50%;
    transform: translateX(50%);
    bottom: 0.8rem;
    width: min(32rem, 87%);
  }
}

.p-doctor__name {
  text-align: center;
  font-family: var(--font-english);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-gold-text);
}
@media screen and (max-width: 767px) {
  .p-doctor__name {
    font-size: 2rem;
  }
}
.p-doctor__name::after {
  right: 0;
  content: "";
  display: block;
  width: 100%;
  max-width: 95%;
  height: 0.2rem;
  background: var(--color-gold-text);
  margin: 1.8rem -10px 0 auto;
}

.p-doctor__role {
  margin: 0;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-muted);
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .p-doctor__role {
    line-height: 1.4;
  }
}

.p-doctor__specialty,
.p-doctor__affiliation {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 1.3rem;
  color: var(--color-muted);
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-doctor__specialty,
  .p-doctor__affiliation {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.p-doctor__affiliation {
  margin-top: 0.4rem;
  font-size: 1.25rem;
  opacity: 0.92;
}
@media screen and (max-width: 767px) {
  .p-doctor__affiliation {
    font-size: 1.15rem;
  }
}

.p-doctor__link {
  display: block;
  margin: 1rem 2rem 0 auto;
  padding: 0.4rem 0;
  width: fit-content;
  text-align: center;
  font-family: var(--font-english);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--color-gold-text);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: opacity 0.2s ease;
}
.p-doctor__link:hover, .p-doctor__link:focus-visible {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .p-doctor__link {
    font-size: 1.3rem;
    margin-top: 0.8rem;
  }
}

/* arrows */
.p-specialists__arrow {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  width: 4.8rem;
  height: 4.8rem;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.p-specialists__arrow::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-top: 0.2rem solid rgba(168, 143, 85, 0.9);
  border-right: 0.2rem solid rgba(168, 143, 85, 0.9);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-specialists__arrow {
    top: 48%;
    width: 4rem;
    height: 4rem;
  }
}

.p-specialists__arrow--prev {
  left: 1.2rem;
}
.p-specialists__arrow--prev::before {
  transform: rotate(-135deg);
}

.p-specialists__arrow--next {
  right: 1.2rem;
}
.p-specialists__arrow--next::before {
  transform: rotate(45deg);
}

/* dots */
.p-specialists__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.p-specialists__pagination .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(168, 143, 85, 0.35);
  opacity: 1;
}
.p-specialists__pagination .swiper-pagination-bullet-active {
  background: rgba(168, 143, 85, 0.9);
}

/* ======================================
  p-program
====================================== */
.p-program {
  padding: 8rem 0 9rem;
  background: #ffffff;
}

.p-program__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-program__inner {
    padding: 0;
  }
}

.p-program__head {
  max-width: 96rem;
  margin: 0 auto 4rem;
}

.p-program__intro {
  max-width: 96rem;
  margin: 5rem auto;
}

.p-program__title {
  margin: 0 0 1.6rem;
  font-family: var(--font-english);
  font-size: 6.4rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-gold-text);
  position: relative;
  padding-bottom: 1.6rem;
}
.p-program__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background: rgba(168, 143, 85, 0.55);
}
@media screen and (max-width: 767px) {
  .p-program__title {
    font-size: 3.6rem;
    padding-bottom: 1.2rem;
  }
}

.p-program__lead {
  margin: 0;
  font-size: 2rem;
  line-height: 2;
  color: var(--color-gold-dark);
}
@media screen and (max-width: 767px) {
  .p-program__lead {
    font-size: 1.6rem;
  }
}

/* card */
.p-program__card {
  max-width: 96rem;
  margin: 0 auto;
  border: 0.1rem solid rgba(168, 143, 85, 0.55);
  background: #ffffff;
}

.p-program__card-inner {
  padding: 5.2rem 6rem 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-program__card-inner {
    padding: 2.8rem 2rem 4rem;
  }
}

.p-program__course {
  margin: 0 0 2.4rem;
  font-family: var(--font-english);
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #2b2416;
}
@media screen and (max-width: 767px) {
  .p-program__course {
    font-size: 3.6rem;
  }
}

.p-program__subhead {
  margin: 0 0 1.6rem;
  font-size: 3.2rem;
  font-weight: 600;
  color: #2b2416;
}
@media screen and (max-width: 767px) {
  .p-program__subhead {
    font-size: 2.2rem;
  }
}

.p-program__rule {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: rgba(168, 143, 85, 0.55);
  margin: 0 0 2.4rem;
}

/* list */
.p-program__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-program__item + .p-program__item {
  margin-top: 1.6rem;
}

.p-program__item-title {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  font-weight: 600;
  color: #2b2416;
  line-height: 1.7;
}

.p-program__item-text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #2b2416;
  opacity: 0.9;
}

/* note */
.p-program__note {
  margin: 3rem 0 0;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #2b2416;
  opacity: 0.85;
  text-align: right;
  white-space: pre-line;
}
@media screen and (max-width: 767px) {
  .p-program__note {
    text-align: left;
  }
}

/* footer button */
.p-program__foot {
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
}

.p-program__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-width: 28rem;
  height: 5.2rem;
  padding: 0 2.4rem;
  background: rgba(168, 143, 85, 0.9);
  border: 0.1rem solid rgba(168, 143, 85, 0.9);
  color: #ffffff;
  font-family: var(--font-english);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-program__btn:hover {
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .p-program__btn {
    min-width: 24rem;
  }
}

.p-program__btn-icon {
  font-size: 1.1rem;
  transform: translateY(0.05em);
}

.p-program__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.4rem;
  margin-top: 4.8rem;
}
.p-program__subhead {
  margin: 0;
}
.p-program__price {
  margin: 0;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #2b241c;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-program__price {
    font-size: 1.8rem;
  }
}
.p-program__rule {
  display: block;
  margin-top: 2.4rem;
}

.p-program__price {
  white-space: pre-line;
}

.p-program__tax {
  font-size: 0.6em;
  margin-left: 0.4rem;
  opacity: 0.8;
}

/* ======================================
  p-faq
====================================== */
.p-faq {
  padding: 10rem 0 12rem;
  background: var(--color-gold, #a88f55);
}

.p-faq__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2.2rem;
}

.p-faq__head {
  text-align: center;
}

.p-faq__title {
  margin: 0;
  font-family: var(--font-serif, "Times New Roman", "Noto Serif JP", serif);
  font-size: clamp(3.6rem, 5vw, 6.8rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.p-faq__rule {
  display: block;
  width: min(90rem, 92%);
  height: 0.1rem;
  margin: 3.2rem auto 0;
  background: rgba(255, 255, 255, 0.45);
}

.p-faq__list {
  width: min(108rem, 92%);
  margin: 5.6rem auto 0;
  display: grid;
  gap: 3.2rem;
}

.p-faq__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 3.2rem 4rem;
  min-height: 5rem;
  text-decoration: none;
  color: inherit;
  border: 0.1rem solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.p-faq__item:hover {
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.1);
}

.p-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(67, 55, 32, 0.85);
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* 右の三角アイコン（▶） */
.p-faq__arrow {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  margin-left: 2.4rem;
  transition: transform 0.2s ease;
}
[aria-expanded=true] .p-faq__arrow {
  transform: rotate(90deg);
}

/* footer button */
.p-faq__foot {
  margin-top: 6.4rem;
  display: flex;
  justify-content: center;
}

.p-faq__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: min(56rem, 92%);
  height: 7.2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: background 0.18s ease, transform 0.18s ease;
}

.p-faq__more:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.1rem);
}

.p-faq__more-label {
  font-size: 1.6rem;
}

.p-faq__more-icon {
  width: 0;
  height: 0;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1.1rem solid rgba(255, 255, 255, 0.9);
}

/* ======================================
  responsive
====================================== */
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 7.2rem 0 9rem;
  }
  .p-faq__list {
    width: 100%;
    margin-top: 4rem;
    gap: 2rem;
  }
  .p-faq__item {
    padding: 2.2rem 2rem;
    min-height: 8.4rem;
  }
  .p-faq__q {
    font-size: 1.6rem;
  }
  .p-faq__more {
    height: 6.4rem;
  }
}
/* ======================================
  p-cta-split
====================================== */
.p-cta-split {
  width: 100%;
}

/* 2カラム：左（画像）/ 右（パネル2段） */
.p-cta-split__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 52rem;
}

/* ===== left ===== */
.p-cta-split__left {
  position: relative;
  overflow: hidden;
  min-height: 52rem;
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
}

/* 背景画像 */
.p-cta-split__media {
  position: absolute;
  inset: 0;
}

.p-cta-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 上から薄いベール（画像の“白っぽさ”） */
.p-cta-split__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

/* テキスト */
.p-cta-split__copy {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 10rem 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
  text-align: center;
}

.p-cta-split__title {
  margin: 0;
  font-family: var(--font-serif, "Times New Roman", "Noto Serif JP", serif);
  font-size: clamp(2.6rem, 3vw, 4.8rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.p-cta-split__rule {
  display: block;
  width: 100%;
  height: 0.1rem;
  background: rgb(16, 120, 90);
}

.p-cta-split__lead {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1.9;
  font-weight: 600;
}

/* ===== right ===== */
.p-cta-split__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.p-cta-split__panel {
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.p-cta-split__panel:hover {
  transform: translateY(-0.1rem);
  filter: brightness(1.02);
}

.p-cta-split__panel--contact {
  background: #0aa57a; /* 濃いグリーン */
}

.p-cta-split__panel--reservation {
  background: #e7f7f3; /* 薄いグリーン */
}

.p-cta-split__panel-text {
  font-family: var(--font-serif, "Times New Roman", "Noto Serif JP", serif);
  font-size: clamp(4rem, 3vw, 4.8rem);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.p-cta-split__panel--contact .p-cta-split__panel-text {
  color: #ffffff;
}

.p-cta-split__panel--reservation .p-cta-split__panel-text {
  color: rgba(162, 137, 82, 0.92); /* ゴールド系 */
}

/* ======================================
  responsive
====================================== */
@media screen and (max-width: 767px) {
  .p-cta-split__lead {
    text-align: left;
  }
  .p-cta-split__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .p-cta-split__left {
    min-height: 42rem;
  }
  .p-cta-split__copy {
    padding: 0rem 2rem;
  }
  .p-cta-split__right {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
  .p-cta-split__panel {
    min-height: 18rem;
  }
}
.p-cta-split__title {
  white-space: pre-line;
}

@media screen and (max-width: 767px) {
  .p-cta-split__right {
    display: none;
  }
}

/* ======================================
  p-hospitality
====================================== */
.p-hospitality {
  padding: 8rem 0 10rem;
  background: #ffffff;
}

.p-hospitality__inner {
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== media（画像2枚 + 中央パネル） ===== */
.p-hospitality__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 38rem;
  overflow: hidden;
}

.p-hospitality__img {
  position: relative;
  overflow: hidden;
}

.p-hospitality__img img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
  display: block;
}

/* 中央の白パネル */
.p-hospitality__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(64rem, 88%);
  padding: 3.2rem 3.2rem 2.8rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
}

.p-hospitality__panel-en {
  margin: 0;
  font-family: var(--font-serif, "Times New Roman", "Noto Serif JP", serif);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  letter-spacing: 0.06em;
  color: var(--color-gold-text, #A28952);
}

.p-hospitality__panel-mark {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  margin: 0 auto;
  position: relative;
}

.p-hospitality__panel-mark::before,
.p-hospitality__panel-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.6rem;
  height: 0.2rem;
  background: rgba(165, 138, 85, 0.7);
  transform-origin: center;
}

.p-hospitality__panel-mark::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-hospitality__panel-mark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-hospitality__panel-ja {
  margin: 1.6rem 0 0;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(165, 138, 85, 0.9);
}
@media screen and (max-width: 767px) {
  .p-hospitality__panel-ja {
    font-size: 1.8rem;
    line-height: 2;
  }
}

/* ===== lead ===== */
.p-hospitality__lead {
  margin: 8rem auto 0;
  max-width: 72rem;
  text-align: center;
  color: rgba(165, 138, 85, 0.9);
  letter-spacing: 0.06em;
  line-height: 2.2;
  font-size: 2rem;
}
.p-hospitality__lead p {
  margin: 0.4rem 0;
}

/* ===== table-like grid ===== */
.p-hospitality__grid {
  margin-top: 8rem;
  padding: 0 2rem;
}

/* 上段3 / 下段4 */
.p-hospitality__row {
  display: grid;
  gap: 0; /* “表”にするため0 */
  border: 0.1rem solid rgba(165, 138, 85, 0.65);
  background: #fff;
}

.p-hospitality__row--top {
  grid-template-columns: repeat(3, 1fr);
}

.p-hospitality__row--bottom {
  grid-template-columns: repeat(4, 1fr);
  border-top: 0; /* 上段の枠と繋げる */
}

/* cell */
.p-hospitality__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.6rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  height: 14rem;
  letter-spacing: 0.06em;
  color: rgba(165, 138, 85, 0.95);
  background: #ffffff;
  border-left: 0.1rem solid rgba(165, 138, 85, 0.65);
}
@media screen and (max-width: 1100px) {
  .p-hospitality__cell {
    font-size: 1.5rem;
    line-height: 2;
  }
}

/* ===== foot button ===== */
.p-hospitality__foot {
  margin-top: 5.6rem;
  display: flex;
  justify-content: center;
}

.p-hospitality__btn {
  max-width: 32rem; /* 画像の見た目に合わせて狭める */
}

/* テキスト改行 */
/* PC/SP 表示切替 */
.p-hospitality__table--sp {
  display: none;
}

/* ===== responsive ===== */
@media screen and (max-width: 767px) {
  .p-hospitality {
    padding: 6.4rem 0 8rem;
  }
  .p-hospitality__inner {
    padding: 0;
    position: relative;
    overflow: visible;
  }
  .p-hospitality__media {
    grid-template-columns: 1fr;
  }
  .p-hospitality__img img {
    min-height: 24rem;
  }
  .p-hospitality__panel {
    margin-top: 1.6rem;
  }
  .p-hospitality__lead {
    text-align: justify;
    margin: 4rem auto;
    font-size: 1.6rem;
    padding: 0 2rem;
  }
  /* PCテーブルを隠してSP表示 */
  .p-hospitality__table--pc {
    display: none;
  }
  .p-hospitality__table--sp {
    display: block;
  }
  /* SP: テーブルをカード表示へ */
  .p-hospitality__row {
    display: block;
    border: none;
    background: transparent;
  }
  .p-hospitality__row--top {
    grid-template-columns: 1fr;
  }
  .p-hospitality__row--bottom {
    grid-template-columns: 1fr;
  }
  .p-hospitality__cell {
    border: 0.1rem solid rgba(165, 138, 85, 0.35);
    background: #ffffff;
    border-radius: 0.4rem;
    margin-bottom: 3rem;
    padding: 1.2rem 1.6rem;
    font-size: 2rem;
    line-height: 1.8;
    height: 8rem;
    margin: 0 0.5rem;
  }
  .p-hospitality__btn {
    max-width: 28rem;
  }
  /* ===========================
    SP Swiper（見た目）
    - スライドは切り抜く
    - 矢印はinner基準で外へ出す（切れない）
  =========================== */
  .p-hospitality__table--sp {
    position: relative;
  }
  .p-hospitality__swiper {
    width: 80vw !important;
    margin: 0 auto;
    overflow: hidden;
  }
  .p-hospitality__swiper .swiper-slide {
    width: 100%;
    height: auto;
  }
  .p-hospitality__pagination {
    margin-top: 1.2rem;
  }
  .p-hospitality,
  .p-doctor {
    overflow: hidden;
  }
  .swiper {
    width: 100%;
    max-width: 100%;
  }
  html {
    overflow-x: clip;
  }
  /* ======================================
    p-hospitality arrows
  ====================================== */
  .p-hospitality__arrow {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    width: 4.8rem;
    height: 4.8rem;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 60;
    pointer-events: auto;
  }
  .p-hospitality__arrow::before {
    content: "";
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    border-top: 0.2rem solid rgba(168, 143, 85, 0.9);
    border-right: 0.2rem solid rgba(168, 143, 85, 0.9);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-hospitality__arrow {
    top: 50%;
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 767px) {
  /* prev */
  .p-hospitality__arrow--prev {
    left: 1.5rem;
  }
  .p-hospitality__arrow--prev::before {
    transform: rotate(-135deg);
  }
  /* next */
  .p-hospitality__arrow--next {
    right: 1.5rem;
  }
  .p-hospitality__arrow--next::before {
    transform: rotate(45deg);
  }
}
/* ======================================
  p-option
====================================== */
.p-option {
  background: #fff;
  padding: 0 0 10rem;
  color: #46330b;
}

.p-option__inner {
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.p-option__title {
  font-family: var(--font-english, "Times New Roman", serif);
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #a28952;
  margin: 0 0 6rem;
}

.p-option__head {
  display: grid;
  justify-items: center;
  gap: 4rem;
  margin: 0 0 6rem;
}

.p-option__badge {
  width: 100%;
  height: 7.4rem;
  display: grid;
  place-items: center;
  border: 1px solid #a28952;
  /* background: #a28952; */
  color: #a28952;
  font-family: var(--font-english);
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.p-option__plus {
  position: relative;
  width: 4rem;
  height: 4rem;
  opacity: 0.9;
}

.p-option__plus::before,
.p-option__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #a28952;
  transform: translate(-50%, -50%);
}

.p-option__plus::before {
  width: 0.2rem;
  height: 4rem;
}

.p-option__plus::after {
  width: 4rem;
  height: 0.2rem;
}

.p-option__note {
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #a28952;
}

/* ======================================
  p-option table
====================================== */
.p-option__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 3.6rem;
  table-layout: fixed !important;
}

.p-option__col {
  width: 33.3333333333%;
}

.p-option__cell {
  width: 33.3333333333%;
  height: 10rem;
  border: 0.1rem solid rgba(162, 137, 82, 0.8);
  padding: 1.6rem 1rem;
  text-align: center;
  vertical-align: middle;
  color: #a28952;
  background: #fff;
  transition: opacity 0.2s ease;
  overflow-wrap: anywhere;
}

.p-option__cell:hover {
  opacity: 0.85;
}

.p-option__cell-title {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.p-option__cell-sub {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

/* =============================
  Responsive
============================= */
@media screen and (max-width: 767px) {
  .p-option {
    padding: 7rem 0 6rem;
  }
  .p-option__inner {
    width: 100%;
    padding: 0;
  }
  .p-option__title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .p-option__badge {
    width: 100%;
  }
  .p-option__note {
    text-align: left;
  }
  /* SP：1列化 (display: flex で縦に並べる) */
  .p-option__table {
    display: block;
    table-layout: auto !important;
  }
  .p-option__table tbody,
  .p-option__table tr,
  .p-option__table td {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
  }
  .p-option__cell {
    height: auto;
    min-height: 8rem;
    padding: 2rem 1rem;
    border-bottom: none;
  }
  .p-option__cell:last-child {
    border-bottom: 0.1rem solid rgba(162, 137, 82, 0.8);
  }
}
/* ======================================
  p-faq (UNIFIED)
  - TOP: link list (no panel)
  - FAQ: accordion (with panel)
====================================== */
.p-faq {
  --faq-bg: #a28952;
  --faq-white: #ffffff;
  --faq-text-muted: rgba(70, 51, 11, 0.75);
  background: var(--faq-bg);
  padding: 8rem 2rem 6rem;
}

.p-faq__inner {
  max-width: 96rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding: 0;
  }
}

/* optional head (TOPなど) */
.p-faq__head {
  text-align: center;
  margin-bottom: 4rem;
}

.p-faq__title {
  margin: 0;
  font-family: var(--font-serif, "Times New Roman", "Noto Serif JP", serif);
  font-size: clamp(3.6rem, 5vw, 6.8rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.p-faq__rule {
  display: block;
  width: min(90rem, 92%);
  height: 0.1rem;
  margin: 3.2rem auto 0;
  background: rgba(255, 255, 255, 0.45);
}

/* a11y用（見た目には出さない見出し） */
.p-faq__sr {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* list */
.p-faq__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(92rem, 100%);
  display: grid;
  gap: 2rem;
}

.p-faq__item {
  background: var(--faq-white);
  border: 0.1rem solid rgba(255, 255, 255, 0.65);
  display: block;
}

/* Q row (button / a 共通) */
.p-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 2.6rem 3.2rem;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--faq-text-muted);
  appearance: none;
  /* a 対策 */
  text-decoration: none;
}

.p-faq__q:focus-visible {
  outline: 0.3rem solid rgba(255, 255, 255, 0.6);
  outline-offset: 0.4rem;
}

.p-faq__q-text {
  display: block;
}

/* link版（TOP想定）：hoverだけ少し反応 */
a.p-faq__q:hover {
  opacity: 0.85;
}

/* right arrow */
.p-faq__arrow {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  color: var(--faq-bg);
  transform: translateY(0.1rem);
  transition: transform 0.2s ease;
}

.p-faq__arrow::before {
  content: "▶";
  font-size: 1.6rem;
  line-height: 1;
}

/* panel (FAQページのみ：下に展開) */
.p-faq__panel {
  width: 100%;
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  flex: none;
}

.p-faq__a {
  padding: 2rem 3.2rem 2.6rem;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #46330b;
  border-top: 1px solid rgba(70, 51, 11, 0.2);
}

.p-faq__a p {
  margin: 0.8rem 0 0;
}

.p-faq__a p:first-child {
  margin-top: 0;
}

/* open state（FAQページのみ） */
.p-faq__item.is-open .p-faq__arrow {
  transform: rotate(90deg);
}

/* footer (TOP / FAQどちらでも使える) */
.p-faq__foot {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

/* responsive */
@media (max-width: 767px) {
  .p-faq {
    padding: 6rem 1.6rem 5rem;
  }
  .p-faq__q {
    padding: 0rem;
    font-size: 1.6rem;
  }
  .p-faq__a {
    padding: 1em 0;
    font-size: 1.5rem;
    border-top: 1px solid rgba(70, 51, 11, 0.2);
    margin: 2rem 0 0;
  }
}
/* ======================================
  p-contact
====================================== */
.p-contact {
  padding: 6.4rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 4.8rem 0 6.4rem;
  }
}
.p-contact__sr {
  /* a11y only */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.p-contact__intro {
  margin: 0 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__intro {
    margin: 0 0 2.4rem;
  }
}
.p-contact__lead {
  font-size: 1.8rem;
  line-height: 1.9;
  color: var(--color-text);
}
.p-contact__note {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.p-contact {
  /* ===== form wrapper ===== */
}
.p-contact__form {
  /* 既存サイトの余白感に合わせた「面」 */
  border: 0.1rem solid var(--color-border);
  padding: 3.2rem;
  background: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    padding: 2rem;
  }
}
.p-contact__group:not(:last-child) {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__group:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.p-contact__group--privacy {
  margin-top: 0.8rem;
}
.p-contact__label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.8rem;
}
.p-contact__required {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold-text);
}
.p-contact {
  /* ===== row (adults/children 等) ===== */
}
.p-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.p-contact__row label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 0.8rem;
}
.p-contact__row input {
  width: 100%;
}
.p-contact {
  /* ===== inputs ===== */
}
.p-contact__input, .p-contact__select, .p-contact__textarea {
  width: 100%;
  border: 0.1rem solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 1.2rem 1.4rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  /* ✅ OS依存の見た目ブレを減らす（特にselect） */
  font-family: inherit;
}
.p-contact__textarea {
  resize: vertical;
  min-height: 16rem;
}
@media screen and (max-width: 767px) {
  .p-contact__textarea {
    min-height: 16rem;
  }
}
.p-contact__select {
  appearance: none;
  -webkit-appearance: none; /* ✅ iOS/Safari */
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-border) 50%), linear-gradient(135deg, var(--color-border) 50%, transparent 50%);
  background-position: calc(100% - 2rem) 50%, calc(100% - 1.5rem) 50%;
  background-size: 0.6rem 0.6rem, 0.6rem 0.6rem;
  background-repeat: no-repeat;
  padding-right: 4.2rem;
  /* ✅ フォント指定（select本体） */
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-contact {
  /* ✅ ドロップダウン（option）側にも可能な範囲で指定
     ※ ブラウザ/OS依存で効かない場合あり */
}
.p-contact__select option {
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-contact {
  /* focus */
}
.p-contact__input:focus, .p-contact__select:focus, .p-contact__textarea:focus {
  border-color: var(--color-gold-text);
  box-shadow: 0 0 0 0.3rem rgba(162, 137, 82, 0.22);
}
.p-contact {
  /* disabled */
}
.p-contact__input:disabled, .p-contact__select:disabled, .p-contact__textarea:disabled {
  background: #f6f6f6;
  color: rgba(70, 51, 11, 0.6);
  cursor: not-allowed;
}
.p-contact {
  /* placeholder */
}
.p-contact__input::placeholder, .p-contact__textarea::placeholder {
  color: rgba(70, 51, 11, 0.45);
}
.p-contact {
  /* ===== radios ===== */
}
.p-contact__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact__radios {
    gap: 1rem 1.6rem;
  }
}
.p-contact__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  cursor: pointer;
}
.p-contact__radio input {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  accent-color: var(--color-gold-text);
}
.p-contact {
  /* ===== checkbox ===== */
}
.p-contact__check {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  cursor: pointer;
}
.p-contact__check input {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  accent-color: var(--color-gold-text);
}
.p-contact__help {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.p-contact {
  /* ===== actions ===== */
}
.p-contact__actions {
  margin-top: 2.8rem;
  display: grid;
  gap: 1.2rem;
}
.p-contact__actions .c-button {
  width: 100%;
  justify-content: center;
  min-height: 5.6rem;
}
.p-contact__fineprint {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ======================================
  Policy (Site Policy / Privacy Policy) - Shared
  - class: .p-policy
  - shared elements:
    .p-policy__head / __title / __updated
    .p-policy__section / __h2 / __h3
    .p-policy__text / __note / __link
    .p-policy__list / __item
====================================== */
.p-policy {
  /* site-wide tone */
  color: var(--color-text, #252525);
  background: #ffffff;
  /* 16px base */
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  /* header fixed 対策が必要ならページ側で padding-top を持たせてもOK */
}

/* =============================
  Head
============================= */
.p-policy__head {
  padding: 6.4rem 0 2.4rem;
  border-bottom: 0.1rem solid rgba(162, 137, 82, 0.2);
}
@media screen and (max-width: 767px) {
  .p-policy__head {
    padding: 4.8rem 0 2rem;
  }
}

.p-policy__title {
  margin: 0;
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-gold-text, #a28952);
}
@media screen and (max-width: 767px) {
  .p-policy__title {
    font-size: 2.4rem;
  }
}

.p-policy__updated {
  margin: 1.2rem 0 0;
  font-size: 1.4rem; /* 14px */
  line-height: 1.6;
  color: rgba(37, 37, 37, 0.7);
}

/* =============================
  Section
============================= */
.p-policy__section {
  padding: 3.2rem 0;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-policy__section {
    padding: 2.4rem 0;
  }
}

.p-policy__h2 {
  margin: 0 0 1.4rem;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-gold-text, #a28952);
}
@media screen and (max-width: 767px) {
  .p-policy__h2 {
    font-size: 1.8rem;
  }
}

.p-policy__h3 {
  margin: 2rem 0 1rem;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 700;
  color: rgba(37, 37, 37, 0.92);
}
@media screen and (max-width: 767px) {
  .p-policy__h3 {
    font-size: 1.6rem;
  }
}

/* =============================
  Text
============================= */
.p-policy__text {
  margin: 0;
  font-size: 1.6rem; /* 16px */
  line-height: 1.9;
  color: rgba(37, 37, 37, 0.9);
}

.p-policy__text + .p-policy__text {
  margin-top: 1.2rem;
}

.p-policy__note {
  margin: 1.2rem 0 0;
  font-size: 1.4rem; /* 14px */
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.72);
}

/* link */
.p-policy__link {
  color: var(--color-gold-text, #a28952);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 0.08em;
  transition: opacity 0.2s ease;
}

.p-policy__link:hover {
  opacity: 0.75;
}

.p-policy__link:focus-visible {
  outline: 0.2rem solid rgba(162, 137, 82, 0.55);
  outline-offset: 0.3rem;
}

/* =============================
  Lists
  - marker should NOT stick out
  - align to sentence start
============================= */
.p-policy__list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.p-policy__item {
  position: relative;
  margin: 0;
  padding-left: 1.8rem;
  font-size: 1.6rem; /* 16px */
  line-height: 1.9;
  color: rgba(37, 37, 37, 0.9);
}

/* custom marker (doesn't protrude) */
.p-policy__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1.4rem; /* 14px */
  line-height: 1.9;
  color: var(--color-gold-text, #a28952);
}

/* nested list (optional) */
.p-policy__item .p-policy__list {
  margin-top: 1rem;
  gap: 0.8rem;
}

.p-policy__item .p-policy__item {
  padding-left: 1.8rem;
}

.p-policy__item .p-policy__item::before {
  content: "–";
  font-weight: 700;
  top: 0.1em;
}

/* =============================
  Tables (for privacy policy items, etc.)
  - optional but often needed
============================= */
.p-policy__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.6rem;
  font-size: 1.6rem; /* 16px */
}

.p-policy__table th,
.p-policy__table td {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  padding: 1.2rem 1.4rem;
  vertical-align: top;
  line-height: 1.8;
}

.p-policy__table th {
  width: 32%;
  background: rgba(162, 137, 82, 0.08);
  color: rgba(37, 37, 37, 0.92);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-policy__table th {
    width: auto;
  }
}

.p-policy__table td {
  color: rgba(37, 37, 37, 0.9);
}

/* mobile table scroll */
.p-policy__table-wrap {
  margin-top: 1.6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* =============================
  Spacing helpers (optional)
============================= */
.p-policy__spacer-sm {
  height: 1.2rem;
}

.p-policy__spacer-md {
  height: 2.4rem;
}

.p-policy__spacer-lg {
  height: 3.6rem;
}

/* =============================
  Page bottom spacing (avoid footer overlap)
============================= */
.p-policy {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-policy {
    padding-bottom: 7.6rem;
  }
}

.p-policy ul {
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
}

.p-policy li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.8;
}

.p-policy li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: #a28952;
}

/*# sourceMappingURL=style.css.map */
