@charset "UTF-8";
/* =========================================================
   久保ひとみと行く！秋の京都・大阪バスツアー3日間（テスト版 / B案）
   現行デザインの雰囲気を維持しつつ改善したスタイル
   ========================================================= */

:root {
  --bh-blue: #014090;
  --bh-blue-light: #e7effa;
  --accent: #DF0101;
  --accent-strong: #e90000;
  --ink: #333333;
  --line: #d9d9d9;
  --bg: #f8fbff;
}

body {
  background-color: var(--bg);
}

.mainContents {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-feature-settings: "palt";
  padding-bottom: 72px; /* スマホ固定CTAの高さ分の余白 */
}

.mainContents p {
  font-size: 14px;
}

.br-sp {
  display: inline;
}

/* 数字＋「円」を折り返さない */
.nw { white-space: nowrap; }

/* スクリーンリーダー用（画面非表示） */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.mainContents .inner {
  margin: 0 auto;
  max-width: 430px;
  width: 90%;
}

@media screen and (min-width: 768px) {
  .mainContents .inner { max-width: 652.8px; width: 100%; }
  .mainContents { padding-bottom: 0; }
}
@media screen and (min-width: 992px)  { .mainContents .inner { max-width: 843.2px; width: 100%; } }
@media screen and (min-width: 1200px) { .mainContents .inner { max-width: 1020px; width: 100%; } }
@media screen and (min-width: 1400px) { .mainContents .inner { max-width: 1190px; width: 100%; } }

.mainContents .content { padding: 2rem 0; }
.mainContents .content:first-child { padding: 0; }

.mainContents .content h2 {
  text-align: center;
  margin-bottom: 1rem;
}
/* セクション見出しの装飾（雰囲気を保ちつつ視認性UP） */
.mainContents .content h2 .h2-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--bh-blue);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.mainContents .content h3 { font-size: 1.125rem; }

.mainContents .content p { font-size: 0.75rem; font-weight: 500; }
@media screen and (min-width: 768px)  { .mainContents .content p { font-size: 0.875rem; font-weight: 400; } }
@media screen and (min-width: 1200px) { .mainContents .content p { font-size: 1rem; } }

.remarks p { font-size: 0.75rem; display: flex; }
.remarks p:before { content: "※"; }

/* ====== 要確認バッジ ====== */
.todo {
  display: inline-block;
  background: #fff3cd;
  color: #8a6d00;
  border: 1px dashed #e0a800;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ====== 画像プレースホルダー（素材未提供） ====== */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, #eef2f7 0 12px, #e6ebf2 12px 24px);
  color: #7c8794;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  padding: 0.5rem;
  line-height: 1.5;
  min-height: 120px;
}
.ph small { display: block; font-weight: 500; color: #9aa4af; margin-top: 2px; }

/* =========================================================
   ▼ ファーストビュー（情報集約型）
   ========================================================= */
.mainView { position: relative; }
.mainView__image .ph { min-height: 320px; border-radius: 0; }
@media screen and (min-width: 768px) {
  .mainView__image .ph { min-height: 460px; }
}

/* FVヒーロー（番組ロゴ＋出演者） */
.fvHero {
  background: linear-gradient(180deg, #eaf3fb 0%, #d7e9f9 100%);
  padding: 1.1rem 1rem 3.6rem;
  text-align: center;
}
.fvHero__logo { display: block; width: 150px; height: auto; margin: 0 auto 0.6rem; }
.fvHero__talents { display: flex; justify-content: center; align-items: flex-end; gap: 3%; }
.fvHero__talents figure { margin: 0; width: 44%; max-width: 220px; }
.fvHero__talents img { width: 100%; height: auto; display: block; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08)); }
.fvHero__talents figcaption {
  display: inline-block; margin-top: 4px;
  background: #fff; color: var(--bh-blue);
  font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 2px 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
@media screen and (min-width: 768px) {
  .fvHero { padding: 1.5rem 1rem 4.8rem; }
  .fvHero__logo { width: 220px; }
  .fvHero__talents { gap: 2rem; }
  .fvHero__talents figure { max-width: 260px; }
  .fvHero__talents figcaption { font-size: 14px; }
}

/* ホテル画像 */
.hotelBlock__imgs { display: grid; grid-template-columns: 1fr; gap: 6px; }
.hotelBlock__imgs img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; border-radius: 8px;
}

/* FV情報ボックス */
.fv__box {
  margin: 1rem auto 0;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  padding: 1.25rem 1.1rem 1.4rem;
  text-align: center;
}
.fv__badge {
  display: inline-block;
  background: var(--bh-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 14px;
  margin-bottom: 0.6rem;
}
.fv__title {
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.fv__title .em { color: var(--accent); }
.fv__lead { font-size: 0.8rem !important; color: #555; margin-bottom: 0.9rem; }

.fv__facts {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}
.fv__facts div {
  flex: 1;
  padding: 0.55rem 0.3rem;
  background: #fafcff;
}
.fv__facts div + div { border-left: 1px solid var(--line); }
.fv__facts dt { font-size: 10px; color: #888; margin-bottom: 2px; }
.fv__facts dd { font-size: 14px; font-weight: 700; color: var(--ink); }
.fv__price {
  margin-bottom: 1rem;
}
.fv__price .cond { font-size: 11px; color: #666; }
.fv__price .num { color: var(--accent); font-weight: 900; font-size: 2rem; line-height: 1; }
.fv__price .num small { font-size: 0.9rem; font-weight: 700; }
.fv__price .note { font-size: 10px; color: #888; display:block; margin-top: 2px; }

@media screen and (min-width: 768px) {
  .fv__box { max-width: 720px; margin: 1.25rem auto 0; padding: 1.8rem 2rem; }
  .fv__title { font-size: 1.9rem; }
  .fv__lead { font-size: 0.95rem !important; }
  .fv__facts dd { font-size: 16px; }
  .fv__price .num { font-size: 2.4rem; }
}

/* =========================================================
   ▼ CTA（予約ボタン）共通
   ========================================================= */
.cta { text-align: center; margin: 1.25rem auto 0; }
.cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  max-width: 420px;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(233,0,0,0.28);
  transition: 0.25s;
}
.cta__btn small { font-size: 11px; font-weight: 500; opacity: 0.95; }
.cta__btn:after { content: "▶"; display:none; }
@media (hover:hover){ .cta__btn:hover { opacity: 0.85; transform: translateY(-1px); } }

.cta--section { padding: 1.5rem 0 0.5rem; }

/* FV上部の発着地別予約導線 */
.fvDep__head {
  font-size: 13px !important;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0.5rem 0 0.5rem;
}
.fvDep__head span {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-left: 6px;
}
.fvDep { display: flex; gap: 8px; }
.fvDep__btn {
  flex: 1;
  background: var(--accent-strong);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 0 0 2px var(--accent-strong), 0 4px 12px rgba(233,0,0,0.28);
  transition: 0.2s;
}
.fvDep__btn span { font-size: 11px; font-weight: 500; opacity: 0.95; }
@media (hover: hover) { .fvDep__btn:hover { opacity: 0.85; transform: translateY(-1px); } }

/* 発着地選択カード（静岡/浜松）— 視認性重視 */
.depSelect__head {
  font-size: 14px !important;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0.75rem 0 0.6rem;
}
.depSelect { display: flex; flex-direction: column; gap: 12px; }
.depSelect__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 2px solid var(--bh-blue);
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem 1rem 1rem;
  transition: 0.2s;
  text-align: center;
}
.depSelect__label { font-size: 1.2rem; font-weight: 800; color: var(--bh-blue); }
.depSelect__price { font-size: 12px; color: #444; }
.depSelect__price b { color: var(--accent); font-size: 1.1rem; font-weight: 900; }
.depSelect__cta {
  margin-top: 8px;
  width: 100%;
  max-width: 260px;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.6rem;
  font-size: 0.98rem;
  box-shadow: 0 3px 8px rgba(233,0,0,0.25);
}
.depSelect__cta::after { content: " ▶"; font-size: 0.8em; }
@media (hover: hover) {
  .depSelect__btn:hover { background: var(--bh-blue-light); }
  .depSelect__btn:hover .depSelect__cta { opacity: 0.9; }
}
@media screen and (min-width: 600px) {
  .depSelect { flex-direction: row; }
  .depSelect__btn { flex: 1; }
}

/* スマホ固定CTAバー */
.stickyCTA {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.12);
  padding: 8px 10px;
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.stickyCTA__btn {
  flex: 1;
  background: var(--accent-strong);
  color: #fff;
  text-align: center;
  padding: 0.4rem 0.3rem;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent-strong), 0 3px 8px rgba(0,0,0,0.25);
  border-radius: 10px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.stickyCTA__btn .st { font-size: 0.78rem; font-weight: 700; opacity: 0.95; }
.stickyCTA__btn .bk { font-size: 0.86rem; font-weight: 800; }
@media screen and (min-width: 768px) { .stickyCTA { display: none; } }

/* =========================================================
   ▼ ツアー概要
   ========================================================= */
.aboutInfo h2 { text-align: center; margin-bottom: 1rem; }
.aboutInfo dl { color: var(--ink); }
.aboutInfo dl dt {
  background-color: #e2e2e2;
  font-size: 16px; font-weight: 700;
  padding: 0.25rem 0; text-align: center;
}
.aboutInfo dl dd {
  font-size: 12px; font-weight: 500; margin: 0.5rem 0;
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
}
.aboutInfo dl dd h3 { font-size: 14px !important; }
.aboutInfo .aboutInfo__wrapper { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.aboutInfo .aboutInfo__wrapper .table { width: 100%; }
.aboutInfo .info { display: flex; flex-direction: column; gap: 0.5rem; }
.aboutInfo .points p { display: flex; gap: 0.25rem; }
.aboutInfo .points p::before { content: "・"; }

@media screen and (min-width: 768px) {
  .br-sp { display: none; }
  .aboutInfo .aboutInfo__wrapper { align-items: flex-start; }
  .aboutInfo h3 { text-align: start; }
  .aboutInfo dl { width: 100%; display: flex; flex-wrap: wrap; }
  .aboutInfo dl dt { width: 30%; margin: 0 0 1rem 0; display:flex; align-items:center; justify-content:center; }
  .aboutInfo dl dd { width: 70%; margin: 0 0 1rem 0; padding-left: 1rem; }
  .aboutInfo dl dd h3 { font-size: 16px !important; }
}

/* =========================================================
   ▼ 選ばれる理由
   ========================================================= */
.reasons { background: #fff; }
.reasons__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.reason {
  border: 1px solid #e5ebf2;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.reason .ph { min-height: 150px; border: 0; border-radius: 0; }
.reason__body { padding: 0.9rem 1rem 1.1rem; }
.reason__no {
  display: inline-block;
  background: var(--bh-blue);
  color: #fff;
  font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 2px 10px; margin-bottom: 0.5rem;
}
.reason__ttl { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.reason__txt { font-size: 12px; color: #555; }
@media screen and (min-width: 768px) {
  .reasons__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* =========================================================
   ▼ 写真で見る訪問先 / 食事ギャラリー
   ========================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.gallery figure { margin: 0; }
.gallery .ph { aspect-ratio: 3/2; min-height: 0; }
.gallery figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; border-radius: 8px; }
.gallery figcaption { font-size: 12px; font-weight: 700; color: var(--ink); text-align: center; margin-top: 0.35rem; }
.gallery figcaption small { display:block; font-weight: 500; color:#777; font-size: 10px; }
@media screen and (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.foods { background: #fff; }

/* =========================================================
   ▼ 日ごとの行程（日別カード：スマホ可読性重視）
   ========================================================= */
.schedule { background-color: #f7f7f7; color: var(--ink); }
.schedule__wrap { display: flex; flex-direction: column; gap: 1.25rem; }
.dayCard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.dayCard__head {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--bh-blue);
  color: #fff;
  padding: 0.6rem 1rem;
}
.dayCard__day {
  background: #fecb79; color: #5a3b00;
  font-weight: 800; font-size: 12px;
  border-radius: 6px; padding: 2px 8px;
}
.dayCard__date { font-weight: 700; font-size: 0.95rem; }
.dayCard__body { padding: 0.9rem 1rem 1rem; }
.dayCard__flow { font-size: 13px; line-height: 1.7; color: #333; }
.dayCard__flow .stop { font-weight: 700; }
.dayCard__flow .arrow { color: #999; }
.dayCard__note { font-size: 12px; color: #555; margin-top: 0.5rem; }
.dayCard__note.event { color: var(--accent); font-weight: 700; }
.dayCard__meals {
  display: flex; gap: 0.5rem; margin-top: 0.8rem; flex-wrap: wrap;
}
.meal {
  font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 3px 10px;
  border: 1px solid var(--line); color: #888; background:#fafafa;
}
.meal.on { background: var(--bh-blue-light); color: var(--bh-blue); border-color: #bcd3ee; }
.dayCard__hotel {
  margin-top: 0.8rem;
  background: #333; color: #fff;
  border-radius: 8px; padding: 0.5rem 0.75rem; font-size: 12px;
}
.dayCard__hotel b { font-size: 13px; }
@media screen and (min-width: 768px) {
  .dayCard__flow { font-size: 15px; }
}

/* =========================================================
   ▼ 宿泊ホテル（2ホテル）
   ========================================================= */
.hotels { background: #fff; }
.hotels__wrap { display: flex; flex-direction: column; gap: 2rem; }
.hotelBlock { border: 1px solid #e9edf2; border-radius: 14px; overflow: hidden; }
.hotelBlock__tag {
  background: var(--bh-blue); color: #fff; font-size: 12px; font-weight: 700;
  padding: 0.4rem 1rem;
}
.hotelBlock .ph { min-height: 200px; border: 0; border-radius: 0; }
.hotelBlock__body { padding: 1rem; }
.hotelBlock__name { font-size: 1.1rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; }
.hotelBlock__txt { font-size: 13px; color: #555; text-align: center; }
.hotelBlock__map { margin-top: 0.75rem; }
.hotelBlock__map iframe { width: 100%; aspect-ratio: 3/2; border: 0; border-radius: 8px; }
@media screen and (min-width: 768px) {
  .hotelBlock__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; padding: 1rem; }
  .hotelBlock .ph { min-height: 240px; border-radius: 8px; }
  .hotelBlock__body { padding: 0; }
  .hotelBlock__map iframe { aspect-ratio: 16/9; }
}

/* =========================================================
   ▼ 旅行代金（発着地別）
   ========================================================= */
.price { background: #f7f7f7; }
.priceTable { width: 100%; border-collapse: collapse; background:#fff; border-radius: 10px; overflow: hidden; }
.priceTable th, .priceTable td { border: 1px solid var(--line); padding: 0.6rem 0.5rem; text-align: center; font-size: 13px; }
.priceTable thead th { background: var(--bh-blue); color: #fff; font-weight: 700; }
.priceTable th[scope="row"] { background: #eef3f9; font-weight: 700; }
.priceTable .yen { color: var(--accent); font-weight: 900; font-size: 1.05rem; }
.price__note { margin-top: 0.75rem; }
.price__cols { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.price__col h3 { font-size: 1rem; margin-bottom: 0.4rem; text-align: center; }
.price__col .detail { background:#fff; border:1px solid var(--line); border-radius:10px; padding: 0.75rem 1rem; font-size: 12px; }
@media screen and (min-width: 768px) {
  .price__cols { flex-direction: row; }
  .price__col { flex: 1; }
  .priceTable th, .priceTable td { font-size: 15px; }
}

/* =========================================================
   ▼ FAQ
   ========================================================= */
.faq { background: #fff; }
.faq__list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq details {
  border: 1px solid #e5ebf2; border-radius: 10px; overflow: hidden; background: #fff;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 0.85rem 2.2rem 0.85rem 2.4rem;
  position: relative; font-weight: 700; font-size: 13px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 0.85rem; color: var(--bh-blue); font-weight: 800; }
.faq summary::after {
  content: "＋"; position: absolute; right: 0.9rem; color: #999; transition: 0.2s;
}
.faq details[open] summary::after { content: "－"; }
.faq .faq__a { padding: 0 1rem 1rem 2.4rem; font-size: 12px; color: #555; line-height: 1.7; }
@media screen and (min-width: 768px) {
  .faq summary { font-size: 15px; } .faq .faq__a { font-size: 14px; }
}

/* =========================================================
   ▼ 注意事項
   ========================================================= */
.conditionList { background-color: #efefef; }
.conditionList ul { display: flex; flex-direction: column; margin-top: 1rem; gap: 1rem; }
.conditionList ul li { color: var(--ink); display: flex; gap: 0.25rem; font-size: 12px; font-weight: 500; }
.conditionList ul li::before { content: "・"; }
@media screen and (min-width: 768px) { .conditionList ul li { font-size: 16px; font-weight: 400; } }

/* =========================================================
   ▼ 最終予約導線
   ========================================================= */
.finalCTA { background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%); text-align: center; }
.finalCTA h2 { margin-bottom: 0.5rem; }
.finalCTA .lead { font-size: 13px; color: #555; margin-bottom: 1rem; }
.finalCTA .recruit { font-size: 12px; color: var(--accent); font-weight: 700; margin-top: 0.75rem; }

/* =========================================================
   ▼ 予約開始前 カミングスーン制御
   ========================================================= */
/* 既定（予約開始前）：LIVEを隠し、COMING SOONを表示 */
.bookLive { display: none; }
.bookSoon { display: block; }
body.booking-open .bookLive { display: block; }
body.booking-open .bookSoon { display: none; }

.comingsoon {
  text-align: center;
  background: #eef2f7;
  border: 1px dashed #9fb3c8;
  border-radius: 12px;
  padding: 1.1rem 1rem;
}
.comingsoon__badge {
  display: inline-block;
  background: var(--bh-blue);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.95rem !important;
  border-radius: 999px;
  padding: 4px 18px;
  margin-bottom: 0.6rem;
}
.comingsoon__txt { font-size: 0.9rem !important; color: var(--ink); font-weight: 700; }
.comingsoon__sub { font-size: 0.72rem !important; color: #777; margin-top: 3px; }

/* SP固定バー */
.stickyInner { display: none; gap: 8px; width: 100%; }
body.booking-open .stickyInner { display: flex; }
.stickySoon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #5b6b7d;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 10px;
  padding: 0.7rem 0.5rem;
  text-align: center;
}
body.booking-open .stickySoon { display: none; }

/* 時間でコンテンツ表示（現行踏襲） */
.timerHidden { display: none; }
.timerVisible { display: block; }
