/* ================================================================
   COCORILA Sendai LP - unified stylesheet
   旧CSS 5ファイルを読み込み順のまま統合し、末尾にファーストビュー改善CSSを追加
   ================================================================ */



/* ===== Source: styles_fixed.css ===== */

:root {
  --bg: #f8f4ee;
  --bg-soft: #efe7dc;
  --paper: rgba(255, 255, 255, 0.72);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --navy: #16253f;
  --navy-soft: #22385d;
  --gold: #b18b4c;
  --gold-deep: #8f6d39;
  --beige: #d9c9b4;
  --sand: #cab69a;
  --text: #243144;
  --muted: #5b6675;
  --line: rgba(22, 37, 63, 0.12);
  --shadow: 0 24px 60px rgba(24, 36, 56, 0.12);
  --shadow-soft: 0 14px 34px rgba(24, 36, 56, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 112.5%; /* 16px -> 18px: 全体を約2ptアップ */
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(177, 139, 76, 0.15), transparent 32%),
    radial-gradient(circle at top right, rgba(34, 56, 93, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, #f6f1ea 100%);
  font-family: "Inter", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), 980px);
}

.section {
  padding: 96px 0;
  position: relative;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.65));
}

.center {
  text-align: center;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(248, 244, 238, 0.78);
  border-bottom: 1px solid rgba(22, 37, 63, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}

.brand-mark {
  color: var(--gold);
  font-size: 1.05rem;
}

.brand-text {
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-nav a:hover {
  color: var(--navy);
}

/* ========== HERO ========== */
.hero {
  padding: 68px 0 88px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(177, 139, 76, 0.18), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(22, 37, 63, 0.13), transparent 24%),
    radial-gradient(circle at 70% 65%, rgba(217, 201, 180, 0.36), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.offer-card h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 1.28;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--gold-deep);
}

.hero-sublead {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 14px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #b9975c 0%, #9f7a3d 100%);
  color: #fff;
  box-shadow: 0 18px 30px rgba(177, 139, 76, 0.22);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,0.7);
  border-color: rgba(22, 37, 63, 0.1);
}

.btn-block {
  width: 100%;
}

/* ========== HERO BADGES ========== */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-badges li {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(22, 37, 63, 0.08);
  color: var(--navy-soft);
  font-size: 0.92rem;
}

/* ========== HERO VISUAL ========== */
.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.88), rgba(255,255,255,0.52) 45%, rgba(255,255,255,0.24) 100%),
    linear-gradient(180deg, rgba(22,37,63,0.08), rgba(177,139,76,0.08));
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-glow {
  position: absolute;
  inset: 18% 17% auto;
  height: 280px;
  background: radial-gradient(circle, rgba(177,139,76,0.33), rgba(177,139,76,0.06) 48%, transparent 72%);
  filter: blur(6px);
}

.portrait-frame {
  position: absolute;
  inset: 62px 56px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(177,139,76,0.95), rgba(255,255,255,0.48), rgba(22,37,63,0.28));
}

.portrait-placeholder,
.profile-placeholder,
.map-placeholder {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(248,244,238,0.95)),
    linear-gradient(135deg, rgba(22,37,63,0.05), rgba(177,139,76,0.05));
  border: 1px dashed rgba(22,37,63,0.18);
  color: var(--navy-soft);
  padding: 24px;
}

.portrait-text,
.profile-placeholder,
.map-placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portrait-text strong,
.profile-placeholder strong,
.map-placeholder strong {
  font-family: "Noto Serif JP", serif;
  font-size: 1.12rem;
}

.portrait-text span,
.profile-placeholder span,
.map-placeholder span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* orbit / cell */
.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(177, 139, 76, 0.25);
}

.orbit-1 {
  width: 420px;
  height: 420px;
  left: 50%;
  top: 44px;
  transform: translateX(-50%);
}

.orbit-2 {
  width: 520px;
  height: 520px;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  border-color: rgba(22, 37, 63, 0.14);
}

.cell {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95), rgba(177,139,76,0.45) 54%, rgba(177,139,76,0.1));
  box-shadow: 0 6px 20px rgba(177,139,76,0.2);
}

.cell-1 {
  width: 20px;
  height: 20px;
  right: 92px;
  top: 138px;
}

.cell-2 {
  width: 34px;
  height: 34px;
  right: 54px;
  bottom: 134px;
}

.cell-3 {
  width: 16px;
  height: 16px;
  left: 58px;
  bottom: 188px;
}

/* ========== SECTION HEADING ========== */
.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

/* ========== PAIN ========== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.pain-card,
.dual-card,
.step-card,
.voice-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.pain-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pain-card p {
  margin: 0;
}

.pain-icon {
  color: var(--gold-deep);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== MESSAGE BOX ========== */
.message-box {
  background: linear-gradient(135deg, rgba(22,37,63,0.95), rgba(34,56,93,0.9));
  color: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}

.message-box p {
  margin: 0;
}

.message-box p + p {
  margin-top: 12px;
}

.message-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.28rem;
  margin-bottom: 10px !important;
}

.message-strong {
  font-weight: 600;
}

/* ========== CONCEPT ========== */
.concept-panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.concept-copy p {
  margin: 0 0 14px;
}

.check-list {
  padding-left: 1.4rem;
  margin: 14px 0;
  color: var(--muted);
}

.check-list li {
  margin-bottom: 6px;
}

.concept-strong {
  margin-top: 14px;
}

/* ========== DUAL / SOLUTION ========== */
.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dual-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
}

.dual-card p,
.step-card p,
.voice-card p,
.profile-copy p,
.access-list li,
.offer-list li {
  margin: 0;
  color: var(--muted);
}

.dual-card p + p,
.dual-card ul + p {
  margin-top: 10px;
}

.dual-card ul {
  margin: 10px 0;
  padding-left: 1.4rem;
  color: var(--muted);
}

.dual-card ul li {
  margin-bottom: 4px;
}

.dual-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.dual-kicker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(177,139,76,0.18), rgba(177,139,76,0.3));
  color: var(--gold-deep);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== TARGET ========== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.target-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.target-card h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
  font-size: 1rem;
}

.target-card p {
  margin: 0;
  color: var(--muted);
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-no {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* ========== PROFILE ========== */
.profile-grid,
.access-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 24px;
}

.profile-photo {
  min-height: 470px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(177,139,76,0.95), rgba(255,255,255,0.52), rgba(22,37,63,0.28));
  box-shadow: var(--shadow);
}

.profile-placeholder {
  min-height: 468px;
  border-radius: calc(var(--radius-xl) - 1px);
}

.profile-copy p + p {
  margin-top: 12px;
}

/* ========== VOICE ========== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.voice-card {
  position: relative;
  padding-top: 34px;
}

.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 22px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(177, 139, 76, 0.28);
  font-family: "Noto Serif JP", serif;
}

.voice-text {
  font-size: 1.02rem;
  margin-bottom: 16px !important;
}

.voice-name {
  color: var(--navy);
  font-weight: 600;
}

/* ========== OFFER ========== */
.offer-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,255,255,0.96)),
    linear-gradient(135deg, rgba(177,139,76,0.1), rgba(22,37,63,0.08));
  border: 1px solid rgba(22, 37, 63, 0.1);
  box-shadow: var(--shadow);
}

.offer-list,
.access-list {
  margin: 20px 0 0;
  padding-left: 1.2rem;
}

.offer-price {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(180deg, rgba(22,37,63,0.95), rgba(34,56,93,0.94));
  color: rgba(255,255,255,0.95);
}

.price-caption {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.74);
}

.price-original {
  margin: 0 0 12px;
  text-decoration: line-through;
  font-size: 1.08rem;
  opacity: 0.8;
}

.price-main {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.3;
}

.price-main span {
  display: block;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,0.78);
  margin-bottom: 6px;
}

.price-main small {
  font-size: 0.9rem;
}

.offer-price .btn + .btn {
  margin-top: 12px;
}

/* ========== MEMBERSHIP ========== */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.membership-grid .offer-price {
  border-radius: var(--radius-lg);
}

/* 月2プラン（おすすめ）以外のカードを落ち着いたベージュ系に */
.membership-grid .offer-price.subdued {
  background: linear-gradient(180deg, rgba(217,201,180,0.55), rgba(239,231,220,0.75));
  color: var(--navy);
  border: 1px solid rgba(177,139,76,0.2);
}

.membership-grid .offer-price.subdued .plan-copy {
  color: var(--muted);
}

.membership-grid .offer-price h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
}

.membership-grid .offer-price .plan-copy {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.membership-grid .offer-price .plan-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.membership-tagline {
  text-align: center;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 1.08rem;
  margin: 0;
}

/* ========== CLOSING ========== */
.closing {
  position: relative;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,37,63,0.97) 0%, rgba(14,24,42,0.99) 100%);
  z-index: 0;
}

.closing-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(177,139,76,0.22), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(177,139,76,0.14), transparent 38%),
    radial-gradient(circle at 55% 85%, rgba(34,56,93,0.4), transparent 40%);
}

.closing .container {
  position: relative;
  z-index: 1;
}

.closing-box {
  text-align: center;
  padding: 80px 0;
}

.closing-top {
  color: rgba(255,255,255,0.62);
  font-size: 1.18rem;
  margin: 0 0 28px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}

.closing-box h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1.5;
  margin: 0 0 36px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.3);
}

.closing-box h2 span {
  color: var(--gold);
}

.closing-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
}

.closing-bottom {
  color: rgba(255,255,255,0.7);
  font-size: 1.12rem;
  margin: 0;
  letter-spacing: 0.06em;
}

/* ========== ACCESS ========== */
.access-panel {
  min-height: 360px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(177,139,76,0.95), rgba(255,255,255,0.52), rgba(22,37,63,0.28));
  box-shadow: var(--shadow-soft);
}

.map-placeholder {
  min-height: 358px;
  border-radius: calc(var(--radius-xl) - 1px);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(22, 37, 63, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid,
  .profile-grid,
  .access-grid,
  .offer-card,
  .dual-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .target-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .visual-card {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-nav {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-block {
    width: 100%;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .message-box,
  .offer-card,
  .offer-price,
  .pain-card,
  .dual-card,
  .step-card,
  .voice-card,
  .target-card {
    padding: 22px;
  }

  .portrait-frame {
    inset: 44px 24px;
  }

  .orbit-1 {
    width: 300px;
    height: 300px;
    top: 82px;
  }

  .orbit-2 {
    width: 380px;
    height: 380px;
    top: 42px;
  }

  .visual-card {
    min-height: 470px;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

/* Voice 追加スタイル */
.voice-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.voice-subtext {
  margin-top: 14px !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* スペシャルインタビュー形式 */
.special-voice {
  margin-top: 48px;
  background: var(--paper-strong);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.special-label {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--gold);
  color: #fff;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.special-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.5;
}

.special-text {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.special-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .special-voice {
    padding: 30px 20px;
  }
  .special-content h3 {
    font-size: 1.2rem;
  }
}





/* ===== Source: styles_extra.css ===== */

/* ================================================================
   COCORILA v2 追加スタイル
   既存 styles_fixed.css を拡張する形
   ================================================================ */

/* ========== BRAND LOGO（ヘッダー強化) ========== */
.brand-logo {
  align-items: center;
  gap: 12px;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--navy);
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ========== PHILOSOPHY BAND（ヒーロー直下) ========== */
.philosophy-band {
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.philosophy-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.philosophy-main {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  color: var(--navy);
  line-height: 1.6;
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

.philosophy-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  margin: 0;
}

/* ========== METAPHOR BOX（比喩の強調) ========== */
.metaphor-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin: 36px 0 28px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(177,139,76,0.06), rgba(22,37,63,0.04));
  border: 1px solid rgba(177,139,76,0.2);
  border-radius: var(--radius-lg);
}

.metaphor-item {
  text-align: center;
}

.metaphor-tag {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.metaphor-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 10px;
}

.metaphor-text strong {
  color: var(--gold-deep);
}

.metaphor-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.metaphor-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

@media (max-width: 720px) {
  .metaphor-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .metaphor-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
}

/* ========== ORIGIN STORY（パワースポットサロンの物語) ========== */
.origin-story {
  text-align: center;
}

.origin-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--paper-strong);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(177,139,76,0.25);
  box-shadow: var(--shadow);
  position: relative;
}

.origin-panel::before,
.origin-panel::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}

.origin-panel::before {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.origin-panel::after {
  bottom: 14px;
  right: 14px;
  border-left: none;
  border-top: none;
}

.origin-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 24px;
}

.origin-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin: 0 0 32px;
  letter-spacing: 0.06em;
}

.origin-title strong {
  color: var(--gold-deep);
}

.origin-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 18px;
  text-align: left;
}

.origin-body strong {
  color: var(--navy);
  font-weight: 600;
}

.origin-closer {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.origin-closer strong {
  color: var(--gold-deep);
}

@media (max-width: 720px) {
  .origin-panel {
    padding: 36px 22px;
  }
}

/* ========== METHOD SECTION（二層構造) ========== */
.method-section .section-heading {
  margin-bottom: 48px;
}

.section-intro {
  margin: 20px auto 0;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.9;
}

.method-layers {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.layer-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow);
  position: relative;
}

.layer-mind {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.98)),
    linear-gradient(135deg, rgba(22,37,63,0.06), rgba(177,139,76,0.06));
  border-top: 3px solid var(--navy);
}

.layer-body {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.98)),
    linear-gradient(135deg, rgba(177,139,76,0.08), rgba(22,37,63,0.05));
  border-top: 3px solid var(--gold);
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}

.layer-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 600;
}

.layer-kicker {
  padding: 4px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.layer-body .layer-kicker {
  background: var(--gold-deep);
}

.layer-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--navy);
  line-height: 1.55;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.layer-equals {
  display: inline-block;
  margin: 0 8px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.layer-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 24px;
}

.layer-mechanism {
  margin: 20px 0;
  padding: 20px 24px;
  background: rgba(22,37,63,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.mechanism-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px !important;
}

.layer-mechanism p {
  margin: 0 0 8px;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.85;
}

.layer-mechanism p:last-child {
  margin-bottom: 0;
}

.layer-mechanism strong {
  color: var(--navy);
  font-weight: 600;
}

.layer-points {
  margin: 20px 0;
  padding-left: 1.4rem;
  color: var(--muted);
}

.layer-points li {
  margin-bottom: 6px;
  line-height: 1.8;
}

.layer-outcome {
  margin: 20px 0 0;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(177,139,76,0.12), rgba(177,139,76,0.04));
  border-radius: 12px;
  color: var(--navy);
  font-size: 0.98rem;
}

.layer-outcome strong {
  color: var(--gold-deep);
  font-weight: 600;
}

/* ========== LAYER ARROW ========== */
.layer-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  gap: 8px;
}

.arrow-icon {
  color: var(--gold);
  font-size: 1.3rem;
}

.arrow-text {
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}

/* ========== METHOD INTEGRATION ========== */
.method-integration {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 32px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(22,37,63,0.95), rgba(34,56,93,0.95));
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.method-integration p {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.03em;
}

.method-integration strong {
  color: var(--gold);
}

@media (max-width: 720px) {
  .layer-card {
    padding: 32px 22px;
  }
  .layer-header {
    flex-wrap: wrap;
  }
  .method-integration {
    padding: 24px 22px;
  }
}

/* ========== PHILOSOPHY SECTION ========== */
.philosophy-section .section-heading {
  margin-bottom: 48px;
}

.philosophy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto 48px;
}

.flow-step {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 500;
}

.flow-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.flow-text strong {
  color: var(--navy);
  font-weight: 600;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
}

.philosophy-conclusion {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 28px;
}

.conclusion-lead {
  font-family: "Noto Serif JP", serif;
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
}

.conclusion-main {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 20px;
  letter-spacing: 0.03em;
}

.conclusion-main strong {
  color: var(--gold-deep);
}

.conclusion-sub {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.9;
}

.conclusion-sub strong {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .philosophy-flow {
    grid-template-columns: 1fr;
  }
  .flow-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* ========== PROFILE NOTE ========== */
.profile-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.75;
}

/* ========== ACCESS NOTE ========== */
.access-note {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(22,37,63,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
  line-height: 1.9;
  font-size: 0.98rem;
}

/* ========== HERO PROMISE（サブタイトル強化) ========== */
.hero-promise {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.7rem) !important;
  color: #16253f !important;
  letter-spacing: 0.08em;
  margin: 0 0 28px !important;
  padding: 0 0 18px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(22, 37, 63, 0.18);
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
  line-height: 1.65;
}

/* ========== HERO H1 改行装飾 ========== */
.hero h1 span {
  position: relative;
  display: inline-block;
}

/* ========== MOBILE HEADER TWEAK ========== */
@media (max-width: 720px) {
  .brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.14em;
  }
  .brand-tagline {
    font-size: 0.62rem;
  }
  .philosophy-band {
    padding: 56px 0 48px;
  }
}





/* ========== MAIN VISUAL IMAGE / FIT FIX ========== */
.visual-card {
  min-height: 720px;
}

.portrait-frame {
  inset: 42px 48px;
  overflow: hidden;
}

.main-visual-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  border-radius: inherit;
}

/* PCで横幅が広くなった時も顔が切れないように調整 */
@media (min-width: 900px) {
  .visual-card {
    min-height: 690px;
  }

  .portrait-frame {
    inset: 44px 48px;
  }

  .main-visual-img {
    object-position: center 24%;
  }
}

/* スマホでは縦長表示に寄せて、人物が自然に見えるようにする */
@media (max-width: 720px) {
  .visual-card {
    min-height: 560px;
  }

  .portrait-frame {
    inset: 28px 22px;
    border-radius: 24px;
  }

  .main-visual-img {
    object-position: center 22%;
  }
}


/* ========== HEADER LOGO IMAGE ========== */
.site-logo-image {
  display: block;
  width: min(100%, 420px);
  height: auto;
}

.brand.brand-logo {
  display: inline-flex;
  align-items: center;
  max-width: 420px;
  flex-shrink: 1;
}

@media (max-width: 980px) {
  .site-logo-image {
    width: min(100%, 340px);
  }

  .brand.brand-logo {
    max-width: 340px;
  }
}

@media (max-width: 720px) {
  .site-logo-image {
    width: min(100%, 220px);
  }

  .brand.brand-logo {
    max-width: 220px;
  }

  .header-inner {
    min-height: 72px;
  }
}


@media (max-width: 720px) {
  .hero-promise {
    display: block;
    font-size: 1.15rem !important;
    padding: 0 0 16px;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }
}


/* ========== PROFILE CUSTOM ========== */
.profile-grid {
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.profile-photo {
  min-height: auto;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  justify-self: center;
  width: 100%;
  max-width: 320px;
}

.profile-photo-card {
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(22, 37, 63, 0.08);
  box-shadow: 0 24px 54px rgba(22, 37, 63, 0.10);
}

.profile-photo-img {
  display: block;
  width: 100%;
  height: auto;
}

.profile-copy {
  max-width: 680px;
}

.profile-copy .section-heading {
  margin-bottom: 22px;
}

.profile-copy h2 {
  line-height: 1.45;
  font-size: clamp(1.65rem, 2.65vw, 2.45rem);
}

.profile-copy p {
  font-size: 1rem;
  line-height: 2;
}

.profile-message-main {
  font-family: "Noto Serif JP", serif;
  color: var(--navy, #16253f) !important;
  font-size: 1.18rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-photo {
    max-width: 260px;
  }

  .profile-copy {
    max-width: none;
  }
}



/* ===== Source: styles_v3.css ===== */

/* ================================================================
   COCORILA v3 追加スタイル
   - Self-Check section
   - Benefit section
   - Movement section（睡眠革命)
   - Hero movement mention
   ================================================================ */

/* ========== HERO 内 movement mention ========== */
.movement-mention {
  margin-top: -10px !important;
  padding-top: 16px;
  border-top: 1px dashed rgba(177, 139, 76, 0.3);
  font-family: "Noto Serif JP", serif;
  color: var(--navy) !important;
  font-size: 1.05rem !important;
}

.movement-mention strong {
  color: var(--gold-deep);
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ========== SELF CHECK SECTION ========== */
.self-check-section .section-heading {
  margin-bottom: 36px;
}

.check-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.check-group {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}

.check-group-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  color: var(--navy);
  border-bottom: 1px solid rgba(177, 139, 76, 0.3);
  letter-spacing: 0.04em;
}

.check-list-v3 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list-v3 li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.7;
  border-bottom: 1px dashed rgba(22, 37, 63, 0.08);
}

.check-list-v3 li:last-child {
  border-bottom: none;
}

.check-list-v3 li::before {
  content: "☐";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.5;
}

.check-result {
  background: linear-gradient(135deg, rgba(22, 37, 63, 0.97), rgba(34, 56, 93, 0.95));
  color: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.check-result-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: 0.04em;
}

.check-result-lead strong {
  color: var(--gold);
}

.check-result-body {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

.check-result-body strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .check-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .check-result {
    padding: 26px 22px;
  }
}

/* ========== BENEFIT SECTION ========== */
.benefit-section .section-heading {
  margin-bottom: 48px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-num {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.benefit-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.benefit-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
}

.benefit-conclusion {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 30px;
}

.benefit-conclusion .conclusion-lead {
  font-family: "Noto Serif JP", serif;
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
}

.benefit-conclusion .conclusion-main {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--navy);
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.03em;
}

.benefit-conclusion .conclusion-main strong {
  color: var(--gold-deep);
}

@media (max-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    padding: 26px 22px;
  }
}

/* ========== MOVEMENT SECTION（睡眠革命) ========== */
.movement-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 !important;
  text-align: center;
}

.movement-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 37, 63, 0.97) 0%, rgba(34, 56, 93, 0.95) 50%, rgba(14, 24, 42, 0.99) 100%);
  z-index: 0;
}

.movement-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(177, 139, 76, 0.25), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(177, 139, 76, 0.18), transparent 40%);
}

.movement-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.movement-section .container {
  position: relative;
  z-index: 1;
}

.movement-inner {
  max-width: 760px;
  margin: 0 auto;
}

.movement-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 28px;
  font-weight: 500;
}

.movement-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  line-height: 1.55;
  margin: 0 0 32px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
}

.movement-title span {
  color: var(--gold);
  font-size: 1.15em;
  display: inline-block;
  position: relative;
}

.movement-title span::before,
.movement-title span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--gold);
  top: 50%;
  opacity: 0.6;
}

.movement-title span::before {
  left: -38px;
}

.movement-title span::after {
  right: -38px;
}

.movement-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 36px;
}

.movement-body {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 2;
  margin: 0 0 22px;
  letter-spacing: 0.04em;
}

.movement-body strong {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(177, 139, 76, 0.5);
  padding-bottom: 2px;
}

.movement-closing {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.movement-hashtag {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(177, 139, 76, 0.85), rgba(143, 109, 57, 0.95));
  color: #fff;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(177, 139, 76, 0.35);
}

@media (max-width: 720px) {
  .movement-section {
    padding: 84px 0 !important;
  }
  .movement-title span::before,
  .movement-title span::after {
    display: none;
  }
}

/* ========== PHILOSOPHY SECTION の調整 ========== */
.philosophy-section .section-intro {
  margin-top: 14px;
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.9;
}



/* ===== Source: styles_v4_price.css ===== */

/* ================================================================
   COCORILA v4: 価格カード(初回 / 2回目以降)
   ================================================================ */

.offer .section-heading {
  margin-bottom: 40px;
}

.price-cards {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .price-cards {
    grid-template-columns: 1fr;
  }
}

/* ========== 共通カードスタイル ========== */
.price-card {
  position: relative;
  background: var(--paper-strong);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-card-header {
  padding: 36px 36px 22px;
  text-align: center;
  border-bottom: 1px dashed var(--line);
}

.price-card-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 600;
}

.price-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--navy);
  line-height: 1.55;
  margin: 0;
  letter-spacing: 0.03em;
}

.price-card-body {
  padding: 28px 36px 12px;
  flex: 1;
}

.price-card-lead {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 22px;
}

.price-card-lead strong {
  color: var(--navy);
  font-weight: 600;
}

/* ========== 内訳リスト ========== */
.price-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-card-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(22, 37, 63, 0.1);
}

.price-card-list li:last-child {
  border-bottom: none;
}

.list-time {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 6px 10px;
  background: rgba(22, 37, 63, 0.06);
  border-radius: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.list-content {
  flex: 1;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.7;
}

.list-content strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}

/* ========== フッター(価格&CTA) ========== */
.price-card-footer {
  padding: 24px 36px 32px;
  text-align: center;
}

.price-old {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.price-old .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(22, 37, 63, 0.45);
  text-decoration-thickness: 1.5px;
}

.price-new {
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.price-tag {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-tag-plain {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(22, 37, 63, 0.08);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.price-amount strong {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-right: 2px;
}

.price-new small {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: normal;
}

.price-note {
  margin: 8px 0 22px;
  font-size: 0.88rem;
  color: var(--gold-deep);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.price-note strong {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1.05rem;
}

.price-note-regular {
  color: var(--muted);
}

/* ========== 初回カード(目立たせ) ========== */
.price-card-first {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 251, 240, 0.6) 100%);
  box-shadow: 0 12px 36px rgba(177, 139, 76, 0.2);
}

.price-card-ribbon {
  position: absolute;
  top: 14px;
  right: -38px;
  transform: rotate(34deg);
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  padding: 6px 50px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 12px rgba(177, 139, 76, 0.4);
  z-index: 1;
}

@media (max-width: 720px) {
  .price-card-ribbon {
    font-size: 0.66rem;
    padding: 5px 44px;
    right: -42px;
    top: 16px;
  }
}

/* ========== 2回目以降カード(控えめ) ========== */
.price-card-regular {
  background: rgba(248, 246, 240, 0.5);
}

.price-card-regular .price-card-title {
  color: var(--navy);
}

/* ========== 注意書き ========== */
.price-disclaimer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ========== モバイル調整 ========== */
@media (max-width: 720px) {
  .price-card-header,
  .price-card-body,
  .price-card-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .price-amount strong {
    font-size: 2.2rem;
  }
}

/* ================================================================
   サロン内観写真(ACCESSセクション)
   ================================================================ */
.salon-photo-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(22, 37, 63, 0.18);
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.salon-photo-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
  z-index: 2;
}

.salon-photo-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.salon-photo-frame:hover .salon-photo-img {
  transform: scale(1.03);
}

.salon-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, rgba(22, 37, 63, 0) 0%, rgba(22, 37, 63, 0.7) 60%, rgba(22, 37, 63, 0.85) 100%);
  color: #fff;
  text-align: center;
  z-index: 1;
}

.caption-mark {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.caption-text {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 720px) {
  .salon-photo-img {
    aspect-ratio: 1 / 1;
  }
  .caption-text {
    font-size: 0.94rem;
  }
}



/* ===== Source: styles_v5_emblem.css ===== */

/* ================================================================
   "睡眠革命" 紋章 (Hero内)
   チラシのデザインを参考に、金の額縁スタイルで配置
   ================================================================ */

/* eyebrow直下のメソッドラベル */
.eyebrow-method {
  display: inline-block;
  margin: 8px 0 18px;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(177, 139, 76, 0.12), rgba(177, 139, 76, 0.04));
  border: 1px solid rgba(177, 139, 76, 0.35);
  border-radius: 999px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  font-weight: 500;
}

.eyebrow-x {
  margin: 0 6px;
  color: var(--gold);
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}

/* ================== 紋章本体 ================== */
.revolution-emblem {
  margin: 0 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emblem-kicker {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--navy);
  margin: 0 0 14px;
  position: relative;
  display: inline-block;
  padding: 0 36px;
  font-weight: 500;
}

.emblem-kicker::before,
.emblem-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.emblem-kicker::before { left: 0; }
.emblem-kicker::after { right: 0; }

/* 額縁フレーム */
.emblem-frame {
  position: relative;
  display: inline-block;
  padding: 22px 70px;
  background:
    linear-gradient(180deg, rgba(255, 251, 240, 0.7) 0%, rgba(255, 248, 230, 0.5) 100%);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px var(--gold) inset,
    0 0 0 5px rgba(255, 251, 240, 0.6) inset,
    0 0 0 6px var(--gold-deep) inset,
    0 12px 32px rgba(177, 139, 76, 0.18);
}

/* 装飾コーナー */
.emblem-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 60%, var(--gold-deep) 60%, var(--gold-deep) 65%, transparent 65%);
  background-size: 100% 100%;
}

.emblem-corner-tl { top: 12px; left: 12px; transform: rotate(0deg); }
.emblem-corner-tr { top: 12px; right: 12px; transform: rotate(90deg); }
.emblem-corner-bl { bottom: 12px; left: 12px; transform: rotate(-90deg); }
.emblem-corner-br { bottom: 12px; right: 12px; transform: rotate(180deg); }

/* キラキラ装飾 */
.emblem-sparkle {
  position: absolute;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.85;
  pointer-events: none;
  animation: emblem-twinkle 3s ease-in-out infinite;
}

.emblem-sparkle-1 {
  top: -6px;
  left: 18%;
  font-size: 1.1rem;
}

.emblem-sparkle-2 {
  bottom: 4px;
  right: 14%;
  animation-delay: 1.5s;
}

@keyframes emblem-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* タイトル「睡眠革命」 */
.emblem-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.18em;
  line-height: 1.1;
  background: linear-gradient(180deg,
    #1a2842 0%,
    #2c3e60 40%,
    #1a2842 70%,
    #0f1828 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(177, 139, 76, 0.12);
}

/* レスポンシブ */
@media (max-width: 720px) {
  .revolution-emblem {
    margin-bottom: 24px;
  }
  .emblem-frame {
    padding: 18px 44px;
  }
  .emblem-kicker {
    font-size: 0.9rem;
    padding: 0 26px;
  }
  .emblem-kicker::before,
  .emblem-kicker::after {
    width: 14px;
  }
  .emblem-corner {
    width: 18px;
    height: 18px;
  }
  .emblem-corner-tl, .emblem-corner-tr { top: 10px; }
  .emblem-corner-tl, .emblem-corner-bl { left: 10px; }
  .emblem-corner-tr, .emblem-corner-br { right: 10px; }
  .emblem-corner-bl, .emblem-corner-br { bottom: 10px; }
}

@media (max-width: 480px) {
  .emblem-title {
    letter-spacing: 0.1em;
  }
}



/* ================================================================
   FIRST VIEW RENEWAL / 2026-05
   ファーストビュー改善：訴求・料金・予約導線を上部で明確化
   ================================================================ */
.hero-renewed {
  padding: 54px 0 82px;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}

.hero-renewed .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 48px;
}

.hero-renewed .eyebrow {
  margin-bottom: 10px;
  color: var(--navy-soft);
  letter-spacing: 0.12em;
}

.hero-renewed .eyebrow-method {
  margin: 0 0 18px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 26px rgba(24, 36, 56, 0.06);
}

.hero-emblem-compact {
  align-items: flex-start;
  text-align: left;
  margin: 0 0 20px;
}

.hero-emblem-compact .emblem-kicker {
  margin: 0 0 8px;
  padding: 0 28px;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}

.hero-emblem-compact .emblem-kicker::before,
.hero-emblem-compact .emblem-kicker::after {
  width: 16px;
}

.hero-emblem-compact .emblem-frame {
  padding: 14px 38px 15px;
  border-radius: 12px;
}

.hero-emblem-compact .emblem-title {
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  letter-spacing: 0.14em;
}

.hero-renewed h1 {
  font-size: clamp(2.55rem, 5.1vw, 4.75rem);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.hero-renewed .hero-promise {
  font-size: clamp(1.28rem, 2vw, 1.62rem) !important;
  margin-bottom: 18px !important;
  padding-bottom: 14px;
}

.hero-lead-renewed {
  max-width: 720px;
  margin-bottom: 22px;
}

.hero-offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,248,235,0.78));
  border: 1px solid rgba(177, 139, 76, 0.34);
  box-shadow: 0 18px 42px rgba(24, 36, 56, 0.10);
}

.hero-offer-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-offer-title {
  margin: 0 0 2px;
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.08rem;
}

.hero-offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  color: var(--navy);
}

.hero-old-price {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.78;
}

.hero-offer-price strong {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  color: var(--gold-deep);
  font-size: clamp(2.35rem, 4.2vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero-offer-price small {
  font-weight: 700;
  color: var(--navy);
}

.hero-offer-points {
  display: grid;
  gap: 8px;
}

.hero-offer-points span {
  min-width: 86px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22, 37, 63, 0.055);
  color: var(--navy-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.hero-renewed .hero-actions {
  margin-bottom: 18px;
}

.hero-renewed .btn-primary {
  min-width: 260px;
  padding-inline: 28px;
  box-shadow: 0 18px 34px rgba(177, 139, 76, 0.28);
}

.hero-renewed .hero-badges li {
  background: rgba(255,255,255,0.82);
}

.hero-visual-card-renewed {
  min-height: 660px;
}

.hero-visual-card-renewed .portrait-frame {
  inset: 34px 42px 86px;
}

.hero-visual-caption {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 30px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(177,139,76,0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(24, 36, 56, 0.10);
}

.hero-visual-caption span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-visual-caption strong {
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .hero-renewed {
    min-height: auto;
  }

  .hero-renewed .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-visual-card-renewed {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero-renewed {
    padding: 38px 0 62px;
  }

  .hero-emblem-compact {
    align-items: center;
    text-align: center;
  }

  .hero-emblem-compact .emblem-frame {
    padding: 14px 30px 15px;
  }

  .hero-renewed h1 {
    font-size: clamp(2.18rem, 12vw, 3.15rem);
  }

  .hero-offer-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .hero-offer-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-offer-points span {
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .hero-renewed .btn,
  .hero-renewed .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .hero-visual-card-renewed {
    min-height: 540px;
  }

  .hero-visual-card-renewed .portrait-frame {
    inset: 24px 20px 92px;
  }

  .hero-visual-caption {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }
}

/* ================================================================
   PC FIRST VIEW BALANCE PATCH / 2026-05
   900px以上では右側ビジュアルを表示し、PC表示時の右余白を解消
   ================================================================ */
@media (min-width: 900px) {
  .hero-renewed {
    padding: 52px 0 74px;
  }

  .hero-renewed .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
  }

  .hero-renewed .hero-copy {
    max-width: 720px;
  }

  .hero-renewed h1 {
    font-size: clamp(2.55rem, 4.7vw, 4.65rem);
  }

  .hero-lead-renewed {
    max-width: 680px;
  }

  .hero-visual-card-renewed {
    min-height: clamp(500px, 58vw, 660px);
  }

  .hero-visual-card-renewed .portrait-frame {
    inset: 28px 30px 84px;
  }

  .hero-visual-caption {
    left: 30px;
    right: 30px;
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .hero-renewed .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.72fr);
    gap: 30px;
  }

  .hero-emblem-compact .emblem-title {
    font-size: clamp(2rem, 3.6vw, 2.75rem);
  }

  .hero-renewed h1 {
    font-size: clamp(2.35rem, 4.8vw, 3.55rem);
  }

  .hero-renewed .hero-promise {
    font-size: clamp(1.14rem, 1.8vw, 1.38rem) !important;
  }

  .hero-lead-renewed {
    font-size: 1rem;
  }

  .hero-offer-panel {
    padding: 16px 18px;
    gap: 14px;
  }

  .hero-offer-price strong {
    font-size: clamp(2.25rem, 4vw, 2.85rem);
  }
}

@media (min-width: 721px) and (max-width: 899px) {
  .hero-renewed .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-emblem-compact {
    align-items: center;
    text-align: center;
  }

  .hero-renewed h1,
  .hero-renewed .hero-promise,
  .hero-lead-renewed {
    text-align: center;
  }

  .hero-renewed .hero-actions,
  .hero-renewed .hero-badges {
    justify-content: center;
  }
}

/* ================================================================
   PC表示だけ文字をさらに大きくする調整
   スマホ・タブレットは既存バランスを維持
   ================================================================ */
@media (min-width: 901px) {
  html {
    font-size: 120%;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.4vw, 5.15rem);
  }

  .section-heading h2,
  .philosophy-main {
    font-size: clamp(2.05rem, 3.4vw, 3.35rem);
  }

  .lead,
  .section-intro,
  .philosophy-sub,
  .origin-body,
  .special-text p,
  .dual-card p,
  .step-card p,
  .voice-card p,
  .profile-copy p,
  .access-list li,
  .offer-list li {
    font-size: 1.08rem;
  }

  .hero-sublead {
    font-size: 1.08rem;
  }
}

/* ================================================================
   PRICE & RESERVATION FLOW PATCH
   料金・予約導線の整理 / 2026-05
   ================================================================ */
.route-section .section-intro strong,
.price-flow-section .section-intro strong {
  color: var(--navy);
}

.route-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
}

.route-card {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(22,37,63,0.10);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.route-card-first {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 250, 238, 0.86) 100%);
  border: 2px solid rgba(177,139,76,0.72);
  box-shadow: 0 18px 44px rgba(177,139,76,0.18);
}

.route-card-recommend {
  border-color: rgba(177,139,76,0.42);
}

.route-step,
.first-start-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(177,139,76,0.13);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.10em;
}

.route-card h3,
.first-start-box h3,
.reservation-flow-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
  line-height: 1.45;
}

.route-card h3 {
  font-size: 1.25rem;
}

.route-purpose {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}

.route-price {
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(22,37,63,0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.route-price strong {
  font-family: "Noto Serif JP", serif;
  color: var(--navy);
  font-size: 1.18rem;
}

.route-price span {
  color: var(--muted);
  font-size: 0.88rem;
}

.route-note {
  max-width: 840px;
  margin: 30px auto 0;
  padding: 20px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(22,37,63,0.05);
  border: 1px solid rgba(22,37,63,0.08);
}

.route-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.route-note strong {
  color: var(--navy);
}

.first-start-box {
  max-width: 1080px;
  margin: 0 auto 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(22,37,63,0.96), rgba(34,56,93,0.92));
  color: rgba(255,255,255,0.86);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}

.first-start-box h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.first-start-box p {
  margin: 0;
  line-height: 1.8;
}

.first-start-box .btn {
  white-space: nowrap;
  min-width: 270px;
}

.price-cards-organized {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: stretch;
}

.price-card-main .price-card-title span,
.price-card-sub .price-card-title span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72em;
  color: var(--gold-deep);
}

.compact-list li {
  padding: 12px 0;
}

.plan-compare-mini {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.plan-compare-mini div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(22,37,63,0.08);
}

.plan-compare-mini strong {
  display: block;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.plan-compare-mini span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.reservation-flow {
  max-width: 1080px;
  margin: 34px auto 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(177,139,76,0.20);
  box-shadow: var(--shadow-soft);
}

.reservation-flow-title {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

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

.reservation-flow-steps div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(248,244,238,0.82);
  text-align: center;
}

.reservation-flow-steps span {
  display: block;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.reservation-flow-steps strong {
  display: block;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.reservation-flow-steps small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.closing-cta {
  margin-top: 34px;
  min-width: 300px;
}

@media (max-width: 980px) {
  .route-grid,
  .price-cards-organized,
  .first-start-box,
  .reservation-flow-steps {
    grid-template-columns: 1fr;
  }

  .first-start-box .btn,
  .closing-cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .route-card,
  .first-start-box,
  .reservation-flow {
    padding: 22px;
  }

  .route-card h3 {
    font-size: 1.12rem;
  }
}
