/* ============================================================
   CUTE+ PRIVATE DOG SALON — style.css
   Palette: ink #1c2733 / gold #b3903f / cream #faf7f2
   ============================================================ */

:root {
  --ink: #1c2733;
  --ink-soft: #3a4552;
  /* --gold は罫線・アイコン・装飾専用。白地/クリーム地では 3:1 台なので
     文字色には使わない(WCAG AA 4.5:1 に届かない)。
     文字には --gold-text、ゴールド地に白文字を載せるときは --gold-btn-* を使う。 */
  --gold: #b3903f;
  --gold-text: #8a6d1f;      /* 白地 4.90 / クリーム地 4.58 */
  --gold-btn-a: #7a611f;     /* 白文字 5.90 */
  --gold-btn-b: #8a6d1f;     /* 白文字 4.90 */
  --gold-bright: #c9a961;    /* 濃紺の上でのみ使用(6.73) */
  --gold-pale: #e9ddc2;      /* 濃紺の上でのみ使用(11.23) */
  --cream: #faf7f2;
  --white: #ffffff;
  --pink: #f5eae7;
  --text: #3b4048;
  --text-weak: #656b74;      /* クリーム地 5.03 / 白地 5.37 */
  --line: #e5dfd4;
  --serif-en: "Cormorant Garamond", serif;
  --serif-ja: "Noto Serif JP", serif;
  /* 数字表示用(Cormorant の「1」は大文字 I に見えるため) */
  --serif-num: "Noto Serif JP", serif;
  --sans-ja: "Zen Kaku Gothic New", sans-serif;
  --shadow-soft: 0 10px 40px rgba(28, 39, 51, 0.08);
  --shadow-strong: 0 18px 60px rgba(28, 39, 51, 0.16);
  --radius: 4px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans-ja);
  color: var(--text);
  background: var(--cream);
  line-height: 1.9;
  font-size: 15.5px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
em { font-style: normal; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

/* キーボード操作時のフォーカス可視化(ブラウザ既定のアウトラインは
   金地・白地のボタン上でほとんど見えないため、明示的に指定する) */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 2px;
}
/* 濃紺・写真の上では白抜きにする */
.hero :focus-visible,
.page-hero :focus-visible,
.rec-hero :focus-visible,
.rec-apply :focus-visible,
.cta-band :focus-visible,
.promise :focus-visible,
.footer :focus-visible,
.lightbox :focus-visible { outline-color: #fff; }

/* 本文へスキップ(固定ヘッダーとナビ7項目を毎回 Tab で通過しなくて済むように) */
.skip-link {
  position: absolute;
  left: 8px;
  top: -100px;
  z-index: 300;
  background: var(--white);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* 画面には出さず、スクリーンリーダーにだけ読ませる */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.sp-only { display: none; }
@media (max-width: 767px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  border-radius: 999px;
  transition: all 0.35s ease;
  line-height: 1.4;
}
.btn--lg { padding: 16px 44px; font-size: 15px; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-btn-a) 0%, var(--gold-btn-b) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(122, 97, 31, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(122, 97, 31, 0.5); }
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.15); }
.btn--ghost-dark { border: 1px solid rgba(255,255,255,0.6); color: #fff; }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.12); }
.btn--outline { border: 1px solid var(--gold); color: var(--gold-text); background: transparent; }
.btn--outline:hover { background: var(--gold); color: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-text);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, gap 0.3s;
}
.text-link:hover { border-color: var(--gold); gap: 12px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__logo { height: 46px; width: auto; filter: drop-shadow(0 0 3px rgba(255,255,255,0.95)) drop-shadow(0 0 10px rgba(255,255,255,0.65)); }
.header__brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.header__brand-name {
  font-family: var(--serif-en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  transition: color 0.4s;
}
.header__brand-name em { color: var(--gold-bright); }
.header__brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.85);
  transition: color 0.4s;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 26px; }
.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
  padding: 6px 0;
  position: relative;
  transition: color 0.4s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.nav__link:hover::after, .nav__link.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { white-space: nowrap; }

/* スクロール後のヘッダー
   注意: backdrop-filter を付けると fixed 子要素(モバイルドロワー)の
   基準がヘッダーになり全画面に広がらなくなるため使用しない */
.header.is-solid { background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 20px rgba(28,39,51,0.08); }
.header.is-solid .header__brand-name { color: var(--ink); }
.header.is-solid .header__brand-sub { color: var(--text-weak); }
.header.is-solid .nav__link { color: var(--ink-soft); }
.header.is-solid .header__logo { filter: none; }

.header__burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 2.2s ease;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 65% at 50% 52%, rgba(28,39,51,0.34) 0%, rgba(28,39,51,0.12) 70%),
    linear-gradient(180deg, rgba(28,39,51,0.5) 0%, rgba(28,39,51,0.26) 40%, rgba(28,39,51,0.58) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  text-shadow: 0 1px 3px rgba(28,39,51,0.5), 0 2px 28px rgba(28,39,51,0.55);
}
.hero__eyebrow {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.42em;
  margin-bottom: 22px;
  color: var(--gold-pale);
}
.hero__title-en {
  display: block;
  font-family: var(--serif-en);
  font-size: clamp(64px, 11vw, 128px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}
.hero__title-en em { color: var(--gold-bright); }
.hero__title-ja {
  display: block;
  font-family: var(--serif-ja);
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-top: 26px;
}
.hero__lead {
  margin-top: 20px;
  font-size: clamp(13.5px, 1.6vw, 15.5px);
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.92);
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}
.hero__scroll-text { font-family: var(--serif-en); font-size: 12px; letter-spacing: 0.3em; }
.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* ---------- Page hero(下層ページ) ---------- */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 35%;
  padding: calc(var(--header-h) + 40px) 24px 48px;
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,39,51,0.52) 0%, rgba(28,39,51,0.38) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(28,39,51,0.5), 0 2px 24px rgba(28,39,51,0.5);
}
.page-hero__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
  margin-bottom: 10px;
}
.page-hero__title {
  font-family: var(--serif-ja);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.2em;
}
/* 見出しに地名・犬種を添える小さい行(検索意図との一致を上げる) */
.page-hero__title span {
  display: block;
  margin-top: 12px;
  font-family: var(--sans-ja);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}
.breadcrumb {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 10px;
  justify-content: center;
}
.breadcrumb a { border-bottom: 1px solid rgba(255,255,255,0.4); transition: border-color 0.3s; }
.breadcrumb a:hover { border-color: #fff; }

/* ---------- Story(サロン案内) ---------- */
.story { background: var(--cream); }
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.story__title {
  font-family: var(--serif-en);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 6px 0 26px;
}
.story__title em { color: var(--gold-text); }
.story__title span {
  display: block;
  margin-top: 12px;
  font-family: var(--serif-ja);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.story__text { font-size: 14.5px; line-height: 2.2; margin-bottom: 18px; }
.story__quote {
  font-family: var(--serif-ja);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2.1;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 26px;
}
.story__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.story__media img { width: 100%; height: auto; }

/* ---------- Overview(サロン概要) ---------- */
.overview { background: var(--cream); }
.overview__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}
.overview__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.overview__table th, .overview__table td {
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}
.overview__table tr:last-child th, .overview__table tr:last-child td { border-bottom: none; }
.overview__table th {
  width: 170px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.overview__table td a { color: var(--gold-text); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.overview__table td a:hover { border-color: var(--gold); }
.overview__map {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 340px;
}
.overview__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.overview__access {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-weak);
}
.gallery__grid--four { grid-auto-rows: 210px; }

@media (max-width: 960px) {
  .story__grid { grid-template-columns: 1fr; gap: 32px; }
  .story__media { order: -1; }
  .overview__table th { width: 120px; white-space: normal; }
  .gallery__grid--four { grid-auto-rows: 160px; }
}

/* ---------- Pet Hotel ---------- */
.hotel-intro { background: var(--cream); padding-bottom: 70px; }
.hotel-intro .concept__lead { margin-bottom: 40px; }
.hotel-chips {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hotel-chips li {
  border: 1px solid var(--gold);
  color: var(--gold-text);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: var(--white);
}
.price-block { margin-bottom: 44px; }
.price-included__label {
  text-align: center;
  font-family: var(--serif-ja);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-text);
  margin-bottom: 18px;
}
.price-block__tax {
  font-family: var(--sans-ja);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-weak);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 12px;
  letter-spacing: 0.1em;
}
.price-table__ask { font-family: var(--sans-ja) !important; font-size: 12.5px !important; color: var(--text-weak) !important; }
.price-option { background: var(--cream); }
.shiselino .story__grid { align-items: center; }
.price-block__title {
  font-family: var(--serif-ja);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.price-block__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.price-scroll { overflow-x: auto; }
.price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}
.price-table thead th {
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 13px 10px;
  text-align: center;
  font-size: 13.5px;
}
.price-table thead th span {
  display: block;
  font-size: 10.5px;
  color: var(--gold-pale);
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.price-table tbody th {
  text-align: left;
  padding: 16px 14px;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  width: 32%;
}
.price-table tbody th span {
  display: block;
  font-weight: 400;
  font-size: 11.5px;
  color: var(--text-weak);
  margin-top: 2px;
}
.price-table tbody td {
  text-align: center;
  padding: 16px 10px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-family: var(--serif-num);
  font-weight: 500;
  font-size: 16.5px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.price-table tbody td small { font-size: 12px; font-family: var(--sans-ja); color: var(--text-weak); }
.price-notes {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text);
  display: grid;
  gap: 8px;
}
.price-notes li {
  padding-left: 18px;
  position: relative;
  line-height: 1.9;
}
.price-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--gold-text);
}
.perks {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.perk {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.perk__value {
  font-family: var(--serif-num);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--gold-text);
  margin-bottom: 10px;
}
.perk__value span { font-size: 17px; letter-spacing: 0.06em; }
.perk__label { font-size: 12.8px; color: var(--ink-soft); line-height: 1.8; }
.perks__note { margin-top: 14px; text-align: center; font-size: 12.5px; color: var(--text-weak); }

.hotel-guide { background: var(--cream); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.guide-card__title {
  font-family: var(--serif-ja);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gold-pale);
}
.guide-card__list { display: grid; gap: 8px; font-size: 13.3px; }
.guide-card__list li {
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
}
.guide-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.guide-card__note { margin-top: 14px; font-size: 12px; color: var(--text-weak); line-height: 1.8; }

.terms__intro {
  font-size: 13.8px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 30px;
  text-align: center;
}
/* アンカーで飛んだとき、固定ヘッダーの下に隠れないようにする */
.faq__item,
.tdoc__sec,
.price-block__title,
.section[id],
section[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

/* ---------- 関連ページ(内部リンク) ---------- */
.related { padding: 72px 0; background: var(--cream); }
.related__head {
  font-family: var(--serif-en);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold-text);
  text-align: center;
  margin-bottom: 8px;
}
.related__title {
  font-family: var(--serif-ja);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 36px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.related__card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.related__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.related__card-title {
  font-family: var(--serif-ja);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.related__card-title::after {
  content: "→";
  font-family: var(--serif-en);
  color: var(--gold-text);
  margin-left: auto;
  transition: transform 0.3s ease;
}
.related__card:hover .related__card-title::after { transform: translateX(4px); }
.related__card-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-weak);
}
@media (max-width: 767px) {
  .related { padding: 56px 0; }
}

/* 表の見出し(画面には出さず、読み上げと検索エンジンにだけ伝える) */
.price-table caption,
.overview__table caption {
  text-align: left;
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- よくあるご質問(FAQ) ---------- */
.faq__list { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 24px;
  position: relative;
  transition: background 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
/* 見出し要素を summary の中に置いているので、ブロック化を打ち消す */
.faq__item summary h3 {
  display: inline;
  font-family: var(--serif-ja);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.8;
}
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif-en);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-text);
  transition: transform 0.3s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { background: rgba(138, 109, 31, 0.06); }
.faq__body {
  padding: 2px 24px 24px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--text);
}
.faq__body p { margin-bottom: 12px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body strong { font-weight: 700; color: var(--ink); }
.faq__body a { color: var(--gold-text); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.faq__body a:hover { border-color: var(--gold-text); }
.faq__note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13.5px;
  line-height: 2;
  color: var(--text);
}
.faq__note a { color: var(--gold-text); }

.terms { display: grid; gap: 12px; }
.terms__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}
.terms__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 22px;
  font-family: var(--serif-ja);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  position: relative;
  transition: background 0.3s;
}
.terms__item summary::-webkit-details-marker { display: none; }
.terms__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-text);
  transition: transform 0.3s ease;
}
.terms__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.terms__item summary:hover { background: rgba(179, 144, 63, 0.06); }
.terms__body {
  padding: 4px 22px 24px;
  font-size: 13.5px;
  line-height: 2;
  color: var(--text);
}
.terms__body h3 {
  font-size: 13.8px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 18px 0 8px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}
.terms__body h3:first-child { margin-top: 0; }
.terms__body p { margin-bottom: 10px; }
.terms__body ul { display: grid; gap: 6px; margin: 8px 0 12px; }
.terms__body ul li {
  padding-left: 16px;
  position: relative;
}
.terms__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- 募集要項(Recruit・大胆レイアウト) ---------- */
.rec-hero {
  position: relative;
  min-height: 88svh;
  padding: calc(var(--header-h) + 48px) clamp(24px, 6vw, 90px) 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.rec-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* トリマー(左)と犬(中央)が両方入る自然な構図で表示 */
  background-position: 22% 30%;
}
.rec-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,39,51,0.18) 0%, rgba(28,39,51,0.05) 34%, rgba(28,39,51,0.5) 60%, rgba(28,39,51,0.86) 100%),
    linear-gradient(0deg, rgba(28,39,51,0.45) 0%, transparent 30%);
}
.rec-hero__watermark {
  position: absolute;
  left: -0.06em;
  bottom: -0.18em;
  z-index: 1;
  font-family: var(--serif-en);
  font-size: clamp(90px, 13vw, 180px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233,221,194,0.5);
  user-select: none;
  white-space: nowrap;
}
.rec-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(28,39,51,0.55), 0 2px 24px rgba(28,39,51,0.5);
}
.rec-hero__eyebrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--gold-bright);
  margin-bottom: 26px;
}
.rec-hero__title {
  font-family: var(--serif-ja);
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 24px;
}
.rec-hero__title em { color: var(--gold-bright); }
.rec-hero__sub {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
}
.rec-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.rec-stats { background: var(--gold-btn-b); padding: 0; }
.rec-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rec-stat {
  text-align: center;
  padding: 34px 16px;
  color: #fff;
}
.rec-stat + .rec-stat { border-left: 1px solid rgba(255,255,255,0.28); }
.rec-stat__value {
  font-family: var(--serif-num);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(28,39,51,0.15);
}
.rec-stat__value span { font-size: 0.45em; letter-spacing: 0.06em; }
.rec-stat__label { font-size: 12px; letter-spacing: 0.08em; color: rgba(255,255,255,0.92); }
.rec-message { background: var(--cream); }
.rec-message__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.rec-message__title {
  font-family: var(--serif-ja);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: var(--ink);
  margin: 8px 0 28px;
}
.rec-message__text { font-size: 14.3px; line-height: 2.15; margin-bottom: 16px; }
.rec-message__catch {
  margin-top: 28px;
  font-family: var(--serif-ja);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-text);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  line-height: 2;
}
.rec-message__photos {
  display: grid;
  gap: 18px;
}
.rec-message__photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.rec-message__photos img:first-child { transform: rotate(-1.2deg); }
.rec-message__photos img:last-child { transform: rotate(1.2deg) translateX(4%); width: 92%; }
.rec-outline { background: var(--white); }
.rec-apply {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(201,169,97,0.2) 0%, transparent 55%),
    var(--ink);
  padding: 96px 0;
  text-align: center;
  color: #fff;
}
.rec-apply__title {
  font-family: var(--serif-ja);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 10px 0 16px;
}
.rec-apply .cta-band__text { margin-bottom: 36px; }

@media (max-width: 960px) {
  /* モバイル: 写真バナー + 濃紺パネルの縦積み */
  .rec-hero {
    min-height: 0;
    padding: 0;
    display: block;
    background:
      radial-gradient(ellipse at 15% 15%, rgba(201,169,97,0.16) 0%, transparent 55%),
      var(--ink);
  }
  .rec-hero__media {
    position: static;
    height: 58vw;
    background-position: left 28%;
    margin-top: var(--header-h);
  }
  .rec-hero__scrim { display: none; }
  .rec-hero__inner {
    max-width: none;
    padding: 40px 24px 110px;
    text-shadow: none;
  }
  .rec-hero__watermark { -webkit-text-stroke-color: rgba(201,169,97,0.28); }
  .rec-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .rec-stat + .rec-stat { border-left: none; }
  .rec-stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.28); }
  .rec-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.28); }
  .rec-message__grid { grid-template-columns: 1fr; }
  .rec-message__photos { grid-template-columns: 1fr 1fr; align-items: start; }
  .rec-message__photos img:last-child { transform: rotate(1.2deg); width: 100%; }
}

/* ---------- 利用規約ドキュメント ---------- */
.tdoc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 56px);
  box-shadow: var(--shadow-soft);
}
.tdoc__sec + .tdoc__sec { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line); }
.tdoc__title {
  font-family: var(--serif-ja);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.tdoc__title span {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-text);
  min-width: 30px;
  text-align: right;
}
.tdoc__sec p { font-size: 13.8px; line-height: 2.05; margin-bottom: 10px; }
.tdoc__sec h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 16px 0 8px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}
.tdoc__sec ul { display: grid; gap: 6px; margin: 8px 0 12px; font-size: 13.5px; }
.tdoc__sec ul li {
  padding-left: 16px;
  position: relative;
  line-height: 1.9;
}
.tdoc__sec ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.tdoc__alert {
  background: var(--pink);
  border-left: 3px solid #c96a6a;
  color: #8a3f3f;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 14px 0;
}
.tdoc__consent {
  margin-top: 40px;
  text-align: center;
  border: 1px solid rgba(179, 144, 63, 0.5);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(28px, 5vw, 44px);
  position: relative;
}
.tdoc__consent::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(179, 144, 63, 0.22);
  border-radius: 2px;
  pointer-events: none;
}
.tdoc__consent-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold-text);
  margin-bottom: 8px;
}
.tdoc__consent-title {
  font-family: var(--serif-ja);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 16px;
}
.tdoc__consent p { font-size: 13.8px; line-height: 2.2; }
.tdoc__consent em {
  display: inline-block;
  margin: 8px 0;
  font-family: var(--serif-ja);
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .perks { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .guide-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head__en {
  font-family: var(--serif-en);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold-text);
  margin-bottom: 10px;
}
.section-head__ja {
  font-family: var(--serif-ja);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.section-head__ja::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}

/* ---------- Concept ---------- */
.concept { background: var(--cream); }
.concept__lead {
  text-align: center;
  font-family: var(--serif-ja);
  font-size: clamp(15.5px, 2vw, 18px);
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 64px;
}
.concept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.concept-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 30px 40px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.concept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.concept-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  color: var(--gold-text);
}
.concept-card__icon svg { width: 100%; height: 100%; }
.concept-card__title {
  font-family: var(--serif-ja);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.concept-card__title span {
  font-family: var(--serif-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold-text);
}
.concept-card__text { font-size: 13.8px; color: var(--text); text-align: left; }
.concept__note {
  margin-top: 42px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-weak);
}

/* ---------- Services ---------- */
.services { background: var(--white); position: relative; }
.service {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 55px 0;
}
.service + .service { border-top: 1px solid var(--line); }
.service--rev .service__media { order: 2; }
.service--rev .service__body { order: 1; }
.service__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.service:hover .service__media img { transform: scale(1.05); }
.service__num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 40px;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 6px;
}
.service__title {
  font-family: var(--serif-en);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.service__title span {
  font-family: var(--sans-ja);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-text);
}
.service__catch {
  font-family: var(--serif-ja);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.service__text { font-size: 14.2px; margin-bottom: 22px; }

/* ---------- Promise ---------- */
.promise {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201,169,97,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(201,169,97,0.1) 0%, transparent 50%),
    var(--ink);
  padding: 120px 0;
}
.promise__frame {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(201,169,97,0.45);
  border-radius: var(--radius);
  padding: clamp(40px, 7vw, 72px);
  position: relative;
}
.promise__frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: 2px;
  pointer-events: none;
}
.promise__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.promise__title {
  font-family: var(--serif-ja);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 8px;
}
.promise__divider {
  color: var(--gold-bright);
  font-size: 13px;
  margin: 22px 0 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
.promise__divider::before, .promise__divider::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.6));
}
.promise__divider::after { background: linear-gradient(90deg, rgba(201,169,97,0.6), transparent); }
.promise__text {
  font-size: 14.5px;
  line-height: 2.3;
  letter-spacing: 0.06em;
  text-align: left;
}
.promise__text + .promise__text { margin-top: 20px; }
.promise__text em { color: var(--gold-bright); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  padding: 0;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,39,51,0) 45%, rgba(28,39,51,0.72) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 10px 14px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }
.gallery__item:hover .gallery__cap, .gallery__item:focus-visible .gallery__cap { opacity: 1; transform: none; }
.gallery__item:hover img { transform: scale(1.07); }
@media (hover: none) {
  .gallery__item::after { opacity: 1; }
  .gallery__cap { opacity: 1; transform: none; }
}
.gallery__ig { text-align: center; margin-top: 44px; font-size: 14px; color: var(--text-weak); }
.gallery__ig .text-link { margin-left: 8px; }

/* ---------- Instagram フィード ---------- */
.ig-feed { background: var(--white); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.ig-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28,39,51,0.28);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ig-item:hover img { transform: scale(1.07); }
.ig-item:hover::after { opacity: 1; }
.ig-item__badge {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  text-shadow: 0 1px 4px rgba(28,39,51,0.6);
}
.ig-follow { text-align: center; margin-top: 36px; }
@media (max-width: 960px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- News ---------- */
.news { background: var(--white); }
.news__list { border-top: 1px solid var(--line); }
.news__item { border-bottom: 1px solid var(--line); }
.news__link {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 10px;
  transition: background 0.3s;
  flex-wrap: wrap;
}
.news__link:hover { background: var(--cream); }
.news__date {
  font-family: var(--serif-en);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text-weak);
  flex-shrink: 0;
}
.news__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-text);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 3px 14px;
  flex-shrink: 0;
}
.news__title { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.news__more { text-align: center; margin-top: 40px; }
.news__link--toggle {
  width: 100%;
  text-align: left;
  font-family: inherit;
  letter-spacing: inherit;
}
.news__chevron {
  margin-left: auto;
  font-family: var(--serif-en);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold-text);
  flex-shrink: 0;
  padding-left: 12px;
}
.news__chevron--ext { font-size: 15px; }
.news__body { border-top: 1px dashed var(--line); }
.news__body-inner {
  background: var(--cream);
  border-radius: var(--radius);
  margin: 16px 10px 20px;
  padding: 22px 24px;
  font-size: 14px;
  line-height: 2.05;
  color: var(--text);
  white-space: pre-line;
}
.news__note {
  text-align: center;
  margin-top: 32px;
  font-size: 12.5px;
  color: var(--text-weak);
}

/* ---------- Access ---------- */
.access { background: var(--cream); }
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.access__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.access__logo { height: 54px; width: auto; }
.access__name {
  font-family: var(--serif-en);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.access__name span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-weak);
}
.access__table { margin-bottom: 32px; }
.access__table > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.access__table dt { font-weight: 700; color: var(--ink); letter-spacing: 0.08em; }
.access__table dd a { color: var(--gold-text); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.access__table dd a:hover { border-color: var(--gold); }
.access__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}
.access__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,169,97,0.18) 0%, transparent 55%),
    var(--ink);
  padding: 96px 0;
  text-align: center;
  color: #fff;
}
.cta-band__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.cta-band__title {
  font-family: var(--serif-ja);
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.cta-band__text { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-band__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #141d26; color: rgba(255,255,255,0.78); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-top: 70px;
  padding-bottom: 56px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__logo { height: 46px; width: auto; }
.footer__brand-text {
  font-family: var(--serif-en);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.footer__brand-text em { display: contents; color: var(--gold-bright); }
.footer__brand-text span {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.6);
}
.footer__addr { font-size: 13px; line-height: 2.1; margin-bottom: 18px; }
.footer__addr a { color: var(--gold-bright); }
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.footer__ig:hover { color: var(--gold-bright); }
.footer__head {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  transition: color 0.3s, padding-left 0.3s;
}
.footer__list a:hover { color: #fff; padding-left: 6px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 12, 17, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.lightbox__img {
  max-width: min(88vw, 1100px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: var(--shadow-strong);
}
.lightbox__cap {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  min-height: 1.2em;
}
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 30px;
  font-size: 38px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
}
.lightbox__close:hover { color: #fff; transform: rotate(90deg); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding: 20px;
  line-height: 1;
  transition: color 0.3s;
}
.lightbox__nav:hover { color: #fff; }
.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }

/* ---------- お問い合わせフォーム ---------- */
.container--form { max-width: 720px; }
.contact-tel {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.contact-tel a {
  font-family: var(--serif-num);
  font-weight: 500;
  font-size: 20px;
  color: var(--gold-text);
  margin: 0 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.contact-tel a:hover { border-color: var(--gold); }
.contact-tel span { font-size: 12.5px; color: var(--text-weak); }
.cform { display: grid; gap: 26px; }
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.cform__field { display: grid; gap: 10px; }
.cform__field label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cform__req {
  background: var(--gold-btn-a);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  border-radius: 999px;
}
.cform input[type="text"],
.cform input[type="email"],
.cform input[type="tel"],
.cform select,
.cform textarea {
  font-family: var(--sans-ja);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  appearance: none;
}
.cform textarea { resize: vertical; line-height: 1.9; }
.cform input:focus, .cform select:focus, .cform textarea:focus {
  border-color: var(--gold-text);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(138, 109, 31, 0.18);
}
/* outline を消すのはキーボード操作でない場合だけにする。
   金の細枠(非テキスト 2.82:1)では WCAG 1.4.11 の 3:1 に届かないため。 */
.cform input:focus:not(:focus-visible),
.cform select:focus:not(:focus-visible),
.cform textarea:focus:not(:focus-visible) { outline: none; }
.cform input:focus-visible,
.cform select:focus-visible,
.cform textarea:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 1px;
}
.cform input::placeholder, .cform textarea::placeholder { color: #8b8579; }
.cform__select-wrap { position: relative; }
.cform__select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.cform__error {
  color: #b0483f;
  font-size: 13px;
  line-height: 1.8;
}
.cform input.is-invalid { border-color: #b0483f; }
.cform__note {
  font-size: 12.5px;
  color: var(--text-weak);
  line-height: 1.9;
  text-align: center;
}
.cform__submit { text-align: center; display: grid; gap: 14px; justify-items: center; }
.btn--wide { min-width: min(100%, 340px); }
.cform button[disabled] { opacity: 0.6; cursor: wait; transform: none !important; }

/* ---------- 公式LINE(お問い合わせページ) ---------- */
.contact-line {
  margin-top: 64px;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 28px 52px;
}
.contact-line__illust {
  width: 260px;
  height: auto;
  margin: 0 auto 20px;
}
.contact-line__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 10px;
}
.contact-line__title {
  font-family: var(--serif-ja);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-line__text {
  font-size: 14px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 30px;
}
/* LINE のブランド緑 #06C755 は白文字だと 2.26:1 で、大きい文字の 3:1 にも届かない。
   塗りを濃い緑にして白文字を読めるようにする(5.06:1)。 */
.btn--line {
  background: #04803a;
  color: #fff;
  min-width: 280px;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(4, 128, 58, 0.35);
}
.btn--line:hover {
  background: #036b2f;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(4, 128, 58, 0.45);
}

/* ---------- 送信完了ページ ---------- */
.thanks {
  min-height: calc(100svh - var(--header-h) - 70px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
}
.thanks__inner { text-align: center; }
.thanks__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
  color: var(--gold-text);
}
.thanks__icon svg { width: 100%; height: 100%; }
.thanks__title {
  font-family: var(--serif-ja);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin: 6px 0 24px;
}
.thanks__text { font-size: 14.5px; line-height: 2.2; margin-bottom: 18px; }
.thanks__note { font-size: 12.5px; color: var(--text-weak); line-height: 2; margin-bottom: 40px; }
.thanks__note a { color: var(--gold-text); }
.thanks__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .cform__row { grid-template-columns: 1fr; }
}

/* ---------- 地図埋め込み(ブリーダーサイトと同型の白フレーム) ---------- */
.map-frame {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 10px;
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}
.map-frame iframe {
  flex: 1;
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 2px;
  filter: sepia(0.18) saturate(0.92);
  transition: filter 0.45s ease;
}
.map-frame:hover iframe { filter: none; }
.map-frame__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 4px 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-text);
}
.map-frame__link:hover { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- モバイル固定アクションバー(JSで注入・SPのみ表示) ---------- */
.mobile-bar { display: none; }
.nav__extra { display: none; }
@media (max-width: 960px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(28, 39, 51, 0.14);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 54px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }
  .mobile-bar__item--tel { color: var(--ink); background: var(--white); }
  .mobile-bar__item--line { color: #fff; background: #06C755; }
  .mobile-bar__item--reserve {
    color: #fff;
    background: linear-gradient(135deg, var(--gold-btn-a) 0%, var(--gold-btn-b) 100%);
    letter-spacing: 0.1em;
  }
  body { padding-bottom: calc(54px + env(safe-area-inset-bottom)); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide.is-active { animation: none; transform: none; }
  /* クロスフェードとスクロール線の無限ループも止める
     (Ken Burns だけ止めても切り替えの明滅は残ってしまう) */
  .hero__slide { transition: none; }
  .hero__scroll-line::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav__list { gap: 18px; }
  .nav__link { font-size: 12.5px; }
}

@media (max-width: 960px) {
  :root { --header-h: 64px; }

  /* モバイルナビ(ドロワー) */
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    align-items: center;
    z-index: 120;
  }
  .header__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
  }
  .header.is-solid .header__burger span, .header.is-open .header__burger span { background: var(--ink); }
  .header.is-open .header__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .header.is-open .header__burger span:nth-child(2) { opacity: 0; }
  .header.is-open .header__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    /* visibility も落とす。opacity:0 だけだと閉じている間もリンクが
       キーボードフォーカス可能で、画面に何も見えないまま Tab が11回空振りする。
       フェードアウトが終わってから隠すため visibility の変化だけ遅延させる。 */
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    z-index: 110;
    padding: calc(var(--header-h) + 12px) 24px 40px;
    overflow-y: auto;
  }
  .header.is-open .nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s;
  }
  .nav__list { flex-direction: column; align-items: center; gap: 10px; }
  .nav__link {
    color: var(--ink);
    font-size: 17px;
    letter-spacing: 0.14em;
    display: block;
    padding: 9px 22px;
  }
  /* メニュー項目のスタッガード表示 */
  .nav__list li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .header.is-open .nav__list li { opacity: 1; transform: none; }
  .header.is-open .nav__list li:nth-child(1) { transition-delay: 0.05s; }
  .header.is-open .nav__list li:nth-child(2) { transition-delay: 0.09s; }
  .header.is-open .nav__list li:nth-child(3) { transition-delay: 0.13s; }
  .header.is-open .nav__list li:nth-child(4) { transition-delay: 0.17s; }
  .header.is-open .nav__list li:nth-child(5) { transition-delay: 0.21s; }
  .header.is-open .nav__list li:nth-child(6) { transition-delay: 0.25s; }
  .header.is-open .nav__list li:nth-child(7) { transition-delay: 0.29s; }
  .header.is-open .header__brand-name { color: var(--ink); }
  .header.is-open .header__brand-sub { color: var(--text-weak); }
  .header.is-open .header__logo { filter: none; }
  /* ドロワー下部の連絡先ショートカット(JSで注入) */
  .nav__extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    width: min(100%, 300px);
    margin: 0 auto;
  }
  .nav__extra-tel {
    font-family: var(--serif-num);
    font-weight: 500;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: 0.04em;
  }
  .nav__extra-hours { font-size: 12px; color: var(--text-weak); margin-top: -10px; }
  .nav__extra-sns { display: flex; gap: 12px; }
  .nav__extra-sns .btn { padding: 10px 22px; font-size: 13px; min-width: 0; }

  .section { padding: 80px 0; }
  .concept__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .service, .service--rev { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .service--rev .service__media { order: 0; }
  .service--rev .service__body { order: 1; }
  .access__grid { grid-template-columns: 1fr; }
  .access__map { min-height: 300px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; }
}

@media (max-width: 560px) {
  body { font-size: 14.5px; }
  .hero { min-height: 560px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.3em; }
  .hero__title-ja { letter-spacing: 0.14em; line-height: 1.8; }
  .hero__lead { line-height: 2; }
  .hero__actions .btn { width: min(78vw, 300px); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 10px; }
  .news__link { gap: 12px; padding: 20px 6px; }
  .news__title { width: 100%; }
  .service__title { font-size: 30px; }
  .cta-band__actions .btn { width: min(78vw, 300px); }
}
