/* ============================================================
   plan-detail.css — Responsive (SP: mobile-first / PC: 1024px+)
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #00477b;
  --text:   #555555;
  --muted:  #6e7c92;
  --bg:     #f2f5f9;
  --border: rgba(0,71,123,0.15);
  --line:   #00b900;
}

body { font-family: 'Zen Kaku Gothic New', sans-serif; background: #fff; color: var(--text); }
img  { display: block; }
a    { text-decoration: none; color: inherit; }

.sp-only { display: block; }
.pc-only { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 581px;
  overflow: hidden;
}

.hero__pic { position: absolute; inset: 0; display: block; }
.hero__pic img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(15,13,5,0.55) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 25%);
  pointer-events: none; z-index: 1;
}

/* Wave */
.hero__wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; pointer-events: none;
}
.hero__wave picture { display: block; }
.hero__wave img { width: 100%; height: 81px; object-fit: fill; }

/* Dots */
.hero__dots {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; align-items: center; z-index: 5;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.4); flex-shrink: 0;
}
.hero__dot--active { background: #fff; }

/* Counter */
.hero__counter {
  position: absolute; bottom: 26px; right: 16px;
  background: rgba(0,0,0,0.42); border-radius: 13px;
  padding: 0 10px; height: 26px;
  display: flex; align-items: center;
  font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 1px; color: #f2f5f9; z-index: 5;
}

/* ============================================================
   BREADCRUMB (PC only — hidden by default)
   ============================================================ */
.breadcrumb { display: none; }

/* ============================================================
   TITLE BLOCK
   ============================================================ */
.title-block {
  background: #fff; padding: 16px 20px 8px;
  display: flex; flex-direction: column; gap: 12px;
}

.badge {
  background: var(--blue); color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.6px;
  height: 26px; padding: 0 14px;
  border-radius: 14px 4px 14px 4px;
  display: inline-flex; align-items: center;
  align-self: flex-start;
}

.title {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: 0.4px;
  color: var(--text); line-height: 1.6;
}

.meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 12px; color: var(--text); white-space: nowrap;
}
.meta__sep { color: var(--muted); }

/* ============================================================
   CHIPS
   ============================================================ */
.chips-block { background: #fff; padding: 8px 20px 16px; }

.chips-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.chip {
  height: 30px; border: 1px solid rgba(0,71,123,0.45);
  border-radius: 15px; padding: 0 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.5px; color: var(--text);
  display: flex; align-items: center; white-space: nowrap;
}

/* ============================================================
   MAIN WRAPPER — SP: single col / PC: two-col
   ============================================================ */
.main-wrapper { background: #fff; padding: 0 20px; }

.main-left {
  display: flex; flex-direction: column; gap: 40px; padding: 24px 0 80px;
}

.main-sidebar { display: none; }
.bottom-cta   { display: none; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sh { display: flex; flex-direction: column; gap: 4px; }

.sh__label {
  font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 1.2px; color: var(--muted);
}
.sh__title {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--blue);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { display: flex; flex-direction: column; gap: 16px; }

.about__heading {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: 0.4px; color: var(--text); line-height: 1.6;
}
.about__body {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 14px; color: var(--text); line-height: 2;
}

/* ============================================================
   ADVISOR CARD
   ============================================================ */
.adv-card {
  background: var(--bg); border-radius: 20px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.adv-top { display: flex; gap: 14px; align-items: center; }
.adv-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.adv-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.adv-label {
  font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 1.2px; color: var(--muted);
}
.adv-name {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--text);
}
.adv-quote {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 14px; color: var(--text); line-height: 2.1;
}

/* ============================================================
   HIGHLIGHTS (PERKS)
   ============================================================ */
.highlights { display: flex; flex-direction: column; gap: 16px; }

.hl-row { display: flex; flex-direction: column; gap: 16px; }

.hl-card { display: flex; flex-direction: column; gap: 12px; }
.hl-img  { width: 100%; height: 200px; object-fit: cover; border-radius: 14px; }

.hl-title-row { display: flex; align-items: flex-end; gap: 12px; }
.hl-num {
  font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: 22px; color: var(--blue); opacity: 0.45; line-height: 1; flex-shrink: 0;
}
.hl-title {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--text); line-height: 1.6; flex: 1; min-width: 0;
}
.hl-body {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 14px; color: var(--text); line-height: 2;
}

/* ============================================================
   ITINERARY
   ============================================================ */
.itinerary-wrap {
  margin: 0 -20px; padding: 32px 20px 36px;
  background: var(--bg);
  display: flex; flex-direction: column; gap: 20px;
}

.days-list { display: flex; flex-direction: column; gap: 20px; }

.day { display: flex; align-items: stretch; }

.day__rail {
  width: 36px; flex-shrink: 0; position: relative;
}
.day__rail::before {
  content: ''; position: absolute;
  left: 50%; top: 5px; width: 10px; height: 10px;
  background: var(--blue); border-radius: 50%; transform: translateX(-50%);
}
.day__rail::after {
  content: ''; position: absolute;
  left: 50%; top: 15px; bottom: 0; width: 1.5px;
  background: repeating-linear-gradient(to bottom, #b8c8d8 0,#b8c8d8 4px, transparent 4px,transparent 7px);
  transform: translateX(-50%);
}
.day--last .day__rail::after { display: none; }

.day__content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 0; padding-bottom: 20px;
}
.day--last .day__content { padding-bottom: 0; }

/* Accordion header */
.day__header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  cursor: pointer; padding: 4px 0;
}
.day__header-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }

/* Toggle icon */
.day__toggle {
  position: relative; flex-shrink: 0;
  width: 24px; height: 24px; margin-top: 2px;
  border: 1.5px solid rgba(0,71,123,0.35);
  border-radius: 50%;
}
.day__toggle::before,
.day__toggle::after {
  content: ''; position: absolute;
  left: 50%; top: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
}
.day__toggle::before { width: 10px; height: 1.5px; }
.day__toggle::after  {
  width: 1.5px; height: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.day--open .day__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Collapsible body */
.day__body-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
  padding-top: 0;
}
.day--open .day__body-wrap {
  max-height: 600px;
  padding-top: 12px;
}

.day__label-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; white-space: nowrap;
}
.day__num {
  font-family: 'Josefin Sans', sans-serif; font-weight: 700;
  letter-spacing: 1.2px; color: var(--text);
}
.day__sep {
  font-family: 'Josefin Sans', sans-serif; font-weight: 500; color: var(--muted);
}
.day__sub {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500; color: var(--muted);
}
.day__title {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.day__body-row { display: flex; flex-direction: column; gap: 8px; }
.day__img  { width: 100%; height: 140px; object-fit: cover; border-radius: 12px; }
.day__body {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 14px; color: var(--text); line-height: 2;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { display: flex; flex-direction: column; gap: 16px; }

.gallery-grid { display: flex; flex-direction: column; gap: 8px; }

.gallery-row { display: flex; gap: 8px; }

/* picture要素がギャラリーセルの枠を担う */
.gallery-img {
  flex: 1; min-width: 0; height: 160px;
  border-radius: 10px; overflow: hidden;
  display: block;
}
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* SP: 各行の3枚目を非表示 */
.gallery-img:nth-child(3) { display: none; }

.gallery-more {
  display: flex; align-items: center; justify-content: center;
  padding-top: 8px;
  font-family: 'Josefin Sans', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 2px; color: var(--blue); cursor: pointer;
  text-decoration: none;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section { display: flex; flex-direction: column; gap: 16px; }

.location__address { display: flex; align-items: flex-start; gap: 10px; }
.location__address svg { flex-shrink: 0; margin-top: 1px; }
.location__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.location__main {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 14px; color: var(--text);
}
.location__sub {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 12px; color: var(--muted);
}
.map-placeholder {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; height: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.location__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.location__map iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.map-label {
  font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 1.2px; color: var(--muted);
}

/* ============================================================
   AVAILABILITY (SP)
   ============================================================ */
.availability {
  display: flex; flex-direction: column; gap: 20px;
  padding: 40px 20px 0;
}

.avail-pill {
  background: var(--bg); border-radius: 12px;
  padding: 8px 16px;
  display: inline-flex; align-items: center; align-self: flex-start;
}
.avail-pill__text {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 13px; color: var(--text); white-space: nowrap;
}

.avail-list { display: flex; flex-direction: column; gap: 10px; }

.avail-row {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px;
}
.avail-date { display: flex; align-items: center; gap: 14px; }
.avail-date__num {
  font-family: 'Josefin Sans', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--text);
}
.avail-date__num--muted { color: var(--muted); }
.avail-date__day {
  font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 1.2px; color: var(--muted);
}
.avail-date__day--dimmed { color: rgba(110,124,146,0.6); }
.avail-slots {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 12px; color: var(--text);
}
.avail-slots--full { color: var(--muted); }

/* ============================================================
   POLICY (SP — stacked accordion)
   ============================================================ */
.policy-sp {
  display: flex; flex-direction: column; gap: 0;
  padding: 40px 20px 120px;
}
.policy-sp .sh { margin-bottom: 8px; }

.policy-item {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border); padding: 22px 0;
}
.policy-item__text { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.policy-item__title {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--text); line-height: 1.5;
}
.policy-item__sub {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.3px; color: var(--muted); line-height: 1.6;
}
.policy-item__icon {
  font-family: 'Josefin Sans', sans-serif; font-weight: 300;
  font-size: 22px; color: var(--text); flex-shrink: 0; margin-left: 16px;
  line-height: 1;
}

/* ============================================================
   SP STICKY CTA BAR
   ============================================================ */
.sp-cta-bar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 768px;
  height: 96px;
  background: #fff;
  border-top: 1px solid rgba(0,71,123,0.18);
  box-shadow: 0 -6px 14px rgba(102,92,46,0.08);
  display: flex; align-items: center; padding: 0 22px; justify-content: space-between;
  z-index: 100;
}
.sp-cta-bar__price { display: flex; flex-direction: column; }
.sp-cta-bar__from {
  font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 2px;
}
.sp-cta-bar__amount {
  font-family: 'Josefin Sans', sans-serif; font-weight: 600;
  font-size: 22px; color: var(--text); line-height: 1.1;
}
.sp-cta-bar__note {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
  font-size: 12px; color: var(--muted); white-space: nowrap;
}
.sp-cta-bar__btn {
  background: var(--line); border-radius: 28px 8px 28px 8px;
  width: 170px; height: 56px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 14px; color: #fff;
  box-shadow: 0 6px 14px rgba(0,115,0,0.22); flex-shrink: 0;
}
.sp-cta-bar__btn img { width: 16px; height: 16px; }


/* ============================================================
   PC OVERRIDES — min-width: 1024px
   ============================================================ */
@media (min-width: 1024px) {

  .sp-only { display: none !important; }
  .pc-only { display: block; }

  /* HERO */
  .hero { height: 768px; }

  .hero__overlay {
    background: linear-gradient(
      to right,
      rgba(4,14,28,0.55) 0%,
      rgba(4,14,28,0.10) 35%,
      rgba(4,14,28,0.40) 100%
    );
  }

  .hero__arrow {
    display: flex; position: absolute; top: 397px;
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.5);
    align-items: center; justify-content: center;
    font-family: 'Josefin Sans', sans-serif; font-weight: 500; font-size: 22px;
    color: #fff; cursor: pointer; z-index: 5;
  }
  .hero__arrow--left  { left: 40px; }
  .hero__arrow--right { right: 40px; }

  .hero__dots  { bottom: 56px; }
  .hero__dot--active { width: 32px; }
  .hero__counter { right: 60px; bottom: 60px; border-radius: 14px; padding: 8px 14px; height: auto; letter-spacing: 1.5px; }

  /* BREADCRUMB */
  .breadcrumb {
    display: flex; gap: 8px; align-items: center;
    padding: 0 120px 0; margin-bottom: -8px; margin-top: 48px;
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
    font-size: 11px; color: var(--muted); letter-spacing: 2.5px; white-space: nowrap;
  }
  .breadcrumb__sep { color: rgba(110,124,146,0.5); letter-spacing: 0; }
  .breadcrumb__current {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
    letter-spacing: 0; color: var(--text);
  }

  /* TITLE BLOCK */
  .title-block { padding: 24px 120px 40px; gap: 16px; }
  .badge { font-size: 13px; padding: 8px 18px; height: auto; border-radius: 18px 4px 18px 4px; }
  .title { font-size: 44px; line-height: 1.36; letter-spacing: 1px; }
  .meta  { font-size: 13px; gap: 24px; color: var(--blue); }

  /* CHIPS BLOCK */
  .chips-block { padding: 0 120px; margin-bottom: 0; }
  .chip {
    border-color: rgba(0,71,123,0.35);
    border-radius: 40px; color: var(--blue);
    font-size: 13px; height: 32px; padding: 0 14px;
  }

  /* MAIN WRAPPER */
  .main-wrapper {
    padding: 0 120px 120px;
    display: flex; gap: 60px; align-items: flex-start;
  }
  .main-left { gap: 56px; padding: 40px 0 0; flex: 1; min-width: 0; }
  /* .main-sidebar は 1300px 以上でのみ表示（css/plan-detail.css 末尾の
     PC WIDE OVERRIDES を参照）。1024〜1299px は幅が足りず崩れるため、
     SPと同じ下部固定バー(.sp-cta-bar)で予約導線を維持する。 */

  /* SECTION HEADER */
  .sh__label { letter-spacing: 2.5px; }
  .sh__title { font-size: 28px; }

  /* ABOUT */
  .about__heading { font-size: 28px; line-height: 42px; }
  .about__body    { font-size: 16px; letter-spacing: 0.8px; }

  /* ADVISOR CARD */
  .adv-card { border-radius: 12px; padding: 36px; gap: 24px; }
  .adv-top  { gap: 20px; }
  .adv-avatar { width: 72px; height: 72px; }
  .adv-info { gap: 6px; }
  .adv-label { letter-spacing: 2.5px; font-size: 11px; }
  .adv-name  { font-size: 20px; color: var(--blue); }
  .adv-quote {
    font-size: 19px; font-weight: 700; line-height: 34px;
    color: var(--blue);
  }

  /* HIGHLIGHTS */
  .hl-row { flex-direction: row; gap: 20px; align-items: stretch; }
  .hl-card { flex: 1 1 0; min-width: 0; }
  .hl-img  { height: 220px; border-radius: 8px; }
  .hl-title-row { align-items: flex-start; min-height: 52px; }
  .hl-num   { opacity: 1; font-weight: 700; color: var(--blue); }
  .hl-title { font-size: 17px; line-height: 26px; color: var(--blue); }
  .hl-body  { font-size: 16px; letter-spacing: 0.8px; }

  /* ITINERARY */
  .itinerary-wrap {
    margin: 0; padding: 0; background: none;
    gap: 32px;
  }
  .days-list { gap: 24px; }
  .day__rail { width: 20px; }
  .day__rail::before { width: 10px; height: 10px; }
  .day__rail::after {
    background: rgba(0,71,123,0.2);
    width: 2px;
  }
  .day__content { gap: 0; padding-bottom: 24px; }
  .day--last .day__content { padding-bottom: 0; }
  .day__header { gap: 16px; }
  .day__header-text { gap: 10px; }
  .day__toggle { width: 28px; height: 28px; margin-top: 6px; }
  .day__label-row { align-items: baseline; gap: 12px; }
  .day__num  { font-size: 14px; letter-spacing: 1.5px; color: var(--blue); }
  .day__sub  { font-weight: 700; font-size: 16px; color: var(--blue); }
  .day__title { font-size: 20px; line-height: 32px; color: var(--blue); }
  .day--open .day__body-wrap { max-height: 400px; padding-top: 20px; }
  .day__body-row { flex-direction: row; gap: 24px; align-items: flex-start; }
  .day__img { width: 280px; height: 180px; border-radius: 8px; flex-shrink: 0; }
  .day__body { font-size: 16px; letter-spacing: 0.8px; }

  /* GALLERY */
  .gallery-img { height: 200px; border-radius: 8px; display: block; }
  .gallery-img:nth-child(3) { display: block; }
  .gallery-row { gap: 16px; }
  .gallery-grid { gap: 16px; }

  /* LOCATION */
  .location__address { gap: 14px; }
  .location__main { font-size: 16px; font-weight: 700; color: var(--blue); }
  .location__sub  { font-size: 16px; letter-spacing: 0.8px; line-height: 2; }
  .map-placeholder { border-radius: 12px; padding: 110px 0; height: auto; }

  /* SIDEBAR */
  .booking-card {
    background: #fff;
    border: 1px solid rgba(0,71,123,0.18);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(111,93,48,0.10);
    padding: 28px;
    display: flex; flex-direction: column; gap: 24px;
  }
  .price-block { display: flex; flex-direction: column; gap: 4px; }
  .price-from {
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
    font-size: 11px; letter-spacing: 2px; color: var(--muted);
  }
  .price-row {
    display: flex; gap: 4px; align-items: baseline;
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  }
  .price-currency { font-size: 20px; color: var(--text); }
  .price-amount   { font-size: 38px; color: var(--text); }
  .price-per      { font-size: 13px; color: var(--muted); }
  .price-note {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
    font-size: 11px; color: var(--muted);
  }

  .divider { height: 1px; background: rgba(0,71,123,0.15); }
  .divider--thin { background: rgba(0,71,123,0.1); }

  .sb-avail { display: flex; flex-direction: column; gap: 14px; }
  .sb-avail__head { display: flex; flex-direction: column; gap: 4px; }
  .sb-avail__label {
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
    font-size: 11px; letter-spacing: 2px; color: var(--muted);
  }
  .sb-avail__title {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 15px; color: var(--blue);
  }
  .sb-avail__pill {
    background: var(--bg); border-radius: 999px; padding: 8px 12px;
    display: inline-flex; gap: 8px; align-items: center;
    color: var(--blue); white-space: nowrap; align-self: flex-start;
  }
  .sb-avail__pill-tag { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 11px; }
  .sb-avail__pill-date { font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 12px; }

  .sb-avail__row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; white-space: nowrap;
  }
  .sb-avail__date { display: flex; gap: 10px; align-items: center; }
  .sb-avail__date-num {
    font-family: 'Josefin Sans', sans-serif; font-weight: 700;
    font-size: 16px; color: var(--blue);
  }
  .sb-avail__date-num--muted { color: var(--muted); }
  .sb-avail__date-day {
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
    font-size: 11px; letter-spacing: 1px; color: var(--muted);
  }
  .sb-avail__date-day--dimmed { color: rgba(110,124,146,0.6); }
  .sb-avail__slots { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500; font-size: 12px; color: var(--blue); }
  .sb-avail__slots--full { color: var(--muted); }

  .line-btn-full {
    background: var(--line); border-radius: 32px 8px 32px 8px;
    padding: 18px 24px; width: 100%;
    display: flex; gap: 10px; align-items: center; justify-content: center;
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 16px; color: #fff; white-space: nowrap;
  }
  .policy-link-text {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 1px; color: var(--blue);
    text-align: center; text-decoration: underline; display: block;
  }
  .booking-note {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
    font-size: 11px; color: var(--muted); line-height: 18px;
  }

  .similar-card {
    background: var(--bg); border-radius: 12px; padding: 24px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .similar-card__title {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 13px; color: var(--blue);
  }
  .similar-card__body {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
    font-size: 12px; color: var(--text); line-height: 20px;
  }
  .similar-card__link {
    display: flex; gap: 6px; align-items: center;
    font-family: 'Josefin Sans', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 2px; color: var(--blue);
  }

  /* PC POLICY (2×2 grid) */
  .policy-pc {
    background: var(--bg); padding: 80px 120px;
    display: flex; flex-direction: column; gap: 32px;
  }
  .policy-pc__head { display: flex; flex-direction: column; gap: 8px; }
  .policy-pc__label {
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
    font-size: 13px; letter-spacing: 3px; color: var(--muted);
  }
  .policy-pc__title {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 32px; letter-spacing: 1px; color: var(--blue);
  }
  .policy-pc__row { display: flex; gap: 24px; }
  .policy-card {
    flex: 1; min-width: 0; background: #fff; border-radius: 12px; padding: 28px;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  }
  .policy-card__text { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0; }
  .policy-card__title {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 17px; color: var(--blue); white-space: nowrap;
  }
  .policy-card__body {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
    font-size: 16px; color: var(--text); line-height: 22px;
  }
  .policy-card__icon {
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
    font-size: 24px; color: var(--muted); flex-shrink: 0;
  }

  /* FOOTER */
  .site-footer {
    background: var(--blue); color: #fff;
    padding: 60px 120px 40px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .site-footer__brand {
    font-family: 'Josefin Sans', sans-serif; font-weight: 700;
    font-size: 18px; letter-spacing: 2.5px;
  }
  .site-footer__info {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 500;
    font-size: 16px; letter-spacing: 0.8px; line-height: 2; opacity: 0.8;
  }
}

/* ============================================================
   PC WIDE OVERRIDES — min-width: 1300px
   予約サイドバー(.main-sidebar)を表示できる余白ができてから切り替える。
   1024〜1299px は SP と同じ下部固定バー(.sp-cta-bar)で予約導線を維持する。
   ============================================================ */
@media (min-width: 1300px) {
  .main-sidebar {
    display: flex; flex-direction: column; gap: 16px;
    width: 360px; flex-shrink: 0;
    position: sticky; top: 40px; align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .sp-cta-bar { display: none; }

  /* BOTTOM CTA (PC) */
  .bottom-cta {
    background: #fff; border-top: 1px solid rgba(0,71,123,0.12);
    padding: 32px 120px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
  }
  .bottom-cta__left { display: flex; gap: 24px; align-items: center; }
  .bottom-price { display: flex; flex-direction: column; gap: 2px; }
  .bottom-price__from {
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
    font-size: 11px; letter-spacing: 2px; color: var(--muted);
  }
  .bottom-price__row {
    display: flex; gap: 4px; align-items: baseline;
    font-family: 'Josefin Sans', sans-serif; font-weight: 500;
  }
  .bottom-price__symbol { font-size: 18px; color: var(--text); }
  .bottom-price__amount { font-size: 28px; color: var(--text); }
  .bottom-price__per    { font-size: 13px; color: var(--muted); }
  .bottom-cta__text {
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 16px; color: var(--blue); max-width: 400px;
  }
  .bottom-cta__btn {
    background: var(--line); border-radius: 32px 8px 32px 8px;
    padding: 20px 36px;
    display: flex; gap: 10px; align-items: center;
    font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
    font-size: 16px; color: #fff; white-space: nowrap; flex-shrink: 0;
  }
}
