/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:    #c0555a;
  --color-primary-lt: #e8a0a3;
  --color-accent:     #d4845a;
  --color-green:      #6b8f71;
  --color-bg:         #fdf8f5;
  --color-tinted:     #f7f0ec;
  --color-dark:       #2c2217;
  --color-mid:        #6b5c52;
  --color-light:      #b0a098;
  --color-line:       #e8ddd8;
  --font-serif:       'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --font-sans:        'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --section-gap:      100px;
  --radius:           12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

/* ===========================
   TYPOGRAPHY
=========================== */
.section__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.section__title em {
  font-style: normal;
  color: var(--color-primary);
}

/* ===========================
   LAYOUT
=========================== */
.section {
  padding: var(--section-gap) 24px;
}

.section--tinted {
  background: var(--color-tinted);
}

.section--dark {
  background: var(--color-dark);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-tinted);
  color:  var(--color-primary);
}
.btn--primary:hover {
  background: #a8474c;
  color:  var(--color-tinted);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 85, 90, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-line);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 16px;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('img/onsen-2.jpg') center 62% / cover no-repeat;
}

/* 桜花びら風の装飾レイヤー
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,200,180,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(220,160,180,0.2) 0%, transparent 50%);
  pointer-events: none;
}
 */

.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 1000px;
  aspect-ratio: 1 / 1;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__eyebrow {
  font-size: clamp(0.8rem, 1.8vw, 1.0rem);
  letter-spacing: 0.1em;
  color: var(--color-dark);
  margin-bottom: 4%;
  font-weight: 400;
}

.hero__catch {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}

.hero__sub {
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  color: var(--color-dark);
  letter-spacing: 0.12em;
  margin-bottom: 3%;
}

.hero__badges {
}

.badge {
  background: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--color-tinted);
  font-size: clamp(0.8rem, 2.4vw, 1.4rem);
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.05em;
  display: inline-block;
}
.badge2 {
  display: block;
  color: var(--color-primary);
  font-weight: bold;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}
.badge2 span {
  font-size: 0.6em;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   CONCEPT
=========================== */
.concept {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.concept__text {
  color: var(--color-mid);
  font-size: clamp(12px, 3.2vw, 16px);
  line-height: 2;
  margin-bottom: 20px;
}

.concept__tagline {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  display: inline-block;
}

.concept__tagline span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}


/* ===========================
   TIMELINE
=========================== */
.timeline {
  position: relative;
  padding-left: 160px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 148.5px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--color-line);
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}

.timeline__item--last {
  margin-bottom: 0;
}

.timeline__time {
  position: absolute;
  left: -160px;
  width: 130px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  padding-top: 2px;
  letter-spacing: 0.05em;
}

.timeline__dot {
  position: absolute;
  left: -15px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
  flex-shrink: 0;
}

.timeline__dot--end {
  background: var(--color-dark);
  box-shadow: 0 0 0 2px var(--color-dark);
}

.timeline__body {
  padding-left: 32px;
}

.timeline__body h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.timeline__body p {
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.85;
}

/* ===========================
   SPOTS
=========================== */
.spots {
  overflow: hidden;
}

.spots__header {
  padding: var(--section-gap) 24px 60px;
  text-align: center;
  background: var(--color-tinted);
}

/* ---- panels ---- */
.spot-panel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.spot-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.spot-panel:hover .spot-panel__bg {
  transform: scale(1.03);
}

/* Strawberry: 白木農園 実写 */
.spot-panel--strawberry .spot-panel__bg {
  background:
    /* テキスト側（左）を暗く */
    linear-gradient(100deg, rgba(8,2,2,0.82) 0%, rgba(8,2,2,0.55) 35%, rgba(8,2,2,0.0) 68%),
    /* 全体にうっすら暗いベール */
    linear-gradient(0deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 50%, transparent 100%),
    url('img/strawberry-2.jpg') center 50% / cover no-repeat;
}

/* Geiko: 有馬芸妓 実写 — 顔が見える位置に調整 */
.spot-panel--geiko .spot-panel__bg {
  background:
    /* テキスト側（右）を暗く */
    linear-gradient(260deg, rgba(6,3,12,0.85) 0%, rgba(6,3,12,0.55) 35%, rgba(6,3,12,0.0) 68%),
    /* 全体にうっすら暗いベール */
    linear-gradient(0deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 50%, transparent 100%),
    url('img/geiko-1.jpg') right bottom 48% / 115% auto no-repeat;
}

/* ===========================
   コピーライト表示
=========================== */
.photo-credit {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 3;
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  pointer-events: none;
  text-shadow:
    0 1px 4px rgba(0,0,0,0.9),
    0 0 8px rgba(0,0,0,0.8),
    0 2px 8px rgba(0,0,0,0.7);
}

.concept .photo-credit {
  color: rgba(44,34,23,0.65);
  text-shadow: none;
  background: rgba(247,240,236,0.75);
  padding: 2px 6px;
  border-radius: 2px;
}

/* Onsen: 有馬温泉 金泉 実写 */
.spot-panel--onsen .spot-panel__bg {
  background:
    /* テキスト側（左）を暗く */
    linear-gradient(100deg, rgba(6,3,0,0.82) 0%, rgba(6,3,0,0.55) 35%, rgba(6,3,0,0.0) 68%),
    /* 全体にうっすら暗いベール */
    linear-gradient(0deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 50%, transparent 100%),
    url('img/onsen-1.jpg') center 50% / cover no-repeat;
}

.spot-panel__inner {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding: 72px 64px;
  color: #fff;
}

.spot-panel__inner--right {
  margin-left: auto;
}

.spot-panel__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.spot-panel__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.spot-panel__en {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.spot-panel__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.spot-panel__lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.spot-panel__desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.spot-panel__tag {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-tinted);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  position: relative;
}
.spot-panel__tag:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid var(--color-tinted);
  position: relative;
  top: -4px;
}
.spot-panel__tag:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--color-tinted);
  position: relative;
  bottom: -5px;
}

/* ===========================
   PRICE TABLE
=========================== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* ダーク背景のセクションタイトルとラベル（section--dark が他で使われる場合に備えて保持） */
.section--dark .section__label { color: var(--color-primary-lt); }
.section--dark .section__title { color: #fff; }

.price-table th,
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
  line-height: 1.7;
}

.price-table th {
  width: 130px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-mid);
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: left;
  background: var(--color-tinted);
}

.price-table td {
  color: var(--color-dark);
}

.price-table td small {
  font-size: 12px;
  color: var(--color-light);
}

.price-table__price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary);
}

.price-table__price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-mid);
  font-family: var(--font-sans);
}

/* ===========================
   STORY
=========================== */
.story {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* ===========================
   STORY / CONCEPT 丸バブル装飾
=========================== */
.story__bubbles,
.concept__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  max-width: 100%;
  margin: 0 auto;
  width: 900px;
}

.story__bubble{
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
}

.story__bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- STORY バブル個別配置 --- */
/* 左上：芸妓（大） */
.story__bubble--1 {
  width: 220px;
  height: 220px;
  top: -55px;
  left: -65px;
}
.story__bubble--1 img { object-position: center 40%; }

/* 右上：いちごクローズアップ（中） */
.story__bubble--2 {
  width: 140px;
  height: 140px;
  top: 48px;
  right: 20px;
}
.story__bubble--2 img { object-position: 65% center; }

/* 右下：桜・ねね橋（大） */
.story__bubble--3 {
  width: 190px;
  height: 190px;
  bottom: -45px;
  right: -20px;
}
.story__bubble--3 img { object-position: center 55%; }

/* 右中：芸妓2（小） */
.story__bubble--4 {
  width: 108px;
  height: 108px;
  top: 46%;
  right: -12px;
}
.story__bubble--4 img { object-position: center 40%; }

/* 左下：SHIRAKI いちご箱（中大） */
.story__bubble--5 {
  width: 168px;
  height: 168px;
  bottom: 10px;
  left: -18px;
}
.story__bubble--5 img { object-position: center 45%; }

/* 左中：金泉（小） */
.story__bubble--6 {
  width: 110px;
  height: 110px;
  top: 38%;
  left: 30px;
}

.story__text {
  color: var(--color-mid);
  font-size: clamp(12px, 3.2vw, 16px);
  line-height: 2.1;
  margin-bottom: 24px;
}

.story__sign {
  margin-top: 48px;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-dark);
  letter-spacing: 0.15em;
}

/* ===========================
   FAQ
=========================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.85;
}

/* ===========================
   CTA
=========================== */
.cta {
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: var(--section-gap) 24px;
}

.cta .section__label {
  color: var(--color-primary-lt);
}

.cta__remaining {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta__date {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 44px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta .btn--outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.cta .btn--outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.cta__note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

.cta__note a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #1a0e12;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 40px 24px;
  padding-bottom: clamp(80px, 14vw, 100px);
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.footer__info {
  font-size: 12px;
  margin-bottom: 20px;
}

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer__links {
  margin-bottom: 16px;
}

.footer__links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ===========================
   PRICE TABLE SUB
=========================== */
.price-table__sub {
  font-size: 13px;
  color: var(--color-mid);
  margin-top: 4px;
}

/* ===========================
   重要事項
=========================== */
.important.section {
  background: #fff;
  border-top: 3px solid var(--color-primary);
}

.important__block {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-line);
}

.important__block:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.important__heading {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
}

.important__list {
  list-style: none;
  margin-bottom: 12px;
}

.important__list li {
  padding: 5px 0;
  padding-left: 1em;
  position: relative;
  font-size: 0.95rem;
}

.important__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.important__note {
  font-size: 0.88rem;
  color: var(--color-mid);
  margin-top: 6px;
}

.important__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 4px;
}

.important__table th,
.important__table td {
  padding: 10px 14px;
  border: 1px solid var(--color-line);
  text-align: left;
}

.important__table thead th {
  background: rgba(192,85,90,0.08);
  font-weight: 600;
  color: var(--color-dark);
}

.important__table tbody tr:last-child td {
  font-weight: 600;
  color: var(--color-primary);
}

.important__cta {
  text-align: center;
  margin-top: 40px;
}

/* ===========================
   FAQ キャンセル表
=========================== */
.faq__cancel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 12px 0 12px;
}

.faq__cancel-table th,
.faq__cancel-table td {
  padding: 8px 12px;
  border: 1px solid var(--color-line);
  text-align: left;
}

.faq__cancel-table thead th {
  background: var(--color-tinted);
  font-weight: 600;
}

.faq__cancel-table tbody tr:last-child td {
  font-weight: 600;
  color: var(--color-primary);
}

.faq__a a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .highlights__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* 芸妓パネル：テキストと人物が重ならないよう下寄せレイアウトに */
  .spot-panel--geiko {
    align-items: flex-end;
    min-height: 620px;
  }
  .spot-panel--geiko .spot-panel__bg {
    background:
      linear-gradient(0deg, rgba(6,3,12,0.92) 0%, rgba(6,3,12,0.60) 35%, rgba(6,3,12,0.08) 60%, transparent 100%),
      url('img/geiko-1.jpg') center 68% / cover no-repeat;
  }
  .spot-panel--geiko .spot-panel__inner--right {
    margin-left: 0;
    max-width: 100%;
    padding: 32px 40px 44px;
  }

  .story__bubble{
    opacity: 0.3;
  }
}

@media (max-width: 680px) {
  :root { --section-gap: 72px; }
  .spot-panel {
    min-height: 580px;
    align-items: flex-end;
  }
  /* モバイル：テキスト下から暗くして読みやすく */
  .spot-panel--strawberry .spot-panel__bg {
    background:
      linear-gradient(0deg, rgba(8,2,2,0.88) 0%, rgba(8,2,2,0.55) 40%, rgba(8,2,2,0.10) 70%, transparent 100%),
      url('img/strawberry-2.jpg') left 70% top 100% / auto 110% no-repeat
  }
  .spot-panel--geiko .spot-panel__bg {
    background:
      linear-gradient(0deg, rgba(6,3,12,0.90) 0%, rgba(6,3,12,0.55) 40%, rgba(6,3,12,0.10) 70%, transparent 100%),
      url('img/geiko-1.jpg') left bottom 20% / 120% auto no-repeat;
  }
  .spot-panel--onsen .spot-panel__bg {
    background:
      linear-gradient(0deg, rgba(6,3,0,0.88) 0%, rgba(6,3,0,0.55) 40%, rgba(6,3,0,0.10) 70%, transparent 100%),
      url('img/onsen-1.jpg') center 50% / cover no-repeat;
  }
  .spot-panel__inner,
  .spot-panel__inner--right {
    padding: 28px 24px 36px;
    margin-left: 0;
    max-width: 100%;
  }

  .timeline {
    padding-left: 80px;
  }
  .timeline::before {
    left: 70px;
  }
  .timeline__time {
    left: -80px;
    width: 60px;
    font-size: 11px;
  }
  .timeline__dot {
    left: -14px;
  }
  .timeline__body {
    padding-left: 20px;
  }

  .price-table th {
    width: 100px;
    font-size: 11px;
  }

}

/* ===========================
   FIXED CTA BAR
=========================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(28, 14, 10, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 12px 24px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fixed-cta.is-visible {
  transform: translateY(0);
}

.fixed-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fixed-cta__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fixed-cta__date {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
}

.fixed-cta__remain {
  font-size: 11px;
  color: var(--color-primary-lt);
  letter-spacing: 0.12em;
}

.fixed-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.fixed-cta__btn {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(192, 85, 90, 0.45);
}

.fixed-cta__btn:hover {
  background: #a8474c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 85, 90, 0.55);
}

.fixed-cta__tel {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}

.fixed-cta__tel:hover {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 680px) {
  .fixed-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }
  .fixed-cta__info {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .fixed-cta__date {
    font-size: 11px;
  }
  .fixed-cta__remain {
    font-size: 10px;
  }
  .fixed-cta__tel {
    display: none;
  }
  .fixed-cta__btn {
    padding: 11px 22px;
    font-size: 13px;
  }
}
