@charset "utf-8";
/* CSS Document */
:root {
  --primary-pink: #21A0DB;
  --primary-pink-dark: #0072BC;
  --text-black: #333333;
  --text-gray: #666666;
  --light-gray: #f8f9fa;
  --border-gray: #e0e0e0;
  --white: #ffffff;
  --chalk-font-title: 'Kalam', 'Yusei Magic', cursive;
  --chalk-font-body: 'Klee One', 'Caveat', cursive;
  --chalk-font-note: 'Architects Daughter', cursive;
}

/* リセット・ベース */
* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-black);
  background: var(--white);
  margin: 0;
  padding: 0;
  font-size: 16px;
  text-align: left;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー・ナビ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: var(--text-black);
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.menu a:hover { color: var(--primary-pink); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ヒーローセクション */
.hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(233, 30, 99, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.tour-logo {
  margin-bottom: 40px;
  position: relative;
}

.tour-logo img {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.tour-logo img:hover { transform: scale(1.02); }

.hero-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-date, .hero-price, .hero-cta {
  background: var(--white);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.hero-date::before, .hero-price::before, .hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-pink), var(--primary-pink-dark));
}

.hero-date:hover, .hero-price:hover, .hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.hero-info .label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-info .value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.3;
}

.hero-price .value {
  color: var(--primary-pink);
  font-size: 1.4rem;
}

.hero-price small {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--text-gray);
}

.hero-cta .btn-hero {
  display: block;
  background: var(--primary-pink);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.hero-cta .btn-hero:hover { background: var(--primary-pink-dark); }

.hero-deadline {
  margin-top: 20px;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(255,255,255,0.7);
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  border: 2px solid rgba(233, 30, 99, 0.1);
  text-align: center;
}

/* セクション共通 */
.section { padding: 35px 0; }
.bg-light { background: var(--light-gray); }

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-gray);
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--text-gray);
  border-radius: 2px;
}

/* ツアーポイント - 黒板・チョーク風 */
.tour-points-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(135deg, #2d4a3e 0%, #1e3329 50%, #2d4a3e 100%);
  background-size: 50px 50px, 30px 30px, 100% 100%;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

.tour-points-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
  pointer-events: none;
  z-index: 0;
}

.tour-points-section::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  z-index: 0;
}

.points-simple {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.point-list {
  background: rgba(45, 74, 62, 0.8);
  border-radius: 15px;
  box-shadow: 
    inset 0 0 50px rgba(0,0,0,0.3),
    0 10px 30px rgba(0,0,0,0.5);
  padding: 50px 40px;
  border: 4px solid #8B4513;
  position: relative;
  overflow: hidden;
}

.point-list::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.point-list::after {
  content: "🏃‍♀️🏃‍♂️🎯🏆";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 1.2rem;
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(30%);
}

.point-simple-item {
  display: flex;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 2px dotted rgba(255,255,255,0.2);
  position: relative;
  transition: all 0.3s ease;
}

.point-simple-item:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.point-simple-item:last-child { border-bottom: none; padding-bottom: 0; }
.point-simple-item:first-child { padding-top: 0; }

.point-number {
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  color: #2d4a3e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,255,255,0.3), inset 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
  font-family: var(--chalk-font-title) !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  transform: rotate(-3deg);
}

/* 各番号にチョークの色を適用 */
.point-simple-item:nth-child(1) .point-number {
  background: radial-gradient(circle, #FFE4E1 0%, #FFC0CB 100%);
  color: #8B0000;
  box-shadow: 0 0 20px rgba(255, 192, 203, 0.4);
  transform: rotate(-2deg);
}

.point-simple-item:nth-child(2) .point-number {
  background: radial-gradient(circle, #E0FFFF 0%, #B0E0E6 100%);
  color: #006400;
  box-shadow: 0 0 20px rgba(176, 224, 230, 0.4);
  transform: rotate(1deg);
}

.point-simple-item:nth-child(3) .point-number {
  background: radial-gradient(circle, #F0FFFF 0%, #E6E6FA 100%);
  color: #4B0082;
  box-shadow: 0 0 20px rgba(230, 230, 250, 0.4);
  transform: rotate(-1deg);
}

.point-simple-item:nth-child(4) .point-number {
  background: radial-gradient(circle, #FFF8DC 0%, #F0E68C 100%);
  color: #B8860B;
  box-shadow: 0 0 20px rgba(240, 230, 140, 0.4);
  transform: rotate(2deg);
}

.point-simple-item:nth-child(5) .point-number {
  background: radial-gradient(circle, #F0FFF0 0%, #98FB98 100%);
  color: #228B22;
  box-shadow: 0 0 20px rgba(152, 251, 152, 0.4);
  transform: rotate(-1.5deg);
}

.point-simple-item:nth-child(6) .point-number {
  background: radial-gradient(circle, #FFFACD 0%, #FFE4B5 100%);
  color: #FF8C00;
  box-shadow: 0 0 20px rgba(255, 228, 181, 0.4);
  transform: rotate(0.5deg);
}

.point-number:hover {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 0 30px rgba(255,255,255,0.5);
}

.point-number::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: chalkDust 3s infinite alternate;
}

@keyframes chalkDust {
  0% { opacity: 0.3; transform: scale(0.8) translate(0, 0); }
  50% { opacity: 0.6; transform: scale(1.2) translate(2px, -2px); }
  100% { opacity: 0.3; transform: scale(0.8) translate(-1px, 1px); }
}

.point-content { flex: 1; }

.tour-points-section .section-title {
  color: #F5F5DC !important;
  font-size: 2.4rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  font-family: var(--chalk-font-title) !important;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(-1deg);
}

.tour-points-section .section-title::before {
  content: "🏫 ";
  margin-right: 10px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.tour-points-section .section-title::after {
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.6) 0%, 
    rgba(255,248,220,0.8) 25%,
    rgba(240,230,140,0.8) 50%,
    rgba(255,248,220,0.8) 75%,
    rgba(255,255,255,0.6) 100%
  ) !important;
  height: 4px;
  width: 100px;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.point-content h3 {
  color: #F5F5DC !important;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: var(--chalk-font-title) !important;
  letter-spacing: 0.5px;
  transform: rotate(-0.5deg);
}

.point-content p {
  color: #E6E6E6 !important;
  margin-bottom: 10px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-family: var(--chalk-font-body) !important;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

/* アイコンを追加 */
.point-simple-item:nth-child(1) .point-content h3::before { content: "📻 "; margin-right: 8px; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); }
.point-simple-item:nth-child(2) .point-content h3::before { content: "🏃‍♀️ "; margin-right: 8px; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); }
.point-simple-item:nth-child(3) .point-content h3::before { content: "📸 "; margin-right: 8px; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); }
.point-simple-item:nth-child(4) .point-content h3::before { content: "🍛 "; margin-right: 8px; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); }
.point-simple-item:nth-child(5) .point-content h3::before { content: "🚌 "; margin-right: 8px; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); }
.point-simple-item:nth-child(6) .point-content h3::before { content: "🎁 "; margin-right: 8px; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); }

.point-note {
  background: rgba(255, 248, 220, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #FFFACD;
  border: 2px dashed rgba(255, 250, 205, 0.3);
  margin-top: 15px;
  position: relative;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
  font-family: var(--chalk-font-note) !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  letter-spacing: 0.2px;
  transform: rotate(0.3deg);
}

.point-note::before {
  content: "📝";
  position: absolute;
  top: -8px;
  left: 15px;
  background: #2d4a3e;
  padding: 0 5px;
  font-size: 1rem;
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

/* 手書き感の微調整 */
.point-simple-item:nth-child(odd) .point-content h3 { transform: rotate(0.3deg); }
.point-simple-item:nth-child(even) .point-content h3 { transform: rotate(-0.3deg); }
.point-simple-item:nth-child(odd) .point-content p { transform: rotate(-0.2deg); }
.point-simple-item:nth-child(even) .point-content p { transform: rotate(0.2deg); }

/* ツアー概要 */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.overview-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.overview-item h4 {
  font-size: 1.2rem;
  color: var(--primary-pink);
  margin-bottom: 15px;
  font-weight: 600;
}

.overview-item p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.overview-notes {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid var(--border-gray);
}

.overview-notes p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.price-item {
  border: 2px solid var(--primary-pink);
}

.price-large {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--primary-pink) !important;
  margin: 10px 0 0 0 !important;
}

.price-sub {
  font-size: 0.7em;
  color: var(--text-gray);
}

/* 応募スケジュール */
.schedule-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.timeline-item.important {
  border: 2px solid var(--primary-pink);
}

.timeline-date {
  background: var(--primary-pink);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  min-width: 120px;
  text-align: center;
  margin-right: 30px;
}

.timeline-content {
  flex: 1;
}

.timeline-period {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-black);
  margin: 0;
}

/* お申込み条件 */
.conditions-content {
  max-width: 900px;
  margin: 0 auto;
}

.condition-main {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border: 2px solid var(--primary-pink);
}

.condition-main h3 {
  color: var(--primary-pink);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.condition-important {
  background: #fff3cd;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 4px solid #ffc107;
}

.condition-important h4 {
  color: var(--text-black);
  margin-bottom: 15px;
}

.condition-important ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.condition-important li {
  margin-bottom: 10px;
  color: var(--text-black);
  list-style-type: disc;
}

.condition-important li::marker {
  color: var(--primary-pink);
}

.highlight-text {
  color: var(--primary-pink);
  font-weight: 700;
}

.attention-link {
  text-align: center;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.btn-attention {
  display: inline-block;
  background: var(--primary-pink);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-attention:hover {
  background: var(--primary-pink-dark);
}

.attention-text {
  margin-top: 15px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* お申込み手順 */
.steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-number {
  background: var(--primary-pink);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--text-black);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-gray);
  margin-bottom: 10px;
}

.step-period {
  color: var(--primary-pink) !important;
  font-weight: 600 !important;
}

.step-cta {
  margin-top: 15px;
}

.btn-application {
  display: inline-block;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  margin: 20px auto;
  width: 90%;
  text-align: center;
  font-size: 110%;
}


 

.btn-application:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.step-notes {
  margin-top: 15px;
  background: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
}

.step-notes ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.step-notes li {
  margin-bottom: 8px;
  color: var(--text-gray);
  font-size: 0.9rem;
  list-style-type: disc;
}

.step-notes li::marker {
  color: var(--primary-pink);
}

/* 支払い方法 */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.payment-method {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
}

.payment-method h4 {
  color: var(--primary-pink);
  margin-bottom: 15px;
}

.bank-info {
  background: var(--white);
  padding: 15px;
  border-radius: 5px;
  border: 2px dashed var(--border-gray);
}

.bank-info p {
  margin: 0;
  font-size: 0.9rem;
}

.payment-notes ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.payment-notes li {
  margin-bottom: 5px;
  color: var(--text-gray);
  font-size: 0.9rem;
  list-style-type: disc;
}

.payment-notes li::marker {
  color: var(--primary-pink);
}

.cancel-note {
  margin-top: 20px;
  padding: 15px;
  background: #fff3cd;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.cancel-note p {
  margin: 0;
  font-size: 0.9rem;
}

.link-attention {
  color: var(--primary-pink);
  text-decoration: underline;
  font-weight: 600;
}

.link-attention:hover {
  color: var(--primary-pink-dark);
}

/* ツアープラン */
.plan-basic {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.plan-basic h3 {
  color: var(--primary-pink);
  margin-bottom: 20px;
}

.basic-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.basic-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 8px;
}

.basic-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.basic-value {
  font-weight: 600;
  color: var(--text-black);
}

/* 旅行日程表 */
.schedule-table {
  margin-bottom: 50px;
}

.schedule-table h3 {
  color: var(--primary-pink);
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 700;
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  background: var(--white);
  border: 2px solid var(--border-gray);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  min-width: 900px;
  margin: 0;
  border: none;
}

th, td {
  border: 1px solid var(--border-gray);
  padding: 16px 12px;
  vertical-align: middle;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

th {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
  color: var(--white);
  padding: 18px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-color: rgba(255,255,255,0.2);
}

th:first-child, td:first-child {
  border-left: none;
}

th:last-child, td:last-child {
  border-right: none;
}

thead tr:first-child th {
  border-top: none;
}

td:nth-child(5) {
  text-align: left;
}

.date-cell {
  background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
  font-weight: 700;
  text-align: center;
  color: var(--primary-pink);
  font-size: 1rem;
  min-width: 60px;
  vertical-align: middle;
}

.time-cell {
  background: var(--light-gray);
  font-weight: 700;
  text-align: center;
  color: var(--text-black);
  min-width: 70px;
  font-size: 0.95rem;
}

.meal-info {
  text-align: center;
  font-weight: 700;
  color: var(--primary-pink);
  background: var(--light-gray);
  min-width: 60px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.highlight-row {
  background: rgba(233, 30, 99, 0.03);
}

.highlight-row td {
  background: rgba(233, 30, 99, 0.03);
}

.main-event {
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-black);
  text-align: left;
}

.main-event strong {
  color: var(--primary-pink);
  font-weight: 700;
  background: rgba(233, 30, 99, 0.1);
  padding: 2px 4px;
  border-radius: 3px;
}

.main-event br {
  line-height: 1.8;
}

tbody tr:hover {
  background: rgba(233, 30, 99, 0.02);
}

tbody tr:hover td {
  background: rgba(233, 30, 99, 0.02);
}

.highlight-row:hover,
.highlight-row:hover td {
  background: rgba(233, 30, 99, 0.06) !important;
}

.note {
  color: var(--text-gray);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* プラン詳細 */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.detail-item {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.detail-item h4 {
  color: var(--primary-pink);
  margin-bottom: 10px;
  font-weight: 600;
}

.detail-item p {
  color: var(--text-gray);
  margin: 0;
}

/* 料金に含まれるもの */
.plan-includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.includes-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border: 2px solid var(--border-gray);
}

.includes-item h4 {
  color: var(--primary-pink);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.2rem;
}

.includes-item ol {
  margin: 0;
  padding-left: 25px;
  counter-reset: item;
}

.includes-item li {
  margin-bottom: 12px;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
}

.includes-item ol li {
  list-style: none;
  counter-increment: item;
}

.includes-item ol li::before {
  content: counter(item) ".";
  color: var(--primary-pink);
  font-weight: 700;
  position: absolute;
  left: -25px;
  top: 0;
}

.includes-note {
  margin-top: 20px;
  padding: 15px;
  background: #fff3cd;
  border-radius: 8px;
  font-size: 0.9rem;
  border-left: 4px solid #ffc107;
}

/* 注意事項 */
.attention-section {
  background: var(--light-gray);
}

.attention-content {
  max-width: 1000px;
  margin: 0 auto;
}

.attention-category {
  background: var(--white);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.attention-category h3 {
  color: var(--primary-pink);
  margin-bottom: 20px;
  font-weight: 600;
}

.attention-category ul {
  margin: 0;
  padding-left: 25px;
  list-style-type: disc;
}

.attention-category li {
  margin-bottom: 12px;
  color: var(--text-gray);
  line-height: 1.7;
  list-style-type: disc;
}

.attention-category li::marker {
  color: var(--primary-pink);
}

.attention-category strong {
  color: var(--text-black);
  font-weight: 700;
}

.id-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 15px 0;
}

.id-category {
  background: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
}

.id-category h5 {
  color: var(--primary-pink);
  margin-bottom: 8px;
}

.nickname-invalid {
  background: #fff3cd;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  border-left: 4px solid #ffc107;
}

.nickname-invalid h5 {
  margin-bottom: 10px;
}

.nickname-invalid ul {
  margin: 0;
  padding-left: 25px;
  list-style-type: disc;
}

.nickname-invalid li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.nickname-invalid li::marker {
  color: var(--primary-pink);
}

.change-details {
  background: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* 取消料テーブル */
.cancel-table {
  margin-top: 25px;
}

.cancel-table .table-responsive {
  border-radius: 10px;
}

.cancel-table table {
  font-size: 0.95rem;
  width: 100%;
  border: 1px solid var(--border-gray);
}

.cancel-table th {
  background: var(--text-gray);
  font-size: 0.9rem;
  padding: 15px 8px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}

.cancel-table td {
  text-align: center!important;
  font-weight: 500;
  padding: 15px 8px;
  vertical-align: middle;
  line-height: 1.4;
}

.cancel-table tbody tr:last-child td {
  border-bottom: 1px solid var(--border-gray);
}

/* お申込み・お問合せセクション */
.inquiry {
  background: var(--light-gray);
  padding: 80px 0;
}

.inquiry .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inquiry h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-gray);
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}

.inquiry h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--text-gray);
  border-radius: 2px;
}

.knt {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.knt h4 {
  color: var(--primary-pink);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.5;
}

.knt p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.knt a {
  color: var(--primary-pink);
  text-decoration: underline;
}

.knt a:hover {
  color: var(--primary-pink-dark);
}

.fwb {
  font-weight: 700;
  color: var(--text-black);
}

.small {
  font-size: 0.9rem;
}

.box {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-pink);
  margin-top: 25px;
}

.inquiry hr {
  border: none;
  border-top: 2px solid var(--border-gray);
  margin: 50px 0;
}

.inquiry > div:last-of-type {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.inquiry h5 {
  color: var(--primary-pink);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.inquiry img {
  margin-top: 20px;
  display: block;
}

/* 管理番号セクション */
.management_number {
  background: var(--white);
  padding: 30px 0;
  border-top: 1px solid var(--border-gray);
}

.management_number p {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 8px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* フッター */
footer {
  background: var(--text-black);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.8;
}

.footer-inner a {
  color: #cccccc;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-inner a:hover {
  color: var(--white);
}

/* お申込みの前にセクション */
.info {
  background: var(--white);
  padding: 60px 0;
}

.info .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.info hr {
  border: none;
  border-top: 2px solid var(--primary-pink);
  margin: 0 0 40px 0;
  width: 100px;
}

.info h3 {
  font-size: 2rem;
  color: var(--primary-pink);
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

.info > div {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--primary-pink);
  max-width: 900px;
  margin: 0 auto;
}

.info ol {
  margin: 0 0 30px 0;
  padding-left: 25px;
  list-style-type: decimal;
}

.info ol li {
  margin-bottom: 20px;
  color: var(--text-black);
  line-height: 1.7;
  list-style-type: decimal;
}

.info a {
  color: var(--primary-pink);
  text-decoration: underline;
  font-weight: 600;
}

.info a:hover {
  color: var(--primary-pink-dark);
}

.confirmation {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-black);
  text-align: center;
  margin: 30px 0 40px 0;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border: 2px solid var(--primary-pink);
}

/* YES/NOボタン */
.yes_no {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 20px;
}

.mokofo {
  display: inline-block;
  padding: 20px 50px;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--white) !important;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  min-width: 150px;
  text-align: center;
}

.mokofo.yes {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.mokofo.no {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.mokofo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: var(--white) !important;
}

.mokofo.yes:hover {
  background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

.mokofo.no:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.yes_no-caption {
  text-align: center;
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-top: 15px;
}

/* スクロール可能テーブルの視覚的ヒント */
.table-responsive::after {
  content: "← スクロールできます →";
  display: block;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.8rem;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* スクロールバーのスタイリング */
.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--primary-pink);
  border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink-dark);
}

/* フォーカス表示の改善 */
.btn-hero:focus,
.btn-attention:focus,
.btn-application:focus,
.link-attention:focus {
  outline: 3px solid var(--primary-pink);
  outline-offset: 2px;
}

/* アニメーション効果 */
@media (prefers-reduced-motion: no-preference) {
  .point-simple-item {
    animation: chalkWrite 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .point-simple-item:nth-child(1) { animation-delay: 0.1s; }
  .point-simple-item:nth-child(2) { animation-delay: 0.2s; }
  .point-simple-item:nth-child(3) { animation-delay: 0.3s; }
  .point-simple-item:nth-child(4) { animation-delay: 0.4s; }
  .point-simple-item:nth-child(5) { animation-delay: 0.5s; }
  .point-simple-item:nth-child(6) { animation-delay: 0.6s; }
  
  @keyframes chalkWrite {
    0% { opacity: 0; transform: translateX(-30px) rotate(-2deg); }
    50% { opacity: 0.5; transform: translateX(-10px) rotate(-1deg); }
    100% { opacity: 1; transform: translateX(0) rotate(0deg); }
  }
}

/* モバイル対応 */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    gap: 0;
  }

  .menu.active ul {
    display: flex;
  }

  .menu li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gray);
  }

  .menu li:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  
  .hero { padding: 80px 0 50px; }
  .tour-logo { margin-bottom: 30px; }
  .tour-logo img { max-width: 90%; }
  
  .hero-info {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .hero-date, .hero-price, .hero-cta {
    padding: 18px 22px;
    min-width: 280px;
    max-width: 320px;
    width: 100%;
  }
  
  .hero-info .value { font-size: 1.1rem; }
  .hero-price .value { font-size: 1.3rem; }
  .hero-cta .btn-hero { font-size: 0.95rem; padding: 8px 14px; }
  .hero-deadline { font-size: 0.9rem; padding: 8px 16px; }
  
  .section { padding: 60px 0; }
  .section-title { font-size: 1.5rem; margin-bottom: 40px; }
  
  /* ツアーポイントのモバイル対応 */
  .tour-points-section .section-title { font-size: 2rem; transform: rotate(-0.5deg); }
  .point-list { padding: 40px 30px; }
  
  .point-simple-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 0;
    align-items: center;
  }
  
  .point-simple-item:hover {
    transform: translateY(-5px);
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .point-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-right: 0;
    margin-bottom: 20px;
    transform: rotate(0deg) !important;
  }
  
  .point-content {
    text-align: center;
    width: 100%;
  }
  
  .point-content h3 {
    font-size: 1.3rem;
    text-align: center;
    transform: rotate(0deg) !important;
  }
  
  .point-content p {
    text-align: left;
    font-size: 1rem;
    transform: rotate(0deg) !important;
  }
  
  .point-note {
    text-align: left;
    margin-top: 20px;
    transform: rotate(0deg) !important;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-date {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
    align-self: center;
  }

  .overview-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .basic-info-grid { grid-template-columns: 1fr; }
  .id-requirements { grid-template-columns: 1fr; }

  .table-responsive { border-radius: 10px; }
  
  table {
    border-radius: 10px;
    min-width: 700px;
  }
  
  th, td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  
  .date-cell {
    min-width: 50px;
    font-size: 0.9rem;
  }
  
  .time-cell {
    min-width: 60px;
    font-size: 0.85rem;
  }
  
  .meal-info {
    min-width: 50px;
    font-size: 0.8rem;
  }

  .table-responsive::after { opacity: 1; }

  .cancel-table table {
    font-size: 0.85rem;
    min-width: 100%;
  }
  
  .cancel-table th,
  .cancel-table td {
    padding: 12px 6px;
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .cancel-table th:first-child,
  .cancel-table td:first-child {
    width: 65%;
    text-align: left;
    padding-left: 8px;
  }
  
  .cancel-table th:last-child,
  .cancel-table td:last-child {
    width: 35%;
    text-align: center;
  }

  .plan-includes { grid-template-columns: 1fr; gap: 20px; }
  .inquiry { padding: 60px 0; }
  .inquiry h3 { font-size: 1.5rem; margin-bottom: 40px; }
  .knt { padding: 30px 25px; margin-bottom: 30px; }
  .knt h4 { font-size: 1.2rem; }
  .inquiry > div:last-of-type { padding: 25px; }
  .box { padding: 20px; }
  .management_number { padding: 25px 0; }
  .footer-inner { padding: 0 15px; }

  .yes_no {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .mokofo {
    padding: 18px 40px;
    font-size: 1.2rem;
    min-width: 200px;
    max-width: 280px;
    width: 100%;
  }

  .yes_no-caption { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  body { font-size: 14px; }
  .container { padding: 0 15px; }
  .nav-inner { padding: 15px; }
  .section-title { font-size: 1.4rem; }
  
  .hero { padding: 70px 0 40px; }
  .hero-content { padding: 0 15px; }
  .tour-logo { margin-bottom: 25px; }
  .tour-logo img { max-width: 90%; }
  
  .hero-info { gap: 15px; margin-bottom: 25px; }
  
  .hero-date, .hero-price, .hero-cta {
    padding: 16px 20px;
    min-width: 250px;
    max-width: 280px;
    width: 100%;
  }
  
  .hero-info .value { font-size: 1rem; }
  .hero-price .value { font-size: 1.2rem; }
  .hero-cta .btn-hero { font-size: 0.9rem; padding: 7px 12px; }
  .hero-deadline { font-size: 0.85rem; padding: 8px 15px; }
  
  .tour-points-section .section-title { font-size: 1.8rem; }
  .point-list { padding: 30px 25px; }
  .point-simple-item { padding: 20px 0; }
  
  .point-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .point-content h3 { font-size: 1.2rem; }
  .point-content p { font-size: 0.95rem; }
  .point-note { padding: 12px 15px; font-size: 0.9rem; }

  table { min-width: 600px; }
  
  th, td {
    padding: 10px 6px;
    font-size: 0.7rem;
  }
  
  .date-cell {
    min-width: 45px;
    font-size: 0.85rem;
  }
  
  .time-cell {
    min-width: 55px;
    font-size: 0.8rem;
  }
  
  .meal-info {
    min-width: 45px;
    font-size: 0.75rem;
  }

  .cancel-table table { font-size: 0.8rem; }
  
  .cancel-table th,
  .cancel-table td {
    padding: 10px 4px;
    font-size: 0.75rem;
    line-height: 1.2;
  }
  
   .cancel-table th:first-child,
  .cancel-table td:first-child {
    width: 70%;
    padding-left: 6px;
  }
  
  .cancel-table th:last-child,
  .cancel-table td:last-child {
    width: 30%;
  }

  .includes-item { padding: 25px 20px; }
  .inquiry { padding: 50px 0; }
  .inquiry h3 { font-size: 1.3rem; }
  .knt { padding: 25px 20px; }
  .knt h4 { font-size: 1.1rem; }
  .knt p { font-size: 0.9rem; }
  .inquiry img[width="300px"] { width: 200px !important; height: auto; }
  .management_number { padding: 20px 0; }
  footer { padding: 30px 0; }

  .yes_no {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .mokofo {
    padding: 16px 35px;
    font-size: 1.1rem;
    min-width: 180px;
    max-width: 250px;
    width: 90%;
  }

  .yes_no-caption {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (min-width: 769px) {
  .cancel-table td:first-child {
    text-align: left;
    padding-left: 15px;
  }
}

/* 印刷用スタイル */
@media print {
  header { position: static; }
  .hero { padding: 40px 0; }
  .section { padding: 30px 0; break-inside: avoid; }
  
  .point-list,
  .overview-item,
  .timeline-item,
  .step {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .btn-hero,
  .btn-attention,
  .btn-application {
    background: #333 !important;
    color: white !important;
    box-shadow: none;
  }
  
  .table-responsive::after { display: none; }
}

/* アクセシビリティ向上 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: high) {
  :root {
    --primary-pink: #d81b60;
    --text-gray: #000000;
    --border-gray: #000000;
  }
  
  .point-list,
  .overview-item,
  .timeline-item,
  .step,
  .attention-category {
    border: 2px solid #000000;
  }
}

:root {
  --chalk-font-title: 'Yusei Magic', cursive;
  --chalk-font-body: 'Yusei Magic', cursive;
  --chalk-font-note: 'Yusei Magic', cursive;
}

.tour-points-section .section-title {
  font-family: 'Yusei Magic', cursive !important;
  color: #FFF731 !important;
  font-size: 2.4rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  font-weight: 400;
  letter-spacing: 1px;
  transform: rotate(-1deg);
}

.point-content h3 {
  font-family: 'Yusei Magic', cursive !important;
  color: #FFF731 !important;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
  transform: rotate(-0.5deg);
}

.point-content p {
  font-family: 'Yusei Magic', cursive !important;
  color: #E6E6E6 !important;
  margin-bottom: 10px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.point-number {
  font-family: 'Yusei Magic', cursive !important;
  /* 他のスタイルはそのまま */
}

.point-note {
  font-family: 'Yusei Magic', cursive !important;
  /* 他のスタイルはそのまま */
}