/* カラー変数 */
:root {
  --brand-blue: #00A0E9;
  --brand-orange: #F39800;
  --brand-dark-blue: #004098;
  --bg-light: #F2F9FF;
  --text-main: #2c2c2c;
  --text-muted: #64748b;
  --white: #ffffff;
  --error-red: #ff4d4d;
  --sat-blue: #0066cc;
  --sun-red: #cc0000;

  /* ホテル詳細・予約カレンダー*/
  --primary-dark: #1a1a1a;
  --accent-gold: #c5a059;
  --accent-gold-pale: #f4eee0;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-thin: #e2e8f0;

  /* New Specific Button Colors */
  --color-stay: #002e4e;
  --color-stay-hover: #1e293b;
  --color-jr: #92400e;
  --color-jr-hover: #b45309;
  --color-bus: #065f46;
  --color-bus-hover: #064e3b;

  /* Booking Bar Background Color */
  --booking-bar-bg: #450a0a; /* 深いボルドー/ワインレッド */
}

.font-mincho { font-family: 'Shippori Mincho', serif; }
.font-serif { font-family: 'Noto Serif JP', serif; }

/* Section Layout */
section { padding: 3.2rem 0; }
.bg-gray { background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 4.8rem; }
.section-header h3 {
  font-size: 2.4rem;
  color: var(--brand-dark-blue);
  padding-bottom: 1.6rem;
  position: relative;
}
.section-header h3::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 5rem; height: 0.4rem; background: var(--brand-orange);
}

/* About Campaign Box */
.campaign-purpose-box {
  background: var(--bg-light);
  padding: 3rem 2rem;
  border-radius: 2rem;
  border: 0.1rem solid #d0e8ff;
  margin-bottom: 4rem;
}
.campaign-purpose-box h1 {
  font-size: 2.0rem;
  font-weight: bold;
  color: var(--brand-dark-blue);
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .campaign-purpose-box {
    padding: 4rem;
  }
  .campaign-purpose-box h1 {
    font-size: 2.8rem;
  }
}
.campaign-purpose-box p {
  font-size: 1.5rem;
  text-align: justify;
}

.period-info {
  background: var(--brand-dark-blue);
  color: var(--white);
  padding: 1rem;
  border-radius: 1.2rem;
  text-align: center;
  margin-top: 2rem;
}
.period-info b { font-size: 1.8rem; }
/*特典ハイライト：group-order用*/
.campaign-highlight {
  margin-bottom: 4rem;
  border: 2px solid var(--brand-dark-blue);
  border-radius: 1rem;
  overflow: hidden;
}
.campaign-highlight__header {
  background: var(--brand-dark-blue);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.campaign-highlight__body {
  padding: 3rem 2rem;
  background: #fff;
}
.campaign-highlight__title {
  font-weight: bold;
  font-size: 2.8rem;
  color: var(--brand-dark-blue);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.benefit-item {
  background: #fdf2f2;
  border: 1px solid #fecaca;
  padding: 2rem;
  border-radius: 0.8rem;
}
.benefit-item h4 {
  color: var(--brand-accent);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.benefit-item p {
  font-size: 1.5rem;
  margin: 0;
}
/* 3つのルールセクション：group-order用 */
.rules-section {
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: #f8fafc;
  border-radius: 1rem;
}
.rules-section h2 {
  font-size: 2.4rem;
  color: var(--brand-dark-blue);
  text-align: center;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--brand-dark-blue);
  display: inline-block;
  width: 100%;
  padding-bottom: 1rem;
}
.rules-lead {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.5rem;
}

/* PC版：1:2の比率設定 */
.rules-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

/* 左カラム：人数と期間を縦並び */
.rules-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rule-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.8rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rule-card--large {
  height: auto;
}
.rule-card__label {
  background: var(--brand-dark-blue);
  color: #fff;
  display: inline-block;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.rule-card h5 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--brand-dark-blue);
}
.rule-card p {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.6;
}

/* 右カラム：立寄セクション（2列表示） */
.rule-card__content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.rule-card__map-img {
  width: 100%;
  height: auto;
}

.rule-card__sub {
  font-size: 1.2rem;
  color: #333;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}

/* PDFリンク（コンパクト版） */
.inline-pdf-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 0.5rem;
}
.inline-pdf-link:hover {
  text-decoration: none;
  color: var(--brand-dark-blue);
}

/* 既存スタイルの維持 */
.recovery-card ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style-type: disc;
}
.recovery-card li {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.recovery-card li strong {
  color: var(--brand-dark-blue);
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .benefit-grid, .rules-grid {
    grid-template-columns: 1fr;
  }
  .campaign-highlight__title {
    font-size: 2.2rem;
  }
  .rules-container {
    grid-template-columns: 1fr;
  }
  .rule-card__content-wrapper {
    grid-template-columns: 1fr;
  }
  .rule-card__map-img {
    margin-top: 1.5rem;
    order: 2;
  }
}

/* Recovery Message */
.recovery-card {
  background: #fff;
  border-left: 0.6rem solid var(--brand-orange);
  padding: 3.2rem 2.2rem;
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.05);
  border-radius: 0 1.2rem 1.2rem 0;
}
.badge-recovery {
  background: var(--brand-orange);
  color: #fff;
  padding: 0.2rem 1.2rem;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
  display: inline-block;
}

/* Condition Grid */
.condition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

@media (min-width: 768px) {
  .condition-grid { grid-template-columns: 1fr 1fr; gap: 3.2rem; }
  .section-header h3 { font-size: 3.6rem; }
}

.card {
  background: #fff;
  padding: 3.2rem;
  border-radius: 1.5rem;
  border: 0.1rem solid #e0e7ff;
}
.card h4 {
  color: var(--brand-dark-blue);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
}
.card p { font-size: 1.5rem; margin-bottom: 1.6rem; }
.card ul { padding-left: 2rem; font-size: 1.5rem; color: var(--text-muted); }

.facility-box {
  background: var(--bg-light);
  padding: 1.6rem;
  border-radius: 0.8rem;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  border: 0.1rem solid #d0e8ff;
}
.facility-box strong { color: var(--brand-dark-blue); }

.condition-note {
    text-align: left;
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 1.2rem auto 3rem;
  padding-left: 1rem;
  border-left: 0.2rem solid #ccc;
}
@media (min-width: 767px) {
  .condition-note {
    max-width: 60rem;
  }
}

/* --- おすすめの旅行商品 --- */
.product-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.2rem;
}
/* スマホ用案内テキスト */
.scroll-notice {
  display: none;
  text-align: right;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content:center;
  gap: 0.4rem;
}
/* デフォルト：スマホ（横スクロール） */
@media (max-width: 767px) {
  .scroll-notice {
    display: flex;
  }
  #products .container {
    padding-right: 0; /* スクロールが見えやすいように端を調整 */
  }

  .product-grid.product-grid--full {
    display: flex;
    overflow-x: auto;
    padding: 0 5% 2.4rem 0; /* 右側のパディングはカードの余白で調整 */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  /* スクロールバーのデザイン */
  .product-grid.product-grid--full .product-grid::-webkit-scrollbar {
    height: 6px;
  }
  .product-grid.product-grid--full .product-grid::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
  }
  .product-grid.product-grid--full .product-card {
    min-width: 80%; /* 画面幅に対して少し小さめにして、次のカードが見えるように */
    max-width: 85%; /* 枠が突き出さないように制限 */
    scroll-snap-align: start;
    flex-shrink: 0;
    margin-right: 1.6rem; /* カード間の余白 */
  }
  .product-grid.product-grid--full .product-card:last-child {
    margin-right: 5%; /* 最後のカードの右側に余白を確保 */
  }
}

/* タブレット：2列 */
@media (min-width: 768px) and (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

/* PC：3列 */
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
  }
}

.product-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  border: 0.1rem solid #eee;
}
.product-img {
  width: 100%;
  height: 180px;
  aspect-ratio: 16 / 9;
  background: #ddd;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--brand-dark-blue);
  color: #fff;
  padding: 0.4rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 0.4rem;
}
.product-body {
  padding: 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-dark-blue);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.product-desc {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.product-info-row--list {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.product-info-row {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.product-info-label {
  font-weight: 700;
  color: var(--brand-dark-blue);
}
.product-info-label span {
  color: var(--text-main);
}
/* --- Departure Date Styling --- */
.departure-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}
.month-group {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .product-info-row--list {
    font-size: 2.0rem;
  }
  .product-info-row {
    display: flex;
    gap: 3rem;
    font-size: 2.0rem;
  }
  .departure-container {
    margin-top: 0;
  }
  .month-group {
    gap: 1rem;
  }
  .product-desc {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .product-info-label {
    font-size: 1.6rem;
  }
  .product-info-label span {
    font-size: 1.6rem;
  }
}
.month-label {
  background: var(--brand-dark-blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: .4rem 0.8rem;
  border-radius: 0.4rem;
  min-width: 4.5rem;
  text-align: center;
}
.date-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.date-chip {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}
.date-chip .day { margin-left: 0.2rem; font-size: 1.1rem; }
.date-chip.is-sat { color: var(--sat-blue); border-color: #cfe2ff; background-color: #fff; }
.date-chip.is-sun { color: var(--sun-red); border-color: #f8d7da; background-color: #fff5f5; }
.product-footer {
  margin-top: auto;
  border-top: 0.1rem dashed #ddd;
  padding-top: 1.6rem;
}
.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
  margin-bottom: 1.2rem;
}
.product-price span {
  font-size: 2.0rem;
  color: var(--brand-orange);
}
.product-price span span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
}
.coupon-badge-inline span {
  display: inline-block;
  background: #FFF9E6;
  border: 1px solid var(--brand-orange);
  color: var(--brand-orange);
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  margin-top: 0.4rem;
}
@media (min-width: 767px) {
  .product-info-row {
    font-size: 2.4rem;
  }
  .product-info-label {
    font-size: 1.6rem;
    flex-shrink: 0;
  }
  .product-info-label span {
    font-size: 2rem;
    margin-left: 3rem;
  }
  .product-price span {
    font-size: 2.4rem;
    margin-left: 3rem;
  }
  .coupon-badge-inline {
    font-size: 1.6rem;
  }
}
.btn-product-detail {
  display: block;
  background: var(--brand-blue);
  color: #fff;
  text-align: center;
  padding: 1.2rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
}
.btn-product-detail:hover {
  opacity: 0.8;
  color: #FFF;
}
/* Coupon Display */
.coupon-display__wrap {
  margin: 0 1rem;
}
.coupon-display {
  background: var(--white);
  border: 0.4rem solid var(--brand-blue);
  border-radius: 2.5rem;
  padding: 3.2rem 1.6rem;
  text-align: center;
  position: relative;
  margin: 0 auto 4.8rem;
  max-width: 60rem;
}
.coupon-display::before, .coupon-display::after {
  content: "";
  position: absolute;
  top: 50%; width: 4rem; height: 4rem;
  background: var(--bg-light);
  border-radius: 50%;
  transform: translateY(-50%);
}
.coupon-display::before { left: -2.4rem; border-right: 0.4rem solid var(--brand-blue); }
.coupon-display::after { right: -2.4rem; border-left: 0.4rem solid var(--brand-blue); }

.coupon-amount { font-size: 4.8rem; font-weight: 900; color: var(--brand-orange); line-height: 1; }
.coupon-amount span { font-size: 1.8rem; color: var(--text-main); }

/* Coupon Usage Section */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  gap: 2rem;
  margin-top: 3.2rem;
}
.usage-step {
  background: #fff;
  padding: 2rem;
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.05);
}
.usage-step .number {
  background: var(--brand-blue);
  color: #fff;
  width: 3.2rem; height: 3.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 900; font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.full-width-image-container {
  width: 100%;
  margin: 4rem 0;
  background: #eef2f6;
  border-radius: 1.5rem;
  overflow: hidden;
  /* aspect-ratio: 16 / 9; */
  display: flex;
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .full-width-image-container {
    grid-template-columns: 1fr 1fr;
  }
}
.full-width-image-container img { width: 100%; height: 100%; object-fit: cover; }

/* --- Form Section --- */
.form-container {
  background: var(--white);
  border: 0.1rem solid #e2e8f0;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.05);
  border-radius: 2rem;
  padding: 4rem 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2.4rem;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-dark-blue);
  font-size: 1.6rem;
}

.form-label span {
  background: #ff4d4d;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  margin-left: 0.8rem;
  vertical-align: middle;
}

.form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 1.2rem 1.6rem;
  border: 0.2rem solid #edf2f7;
  background-color: #f8fafc;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  background-color: #fff;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 160, 233, 0.1);
}

.date-input-wrapper {
  position: relative;
}

.date-input-wrapper::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2300A0E9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.7;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* 参加人数セクションの調整 */
.grid-num-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-num-inputs {
    grid-template-columns: repeat(5, 1fr); /* 5列構成 */
  }
}

.num-input-item {
  background: #f1f5f9;
  padding: 1.2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.num-input-item label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* カウンター対象（大人・小人）を強調 */
.num-input-item.count-target {
  background: #e6f4ff;
  border: 1px solid #bae0ff;
}

/* 総数を強調 */
.num-input-item.group-total {
  background: #004098;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.num-input-item.group-total.invalid {
  background: var(--error-red);
}
.num-input-item.group-total label {
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 0;
}
.total-val {
  font-size: 2.0rem;
  font-weight: 900;
}
/* 期間表示用バッジ */
.duration-badge {
  display: inline-flex;
  align-items: center;
  background: #e6f4ff;
  color: var(--brand-dark-blue);
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  font-weight: 700;
  margin-top: 1.2rem;
  border: 1px solid var(--brand-blue);
}

.btn-submit {
  display: block;
  width: 100%;
  max-width: 32rem;
  margin: 4rem auto 0;
  background: var(--brand-orange);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  padding: 1.8rem;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  box-shadow: 0 0.5rem 1.5rem rgba(243, 152, 0, 0.3);
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #e68a00;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(243, 152, 0, 0.4);
}
@media (max-width: 767px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .grid-num-inputs {
    grid-template-columns: repeat(2, 1fr);
  }
  .num-input-item.group-total {
    grid-column: span 2;
    padding: 0.8rem;
    flex-direction: row;
    gap: 2rem;
  }
}
/* FAQ */
.faq-category-title {
  font-size: 2.0rem;
  font-weight: 800;
  color: var(--brand-dark-blue);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 0.2rem solid var(--brand-blue);
  padding: 2rem 0;
  cursor: pointer;
  position: relative;
}

/* アコーディオンの矢印 */
.faq-category-title::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-right: 0.2rem solid var(--brand-blue);
  border-bottom: 0.2rem solid var(--brand-blue);
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
}

.faq-category-wrapper.active .faq-category-title::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-list {
  max-width: 90rem;
  margin: 0 auto;
}

.faq-category-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 0.8rem;
  overflow: hidden;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.faq-item {
  border-bottom: 0.1rem solid #eee;
  padding: 2.4rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.2rem;
  line-height: 1.5;
}

.faq-q::before {
  content: "Q";
  background: var(--brand-blue);
  color: #fff;
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  flex-shrink: 0;
  font-weight: 900;
}

.faq-a {
  padding-left: 4rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  display: flex;
  gap: 1.2rem;
  line-height: 1.7;
}

.faq-a::before {
  content: "A";
  color: var(--brand-orange);
  font-weight: 900;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.faq-a-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-a a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 0.1rem solid transparent;
  transition: all 0.2s;
  display: inline-block;
  margin-top: 0.8rem;
  width: fit-content;
}

.faq-a a:hover {
  border-bottom-color: var(--brand-blue);
  opacity: 0.8;
}

.faq-a a::after {
  content: " ➡";
  font-size: 1.2rem;
}

.btn-large {
  display: block; margin: 0 auto;
  background: var(--brand-blue); color: #fff; padding: 1.6rem;
  border-radius: 5rem; font-weight: 700; text-decoration: none;
  text-align: center; font-size: 1.8rem;
  box-shadow: 0 0.8rem 1.5rem rgba(0, 160, 233, 0.2);
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .btn-large {
    max-width: 50rem;
    font-size: 1.6rem;
  }
}
.btn-large:hover {
  color: #FFF;
  opacity: .8;
}
.map--img iframe {
  width: 100%;
  height: 400px;
}
@media (min-width: 767px) {
  .map--img iframe {
    height: 300px;
  }
}
/*アクセスアイコン*/
.sc__report-detail .pd-schedule__icon {
  filter: invert(57%) sepia(58%) saturate(6641%) hue-rotate(173deg) brightness(103%) contrast(101%);
}
.btn-sche {
  position: relative;
  transition: all 0.3s; /* ホバー時の動き用 */
  display: inline-flex; /* 矢印を横並びにするため追加 */
  align-items: center;  /* 垂直中央揃え */
  padding: .4rem 2rem;
  color: #333; /* 文字色（適宜調整） */
  font-weight: bold;
  text-decoration: none; /* 下線を消す */
  border-radius: 1rem;
  background-color: #FFDF5A;
}

/* 矢印（>）を自動で追加 */
.btn-sche::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  margin-left: 10px; /* テキストとの間隔 */
}

/* ホバーした時に少し右に動かす */
.btn-sche:hover {
  opacity: 0.8;
}
.btn-sche:hover::after {
  transform: translateX(3px) rotate(45deg);
}
@media (min-width: 767px) {
  .pd-schedule__table {
    margin: 0 auto;
    max-width: 800px;
  }
}

/* ホテルグリッド・スクロール設定 */
.hotel-grid-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 10px 5px 25px 5px; /* 下部にスクロールバー用の余白 */
  &::-webkit-scrollbar { height: 6px;}
  &::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;}
  &::-webkit-scrollbar-track {background: #f1f5f9;}
  /* ホテルカードの基本（スマホ版：85%幅で2枚目をチラ見せ） */
  .hotel-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
  }
}
/* --- レスポンシブ対応 --- */

/* タブレット〜中間サイズ（列幅固定のスクロール） */
@media (min-width: 768px) {
  .hotel-grid-scroll .hotel-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }
}
/* PC版（4枚ぴったり並び、スクロールなし） */
@media (min-width: 1200px) {
  .hotel-grid-scroll {
    width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    gap: 20px;
    padding: 10px 0;
    .hotel-card {
        flex: none;
        width: 100%;
        scroll-snap-align: none;
    }
  }
}

/* ツアーの流れの電車用バナー */
.train-banner {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-weight: bold;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.banner-thunderbird {
  background-color: #fff1f2;
  color: #be123c;
  border-color: #fecdd3;
}
.banner-shinkansen {
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}


/* 金沢市内1日フリー乗車券 */
.freeticket .section-header h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
.freeticket .item-title {
  font-size:2rem;
  color: var(--brand-dark-blue);
}
.freeticket .card {
  background: var(--white);
  border-radius: 0.8rem;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
  box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.05);
}

/* 引換場所のレスポンシブグリッド */
.freeticket .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.4rem;
  margin-bottom: 3.2rem;
}

@media (min-width: 768px) {
  .freeticket .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.freeticket .info-item h4 {
  font-size: 1.8rem;
  color: var(--brand-dark-blue);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--bg-light);
  padding-bottom: 0.8rem;
  margin-top: 0;
}

.freeticket .info-item p {
  font-size: 1.4rem;
  margin: 0.4rem 0;
}

.freeticket .tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.freeticket .tag {
  background: var(--bg-light);
  color: var(--brand-dark-blue);
  padding: 0.4rem 1.2rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.freeticket .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  color: var(--white);
  padding: 1.2rem 2.4rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 1.6rem;
  transition: opacity 0.3s;
  width: fit-content;
}
.freeticket .btn:hover {
  opacity: 0.8;
}

.freeticket .notice-box {
  border: 1px solid var(--brand-orange);
  padding: 2.4rem;
  border-radius: 0.8rem;
  margin-top: 2.4rem;
  background-color: var(--white);
}
.freeticket .notice-box h4 {
  color: var(--brand-orange);
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}
.freeticket .notice-box ul {
  margin: 0;
  padding-left: 2rem;
  font-size: 1.4rem;
}
.freeticket .notice-box li {
  margin-bottom: 1.2rem;
}

.freeticket .url-link {
  color: var(--brand-blue);
  word-break: break-all;
  text-decoration: underline;
}

/* モバイル調整 */
@media (max-width: 767px) {
  .freeticket.section-container {
    padding: 3.2rem 0;
  }
  .freeticket .section-header {
    margin-bottom: 3.2rem;
  }
  .freeticket .section-header h3 {
    font-size: 2rem;
  }
  .freeticket .card {
    padding: 2rem;
  }
  .freeticket .btn {
    width: 100%;
    box-sizing: border-box;
  }
}

/**************************************
  ホテル詳細・予約カレンダー
**************************************/
  /* Page Header */
  .container--header {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 80px 0;
    position: relative;
  }

  .container--header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
  }

  .container--header h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
  }
  @media (max-width: 768px) {
    .container--header h1 {
      font-size: 3rem;
    }
  }
  /* Hotel Block */
  .hotel-section {
    margin: 60px 0 100px;
  }

  .hotel-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .hotel-label {
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    display: block;
  }

  .hotel-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  /* Mobile font size adjustment for hotel titles */
  @media (max-width: 768px) {
    .hotel-title {
      font-size: 2.0rem;
      font-weight: bold;
      padding: 0 10px;
    }
    .page-header h1 {
      font-size: 1.8rem;
    }
  }

  /* Split Layout: Info & Amenities */
  .hotel-card-main {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }

  @media (max-width: 960px) {
    .hotel-card-main { grid-template-columns: 1fr; }
  }

  /* Left Side: Photo & Specs */
  .hotel-visual {
    padding: 40px;
    border-right: 1px solid var(--border-thin);
  }

  @media (max-width: 768px) {
    .hotel-visual { padding: 15px; }
  }
  /* Slider Implementation */
  .photo-gallery {
    position: relative;
    width: 100%;
    /* height: 280px; */
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
  }

  .slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scrollbar-width: none;
  }

  .slider-container::-webkit-scrollbar { display: none; }

  .slide {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #f1f1f1;
    color: #999;
    font-size: 0.8rem;
    text-align: center;
  }

  .gallery-caption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
  }
  .main-spec-list {
    list-style: none;
    margin-bottom: 30px;
  }

  .main-spec-list li {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-light);
  }

  .spec-icon {
    width: 24px;
    margin-right: 15px;
    color: var(--accent-gold);
    flex-shrink: 0;
  }

  .spec-content dt {
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
  }

  .spec-content dd {
    font-weight: 400;
  }

  /* Right Side: Amenities Grid */
  .hotel-features {
    padding: 40px;
    background-color: #fafbfd;
  }

  @media (max-width: 768px) {
    .hotel-features { padding: 15px; }
  }

  .feature-group {
    margin-bottom: 30px;
  }

  .feature-group h3 {
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 3px;
  }

  .tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1.2rem;
  }

  .tag {
    background: var(--bg-white);
    border: 1px solid var(--border-thin);
    padding: 5px 12px;
    border-radius: 4px;
    color: var(--text-main);
  }

  /* Room Cards*/
  .room-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
  }
  .room-container {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .room-card-modern {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-thin);
    display: flex;
    gap: 20px;
  }
  .room-thumb {
    width: 140px; height: 100px; background: var(--bg-light);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #999; flex-shrink: 0; text-align: center;
  }

  @media (max-width: 480px) {
    .room-card-modern {
      flex-direction: column;
      padding: 0 0 15px 0;
      overflow: hidden;
    }
    .room-thumb {
      width: 100%;
      height: 180px;
      border-radius: 0;
    }
    .room-info {
      padding: 0 15px;
    }
  }

  .room-info h4 {
    margin-bottom: 8px;
    font-weight: bold;;
    color: var(--primary-dark);
  }

  .room-detail-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 15px;
    font-size: 1.2rem;
  }
  .room-detail-label { color: var(--text-muted); font-weight: 700; }
  .room-note { font-size: 1.2rem; color: var(--accent-gold); margin-top: 5px; font-weight: 700; }

  /* Booking Footer */
  .booking-bar {
    margin-top: 30px;
    background: var(--booking-bar-bg);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(69, 10, 10, 0.2);
  }

  @media (max-width: 768px) {
    .booking-bar {
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }
    .booking-btns {
      width: 100%;
      flex-direction: column;
    }
  }

  .booking-text {
    color: var(--bg-white);
  }

  .booking-text span {
    display: block;
    color: var(--accent-gold);
    font-weight: bold;
  }

  .booking-btns {
    display: flex;
    gap: 10px;
  }

  .btn {
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
  }

  /* Updated Specific Styles */
  .btn-stay {
    background-color: var(--color-stay);
    color: white;
  }
  .btn-stay:hover {
    background-color: var(--color-stay-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
  }

  .btn-jr {
    background-color: var(--color-jr);
    color: white;
  }
  .btn-jr:hover {
    background-color: var(--color-jr-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
  }
  .btn-bus {
    background-color: var(--color-bus);
    color: white;
  }
  .btn-bus:hover {
    background-color: var(--color-bus-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
  }
  /* --- Tab Layout Improvements --- */
  .tabs-wrapper { 
    margin: 4rem 0 2rem; 
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-light);
    padding: 1rem 0;
  }
  .tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    list-style: none;
    max-width: 100%;
    margin: 0 auto;
  }
  .tab-item {
    padding: 1.2rem 0.8rem;
    background-color: var(--bg-white);
    border: 0.1rem solid var(--border-thin);
    border-radius: 0.6rem;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-size: 1.4rem;
    box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.03);
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.4rem;
  }
  .tab-item:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
  .tab-item.active { 
    background-color: var(--primary-dark); 
    color: var(--bg-white); 
    border-color: var(--primary-dark);
    box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.15);
  }
  
  .tab-pane { display: none; animation: fadeIn 0.4s ease; }
  .tab-pane.active { display: block; }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Tablet & Mobile Responsive */
  @media (max-width: 900px) {
    .tab-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .tab-list {
      gap: 0.6rem;
    }
    .tab-item {
      font-size: 1.2rem;
      padding: 0.8rem 0.4rem;
      min-height: 5.6rem;
    }
  }
