@charset "utf-8";
/* CSS Document */

/* CSS変数定義 */
:root {
  /* メインカラー */
  --retro-primary: #003d82;
  --retro-secondary: #db4c2f;
  --retro-gold: #d4af37;
  --retro-copper: #b87333;
  
  /* 背景色 */
  --retro-bg-light: #fefcf3;
  --retro-bg-cream: #f9f2d0;
  --retro-bg-accent: #f5e6a3;
  
  /* テキスト */
  --retro-text-dark: #2c3e50;
  --retro-text-light: #ffffff;
  
  /* 成田・関西カラー */
  --narita-color: #003d82;
  --narita-bg: #e6f2ff;
  --kansai-color: #db4c2f;
  --kansai-bg: #ffe6e1;
  
  /* グラデーション */
  --retro-gradient-brown: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #8b4513 100%);
  --retro-gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
  
  /* シャドウ */
  --retro-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
  --retro-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --retro-shadow-strong: 0 12px 35px rgba(0, 0, 0, 0.2);
  
  /* UI要素 */
  --ui-radius: 12px;
  --ui-radius-sm: 10px;
  --ui-border: rgba(0,61,130,0.12);
  --ui-border-strong: rgba(0,61,130,0.18);
  --ui-card-bg: rgba(255,255,255,0.92);
  --ui-soft-bg: rgba(255,255,255,0.55);
  --ui-shadow: 0 10px 28px rgba(0,0,0,0.12);
  --ui-shadow-soft: 0 6px 18px rgba(0,0,0,0.10);
  --ui-section-pad: 72px;
  --ui-section-pad-sm: 52px;
}

/* 共通 */
body {
  background: linear-gradient(180deg, var(--retro-bg-cream) 0%, #f7efc6 70%, var(--retro-bg-cream) 100%);
  color: var(--retro-text-dark);
  font-family: "Hiragino Sans","Noto Sans JP","Yu Gothic","Meiryo",sans-serif;
  line-height: 1.8;
  font-size: 16px;
  min-height: 100vh;
}

main {
  padding: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: var(--retro-bg-light);
  border-radius: 12px;
  margin-top: 20px;
  position: relative;
  box-shadow: var(--ui-shadow-soft);
  border: 1px solid rgba(0,0,0,0.04);
}

/* メインコンテンツの装飾 */
main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--retro-primary);
}

.retro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* セクション統一 */
.retro-main section {
  padding: var(--ui-section-pad) 0;
}

.retro-main section + section {
  border-top: 1px solid var(--ui-border);
}

/* 見出し */
h1, .tour-title {
  font-family: "Fondamento", cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--retro-primary);
  text-align: center;
  margin: 2rem 0;
  position: relative;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 0.6em;
}

h2 {
  font-family: "Kiwi Maru","Kaisei Decol","Hiragino Sans","Noto Sans JP",sans-serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--retro-primary);
  font-weight: 600;
}

section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding: 12px 20px;
  background: var(--retro-primary);
  color: white !important;
  border-radius: 25px;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

section h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.5s ease;
}

section h3:hover::before {
  left: 100%;
}

/* セクションタイトル */
.retro-section-title {
  font-family: "Kiwi Maru","Kaisei Decol","Hiragino Sans","Noto Sans JP",sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-align: center;
  color: var(--retro-primary);
  margin: 0 0 28px 0;
  padding: 10 0;
  position: relative;
}


.retro-section-title .title-decoration {
  animation: none;
  opacity: .9;
}

/* 特別な旅行代金セクション */
#fee.retro-section-title {
  font-size: 1.4rem;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid var(--retro-primary);
  color: var(--retro-primary) !important;
}

.retro-subtitle {
  font-family: "Kiwi Maru","Kaisei Decol","Hiragino Sans","Noto Sans JP",sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--retro-primary) !important;
  margin: 2.5rem 0 1.5rem 0;
  padding: 15px 20px;
  background: #f8f9fa;
  border-left: 4px solid var(--retro-secondary);
  border-radius: 8px;
}

.title-decoration {
  color: var(--retro-secondary);
  margin: 0 10px;
  font-size: 0.9em;
}

/* プランカード - 新構造対応 */
.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.course-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  border-radius: 15px;
  border: 3px solid;
  position: relative;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 成田コース */
.narita-course {
  border-color: var(--narita-color);
  background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.narita-course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--narita-color);
  border-radius: 12px 12px 0 0;
}

/* 関西コース */
.kansai-course {
  border-color: var(--kansai-color);
  background: linear-gradient(135deg, #fff8f6, #ffffff);
}

.kansai-course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--kansai-color);
  border-radius: 12px 12px 0 0;
}

/* コースタイトル */
.course-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 800;
  position: relative;
  padding: 15px 0;
  border-radius: 8px;
}

.narita-course .course-title {
  background: var(--narita-color);
  color: white;
}

.kansai-course .course-title {
  background: var(--kansai-color);
  color: white;
}

.course-title .airport-tag {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  box-shadow: none;
  color: inherit;
  display: inline;
}

/* プランカード個別 */
.plan-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: var(--ui-radius);
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.narita-plan {
  border-color: var(--narita-color);
  background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.narita-plan::before {
  background: var(--narita-color);
}

.kansai-plan {
  border-color: var(--kansai-color);
  background: linear-gradient(135deg, #fff8f6, #ffffff);
}

.kansai-plan::before {
  background: var(--kansai-color);
}

.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ui-shadow-soft);
}

.narita-plan:hover {
  border-color: var(--narita-color);
  box-shadow: 0 12px 35px rgba(0, 61, 130, 0.2);
}

.kansai-plan:hover {
  border-color: var(--kansai-color);
  box-shadow: 0 12px 35px rgba(219, 76, 47, 0.2);
}

.plan-header {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.plan-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}

.narita-plan .plan-title {
  color: var(--narita-color);
}

.kansai-plan .plan-title {
  color: var(--kansai-color);
}

.plan-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  margin: 0;
}

.plan-day {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
text-align: center;
font-weight: bold;
margin: 10px;
}

/* VIPタグ */
.vip-tag {
  background: linear-gradient(135deg, var(--retro-secondary), #ff6b47);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(219, 76, 47, 0.3);
}

.no-ticket-tag {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(108, 117, 125, 0.3);
}

/* リスト */
.retro-list {
  list-style: disc;
  margin-left: 20px;
  padding: 15px 30px;
}

.retro-list li {
  margin-bottom: 12px;
  line-height: 1.7;
  padding-left: 10px;
}

.retro-ol {
  list-style: decimal;
  margin-left: 20px;
  padding: 15px 30px;
}

.retro-ol li {
  margin-bottom: 15px;
  line-height: 1.7;
  padding-left: 10px;
}

/* 日付・重要表示 */
.day {
  font-size: 1.2rem;
  font-weight: 700;
  color: white !important;
  margin: 20px 0;
  text-align: center;
  background: var(--retro-primary);
  padding: 15px 20px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.day::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.date-highlight {
  background: #fff;
  padding: 25px;
  border-radius: var(--ui-radius);
  border: 2px solid var(--retro-secondary);
  margin: 30px 0;
  text-align: center;
  position: relative;
}

/* テーブル */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--ui-radius);
  margin-bottom: 30px;
  border: 1px solid #e9ecef;
  background: white;
}

.table-wrap::before {
  content: "← 左右にスクロールできます →";
  display: block;
  text-align: center;
  padding: 6px;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 0.8rem;
  border-bottom: 1px solid #e9ecef;
}

@media (min-width: 769px) {
  .table-wrap::before {
    display: none;
  }
}

.fee-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--ui-radius);
  margin-bottom: 30px;
  border: 1px solid var(--retro-primary);
  background: white;
}

.fee-table-wrap::before {
  content: "← スクロールできます →";
  display: block;
  text-align: center;
  padding: 8px;
  background: var(--retro-primary);
  color: white !important;
  font-size: 0.9rem;
  font-weight: 600;
}

/* テーブル全体 */
table {
  width: 100%;
  min-width: 768px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 0.95rem;
}

th, td {
  padding: 14px 14px;
  border: 1px solid #BCBCBC;
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
}

th {
  background: var(--retro-primary);
  color: white !important;
  font-weight: 600;
  text-align: center;
  position: relative;
}

th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--retro-secondary);
}

/* 日程表の「行程」列のみleft揃え */
.retro-schedule-table .itinerary-cell {
  text-align: left;
  vertical-align: top;
  padding: 12px 10px;
}

/* 成田・関西の色分け */
.narita-row {
  background: var(--narita-bg);
}

.narita-row:hover {
  background: #d6e8ff;
}

.kansai-row {
  background: var(--kansai-bg);
}

.kansai-row:hover {
  background: #ffcccc;
}

.plan-cell.narita {
  border-left: 4px solid var(--narita-color);
  font-weight: 600;
}

.plan-cell.kansai {
  border-left: 4px solid var(--kansai-color);
  font-weight: 600;
}

/* 日程表の色分け */
.location-cell.narita,
.time-cell.narita,
.transport-cell.narita,
.itinerary-cell.narita {
  background: var(--narita-bg);
  border-left: 2px solid var(--narita-color);
}

.location-cell.kansai,
.time-cell.kansai,
.transport-cell.kansai,
.itinerary-cell.kansai {
  background: var(--kansai-bg);
  border-left: 2px solid var(--kansai-color);
}

/* 特別なイベント行の装飾 */
.dinner-event {
  background: #fff9e6;
  border-left: 4px solid var(--retro-gold);
  font-weight: 600;
  position: relative;
}

.dinner-event::before {
  content: "🍽️";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 2px;
  border-radius: 50%;
}

.concert-event {
  background: #f0e6ff;
  border-left: 4px solid var(--retro-secondary);
  font-weight: 600;
  position: relative;
}

.concert-event::before {
  content: "🎵";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 2px;
  border-radius: 50%;
}

.hotel-stay {
  background: #e8f5e8;
  border-left: 4px solid #28a745;
  font-style: italic;
}

/* 価格表示 */
.price-highlight {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--retro-secondary);
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid var(--retro-secondary);
  display: inline-block;
  position: relative;
}

.price-highlight::before {
  content: "¥";
  position: absolute;
  left: -8px;
  top: -8px;
  background: var(--retro-secondary);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* 1名1室利用代金行 */
.single-room-row {
  background: #fff3cd;
  border-top: 2px solid var(--retro-primary);
}

.single-room-label {
  font-weight: 600;
  text-align: center;
  color: var(--retro-primary);
}

td[rowspan] {
  vertical-align: middle;
  text-align: center;
}

/* 取消料テーブル */
.retro-cancel-table {
  min-width: 500px;
}

.retro-cancel-table th,
.retro-cancel-table td {
  text-align: center;
  padding: 10px 8px;
  font-size: 0.9rem;
}

.retro-cancel-table th {
  background: var(--retro-primary);
  color: white !important;
}

/* 小さなテーブル */
.retro-small-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
  background: white;
}

.retro-small-table {
  min-width: 400px;
  width: 100%;
}

.retro-small-table th,
.retro-small-table td {
  text-align: center;
  padding: 8px 6px;
}

.retro-small-table th {
  background: var(--retro-primary);
  color: white !important;
}

/* リスト内の小さなテーブル */
.retro-list .retro-small-table-wrap,
.retro-ol .retro-small-table-wrap {
  overflow-x: visible;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin: 15px 0;
  background: white;
  box-shadow: none;
}

.retro-list .retro-small-table,
.retro-ol .retro-small-table {
  min-width: auto;
  width: 100%;
  font-size: 0.9rem;
}

.retro-list .retro-small-table th,
.retro-list .retro-small-table td,
.retro-ol .retro-small-table th,
.retro-ol .retro-small-table td {
  padding: 8px 6px;
  text-align: center;
  white-space: nowrap;
}

.retro-list .retro-small-table th,
.retro-ol .retro-small-table th {
  background: var(--retro-primary);
  color: white !important;
  font-size: 0.85rem;
}

/* 条件セクション */
.retro-conditions {
  background: #f8f9fa;
  padding: 40px 0;
  margin-top: 50px;
  position: relative;
}

.retro-conditions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--retro-primary);
}

.retro-dl {
  background: white;
  padding: 25px;
  border-radius: var(--ui-radius);
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #e9ecef;
}

.retro-dl dt {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--retro-primary);
  padding: 8px 0;
  border-bottom: 2px solid var(--retro-primary);
  background: none;
}

.retro-dl dt:first-child {
  margin-top: 0;
}

.retro-dl dd {
  margin-bottom: 20px;
  margin-left: 0;
  line-height: 1.8;
  padding: 10px 0;
}

/* ステップセクション */
.retro-step {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: var(--ui-radius);
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.retro-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--retro-primary);
  border-radius: var(--ui-radius) var(--ui-radius) 0 0;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--retro-primary);
  margin: 0;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: var(--retro-primary);
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.retro-arrow {
  text-align: center;
  margin: 15px 0;
  background: none;
  border: none;
  padding: 0;
}

.arrow-icon {
  font-size: 1.5rem;
  color: var(--retro-primary);
}

/* CTA（お申込み）ボタン */
.center-cta {
  text-align: center;
  margin: 40px 0;
}

.cta-button,
.retro-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--retro-secondary), #ff6b47);
  color: white !important;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(219, 76, 47, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.cta-button:hover,
.retro-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(219, 76, 47, 0.5);
  background: linear-gradient(135deg, #ff6b47, var(--retro-secondary));
  color: white !important;
  text-decoration: none;
}

.cta-button::before,
.retro-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before,
.retro-cta-button:hover::before {
  left: 100%;
}

.cta-button:active,
.retro-cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 8px 25px rgba(219, 76, 47, 0.6);
}

/* 銀行情報 */
.bank,
.retro-bank {
  border: 2px solid var(--retro-primary);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  background: #f8f9fa;
}

.bank p,
.retro-bank p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--retro-text-dark);
}

/* 確認ページ専用スタイル */
.confirmation-section {
  padding: 40px 0;
}

.confirmation-content {
  background: white;
  padding: 30px;
  border-radius: var(--ui-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.confirmation-list {
  list-style: decimal;
  margin-left: 20px;
  padding: 20px 30px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 30px;
}

.confirmation-list li {
  margin-bottom: 20px;
  line-height: 1.8;
  padding-left: 10px;
}

.confirmation-question {
  text-align: center;
  margin: 30px 0;
}

.question-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--retro-primary);
  margin: 0;
}

/* YES/NOボタン */
.yes-no-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.btn-yes,
.btn-no {
  display: inline-block;
  text-align: center;
  padding: 20px 30px;
  border-radius: 15px;
  text-decoration: none !important;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-yes {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white !important;
}

.btn-yes:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  color: white !important;
  text-decoration: none !important;
}

.btn-no {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
  color: white !important;
}

.btn-no:hover {
  background: linear-gradient(135deg, #e74c3c, #dc3545);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
  color: white !important;
  text-decoration: none !important;
}

.btn-main {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: inherit;
}

.btn-sub {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  color: inherit;
}

/* お問合せセクション */
.contact-section {
  background: white;
  padding: 30px;
  border-radius: var(--ui-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-title {
  color: var(--retro-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-methods {
  margin: 15px 0;
}

.business-hours {
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.manager-info {
  padding: 20px;
  background: #e8f4fd;
  border-radius: 8px;
  border-left: 4px solid var(--retro-primary);
  margin-bottom: 30px;
}

.company-info,
.privacy-info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.company-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.company-logo {
  text-align: left;
  margin-top: 20px;
}

.company-logo img {
  max-width: 250px;
}

/* フッター */
.retro-footer {
  background: var(--retro-primary);
  color: white !important;
  padding: 30px 0;
  margin-top: 50px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-links {
  line-height: 1.8;
  color: white !important;
}

.footer-links a {
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--retro-bg-cream) !important;
  text-decoration: underline;
}

.separator {
  margin: 0 8px;
  opacity: 0.7;
  color: white !important;
}

/* 管理番号セクション */
.retro-management {
  background: #f8f9fa;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.retro-management p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #6c757d;
}

/* フォーカス */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(219,76,47,0.45);
  outline-offset: 3px;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .retro-main section {
    padding: var(--ui-section-pad-sm) 0;
  }
}

@media (max-width: 1200px) {
  .plan-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .course-section {
    gap: 15px;
    padding: 20px;
  }
  
  .course-title {
    font-size: 1.5rem;
    padding: 12px 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .retro-container {
    padding: 0 16px;
  }
  
  main {
    padding: 20px 15px;
    margin-top: 80px;
  }
  
  h1, .tour-title {
    font-size: 1.6rem;
  }
  
  .retro-section-title {
    font-size: 1.3rem;
  }
  
  #fee.retro-section-title {
    font-size: 1.1rem;
    padding: 20px;
  }
  
  .plan-cards {
    gap: 25px;
  }
  
  .course-section {
    padding: 18px;
  }
  
  .course-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding: 10px 0;
  }
  
  .plan-card {
    padding: 18px;
  }
  
  .plan-title {
    font-size: 1.1rem;
  }
  
  .plan-description {
    font-size: 0.9rem;
  }
  
  .retro-list,
  .retro-ol {
    padding: 15px 25px;
  }
  
  table {
    min-width: 600px;
    font-size: 0.8rem;
  }
  
  th, td {
    padding: 12px 10px;
  }
  
  .retro-schedule-table .itinerary-cell {
    padding: 8px 6px;
  }
  
  .retro-cancel-table {
    min-width: 400px;
    font-size: 0.8rem;
  }
  
  .retro-cancel-table th,
  .retro-cancel-table td {
    padding: 8px 4px;
  }
  
  .retro-small-table {
    min-width: 350px;
    font-size: 0.8rem;
  }
  
  .retro-small-table th,
  .retro-small-table td {
    padding: 6px 4px;
  }
  
  .retro-list .retro-small-table,
  .retro-ol .retro-small-table {
    font-size: 0.8rem;
  }
  
  .retro-list .retro-small-table th,
  .retro-list .retro-small-table td,
  .retro-ol .retro-small-table th,
  .retro-ol .retro-small-table td {
    padding: 6px 4px;
  }
  
  .retro-dl {
    padding: 20px;
  }
  
  .date-highlight {
    padding: 20px;
  }
  
  .retro-step {
    padding: 20px;
  }
  
  .step_title {
    font-size: 1.1rem;
  }
  
  .step-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .cta-button,
  .retro-cta-button {
    padding: 18px 35px;
    font-size: 1.2rem;
    min-width: 180px;
  }
  
  .bank,
  .retro-bank {
    padding: 15px;
    font-size: 0.9rem;
  }
  
  .yes-no-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .btn-yes,
  .btn-no {
    min-width: 200px;
    padding: 18px 25px;
  }
  
  .btn-main {
    font-size: 1.3rem;
  }
  
  .btn-sub {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  main {
    margin-top: 70px;
    padding: 15px 10px;
  }
  
  h1, .tour-title {
    font-size: 1.4rem;
  }
  
  .plan-cards {
    gap: 20px;
  }
  
  .course-section {
    padding: 15px;
  }
  
  .course-title {
    font-size: 1.3rem;
    padding: 8px 0;
  }
  
  .plan-card {
    padding: 15px;
  }
  
  .vip-tag,
  .no-ticket-tag {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .retro-list,
  .retro-ol {
    padding: 12px 20px;
  }
  
  table {
    min-width: 500px;
    font-size: 0.75rem;
  }
  
  th, td {
    padding: 6px 6px;
  }
  
  .retro-schedule-table .itinerary-cell {
    padding: 6px 4px;
  }
  
  .retro-cancel-table {
    min-width: 350px;
    font-size: 0.75rem;
  }
  
  .retro-cancel-table th,
  .retro-cancel-table td {
    padding: 6px 3px;
  }
  
  .retro-small-table {
    min-width: 300px;
    font-size: 0.75rem;
  }
  
  .retro-small-table th,
  .retro-small-table td {
    padding: 5px 3px;
  }
  
  .retro-list .retro-small-table,
  .retro-ol .retro-small-table {
    font-size: 0.75rem;
  }
  
  .retro-list .retro-small-table th,
  .retro-list .retro-small-table td,
  .retro-ol .retro-small-table th,
  .retro-ol .retro-small-table td {
    padding: 5px 3px;
  }
  
  .retro-dl {
    padding: 15px;
  }
  
  .date-highlight {
    padding: 15px;
  }
  
  .retro-step {
    padding: 15px;
  }
  
  .step-header {
    gap: 10px;
  }
  
  .step_title {
    font-size: 1rem;
  }
  
  .step-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .cta-button,
  .retro-cta-button {
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 25px;
    min-width: 160px;
    max-width: 80%;
  }
  
  .bank,
  .retro-bank {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  .btn-yes,
  .btn-no {
    min-width: 180px;
    padding: 15px 20px;
  }
  
  .btn-main {
    font-size: 1.2rem;
  }
  
  .btn-sub {
    font-size: 0.8rem;
  }
}

/* URL・長いテキストの改行対応 */
a, 
.url-text,
dd,
li,
p {
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
  hyphens: auto;
}

a[href*="http"],
a[href*="mailto"] {
  word-break: break-all;
  overflow-wrap: break-word;
  display: inline-block;
  max-width: 100%;
  color: var(--retro-primary);
  text-decoration: none;
  border-bottom: 1px dotted var(--retro-primary);
  transition: all 0.3s ease;
}

a[href*="http"]:hover,
a[href*="mailto"]:hover {
  color: var(--retro-secondary);
  border-bottom-color: var(--retro-secondary);
}

/* ユーティリティクラス */
.t-c { text-align: center !important; }
.t-l { text-align: left !important; }
.t-r { text-align: right !important; }
.fwb { font-weight: bold; }
.small { font-size: 85%; }
.va-m { vertical-align: middle !important; }

.pc { display: block !important; }
.sp { display: none !important; }

@media (max-width: 600px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
}