/* =========================================
   熊野古道 LP - Global Styles
   Palette: #f6efe1 base / #004c77 navy / #a83232 vermillion
   ========================================= */

:root {
  --beige-50: #faf5e8;
  --beige-100: #f6efe1;
  --beige-200: #efe6d0;
  --beige-300: #e5d8b6;
  --navy: #004c77;
  --navy-dark: #003758;
  --vermillion: #a83232;
  --vermillion-bright: #c74a2e;
  --vermillion-deep: #7d1f1f;
  --sumi: #2a2620;
  --sumi-soft: #3a3229;
  --gold: #b08a3c;
  --text: #2a2620;
  --text-muted: #6b5f4c;
  --paper-line: #d8caa5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Serif TC", "Shippori Mincho", "Noto Serif JP", "Songti TC", "PMingLiU", serif;
  color: var(--text);
  background: var(--beige-100);
  line-height: 1.75;
  overflow-x: hidden;
  padding-bottom: 92px; /* fixed CTA */
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

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

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

/* ---------- Header (fixed) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.site-header .logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.site-header .logo-link:active { transform: scale(0.95); }
.site-header .logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 12px rgba(0, 76, 119, 0.08);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroKen 18s ease-out forwards;
}
@keyframes heroKen {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0, 30, 50, 0.35) 0%,
      rgba(0, 30, 50, 0.10) 25%,
      rgba(0, 30, 50, 0.35) 55%,
      rgba(0, 20, 40, 0.85) 100%);
}
.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 90px 20px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__meta-item--code {
  font-family: "Cormorant Garamond", serif !important;
  letter-spacing: 0.2em !important;
  background: rgba(20, 20, 20, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  gap: 8px;
}
.hero__meta-item--code .dot {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: #e8c76f;
}
.hero__title-block {
  padding-bottom: 4px;
  padding-top: 40vh;
}
.hero__year {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
  color: #f4e3b7;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero__title {
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: clamp(26px, 8.2vw, 36px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 3px 20px rgba(0,0,0,0.6);
  margin-bottom: 10px;
  white-space: nowrap;
}
.hero__title-sub {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(15px, 4.4vw, 19px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f4e3b7;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 12px;
  white-space: nowrap;
}
.hero__subtitle-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.28em;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__subtitle-en::before,
.hero__subtitle-en::after {
  content: "";
  flex: 0 0 24px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}
.hero__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
}
.hero__meta-item strong {
  color: #f4e3b7;
  font-weight: 600;
}
.hero__meta {
  gap: 8px;
}
.hero__meta-item {
  font-size: 11.5px;
}

/* ---------- Section base ---------- */
section {
  position: relative;
  padding: 72px 22px;
}
.section-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--vermillion);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--vermillion);
}
.section-title {
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: 30px;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.section-title .accent { color: var(--vermillion); }
.section-lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

/* ---------- Intro ---------- */
.intro {
  background: var(--beige-100);
  text-align: center;
  padding: 88px 22px 72px;
  position: relative;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../svg/pattern-asanoha.svg');
  background-size: 120px;
  opacity: 0.35;
  pointer-events: none;
}
.intro__inner { position: relative; z-index: 1; }
.intro__vertical {
  display: inline-block;
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.8em;
  color: var(--vermillion-deep);
  padding: 8px 12px;
  border-top: 1px solid var(--vermillion-deep);
  border-bottom: 1px solid var(--vermillion-deep);
  margin-bottom: 24px;
}
.intro__title {
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: clamp(19px, 5.6vw, 28px);
  line-height: 1.5;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  white-space: nowrap;
}
.intro__title small {
  display: block;
  white-space: normal;
  font-size: 14px;
  color: var(--vermillion);
  letter-spacing: 0.3em;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  margin-top: 8px;
}
.intro__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 34px 0 26px;
}
.intro__pillar {
  padding: 18px 6px;
  background: rgba(255,255,255,0.55);
  border-top: 2px solid var(--vermillion);
  border-bottom: 1px solid var(--paper-line);
}
.intro__pillar-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--vermillion);
  display: block;
  margin-bottom: 4px;
}
.intro__pillar-name {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.intro__lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2.1;
  padding: 0 6px;
}

/* ---------- Dual Pilgrim ---------- */
.dual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #f4e3b7;
  padding: 56px 22px;
  overflow: hidden;
  position: relative;
}
.dual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../svg/seigaiha.svg');
  background-size: 200px;
  opacity: 0.12;
  pointer-events: none;
}
.dual__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.dual__eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: #e8c76f;
  margin-bottom: 12px;
}
.dual__title {
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: 26px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.dual__badge {
  background: #fff;
  padding: 18px 22px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.dual__badge img {
  width: 180px;
  height: auto;
}
.dual__desc {
  font-size: 13px;
  color: rgba(244, 227, 183, 0.9);
  letter-spacing: 0.08em;
  line-height: 1.95;
  max-width: 340px;
  margin: 0 auto;
}
.dual__count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 199, 111, 0.4);
}
.dual__count strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  color: #e8c76f;
  font-weight: 400;
}
.dual__count span {
  font-size: 13px;
  color: #f4e3b7;
  letter-spacing: 0.15em;
}

/* ---------- Features ---------- */
.features {
  background: var(--beige-100);
  padding: 72px 22px;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.feature {
  background: #fff;
  padding: 22px 14px 18px;
  border: 1px solid var(--paper-line);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 12px; height: 12px;
  border-top: 2px solid var(--vermillion);
  border-left: 2px solid var(--vermillion);
}
.feature::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 12px; height: 12px;
  border-bottom: 2px solid var(--vermillion);
  border-right: 2px solid var(--vermillion);
}
.feature__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--vermillion);
  margin-bottom: 8px;
}
.feature__icon {
  width: 84px; height: 84px;
  margin: 8px auto 14px;
}
.feature__icon img {
  width: 100%; height: 100%; object-fit: contain;
}
.feature__title {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.feature__desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: justify;
  letter-spacing: 0.04em;
}

/* ---------- Map section ---------- */
.map-section {
  background: var(--beige-200);
  padding: 60px 22px;
  text-align: center;
}
.map-section img {
  width: 100%;
  border: 1px solid var(--paper-line);
  background: #fff;
  padding: 6px;
  margin-top: 16px;
}
.map-caption {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  font-family: "Cormorant Garamond", serif;
}

/* ---------- Itinerary ---------- */
.itinerary {
  background: var(--beige-100);
  padding: 72px 22px 40px;
  position: relative;
}
.day {
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid var(--paper-line);
  overflow: hidden;
  position: relative;
}
.day__hero {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.day__hero img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.day__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
}
.day__label {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--vermillion);
  color: #fff;
  padding: 6px 12px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(168,50,50,0.35);
}
.day__label .num {
  font-size: 20px; font-weight: 400; margin-right: 2px;
}
.day__date-badge {
  position: absolute;
  top: 14px; right: 14px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  background: rgba(0,0,0,0.5);
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
}
.day__title-onhero {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  color: #fff;
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  z-index: 2;
  line-height: 1.4;
}
.day__body {
  padding: 22px 18px 20px;
}
.day__route {
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--paper-line);
}
.day__route .arr { color: var(--vermillion); font-weight: 400; margin: 0 3px; }
.day__spots {
  list-style: none;
  margin-bottom: 16px;
}
.day__spots li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  border-bottom: 1px dotted var(--beige-300);
}
.day__spots li:last-child { border-bottom: none; }
.day__spots li::before {
  content: "";
  position: absolute;
  left: 4px; top: 15px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--vermillion);
  transform: rotate(45deg);
  background: #fff;
}
.day__spots li strong {
  color: var(--navy);
  font-weight: 700;
}
.day__spots li .stamp {
  display: inline-block;
  font-size: 10px;
  padding: 1px 6px;
  background: var(--vermillion);
  color: #fff;
  border-radius: 2px;
  margin-left: 4px;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  vertical-align: middle;
}
.day__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}
.day__gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.day__foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--beige-200);
  font-size: 12px;
  color: var(--text-muted);
}
.day__foot dl {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.day__foot dt {
  flex: 0 0 auto;
  font-size: 10px;
  padding: 2px 6px;
  background: var(--navy);
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
  height: fit-content;
}
.day__foot dd { flex: 1; line-height: 1.5; letter-spacing: 0.04em; }
.day__note {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(168, 50, 50, 0.06);
  border-left: 3px solid var(--vermillion);
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.75;
  letter-spacing: 0.03em;
}

/* ---------- Lodging ---------- */
.lodging {
  background: var(--beige-200);
  padding: 72px 22px;
}
.lodging__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.lodging__card {
  background: #fff;
  border: 1px solid var(--paper-line);
  overflow: hidden;
}
.lodging__card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.lodging__card-body {
  padding: 10px 12px 14px;
}
.lodging__card h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.lodging__card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}
.lodging__card .tag {
  display: inline-block;
  font-size: 9px;
  color: var(--vermillion);
  border: 1px solid var(--vermillion);
  padding: 1px 6px;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ---------- Guide ---------- */
.guide {
  background: var(--beige-100);
  padding: 72px 22px;
  position: relative;
}
.guide__card {
  background: #fff;
  border: 1px solid var(--paper-line);
  padding: 26px 22px;
  margin-top: 20px;
  position: relative;
}
.guide__card::before {
  content: "領隊";
  position: absolute;
  top: -12px; left: 20px;
  background: var(--vermillion);
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-family: "Shippori Mincho", serif;
}
.guide__name {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.5em;
  margin-bottom: 4px;
}
.guide__role {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--vermillion);
  margin-bottom: 14px;
  font-style: italic;
}
.guide__desc {
  font-size: 13px;
  color: var(--text);
  line-height: 2;
  padding: 14px 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  margin-bottom: 14px;
}
.guide__points {
  list-style: none;
}
.guide__points li {
  font-size: 12.5px;
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.7;
}
.guide__points li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 6px;
  color: var(--vermillion);
  font-size: 12px;
}

/* ---------- Price ---------- */
.price {
  background:
    linear-gradient(180deg, rgba(246, 239, 225, 0.9), rgba(246, 239, 225, 0.9)),
    url('../photos/kumano_kodo.jpg') center/cover no-repeat fixed;
  background-attachment: scroll;
  padding: 72px 22px;
  text-align: center;
}
.price__box {
  background: #fff;
  border: 2px solid var(--navy);
  padding: 32px 20px 26px;
  position: relative;
  margin-top: 20px;
}
.price__box::before,
.price__box::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid var(--vermillion);
}
.price__box::before {
  top: -6px; left: -6px;
  border-right: none; border-bottom: none;
}
.price__box::after {
  bottom: -6px; right: -6px;
  border-left: none; border-top: none;
}
.price__limit {
  font-size: 12px;
  color: var(--vermillion);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--paper-line);
}
.price__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.price__row {
  padding: 4px;
}
.price__row-label {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}
.price__row-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
}
.price__row.discount .price__row-amount {
  color: var(--vermillion);
}
.price__row-amount .currency {
  font-size: 12px;
  vertical-align: top;
  margin-right: 2px;
}
.price__row-note {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.1em;
}
.price__desc {
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--paper-line);
  line-height: 1.9;
}
.price__desc strong { color: var(--navy); }
.price__include {
  margin-top: 20px;
  text-align: left;
  background: rgba(0, 76, 119, 0.04);
  padding: 16px;
  border-left: 3px solid var(--navy);
}
.price__include h5 {
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.price__include ul {
  list-style: none;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.9;
}
.price__include li {
  padding-left: 12px;
  position: relative;
}
.price__include li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--vermillion);
}

/* ---------- 費用不含 ---------- */
.price__exclude {
  margin-top: 20px;
  text-align: left;
  background: rgba(168, 50, 50, 0.04);
  padding: 16px;
  border-left: 3px solid var(--vermillion);
}
.price__exclude h5 {
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  color: var(--vermillion);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.price__exclude ul {
  list-style: none;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-top: 14px;
}
.price__exclude li {
  padding-left: 12px;
  position: relative;
}
.price__exclude li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--vermillion);
}
.price__exclude li strong { color: var(--vermillion-deep); font-weight: 600; }
.price__exclude a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* フライト情報 強調ブロック */
.price__flight {
  background: linear-gradient(180deg, #fff9ec 0%, #fdf3d9 100%);
  border: 1.5px solid var(--vermillion);
  border-radius: 4px;
  padding: 14px 14px 12px;
  margin-bottom: 8px;
  position: relative;
}
.price__flight::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--vermillion) 0 6px,
    transparent 6px 12px
  );
  border-radius: 3px 3px 0 0;
}
.price__flight-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(168, 50, 50, 0.35);
}
.price__flight-tag {
  display: inline-block;
  background: var(--vermillion);
  color: #fff;
  font-family: "Noto Serif TC", serif;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  letter-spacing: 0.08em;
  border-radius: 2px;
  flex-shrink: 0;
}
.price__flight-title {
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--vermillion-deep);
  letter-spacing: 0.03em;
}
.price__flight-note {
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  color: var(--navy);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.price__flight-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price__flight-row {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(168, 50, 50, 0.2);
  border-radius: 3px;
  padding: 10px 12px;
}
.price__flight-leg {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dotted rgba(168, 50, 50, 0.25);
}
.price__flight-legLabel {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--vermillion);
  letter-spacing: 0.1em;
  min-width: 32px;
}
.price__flight-airline {
  font-family: "Noto Serif TC", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.price__flight-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-left: auto;
}
.price__flight-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.price__flight-city {
  text-align: center;
}
.price__flight-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.price__flight-airport {
  font-family: "Noto Serif TC", serif;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.price__flight-arrow {
  color: var(--vermillion);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price__flight-caveat {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: right;
  font-style: italic;
}

/* モバイル調整 */
@media (max-width: 380px) {
  .price__flight-time { font-size: 19px; }
  .price__flight-airport { font-size: 10.5px; }
  .price__flight-title { font-size: 13px; }
}

/* ---------- Steps ---------- */
.steps {
  background: var(--beige-100);
  padding: 72px 22px;
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--paper-line);
  padding: 18px 16px;
  position: relative;
}
.step__num {
  width: 60px; height: 60px;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
}
.step__num small {
  font-size: 8px;
  letter-spacing: 0.3em;
  margin-bottom: 0;
}
.step__num strong {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
.step__body h5 {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.step__body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.step__body .highlight {
  color: var(--vermillion);
  font-weight: 600;
}
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 20px;
  background: #06c755;
  color: #fff !important;
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}
.line-btn:active { transform: scale(0.97); }
.line-btn svg { flex: 0 0 auto; }
.line-btn__id {
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid rgba(255,255,255,0.55);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ---------- Notes ---------- */
.notes {
  background: var(--beige-200);
  padding: 60px 22px;
}
.notes__list {
  list-style: none;
  margin-top: 20px;
  counter-reset: notes;
}
.notes__list li {
  counter-increment: notes;
  padding: 14px 14px 14px 46px;
  background: #fff;
  border: 1px solid var(--paper-line);
  margin-bottom: 10px;
  position: relative;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text);
  letter-spacing: 0.02em;
}
.notes__list li::before {
  content: counter(notes, decimal-leading-zero);
  position: absolute;
  left: 14px; top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--vermillion);
  font-weight: 500;
  line-height: 1;
}
.notes__list li strong {
  color: var(--navy);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #d0c396;
  padding: 44px 22px 28px;
  font-size: 12px;
  line-height: 1.9;
  text-align: center;
  letter-spacing: 0.05em;
}
.site-footer .footer__logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 6px;
}
.site-footer .footer__logo img {
  width: 100%; height: 100%; object-fit: contain;
}
.site-footer h6 {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  font-weight: 600;
}
.site-footer .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(232,199,111,0.9);
  font-style: italic;
  margin-bottom: 16px;
}
.site-footer p {
  color: rgba(208,195,150,0.85);
  font-size: 11.5px;
}
.site-footer .footer__meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(232,199,111,0.2);
  font-size: 10px;
  color: rgba(208,195,150,0.6);
  letter-spacing: 0.15em;
}
.site-footer a { color: #e8c76f; }

/* ---------- Fixed CTA ---------- */
.cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(246, 239, 225, 0) 0%, rgba(246, 239, 225, 0.95) 30%, var(--beige-100) 100%);
  padding: 14px 16px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-bar__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 4px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--navy);
  gap: 6px;
}
.cta-bar__price {
  color: var(--vermillion);
  font-weight: 700;
  font-size: 11px;
  white-space: nowrap;
}
.cta-bar__price em {
  font-style: normal;
  color: var(--vermillion-deep);
  font-weight: 600;
  margin-left: 2px;
}
.cta-bar__date {
  white-space: nowrap;
  color: var(--navy);
  font-size: 10px;
}
@media (max-width: 360px) {
  .cta-bar__price { font-size: 10px; }
  .cta-bar__date { font-size: 9px; }
}
.cta-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--vermillion-bright) 0%, var(--vermillion) 100%);
  color: #fff;
  font-family: "Shippori Mincho", "Noto Serif TC", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3em;
  border: none;
  box-shadow: 0 6px 20px rgba(199, 74, 46, 0.42), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bar__btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  pointer-events: none;
}
.cta-bar__btn:active {
  transform: scale(0.98);
}
.cta-bar__btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.cta-bar__btn:hover .arrow { transform: translateX(4px); }

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  color: var(--vermillion);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  padding: 20px 0;
  justify-content: center;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: currentColor;
}

/* Very small screens */
@media (max-width: 340px) {
  .hero__title { font-size: 36px; }
  .hero__year { font-size: 38px; }
  .hero__title-block { padding-top: 32vh; }
  .section-title { font-size: 26px; }
  .intro__title { font-size: 26px; }
  .features__grid { grid-template-columns: 1fr; }
}

/* Tablet+ : center whole layout including fixed header & CTA */
@media (min-width: 640px) {
  html { background: #2a2620; }
  body {
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(0,0,0,0.35);
    background: var(--beige-100);
    position: relative;
  }
  .site-header,
  .cta-bar {
    max-width: 480px;
    left: 50%;
    right: auto;
    width: 100%;
    transform: translateX(-50%);
  }
}
