:root {
  --navy: #0a1f4e;
  --navy-2: #16306b;
  --gold: #b8933f;
  --gold-soft: #d9c491;
  --ink: #1b2540;
  --muted: #5f6678;
  --line: rgba(10, 31, 78, 0.12);
  --hairline: rgba(10, 31, 78, 0.08);
  --paper: #fdfcf9;
  --soft: #f5f2ea;
  --warm: #f6f0e4;
  --green: #5f7f68;
  --shadow: 0 24px 60px -18px rgba(10, 31, 78, 0.16);
  --shadow-soft: 0 14px 44px -16px rgba(10, 31, 78, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-pop: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Shippori Mincho B1", "Noto Serif JP", serif;
  --sans: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "palt";
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(184, 147, 63, 0.28);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  transition: color 0.26s var(--ease), background-color 0.26s var(--ease), border-color 0.26s var(--ease), box-shadow 0.26s var(--ease), transform 0.26s var(--ease), opacity 0.26s var(--ease);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease-pop), transform 0.7s var(--ease-pop), filter 0.7s var(--ease-pop);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
  filter: none;
}

/* セクション内の主要カード類のカスケード表示。bindReveal()が --i を付与する（app.js参照） */
.reveal .stagger-item {
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.7s var(--ease-pop), filter 0.7s var(--ease-pop);
  transition-delay: calc(var(--i, 0) * 60ms);
}

.reveal.in-view .stagger-item {
  opacity: 1;
  filter: none;
}

/* hero読み込み時のstagger（IntersectionObserver不要・app.jsのbindHeroIntro()が発火） */
.hero .hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition: opacity 0.7s var(--ease-pop), transform 0.7s var(--ease-pop), filter 0.7s var(--ease-pop);
}

.hero .hero-copy > *:nth-child(1) { transition-delay: 0ms; }
.hero .hero-copy > *:nth-child(2) { transition-delay: 80ms; }
.hero .hero-copy > *:nth-child(3) { transition-delay: 160ms; }
.hero .hero-copy > *:nth-child(4) { transition-delay: 240ms; }
.hero .hero-copy > *:nth-child(5) { transition-delay: 320ms; }

.hero.hero-in .hero-copy > * {
  opacity: 1;
  transform: none;
  filter: none;
}

.hero .hero-image {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s var(--ease-pop), transform 0.9s var(--ease-pop);
}

.hero.hero-in .hero-image {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger-item,
  .hero .hero-copy > *,
  .hero .hero-image {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  /* フローから切り離した完全オーバーレイ。main は最上部から始まり、
     ヘッダーは margin-top で上に28pxの隙間を空けて浮遊する */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: 66px;
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  background: rgba(253, 252, 249, 0.86);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: var(--shadow-soft), inset 0 1px 1px rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.desktop-nav a {
  position: relative;
  padding: 4px 2px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}

.desktop-nav a.is-active {
  color: var(--navy);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  padding: 0 28px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: 0 18px;
  font-size: 0.83rem;
  font-weight: 600;
}

.desktop-nav a {
  white-space: nowrap;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--navy-2);
}

.nav-toggle,
.drawer-head button {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 30;
  width: min(86vw, 360px);
  padding: 22px;
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform 0.25s ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
}

.mobile-drawer a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.drawer-cta {
  margin-top: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  border: 0 !important;
  padding: 14px 18px !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 42vw) 1fr;
  min-height: min(680px, 100dvh);
  background: linear-gradient(90deg, white 0%, white 40%, #edf2fa 100%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: clamp(44px, 6vw, 96px) clamp(28px, 6vw, 112px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.42;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  text-wrap: balance;
}

h1 {
  text-wrap: revert;
}

strong,
b,
time {
  font-variant-numeric: tabular-nums;
}

.hero h1 {
  font-size: 32px;
  color: var(--navy);
}

.hero-copy p:not(.eyebrow),
.page-hero p,
.section p {
  color: var(--muted);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 28rem;
  margin: 24px 0 0;
  font-weight: 500;
}

.hero-actions {
  display: grid;
  gap: 14px;
  max-width: 330px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 10px 10px 10px 24px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.btn span {
  display: inline-flex;
}

.btn span:first-child {
  order: 2;
  display: none;
}

.btn span:last-child {
  order: 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn:hover span:last-child {
  transform: translate(2px, -1px);
}

.btn:active {
  transform: scale(0.98);
  box-shadow: none;
}

.btn.primary {
  background: var(--navy);
  color: white;
}

.btn.primary:hover {
  background: var(--navy-2);
}

.btn.ghost {
  background: white;
  color: var(--navy);
}

.btn.ghost span:last-child {
  background: rgba(10, 31, 78, 0.07);
}

.btn.outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}

.btn.outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-image {
  min-width: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.dual-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.feature-panel + .feature-panel {
  border-left: 1px solid white;
}

.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04));
}

.feature-panel div {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(58%, 430px);
  padding: clamp(28px, 5vw, 72px);
}

.feature-panel span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: var(--navy);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-panel h2 {
  color: var(--navy);
  font-size: clamp(1.3rem, 2vw, 2.1rem);
}

.feature-panel p {
  margin: 14px 0 18px;
  color: #334466;
  font-weight: 500;
}

.feature-panel a,
.center-link a,
.section-head-row > a,
.feature-panel svg,
.section-head-row svg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}

/* PCのみ改行する<br>（メニュー詳細・ご予約 など） */
.pc-br {
  display: none;
}

@media (min-width: 901px) {
  .pc-br {
    display: inline;
  }
}

/* ヒーローを持たないページ（規約・記事など）は、固定ヘッダーの下に
   見出しが潜らないよう最初のセクションだけ上に余白を足す */
main > .section:first-child {
  padding-top: clamp(120px, 13vw, 150px);
}

@media (min-width: 901px) {
  .page-hero > div {
    padding-top: clamp(100px, 10vw, 116px);
  }
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title.align-left {
  text-align: left;
  margin-bottom: 0;
}

.section-title p {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 700;
}

.section-title h2,
.thought h2,
.split-section h2,
.service-main h2,
.faq h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.strength-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background: white;
  box-shadow: var(--shadow);
}

.strength-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.strength-icon {
  position: absolute;
  top: 122px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
}

.strength-card h3 {
  margin: 34px 22px 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.strength-card p {
  margin: 0 22px 24px;
  font-size: 0.88rem;
}

.thought {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  background: linear-gradient(90deg, #f8fbff 0%, #f8fbff 48%, var(--warm) 48%, var(--warm) 100%);
}

.thought-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 96px) clamp(28px, 8vw, 116px);
}

.thought-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 20px 0 30px;
}

.thought-media {
  min-height: 390px;
}

.thought-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 24px;
  text-align: center;
  background: linear-gradient(135deg, #081a42, var(--navy) 55%, var(--navy-2));
  color: white;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(38% 52% at 22% 18%, rgba(184, 147, 63, 0.22), transparent 70%),
    radial-gradient(30% 44% at 82% 86%, rgba(120, 150, 220, 0.16), transparent 70%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  color: var(--gold);
  font-size: clamp(1.4rem, 3vw, 2.35rem);
}

.cta-band p {
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band > div {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.news-list {
  width: min(680px, 100%);
  margin: 0 auto;
}

.news-list a {
  display: grid;
  grid-template-columns: 115px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time,
.column-grid time {
  color: var(--navy-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.center-link {
  margin-top: 20px;
  text-align: center;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 26px;
}

.column-grid,
.menu-grid,
.gallery-grid,
.editorial-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.column-grid article,
.menu-grid a,
.editorial-list a,
.card-row article,
.corporate-kpis article,
.reserve-box,
.info-panel,
.faq details {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.column-grid img,
.menu-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.column-grid time,
.column-grid h3,
.menu-grid strong,
.menu-grid span {
  display: block;
  padding: 0 16px;
}

.column-grid time {
  margin-top: 12px;
}

.column-grid h3 {
  margin: 5px 0 16px;
  font-size: 1rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 43vw) 1fr;
  min-height: 410px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, white, #f7f9fc);
}

.page-hero > div {
  align-self: center;
  padding: clamp(42px, 7vw, 90px) clamp(28px, 7vw, 110px);
}

.page-hero h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
}

.page-hero p:last-child {
  max-width: 33rem;
  margin-top: 18px;
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.check-list,
.process-list {
  display: grid;
  gap: 14px;
}

.check-list span,
.process-list span,
.tag-list span {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 16px 18px;
  font-weight: 700;
}

.card-row,
.corporate-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card-row article,
.corporate-kpis article {
  padding: 24px;
}

.card-row strong,
.corporate-kpis strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 32px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.tag-list span {
  padding: 8px 13px;
  font-size: 0.86rem;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.flow article,
.diagnosis-grid a {
  display: grid;
  place-items: center;
  min-height: 96px;
  background: var(--navy);
  color: white;
  text-align: center;
}

.flow b {
  color: var(--gold);
}

.reserve-box {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 24px;
}

.reserve-box .btn {
  width: 100%;
  margin-top: 12px;
}

.menu-grid a span {
  color: var(--muted);
  font-size: 0.86rem;
  padding-bottom: 16px;
}

.corporate-kpis {
  grid-template-columns: repeat(3, 1fr);
}

.process-list span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.process-list b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.info-panel {
  padding: 28px;
}

.info-panel h2 {
  color: var(--navy);
}

.info-panel dl {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px 18px;
}

.info-panel dt {
  color: var(--gold);
  font-weight: 700;
}

.info-panel dd {
  margin: 0;
}

.map-panel {
  display: grid;
  place-items: center;
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(6, 27, 73, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 27, 73, 0.06) 1px, transparent 1px),
    #f9fafb;
  background-size: 36px 36px;
  color: var(--navy);
  font-weight: 700;
}

.map-panel svg {
  width: 42px;
  height: 42px;
}

/* Googleマップ埋め込み（親グリッドに合わせて自動リサイズ） */
.map-embed {
  min-height: 340px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* トップ店舗情報の下のマップ（横幅いっぱい・レスポンシブ比率） */
.map-embed.store-map {
  margin-top: 22px;
  min-height: 0;
}

.map-embed.store-map iframe {
  aspect-ratio: 21 / 9;
  height: auto;
  min-height: 0;
  width: 100%;
  display: block;
  border: 0;
}

@media (max-width: 900px) {
  .map-embed.store-map iframe {
    aspect-ratio: 4 / 3;
  }
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

@media (max-width: 900px) {
  .map-embed,
  .map-embed iframe {
    min-height: 0;
    height: auto;
  }

  .map-embed iframe {
    aspect-ratio: 4 / 3;
    width: 100%;
  }
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.editorial-list a {
  padding: 24px;
}

.editorial-list strong,
.editorial-list span {
  display: block;
}

.campaign-strip {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 34px;
  background: var(--warm);
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.diagnosis-grid a {
  gap: 10px;
  padding: 20px;
}

.faq {
  max-width: 860px;
}

.faq details {
  margin-top: 12px;
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
    padding: 0 18px;
  }

  .nav-toggle,
  .drawer-head button {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 8px 12px 8px 0;
  }
}

@media (max-width: 900px) {
  .hero,
  .page-hero,
  .thought,
  .split-section,
  .service-layout,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    background: white;
  }

  .hero-copy {
    order: 2;
    padding: 30px 24px 42px;
  }

  .hero-image {
    order: 1;
  }

  .hero-image img,
  .page-hero img {
    min-height: auto;
    aspect-ratio: 1.28;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-actions {
    max-width: none;
  }

  .dual-services,
  .strength-grid,
  .column-grid,
  .menu-grid,
  .card-row,
  .corporate-kpis,
  .gallery-grid,
  .editorial-list,
  .diagnosis-grid,
  .flow {
    grid-template-columns: 1fr;
  }

  .feature-panel + .feature-panel {
    border-left: 0;
  }

  .feature-panel div {
    width: 82%;
    padding: 26px;
  }

  .feature-panel::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
  }

  .section {
    width: min(100% - 32px, 640px);
    padding: 68px 0;
  }

  .thought-media {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .thought-media img {
    aspect-ratio: 1.15;
    height: auto;
  }

  .cta-band > div,
  .section-head-row,
  .campaign-strip {
    display: grid;
    align-items: stretch;
  }

  .news-list a {
    grid-template-columns: 1fr 24px;
  }

  .news-list time {
    grid-column: 1 / -1;
  }

  .page-hero > div {
    padding: 36px 24px 30px;
  }

  .page-hero img {
    grid-row: 1;
  }

  .reserve-box {
    position: static;
  }
}

/* ---------- footer ---------- */

.site-footer {
  background: linear-gradient(160deg, var(--navy), #04123a);
  color: rgba(255, 255, 255, 0.86);
  padding: clamp(44px, 6vw, 72px) clamp(24px, 6vw, 80px) 26px;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 2fr;
  gap: 40px;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: white;
}

.footer-brand span {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.footer-links h3 {
  font-size: 0.86rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- hero points ---------- */

.hero-points {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-points svg {
  color: var(--gold);
}

/* ---------- price menu ---------- */

.section-note {
  text-align: center;
  max-width: 40rem;
  margin: -14px auto 34px;
  font-size: 0.92rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
  overflow: hidden;
}

.price-illust {
  display: block;
  background: var(--warm);
  border-bottom: 1px solid var(--hairline);
}

.price-illust img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.6s var(--ease);
}

.price-card:hover .price-illust img {
  transform: scale(1.05);
}

.price-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 24px 24px;
}

.price-body h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.price-card.is-premium {
  background: linear-gradient(160deg, #fffdf7, #f9f1df);
  border-color: var(--gold);
}

.price-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 4px 12px;
  background: var(--navy);
  color: white;
  font-size: 0.74rem;
  font-weight: 700;
}

.price-badge.gold {
  background: var(--gold);
}

.price-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.price-card-head h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.4;
}

.price-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
}

.is-premium .price-icon {
  background: var(--gold);
  color: white;
}

.price-lead {
  flex: 1;
  margin: 0 0 16px;
  font-size: 0.86rem;
}

.price-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.price-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}

.price-meta strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
}

.is-premium .price-meta strong {
  color: var(--gold);
}

.price-meta.detail {
  justify-content: flex-start;
  gap: 22px;
  border-top: 0;
  padding-top: 0;
}

.price-meta.detail strong {
  font-size: 1.9rem;
}

.price-note {
  margin: 6px 0 16px;
  font-size: 0.78rem;
  color: var(--muted);
}

.price-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

.price-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
}

.is-premium .price-reserve {
  background: var(--gold);
}

.menu-more {
  margin: -40px auto 60px;
}

/* ---------- effects grid ---------- */

.effects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.effects-grid article {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.05);
}

.effects-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
}

.effects-grid strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.06rem;
}

.effects-grid p {
  margin: 6px 0 0;
  font-size: 0.85rem;
}

/* ---------- store info ---------- */

.store-info {
  background: var(--soft);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.store-grid article {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  text-align: center;
}

.store-grid svg {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  color: var(--gold);
}

.store-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.store-grid p {
  margin: 0;
  font-size: 0.84rem;
}

/* ---------- notes & panels ---------- */

.note-panel {
  padding: 30px;
  background: var(--soft);
  border-left: 4px solid var(--gold);
}

.note-panel h2,
.note-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.note-panel ul {
  margin: 12px 0;
  padding-left: 20px;
}

.note-panel li {
  margin: 6px 0;
}

.note-panel.corporate {
  background: linear-gradient(135deg, var(--navy), #082c70);
  border-left-color: var(--gold);
  color: rgba(255, 255, 255, 0.88);
}

.note-panel.corporate h2 {
  color: var(--gold);
}

.note-panel.corporate p {
  color: rgba(255, 255, 255, 0.82);
}

.small-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.option-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  padding: 14px 18px;
  background: var(--warm);
  font-size: 0.88rem;
  font-weight: 600;
}

.option-note svg {
  flex: none;
  color: var(--gold);
}

.option-note a {
  color: var(--gold);
  text-decoration: underline;
}

.reserve-contact {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.reserve-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.reserve-contact svg {
  color: var(--gold);
}

/* ---------- philosophy / reasons ---------- */

.philosophy-intro {
  max-width: 780px;
  text-align: center;
  padding-bottom: 20px;
}

.philosophy-intro strong {
  color: var(--navy);
}

.reason-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}

.reason-block.is-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.reason-block.is-reverse .reason-media {
  order: 2;
}

.reason-media {
  position: relative;
  min-height: 340px;
  height: 100%;
}

.reason-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.reason-media b {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: white;
  text-shadow: 0 4px 24px rgba(6, 27, 73, 0.55);
}

.reason-copy {
  padding: clamp(36px, 5vw, 72px) clamp(24px, 5vw, 88px);
}

.reason-copy h2 {
  color: var(--navy);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  margin-bottom: 16px;
}

.compare-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.compare-list span {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.88rem;
}

.compare-list b {
  color: var(--navy);
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--warm);
  border: 1px solid var(--line);
}

.stat-chip strong {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.stat-chip span {
  font-size: 0.86rem;
  font-weight: 600;
}

/* ---------- story (greeting) ---------- */

.story {
  max-width: 780px;
}

.story-block h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 18px;
}

.story-block h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.story-block blockquote {
  margin: 24px 0;
  padding: 20px 26px;
  border-left: 4px solid var(--gold);
  background: var(--warm);
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--navy);
}

.story-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

/* ---------- cross links ---------- */

.cross-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cross-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 14px;
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.cross-links .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.cross-links strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.cross-links svg {
  color: var(--gold);
}

/* ---------- practitioner profile ---------- */

.profile-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 40px;
  align-items: start;
}

.profile-side {
  position: sticky;
  top: 92px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.profile-side img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 18px;
}

.profile-side h2 {
  color: var(--navy);
  font-size: 1.4rem;
}

.profile-side h2 small {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.profile-side dl {
  margin: 16px 0;
  font-size: 0.85rem;
}

.profile-side dt {
  color: var(--gold);
  font-weight: 700;
}

.profile-side dd {
  margin: 2px 0 10px;
}

.profile-side h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.profile-side ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.84rem;
}

.profile-side li {
  margin: 4px 0;
}

.profile-main .story-block {
  margin-bottom: 40px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.stat-band article {
  padding: 22px;
  text-align: center;
  background: linear-gradient(160deg, var(--navy), #0a2a68);
  color: rgba(255, 255, 255, 0.85);
}

.stat-band strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1.2;
}

.stat-band strong span {
  font-size: 1rem;
}

.stat-band p {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ---------- voice ---------- */

.review-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-links a {
  display: grid;
  gap: 4px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.review-links strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.review-links span {
  font-size: 0.84rem;
  color: var(--muted);
}

.review-links svg {
  justify-self: end;
  color: var(--gold);
}

.card-row.three,
.menu-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-row b {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
}

.card-row.three strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.card-row .perk-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 6px 0 10px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--navy);
}

/* ---------- gallery ---------- */

.gallery-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-cards article {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.gallery-cards img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.gallery-cards strong {
  display: block;
  padding: 14px 16px 0;
  color: var(--navy);
  font-family: var(--serif);
}

.gallery-cards p {
  margin: 4px 0 0;
  padding: 0 16px 16px;
  font-size: 0.82rem;
}

/* ---------- corporate steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps-grid article {
  position: relative;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.steps-grid b {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.steps-grid strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.steps-grid p {
  margin: 0;
  font-size: 0.85rem;
}

/* ---------- company ---------- */

.company-section {
  max-width: 780px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.company-table th {
  width: 160px;
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  background: var(--soft);
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
}

.company-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

/* ---------- hairset gallery（旧サイトの羅列表示を踏襲。キャプション・lightboxなし） ---------- */

.hairset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.hairset-grid img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--warm);
}

.hairset-more-btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.hairset-more-btn:hover {
  background: var(--warm);
  transform: translateY(-2px);
}

/* ---------- 旧サイトiframe埋め込み（出張型/来店型/プレゼンティーズム測定） ---------- */

.iframe-embed {
  width: 100%;
}

.iframe-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ---------- shindan ---------- */

.shindan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.shindan-grid a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  padding: 22px 26px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.shindan-grid > a > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
}

.shindan-grid strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.shindan-grid p {
  margin: 0;
  font-size: 0.82rem;
}

.shindan-grid b {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.84rem;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 6px;
  padding: 34px 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.06);
}

.contact-card > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
}

.contact-card strong {
  color: var(--navy);
}

.contact-card b {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
}

.contact-card p {
  margin: 0;
  font-size: 0.8rem;
}

.tag-list.center {
  justify-content: center;
}

.contact-topics .section-title {
  margin-bottom: 22px;
}

/* ---------- campaign / golden ---------- */

.campaign-actions {
  display: grid;
  gap: 12px;
}

.golden-band {
  background: linear-gradient(135deg, #0a1330, var(--navy) 55%, #23336b);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.golden-band h2 {
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.golden-band p {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8) !important;
}

.golden-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.golden-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(195, 154, 69, 0.55);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
}

/* ---------- service detail ---------- */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  color: var(--muted);
}

.breadcrumb a {
  font-weight: 600;
}

.breadcrumb span {
  color: var(--gold);
}

.breadcrumb b {
  color: var(--navy);
  font-weight: 700;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: white;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-chips svg {
  color: var(--gold);
}

.hero-chips .chip-price {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  font-family: var(--serif);
  font-size: 1rem;
}

.service-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

.hero-mark {
  position: absolute;
  right: 26px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.hero-mark svg {
  width: 30px;
  height: 30px;
}

.service-hero.tint-1 { background: linear-gradient(90deg, white, #eef3fb); }
.service-hero.tint-1 .service-hero-media::after { background: rgba(13, 43, 101, 0.18); }
.service-hero.tint-2 { background: linear-gradient(90deg, white, #f6f0e4); }
.service-hero.tint-2 .service-hero-media::after { background: rgba(195, 154, 69, 0.2); }
.service-hero.tint-3 { background: linear-gradient(90deg, white, #edf4f0); }
.service-hero.tint-3 .service-hero-media::after { background: rgba(95, 127, 104, 0.22); }
.service-hero.tint-4 { background: linear-gradient(90deg, white, #f3eff8); }
.service-hero.tint-4 .service-hero-media::after { background: rgba(84, 66, 125, 0.18); }
.service-hero.tint-gold { background: linear-gradient(90deg, #fffdf7, #f4e8cf); }
.service-hero.tint-gold .service-hero-media::after { background: linear-gradient(135deg, rgba(195, 154, 69, 0.34), rgba(6, 27, 73, 0.28)); }
.service-hero.tint-gold .hero-mark { background: var(--gold); color: white; }
.service-hero.tint-gold h1 { color: #8a6a24; }

.service-sub {
  margin: 44px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-size: 1.3rem !important;
}

.recommend-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommend-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
}

.recommend-list svg {
  flex: none;
  color: var(--gold);
}

.effects-grid.mini {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.effects-grid.mini article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  padding: 16px 18px;
}

.effects-grid.mini span {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  margin: 0;
}

.effects-grid.mini p {
  font-size: 0.8rem;
}

.faq-inline {
  margin-top: 10px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
}

.faq-inline summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

.price-table strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
}

/* ---------- strength reasons (dynamic illustrated layout) ---------- */
/* 1枚目（reason-feat）は横長スパン、残り3枚（reason-tile）は上部イラスト帯＋下部テキストで
   並べる。各カードともイラストがカード面積の40%以上を占めるよう構成 */

.reasons-dyn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reason-feat {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 42%) 1fr;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.reason-feat-media {
  position: relative;
  min-height: 240px;
}

.reason-tile {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.reason-tile-media {
  position: relative;
  aspect-ratio: 6 / 5;
}

.reason-feat-media img,
.reason-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-feat-num,
.reason-tile-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: white;
  text-shadow: 0 2px 18px rgba(10, 31, 78, 0.6), 0 0 2px rgba(10, 31, 78, 0.4);
}

.reason-feat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 34px 40px;
}

.reason-tile-body {
  padding: 22px 24px 26px;
}

.reason-feat-body .reason-tile-icon,
.reason-tile-body .reason-tile-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
}

.reason-tile-icon svg {
  width: 20px;
  height: 20px;
}

.reason-feat-body h3,
.reason-tile-body h3 {
  color: var(--navy);
  font-size: 1.18rem;
  margin: 0 0 6px;
}

.reason-feat-body p,
.reason-tile-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- journey flow (from design comp) ---------- */

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  padding: 20px 4px 4px;
}

.journey::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
}

.j-step {
  position: relative;
  text-align: center;
}

.j-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.j-node.ring {
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.j-node.fill {
  background: var(--navy);
  color: white;
  border-radius: 50%;
}

.j-node.diamond {
  width: 42px;
  height: 42px;
  margin-top: 4px;
  margin-bottom: 18px;
  border: 1.5px solid var(--navy);
  transform: rotate(45deg);
}

.j-node.diamond b {
  transform: rotate(-45deg);
}

.j-node.goldring {
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.j-last .j-node {
  box-shadow: 0 0 0 5px rgba(184, 147, 63, 0.14), 0 0 26px rgba(184, 147, 63, 0.4);
}

.j-step h4 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.j-step p {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- menu cards v3 (from design comp) ---------- */

.price-grid {
  grid-auto-flow: dense;
  align-items: stretch;
}

.price-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.price-card .corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(10, 31, 78, 0.4);
  pointer-events: none;
}

.price-card .corner.c1 { top: 7px; left: 7px; border-right: 0; border-bottom: 0; }
.price-card .corner.c2 { top: 7px; right: 7px; border-left: 0; border-bottom: 0; }
.price-card .corner.c3 { bottom: 7px; left: 7px; border-right: 0; border-top: 0; }
.price-card .corner.c4 { bottom: 7px; right: 7px; border-left: 0; border-top: 0; }

.is-premium .corner {
  border-color: var(--gold);
}

.price-grid > .price-card:not(.is-hero):not(.is-premium):nth-child(even) {
  background: var(--soft);
}

.price-medallion {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--warm);
  box-shadow: var(--shadow-soft);
}

.price-medallion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.price-card:hover .price-medallion img {
  transform: scale(1.08);
}

.price-card > h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.45;
  margin-bottom: 6px;
}

.price-card .price-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 24px 24px;
}

.price-card .price-meta {
  justify-content: space-between;
  gap: 20px;
}

.price-card.is-hero {
  grid-column: span 2;
  padding: 0;
  text-align: left;
  overflow: hidden;
  border-color: var(--navy);
}

.is-hero .hero-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

.is-hero .hero-band svg {
  color: var(--gold);
}

.is-hero .hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  flex: 1;
  min-height: 0;
}

.is-hero .price-illust {
  height: 100%;
  border-bottom: 0;
  border-right: 1px solid var(--hairline);
}

.is-hero .price-illust img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.is-hero .hero-copy-col {
  display: flex;
  flex-direction: column;
  padding: 24px 28px 26px;
}

.is-hero .hero-copy-col .price-body {
  padding: 0;
}

.is-hero .hero-copy-col h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.is-hero .price-meta {
  justify-content: flex-start;
  gap: 22px;
}

.is-hero .price-meta strong {
  font-size: 1.9rem;
}

.price-card.is-premium {
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 147, 63, 0.08), var(--shadow-soft);
}

.is-premium .price-illust {
  border-bottom-color: rgba(184, 147, 63, 0.4);
}

.is-premium .price-body h3 {
  color: #8a6a24;
}

/* ---------- illustrated bento grid ---------- */

.effects-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.effects-bento article {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(16, 32, 68, 0.05);
  transition: transform 0.36s var(--ease), box-shadow 0.36s var(--ease), border-color 0.36s var(--ease);
}

.effects-bento article:nth-child(3n) {
  background: var(--paper);
}

.effects-bento article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 147, 63, 0.45);
}

.effects-bento img {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.effects-bento strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.04rem;
}

.effects-bento p {
  margin: 4px 0 0;
  font-size: 0.83rem;
  line-height: 1.7;
}

.effects-bento .feat {
  grid-column: span 1;
  grid-row: span 2;
  grid-template-columns: 1fr;
  align-content: start;
  padding: 0 0 22px;
  overflow: hidden;
}

.effects-bento .feat img {
  width: 100%;
  aspect-ratio: 1.15;
  border-radius: 0;
  border-bottom: 1px solid var(--hairline);
}

.effects-bento .feat div {
  padding: 16px 22px 0;
}

.effects-bento .feat strong {
  font-size: 1.2rem;
}

.effects-bento.no-feat article {
  grid-row: auto;
}

.mini-illust {
  overflow: hidden;
  border-radius: 12px;
}

.mini-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.effects-grid.mini .mini-illust {
  width: 56px;
  height: 56px;
}

.menu-grid.illust-grid img {
  background: var(--warm);
  object-position: center 38%;
}

.reason-media.illust {
  display: grid;
  place-items: center;
  background: var(--warm);
}

.reason-media.illust img {
  width: min(72%, 360px);
  min-height: 0;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  margin: clamp(28px, 4vw, 48px) 0;
}

.reason-media.illust b {
  color: var(--gold);
  text-shadow: none;
}

.shindan-illust {
  overflow: hidden;
  border-radius: 14px;
}

.shindan-grid > a > .shindan-illust {
  width: 64px;
  height: 64px;
  background: var(--warm);
}

.shindan-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-grid.two img {
  aspect-ratio: 1.6;
}

/* ---------- booking app (/reserve) ---------- */

.booking-app {
  max-width: 880px;
  margin: 0 auto;
}

.bk-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 44px 0 18px;
}

.bk-step:first-child {
  margin-top: 0;
}

.bk-step-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--serif);
}

.bk-step h2 {
  color: var(--navy);
  font-size: 1.25rem;
}

.bk-step small {
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--sans);
}

.bk-menus {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.bk-menu,
.bk-opt {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.bk-menu strong,
.bk-opt strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 0.98rem;
}

.bk-menu span,
.bk-opt span {
  font-size: 0.82rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.bk-menu.is-on,
.bk-opt.is-on {
  border-color: var(--gold);
  background: var(--warm);
  box-shadow: 0 0 0 3px rgba(184, 147, 63, 0.16);
}

.bk-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.bk-opt {
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
}

.bk-opt b {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
}

.bk-opt.is-on b {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.bk-total {
  margin: 16px 0 0;
  padding: 12px 18px;
  background: var(--soft);
  border-left: 3px solid var(--gold);
  font-size: 0.95rem;
}

.bk-total strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.bk-total small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.bk-dates {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 66px;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.bk-date {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 10px 4px;
  background: white;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
}

.bk-date span {
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.bk-date small {
  font-size: 0.72rem;
  color: var(--muted);
}

.bk-date.is-sun small {
  color: #b0483f;
}

.bk-date.is-on {
  border-color: var(--gold);
  background: var(--warm);
  box-shadow: 0 0 0 3px rgba(184, 147, 63, 0.16);
}

.bk-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 8px;
}

.bk-slot {
  padding: 11px 4px;
  background: white;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

.bk-slot:hover {
  border-color: var(--gold);
}

.bk-slot.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.bk-empty {
  padding: 18px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.9rem;
}

.bk-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.bk-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.bk-form label span {
  display: inline-block;
  justify-self: start;
  padding: 1px 8px;
  background: #b0483f;
  color: white;
  font-size: 0.68rem;
  border-radius: 3px;
}

.bk-form input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: white;
  font: inherit;
}

.bk-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.bk-agree {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 500 !important;
  cursor: pointer;
}

.bk-agree input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.bk-agree span {
  font-size: 0.86rem;
  color: var(--ink);
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.bk-agree a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bk-agree b {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  background: #b0483f;
  color: white;
  font-size: 0.68rem;
  border-radius: 3px;
  font-weight: 700;
}

.legal-page {
  max-width: 780px;
}

.legal-page h1 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}

.legal-lead {
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-page h2 {
  color: var(--navy);
  font-size: 1.08rem;
  margin: 28px 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}

.legal-page .small-note {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-page .post-actions {
  margin-top: 26px;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal a:hover {
  color: var(--gold);
}

.bk-submit {
  margin-top: 8px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.26s var(--ease), transform 0.26s var(--ease);
}

.bk-submit:hover:not(:disabled) {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.bk-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.bk-error {
  padding: 12px 16px;
  background: #fbeeec;
  border-left: 3px solid #b0483f;
  color: #8a3a33;
  font-size: 0.88rem;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.contact-fields textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: white;
  font: inherit;
  resize: vertical;
}

.contact-fields textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.cf-status {
  padding: 12px 16px;
  font-size: 0.88rem;
}

.cf-status.is-ng {
  background: #fbeeec;
  border-left: 3px solid #b0483f;
  color: #8a3a33;
}

.cf-status.is-ok {
  background: #eef5ef;
  border-left: 3px solid var(--green);
  color: #3c5a44;
}

.bk-done {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.bk-done-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
}

.bk-done-mark svg {
  width: 32px;
  height: 32px;
}

.bk-done h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.bk-done .company-table {
  text-align: left;
  margin-bottom: 16px;
}

.bk-done .post-actions {
  justify-content: center;
}

/* ---------- booking summary bar (/reserve) ---------- */

.bk-step {
  scroll-margin-top: 96px;
}

.bk-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px clamp(12px, 3vw, 32px);
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  background: rgba(253, 252, 249, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 -12px 40px -18px rgba(10, 31, 78, 0.25);
}

.bk-bar-items {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bk-bar-item {
  flex: none;
  display: grid;
  gap: 0;
  min-width: 92px;
  padding: 6px 12px;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
}

.bk-bar-item small {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.bk-bar-item strong {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-bar-item.is-set {
  border-color: rgba(184, 147, 63, 0.6);
  background: var(--warm);
}

.bk-bar-item.is-set strong {
  color: var(--navy);
}

.bk-bar-item:hover {
  border-color: var(--gold);
}

.bk-bar-total {
  flex: none;
  text-align: right;
}

.bk-bar-total small {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
}

.bk-bar-total strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 0.98rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 520px) {
  .bk-bar-total {
    display: none;
  }

  .bk-bar-item {
    min-width: 78px;
    padding: 5px 10px;
  }
}

/* ---------- fixed reserve bar (service detail) ---------- */

main.with-reserve-bar {
  padding-bottom: 86px;
}

.reserve-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 40px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(253, 252, 249, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 -12px 40px -18px rgba(10, 31, 78, 0.25);
}

.reserve-bar-info {
  min-width: 0;
}

.reserve-bar-info strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reserve-bar-info span {
  font-size: 0.78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.reserve-bar-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 26px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
}

.reserve-bar-btn:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.reserve-bar-btn:active {
  transform: scale(0.98);
}

.reserve-bar-btn svg {
  color: var(--gold);
}

/* ---------- news / column list pages ---------- */

.post-list-section {
  max-width: 880px;
}

.post-count {
  margin: -20px 0 18px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
}

.post-list a {
  display: grid;
  grid-template-columns: auto 110px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.26s var(--ease), padding-left 0.26s var(--ease);
}

.post-list a:first-child {
  border-top: 1px solid var(--line);
}

.post-list a:hover {
  background: var(--soft);
  padding-left: 14px;
}

.post-list a:not(:has(.post-thumb)) {
  grid-template-columns: 110px 1fr 24px;
}

.post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid var(--hairline);
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-list time {
  color: var(--navy-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.post-list strong {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-list svg {
  color: var(--gold);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.pagination a:hover {
  border-color: var(--gold);
  background: var(--warm);
}

.pagination .is-current {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.pagination .is-disabled {
  color: var(--muted);
  opacity: 0.5;
}

.pagination .pg-prev,
.pagination .pg-next {
  border-radius: 999px;
  padding: 0 18px;
}

/* ---------- post article ---------- */

.post-article {
  max-width: 780px;
}

.post-badge {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 4px 14px;
  background: var(--navy);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.post-badge.is-news {
  background: var(--gold);
}

.post-article h1 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.post-article > time {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 26px;
}

.post-migrating h3 {
  font-size: 1.05rem;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.column-grid article a {
  display: block;
}

/* ---------- interactive states (taste pass) ---------- */

.strength-card,
.price-card,
.column-grid article,
.menu-grid a,
.gallery-cards article,
.review-links a,
.cross-links a,
.shindan-grid a,
.contact-card,
.editorial-list a,
.effects-grid article,
.steps-grid article {
  transition: transform 0.36s var(--ease), box-shadow 0.36s var(--ease), border-color 0.36s var(--ease);
}

.strength-card:hover,
.price-card:hover,
.menu-grid a:hover,
.gallery-cards article:hover,
.review-links a:hover,
.cross-links a:hover,
.shindan-grid a:hover,
.contact-card:hover,
.editorial-list a:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 147, 63, 0.45);
}

.column-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.column-grid img,
.menu-grid img,
.gallery-cards img {
  transition: transform 0.6s var(--ease);
}

.column-grid article:hover img,
.menu-grid a:hover img,
.gallery-cards article:hover img {
  transform: scale(1.04);
}

.column-grid article,
.menu-grid a,
.gallery-cards article {
  overflow: hidden;
}

.news-list a {
  transition: background-color 0.26s var(--ease), padding-left 0.26s var(--ease);
}

.news-list a:hover {
  background: var(--soft);
  padding-left: 10px;
}

.faq details,
.faq-inline {
  transition: border-color 0.26s var(--ease), box-shadow 0.26s var(--ease);
}

.faq details[open],
.faq-inline[open] {
  border-color: rgba(184, 147, 63, 0.5);
  box-shadow: var(--shadow-soft);
}

.diagnosis-grid a:hover,
.flow article {
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.diagnosis-grid a:hover {
  background: var(--navy-2);
  transform: translateY(-3px);
}

.price-reserve:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.price-reserve:active {
  transform: scale(0.97);
}

.mobile-drawer {
  border-radius: 22px 0 0 22px;
  transition: transform 0.44s var(--ease);
}

.mobile-drawer a {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.mobile-drawer.is-open a {
  opacity: 1;
  transform: none;
}

.mobile-drawer.is-open a:nth-child(3) { transition-delay: 0.05s; }
.mobile-drawer.is-open a:nth-child(4) { transition-delay: 0.09s; }
.mobile-drawer.is-open a:nth-child(5) { transition-delay: 0.13s; }
.mobile-drawer.is-open a:nth-child(6) { transition-delay: 0.17s; }
.mobile-drawer.is-open a:nth-child(7) { transition-delay: 0.21s; }
.mobile-drawer.is-open a:nth-child(8) { transition-delay: 0.25s; }
.mobile-drawer.is-open a:nth-child(9) { transition-delay: 0.29s; }
.mobile-drawer.is-open a:nth-child(10) { transition-delay: 0.33s; }
.mobile-drawer.is-open a:nth-child(11) { transition-delay: 0.37s; }

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer a {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- responsive for new components ---------- */

@media (max-width: 1100px) {
  .price-grid,
  .effects-grid,
  .review-links,
  .contact-grid,
  .effects-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-cards,
  .steps-grid,
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-side {
    position: static;
  }

  .reasons-dyn {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-footer,
  .reason-block,
  .reason-block.is-reverse,
  .cross-links,
  .shindan-grid,
  .story-visual {
    grid-template-columns: 1fr;
  }

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

  .reason-block.is-reverse .reason-media {
    order: 0;
  }

  .reason-media,
  .reason-media img {
    min-height: 240px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-row.three,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .post-list a,
  .post-list a:not(:has(.post-thumb)) {
    grid-template-columns: auto 1fr 24px;
    gap: 4px 14px;
  }

  .post-list time {
    grid-column: 2;
  }

  .post-list strong {
    grid-column: 2;
    grid-row: 2;
  }

  .post-list a:not(:has(.post-thumb)) time {
    grid-column: 1;
  }

  .post-list a:not(:has(.post-thumb)) strong {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .post-thumb {
    grid-row: 1 / 3;
  }

  .post-list svg {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .reasons-dyn {
    grid-template-columns: 1fr;
  }

  .reason-feat {
    grid-template-columns: 1fr;
  }

  .reason-feat-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .reason-feat-body {
    padding: 24px;
  }

  .journey {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 4px 0 4px;
  }

  .journey::before {
    top: 8px;
    bottom: 8px;
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  }

  .j-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 2px 16px;
    text-align: left;
    align-items: center;
  }

  .j-step h4 {
    grid-column: 2;
  }

  .j-step p {
    grid-column: 2;
  }

  .j-node {
    grid-row: 1 / 3;
    margin: 0;
  }

  .j-node.diamond {
    margin: 0 4px;
  }

  .menu-more {
    margin: -30px auto 40px;
  }

  .campaign-actions {
    margin-top: 10px;
  }

  .company-table th {
    width: 110px;
    padding: 14px 16px;
  }

  .company-table td {
    padding: 14px 16px;
  }
}

@media (max-width: 520px) {
  .price-grid,
  .effects-grid,
  .review-links,
  .contact-grid,
  .gallery-cards,
  .steps-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .hairset-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .price-reserve {
    justify-content: center;
  }

  .compare-list span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .effects-grid.mini {
    grid-template-columns: 1fr;
  }

  .effects-bento {
    grid-template-columns: 1fr;
  }

  .price-card.is-hero {
    grid-column: auto;
  }

  .is-hero .hero-inner {
    grid-template-columns: 1fr;
  }

  .is-hero .price-illust {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .is-hero .price-illust img {
    aspect-ratio: 1.85;
    height: auto;
  }

  .effects-bento .feat {
    grid-row: auto;
  }

  .effects-bento article {
    grid-template-columns: 72px 1fr;
  }

  .effects-bento img {
    width: 72px;
  }

  .effects-bento .feat {
    grid-template-columns: 1fr;
  }

  .effects-bento .feat img {
    width: 100%;
  }

  .gallery-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-chips span {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .hero-mark {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .brand span small {
    max-width: 170px;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .hero-copy,
  .thought-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn {
    min-height: 52px;
    font-size: 0.86rem;
  }

  .feature-panel {
    min-height: 390px;
  }

  .feature-panel img {
    min-height: 390px;
  }

  .feature-panel div {
    width: 100%;
    justify-content: end;
  }

  .feature-panel::after {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08));
  }
}


/* =========================================================
   Book Campaign LP (/book-campaign) — 完全カスタム・独立スタイル
   接頭辞 .bclp- でサイト共通トークンと分離。
   ========================================================= */

.bclp {
  overflow-x: hidden;
}

/* ---------- hero ---------- */

.bclp-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% 10%, #16306b 0%, var(--navy) 45%, #04123a 100%);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px) clamp(56px, 7vw, 96px);
}

.bclp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.1px 1.1px at 89.4% 25.2%, rgba(255,255,255,0.60), rgba(255,255,255,0) 100%),
    radial-gradient(1.4px 1.4px at 3.5% 58.8%, rgba(255,255,255,0.44), rgba(255,255,255,0) 100%),
    radial-gradient(1.0px 1.0px at 86.2% 73.6%, rgba(255,255,255,0.63), rgba(255,255,255,0) 100%),
    radial-gradient(0.6px 0.6px at 54.7% 28.7%, rgba(255,255,255,0.57), rgba(255,255,255,0) 100%),
    radial-gradient(0.9px 0.9px at 26.3% 26.1%, rgba(255,255,255,0.46), rgba(255,255,255,0) 100%),
    radial-gradient(0.9px 0.9px at 81.0% 56.2%, rgba(255,255,255,0.59), rgba(255,255,255,0) 100%),
    radial-gradient(0.8px 0.8px at 55.0% 47.7%, rgba(255,255,255,0.82), rgba(255,255,255,0) 100%),
    radial-gradient(1.1px 1.1px at 26.5% 31.5%, rgba(255,255,255,0.59), rgba(255,255,255,0) 100%),
    radial-gradient(1.4px 1.4px at 84.9% 48.5%, rgba(255,255,255,0.41), rgba(255,255,255,0) 100%),
    radial-gradient(1.0px 1.0px at 27.1% 36.7%, rgba(255,255,255,0.53), rgba(255,255,255,0) 100%),
    radial-gradient(0.7px 0.7px at 93.8% 25.9%, rgba(255,255,255,0.85), rgba(255,255,255,0) 100%),
    radial-gradient(1.2px 1.2px at 26.3% 10.5%, rgba(255,255,255,0.42), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 14.2% 89.8%, rgba(255,255,255,0.63), rgba(255,255,255,0) 100%),
    radial-gradient(0.7px 0.7px at 46.6% 24.2%, rgba(255,255,255,0.70), rgba(255,255,255,0) 100%),
    radial-gradient(1.1px 1.1px at 2.5% 59.7%, rgba(255,255,255,0.87), rgba(255,255,255,0) 100%),
    radial-gradient(1.1px 1.1px at 11.8% 22.2%, rgba(255,255,255,0.50), rgba(255,255,255,0) 100%),
    radial-gradient(1.4px 1.4px at 32.2% 95.4%, rgba(255,255,255,0.87), rgba(255,255,255,0) 100%),
    radial-gradient(1.1px 1.1px at 50.4% 77.4%, rgba(255,255,255,0.79), rgba(255,255,255,0) 100%),
    radial-gradient(1.2px 1.2px at 81.3% 28.4%, rgba(255,255,255,0.81), rgba(255,255,255,0) 100%),
    radial-gradient(1.5px 1.5px at 0.7% 31.2%, rgba(255,255,255,0.74), rgba(255,255,255,0) 100%),
    radial-gradient(0.6px 0.6px at 13.5% 76.6%, rgba(255,255,255,0.68), rgba(255,255,255,0) 100%),
    radial-gradient(0.7px 0.7px at 13.8% 92.1%, rgba(255,255,255,0.49), rgba(255,255,255,0) 100%),
    radial-gradient(0.6px 0.6px at 41.4% 8.4%, rgba(255,255,255,0.44), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 40.2% 50.5%, rgba(255,255,255,0.85), rgba(255,255,255,0) 100%),
    radial-gradient(0.8px 0.8px at 15.3% 97.7%, rgba(255,255,255,0.70), rgba(255,255,255,0) 100%),
    radial-gradient(1.4px 1.4px at 92.3% 84.8%, rgba(255,255,255,0.58), rgba(255,255,255,0) 100%),
    radial-gradient(1.2px 1.2px at 82.7% 40.9%, rgba(255,255,255,0.66), rgba(255,255,255,0) 100%),
    radial-gradient(0.7px 0.7px at 2.5% 28.5%, rgba(255,255,255,0.51), rgba(255,255,255,0) 100%),
    radial-gradient(1.2px 1.2px at 2.0% 32.6%, rgba(255,255,255,0.52), rgba(255,255,255,0) 100%),
    radial-gradient(1.4px 1.4px at 87.4% 89.6%, rgba(255,255,255,0.56), rgba(255,255,255,0) 100%),
    radial-gradient(1.2px 1.2px at 35.7% 79.4%, rgba(255,255,255,0.81), rgba(255,255,255,0) 100%),
    radial-gradient(0.8px 0.8px at 69.7% 80.0%, rgba(255,255,255,0.51), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 82.6% 59.0%, rgba(255,255,255,0.59), rgba(255,255,255,0) 100%),
    radial-gradient(0.9px 0.9px at 35.8% 20.5%, rgba(255,255,255,0.73), rgba(255,255,255,0) 100%),
    radial-gradient(1.3px 1.3px at 70.2% 43.7%, rgba(255,255,255,0.44), rgba(255,255,255,0) 100%),
    radial-gradient(0.7px 0.7px at 80.6% 59.5%, rgba(255,255,255,0.75), rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.bclp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 82% 28%, rgba(184, 147, 63, 0.22), transparent 70%),
    radial-gradient(50% 40% at 8% 82%, rgba(120, 110, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.bclp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(280px, 1fr) minmax(220px, 300px);
  grid-template-areas: "book text photo";
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.bclp-hero-book {
  grid-area: book;
}

.bclp-hero-text {
  grid-area: text;
  text-align: center;
}

.bclp-hero-photo {
  grid-area: photo;
}

.bclp-hero-book img,
.bclp-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.bclp-ribbon {
  margin: 0 auto clamp(18px, 3vw, 26px);
}

.bclp-ribbon span {
  display: inline-block;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  color: #1b1206;
  padding: 10px 30px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.05em;
  clip-path: polygon(3% 0, 97% 0, 100% 50%, 97% 100%, 3% 100%, 0 50%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.bclp-catch {
  color: var(--gold-soft);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.bclp-h1 {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.35;
  margin: 0 0 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bclp-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.85rem, 1.6vw, 1.02rem);
  line-height: 1.9;
  margin: 0;
}

/* ---------- perks ---------- */

.bclp-perks {
  background: var(--paper);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 64px);
}

.bclp-band {
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  text-align: center;
  padding: 16px 20px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  max-width: 720px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.bclp-band span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: #1b1206;
}

.bclp-perk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 14px;
}

.bclp-perk-card {
  position: relative;
  background: linear-gradient(180deg, #fffdf8, #faf3e2);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 30px) clamp(16px, 2.4vw, 22px) clamp(24px, 3vw, 30px);
  text-align: center;
  box-shadow: 0 14px 34px rgba(10, 31, 78, 0.12);
}

.bclp-perk-card::before,
.bclp-perk-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
}

.bclp-perk-card::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.bclp-perk-card::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.bclp-perk-flag {
  position: absolute;
  top: -12px;
  right: 14px;
  background: #8e1f2b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.bclp-perk-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  color: #1b1206;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(184, 147, 63, 0.4);
}

.bclp-perk-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}

.bclp-perk-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.bclp-perk-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.bclp-perk-price s {
  color: var(--muted);
  font-size: 0.9rem;
}

.bclp-perk-price b {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #8e1f2b;
}

.bclp-perk-note {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- cta ---------- */

.bclp-cta {
  background: linear-gradient(160deg, var(--navy), #04123a);
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 20px clamp(50px, 7vw, 72px);
}

.bclp-cta-bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold));
  color: #1b1206;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  padding: 18px clamp(24px, 4vw, 40px);
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.bclp-cta-bar:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.4);
}

.bclp-cta-icon svg,
.bclp-cta-arrow svg {
  width: 1.3em;
  height: 1.3em;
  display: block;
}

.bclp-cta-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.bclp-cta-note a {
  color: var(--gold-soft);
  font-weight: 700;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .bclp-hero-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text text" "book photo";
  }

  .bclp-hero-text {
    margin-bottom: 8px;
  }

  .bclp-hero-book,
  .bclp-hero-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .bclp-perk-grid {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .bclp-perk-card {
    margin-top: 8px;
  }

  .bclp-cta-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

/* ---------- campaign banner (book-campaign teaser, shown once via localStorage) ---------- */

.bclp-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 300px;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.5s var(--ease-pop), transform 0.5s var(--ease-pop);
  pointer-events: none;
}

.bclp-banner.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.bclp-banner-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.bclp-banner-link {
  display: block;
}

.bclp-banner-link img {
  display: block;
  width: 100%;
  height: auto;
}

.bclp-banner-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 31, 78, 0.72);
  color: white;
  cursor: pointer;
}

.bclp-banner-close svg {
  width: 16px;
  height: 16px;
}

.bclp-banner.is-modal {
  right: auto;
  bottom: auto;
  inset: 0;
  width: auto;
  display: grid;
  place-items: center;
  padding: 20px;
}

.bclp-banner.is-modal .bclp-banner-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 32, 0.62);
}

.bclp-banner.is-modal .bclp-banner-card {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 360px;
}

@media (prefers-reduced-motion: reduce) {
  .bclp-banner {
    transition: none;
  }
}
