:root {
  --pink:       #f06292;
  --pink-light: #fce4ec;
  --pink-mid:   #f8bbd0;
  --pink-deep:  #e91e8c;
  --salmon:     #ff8a80;
  --coral:      #ff6b6b;
  --text:       #2d1f26;
  --text2:      #5c4a54;
  --text3:      #9e8a94;
  --bg:         #fff9fb;
  --white:      #ffffff;
  --border:     #f0dde6;
  --gold:       #e8a020;
  --teal:       #26a69a;
  --warn-bg:    #fff8e1;
  --warn-border:#ffcc02;
  --info-bg:    #fce4ec;
  --info-border:#f48fb1;
  --success-bg: #e8f5e9;
  --success-border:#66bb6a;
  --rakuten:    #bf0000;
  --jalan:      #e8620c;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

/* 1. 各タグの色の設定（HTMLのクラス名と合わせました） */
.tag-mint   { background-color: #e8f5e9; color: #27ae60; } /* コスパ重視 */
.tag-purple { background-color: #f3e5f5; color: #8e44ad; } /* ご褒美 */
.tag-peach  { background-color: #fff3e0; color: #e67e22; } /* 映え重視 */
.tag-pink   { background-color: #fce4ec; color: #d81b60; } /* グルメ */

/* 2. アイコンの色をタグの文字色と連動させる設定 */
/* タグが同じカード内にある場合、その中のアイコンの色を変える設定です */

.scene-card:has(.tag-mint) .scene-icon   { stroke: #27ae60; }
.scene-card:has(.tag-purple) .scene-icon { stroke: #8e44ad; }
.scene-card:has(.tag-peach) .scene-icon  { stroke: #e67e22; }
.scene-card:has(.tag-pink) .scene-icon   { stroke: #d81b60; }

/* 3. アイコン自体の基本設定（太さなど） */
.scene-icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.5; /* 細めでおしゃれに */
  fill: none;
}


/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--pink-mid);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(240,98,146,.12);
}
.site-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
}
.site-cat { font-size: 11px; color: var(--text3); }
.header-cta {
  margin-left: auto;
  font-size: 12px;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(240,98,146,.4);
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(240,98,146,.5); }

/* ===== LAYOUT ===== */
.page-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 6rem;
}

/* ===== FIRST VIEW ===== */
.fv-hook-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #f06292 50%, #ba68c8 100%);
  border-radius: 18px;
  padding: 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(240,98,146,.35);
}
.fv-hook-banner::before {
  content: '🎵';
  position: absolute;
  font-size: 8rem;
  opacity: .06;
  right: -1rem;
  top: -1rem;
}
.fv-hook-label {
  display: inline-block;
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: .75rem;
  backdrop-filter: blur(4px);
}
.fv-hook-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: .5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.fv-hook-sub {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.fv-hook-cta {
  display: inline-block;
  background: #fff;
  color: var(--pink);
  font-size: 15px;
  font-weight: 900;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s;
}
.fv-hook-cta:hover { transform: translateY(-2px); }
.fv-hook-cta .emoji { margin-right: 4px; }

/* ===== ARTICLE META ===== */
.article-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.meta-tag {
  font-size: 11px;
  letter-spacing: .08em;
  padding: 3px 11px;
  border-radius: 50px;
  font-weight: 700;
}
.meta-tag.cat { background: var(--pink); color: #fff; }
.meta-tag.updated { background: var(--pink-light); color: var(--pink); }

.article-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.45rem, 4.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text);
}
.article-lead {
  font-size: .975rem;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed var(--border);
}
.author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.author-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(240,98,146,.35);
}
.author-name { font-size: 13px; font-weight: 700; color: var(--text); }
.author-role { font-size: 11px; color: var(--text3); }

/* ===== HERO IMAGE ===== */
.hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #1a0a12 0%, #3a1228 45%, #1a1228 100%);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(240,98,146,.25) 0%, transparent 70%);
}
.hero-img::after {
  content: '✦ ✦ ✦';
  position: absolute;
  bottom: 12px;
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: 6px;
}
.hero-img-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(.95rem, 3vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(240,98,146,.6);
}
.hero-img-sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  position: relative;
  letter-spacing: .08em;
}

/* ===== AFFILIATE NOTE ===== */
.affiliate-note {
  background: var(--pink-light);
  border: 1px solid var(--info-border);
  border-radius: 12px;
  padding: .75rem 1rem;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===== EMPATHY BLOCK ===== */
.empathy-block {
  background: var(--white);
  border: 2px solid var(--pink-mid);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.empathy-block::before {
  content: '😭 わかるわかる';
  position: absolute;
  top: -13px;
  left: 1.5rem;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 50px;
}
.empathy-block p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: .75rem;
}
.empathy-block p:last-child { margin-bottom: 0; }
.empathy-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-bottom: .75rem;
}
.empathy-list li {
  font-size: 14px;
  color: var(--text2);
  padding: .5rem .75rem;
  background: var(--pink-light);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* ===== RESOLVE BLOCK ===== */
.resolve-block {
  background: linear-gradient(135deg, var(--pink-light), #fce4ec88);
  border: 2px solid var(--pink-mid);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.resolve-block p {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
}
.resolve-block .accent { color: var(--pink-deep); }

/* ===== TOC ===== */
.toc {
  background: var(--white);
  border: 2px solid var(--pink-mid);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.toc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toc ol { padding-left: 1.25rem; display: grid; gap: 4px; }
.toc li { font-size: 13px; }
.toc a { color: var(--pink); text-decoration: none; font-weight: 500; }
.toc a:hover { text-decoration: underline; }

/* ===== HEADINGS ===== */
h2.note-h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 3rem 0 1.25rem;
  padding: .6rem 1rem .6rem 1.1rem;
  border-left: 5px solid var(--pink);
  background: linear-gradient(90deg, var(--pink-light), transparent);
  border-radius: 0 12px 12px 0;
  line-height: 1.35;
}
h3.note-h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
h3.note-h3::before {
  content: '';
  width: 4px; height: 1.1em;
  background: linear-gradient(180deg, var(--pink), var(--coral));
  border-radius: 3px;
  flex-shrink: 0;
}
p.note-p { margin-bottom: 1.25rem; color: var(--text); font-size: 15px; }

/* ===== CALLOUT ===== */
.callout {
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.callout.warn { background: var(--warn-bg); border-left: 4px solid var(--warn-border); }
.callout.info { background: var(--info-bg); border-left: 4px solid var(--info-border); }
.callout.success { background: var(--success-bg); border-left: 4px solid var(--success-border); }
.callout-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.callout-body { font-size: 14px; line-height: 1.8; }
.callout-body strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; }

/* ===== HOTEL CARDS ===== */
/* デフォルト（PC・タブレット） */
.horizontal-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 16px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* ← iPhone対応（超重要） */
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.venue-card {
  flex: 0 0 auto;
  width: calc(100% - 32px);
  max-width: 360px;
  margin: 0; /* ← 間隔ズレ防止 */
  scroll-snap-align: start;
}

/* スマホ用 */
@media (max-width: 768px) {
  .horizontal-scroll {
    padding: 0 16px 16px;
  }

  .venue-card {
    width: calc(100% - 32px); /* ← min-widthじゃなく統一 */
  }
}
.venue-card {
  position: relative; /* ← これ必須 */
}

/* 保存ボタン */
.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.fav-btn.active {
  color: #ff6b81;
  animation: heartBeat 0.4s ease;
}



@keyframes heartBeat {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.hotel-entry {
  border: 2px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin: 1.5rem 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(240,98,146,.08);
  transition: transform .2s, box-shadow .2s;
}
.hotel-entry:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,98,146,.16); }
.hotel-entry.featured { border-color: var(--pink); }
.hotel-entry-head {
  background: linear-gradient(135deg, #2d1f26, #4a2640);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hotel-entry.featured .hotel-entry-head { background: linear-gradient(135deg, var(--pink-deep), #f06292); }
.hotel-entry-rank {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.hotel-entry.featured .hotel-entry-rank { color: rgba(255,255,255,.8); }
.hotel-entry-name { font-size: 15px; font-weight: 700; color: #fff; }
.hotel-entry-badge {
  margin-left: auto;
  font-size: 10px;
  background: #fff;
  color: var(--pink-deep);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.hotel-entry-body { padding: 1.25rem 1.5rem; }
.hotel-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: .75rem;
  align-items: center;
}
.hotel-dist-tag {
  font-size: 12px;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: .04em;
}
.htag2 {
  font-size: 11px;
  background: var(--pink-light);
  color: var(--pink);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 500;
}
.hotel-price-row {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: .75rem;
}
.hotel-price-row strong {
  color: var(--coral);
  font-size: 1.1rem;
  font-family: 'Noto Serif JP', serif;
}
.hotel-desc-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.hotel-cta-row {
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hcta-btn {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .04em;
  display: inline-block;
  transition: opacity .2s, transform .2s;
}
.hcta-btn:hover { opacity: .88; transform: translateY(-1px); }
.hcta-btn.rakuten { background: var(--rakuten); color: #fff; }
.hcta-btn.jalan   { background: var(--jalan);   color: #fff; }

/* ===== INLINE CTA ===== */
.inline-cta-block {
  background: linear-gradient(135deg, var(--pink-deep), var(--coral));
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 6px 24px rgba(240,98,146,.35);
}
.inline-cta-block p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.inline-cta-block a {
  display: inline-block;
  background: #fff;
  color: var(--pink-deep);
  font-size: 15px;
  font-weight: 900;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .04em;
  box-shadow: 0 3px 14px rgba(0,0,0,.2);
  transition: transform .2s;
}
.inline-cta-block a:hover { transform: translateY(-2px); }

/* ===== DATA TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 1.25rem 0 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(240,98,146,.1);
}
.data-table th {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  background: var(--white);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--pink-light); }

/* ===== OSHI LIST ===== */
.oshi-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 1rem 0 1.75rem;
}
.oshi-list li {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.8;
  transition: border-color .2s;
}
.oshi-list li:hover { border-color: var(--pink); }
.oshi-list .oli-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  margin-top: 2px;
}
.oshi-list strong { color: var(--text); display: block; font-size: 14px; margin-bottom: 2px; }
.oshi-list span { color: var(--text2); }

/* ===== SPOT CARDS ===== */
.spot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 1rem 0 1.75rem;
}
.spot-entry {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  transition: border-color .2s;
}
.spot-entry:hover { border-color: var(--pink); }
.spot-entry-cat { font-size: 11px; color: var(--pink); font-weight: 700; margin-bottom: 4px; }
.spot-entry-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.spot-entry-desc { font-size: 12px; color: var(--text2); line-height: 1.7; }

/* ===== COMPARE TABLE (スクショ用) ===== */
.compare-card {
  background: var(--white);
  border: 2px solid var(--pink-mid);
  border-radius: 18px;
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(240,98,146,.12);
}
.compare-card-head {
  background: linear-gradient(135deg, var(--pink-deep), var(--coral));
  padding: .75rem 1.25rem;
  text-align: center;
}
.compare-card-head p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th {
  background: var(--pink-light);
  color: var(--pink-deep);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text2);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 700; color: var(--text); text-align: left; padding-left: 14px; }
.compare-table tr:nth-child(even) td { background: #fdf4f7; }
.best-badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* ===== SWIPE CARDS ===== */
/* --- Tinder UI Basic --- */
.swipe-area {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 620px;
  margin: 40px auto;
}

.card-container {
  position: relative;
  width: 100%;
  height: 520px; /* ボタンの高さを除いたカードエリア */
}

.tinder-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 35px;
  border: 2px solid #f2e6ed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(240, 98, 146, 0.1);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  z-index: 1; /* デフォルトは1 */
}

/* 後ろのカードを少し見せる演出 */
.tinder-card:nth-last-child(2) { transform: translateY(10px) scale(0.96); z-index: 0; opacity: 0.9; }
.tinder-card:nth-last-child(3) { transform: translateY(20px) scale(0.92); z-index: -1; opacity: 0.8; }

.card-image-large {
  position: relative;
  width: 100%;
  height: 65%; 
}

.card-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content-compact {
  padding: 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

/* ボタンデザイン */
.swipe-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.s-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.s-btn.nope { color: #888; }
.s-btn.like { color: #d4527a; }
.s-btn:active { transform: scale(0.9); }

/* ホテル内パーツ（以前の数値を維持） */
.hotel-header-main { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.hotel-type { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; background: #f0e6ff; color: #8e44ad; }
.hotel-price { font-size: 18px; font-weight: 700; color: #d4527a; }
.hotel-name { font-size: 19px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.hotel-tag { font-size: 10px; padding: 3px 10px; border-radius: 50px; background: #f8f0f4; border: 1px solid #eee1e8; margin-right: 4px; }


/* ===== SUMMARY BOX ===== */
.summary-box {
  background: linear-gradient(135deg, #2d1228, #4a1f3a);
  border-radius: 18px;
  padding: 2rem;
  margin: 2rem 0;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.summary-box h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--pink-mid);
  text-align: center;
}
.summary-box ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.summary-box li {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  display: flex;
  gap: 8px;
  line-height: 1.7;
}
.summary-box li::before { content: '💗'; flex-shrink: 0; }

/* ===== FINAL CTA ===== */
.final-cta-section {
  background: linear-gradient(135deg, var(--pink-light), #fff0f5);
  border: 2px solid var(--pink-mid);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2.5rem 0;
}
.final-cta-section h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.5;
}
.final-cta-section p {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.final-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--pink-deep), var(--coral));
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .05em;
  box-shadow: 0 6px 24px rgba(240,98,146,.5);
  transition: transform .2s, box-shadow .2s;
  margin-bottom: .75rem;
}
.final-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,98,146,.6); }
.final-cta-sub-btn {
  display: inline-block;
  background: var(--white);
  color: var(--jalan);
  border: 2px solid var(--jalan);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s;
}
.final-cta-sub-btn:hover { background: #fff5f0; }

/* ===== RELATED ===== */
.related-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px dashed var(--border);
}
.related-title { font-size: 13px; font-weight: 700; margin-bottom: 1rem; color: var(--text3); letter-spacing: .05em; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.related-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: border-color .2s;
}
.related-card:hover { border-color: var(--pink); }
.related-card .rc-cat { font-size: 10px; color: var(--pink); margin-bottom: 4px; letter-spacing: .08em; font-weight: 700; }

/* ===== FOOTER ===== */
.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text3);
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .spot-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .hotel-entry-name { font-size: 14px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 8px 6px; }
}
/* ===== 修正：アイコンとタグを縦に並べる設定 ===== */

.scene-card {
  display: flex;
  flex-direction: column; /* 中身を縦に並べる */
  align-items: center;    /* 中央寄せ */
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: transform 0.3s ease;
}

/* アイコンを囲むエリア */
.scene-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px; /* タグとの間の余白 */
  height: 40px;        /* 高さを固定してガタつきを防ぐ */
}

/* Lucideアイコン自体のデザイン */
.scene-icon {
  width: 30px;  /* アイコンのサイズ */
  height: 30px;
  stroke: var(--pink); /* 変数のピンクを使用 */
  stroke-width: 1.5;   /* 細めでオシャレに */
  fill: none;
}

/* タグの微調整（改行させるためにインラインブロックに） */
.scene-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* プラン名と説明文の調整 */
.scene-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.scene-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

/* 会場名とアイコンの親要素 */
.venue-header {
  display: flex;
  align-items: center;  /* 垂直方向の中央 */
  justify-content: flex-start; /* 左寄せ（中央寄せならcenter） */
  gap: 8px;            /* 文字とアイコンの隙間 */
  margin-bottom: 12px;
}

/* 会場名自体のスタイル微調整 */
.venue-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;    /* header側で余白を制御 */
}

/* このセクション専用の小さなアイコン */
.venue-icon {
  width: 16px;         /* かなり小さめにして「添える」感じに */
  height: 16px;
  stroke: var(--pink); /* もともとのテーマカラー */
  stroke-width: 2;     /* 小さいので線は少し太めが見えやすい */
  flex-shrink: 0;
}

/* アコーディオンのクリック部分 */
.plan-box summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  outline: none;
}

.plan-box summary::-webkit-details-marker {
  display: none;
}

/* タイトルとアイコンを横に並べる */
.plan-title {
  display: flex;
  align-items: center;
  gap: 8px; /* 文字と矢印の隙間 */
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 0 !important;
}

/* プラン内アイコンのサイズ調整 */
.plan-icon {
  width: 16px;
  height: 16px;
  stroke: var(--pink);
  stroke-width: 2.5;
  transition: transform 0.3s ease; /* 回転アニメーション */
}

/* アコーディオンが開いたとき、矢印を上に向ける */
details[open] .plan-icon {
  transform: rotate(180deg);
}

/* スケジュール詳細部分の余白を調整 */
.plan-details-body {
  padding: 16px 16px 16px; /* 最初の 0 を 16px に変更して、上に隙間を作ります */
  border-top: 1px dashed var(--border); /* 区切り線をより際立たせる */
  animation: fadeIn 0.4s ease;
}

/* ついでに、1行ごとの間隔も少し広げるともっと読みやすくなります */
.plan-row {
  padding: 8px 0; /* 行の上下に少しだけ隙間を追加 */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.venue-card {
  height: auto; /* 中身に合わせて自動で伸び縮みさせる */
  display: flex;
  flex-direction: column;
}
/* セレクトボックスのデザイン統一 */
#scene-select, #venue-select {
  width: 100%;
  max-width: 400px;
  padding: 12px 20px;
  margin: 10px 0;
  border: 2px solid #f2e6ed; /* 会場カードと同じ淡いピンク */
  border-radius: 50px;       /* ボタンと同じ丸み */
  background-color: white;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;          /* ブラウザ標準の矢印を消す */
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4527a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#scene-select:focus, #venue-select:focus {
  outline: none;
  border-color: #d4527a;
  box-shadow: 0 0 0 3px rgba(212, 82, 122, 0.1);
}

/* 選択エリアのレイアウト */
.selector-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0 20px;
}
.selector-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto 40px;
  max-width: 800px;
  padding: 0 20px;
}

.selector-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.selector-item label {
  font-size: 12px;
  font-weight: bold;
  color: #d4527a;
  margin-left: 15px;
}
/* 選択肢を囲むコンテナ */
/* 1. 親コンテナ：横並びの土台 */
.selector-container {
  display: flex;
  flex-direction: row;    /* 基本は横並び */
  flex-wrap: wrap;       /* 幅が狭くなったら折り返す */
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 900px;      /* PCで広がりすぎないように制限 */
  padding: 0 20px;
}

/* 2. 各アイテム（会場・シーン） */
.selector-item {
  /* ここがポイント：
     PCでは flex: 1 で横幅を半分ずつ分け合う。
     スマホ（幅 640px以下など）では width: 100% にして強制的に縦にする。
  */
  flex: 1;
  min-width: 280px;      /* これより狭くなると折り返す */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 3. スマホ用のメディアクエリ（念のための強制設定） */
@media (max-width: 600px) {
  .selector-item {
    flex: none;
    width: 100%;         /* スマホでは横幅いっぱい＝縦並び */
  }
  .selector-container {
    gap: 15px;           /* スマホでは隙間を少し詰める */
  }
}

/* --- 以下はデザイン（既にあるならそのままでOK） --- */
.selector-item label {
  font-size: 13px;
  font-weight: 700;
  color: #d4527a;
  margin-left: 10px;
}

#scene-select, #venue-select {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #f2e6ed;
  border-radius: 50px;
  background-color: white;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4527a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

/* 5. スマホ（幅600px以下）の時の設定 */
@media (max-width: 600px) {
  .selector-item {
    max-width: 100%;     /* スマホでは横幅いっぱいにして縦に並べる */
    flex: none;
  }
}