/* =============================================
   CAMP PAGE — camp.css
   ============================================= */

/* パンくず */
.camp-breadcrumb {
  background: #f7f8fc;
  border-bottom: 1px solid #e0e6ef;
  padding: 10px 0;
  font-size: 13px;
  color: #555;
}
.camp-breadcrumb a { color: #1a4fa8; text-decoration: none; }
.camp-breadcrumb a:hover { text-decoration: underline; }
.camp-breadcrumb span { margin: 0 6px; color: #aaa; }

/* ===== ヒーロー ===== */
.cia-hero {
  background: linear-gradient(135deg, #03045E 0%, #0077B6 100%);
  overflow: hidden;
}
.cia-hero-inner {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 380px;
}
.cia-hero-left {
  flex: 1;
  padding: 48px 40px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cia-hero-right {
  flex: 0 0 480px;
  position: relative;
  overflow: hidden;
}
.cia-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.cia-hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cia-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.cia-badge-flag { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.cia-badge-type { background: #0077B6; color: #fff; }
.cia-hero-eyebrow {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  font-weight: 500;
}
.cia-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  font-family: 'Noto Serif JP', serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cia-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 500;
}
.cia-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cia-hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.cia-stat-icon { font-size: 26px; flex-shrink: 0; }
.cia-stat-main {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.cia-stat-main strong { color: #fff; font-size: 18px; display: block; }
.cia-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ===== 4つの特徴 ===== */
.cia-features {
  background: #fff;
  border-bottom: 1px solid #e8ecf0;
  padding: 28px 0;
}
.cia-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8ecf0;
  border-radius: 12px;
  overflow: hidden;
}
.cia-feature-item {
  background: #fff;
  padding: 24px 20px;
  text-align: left;
}
.cia-feature-icon { font-size: 32px; margin-bottom: 10px; }
.cia-feature-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #03045E;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cia-feature-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ===== タブナビ ===== */
.cia-tab-nav {
  background: #fff;
  border-bottom: 2px solid #e8ecf0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cia-tab-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cia-tab-list::-webkit-scrollbar { display: none; }
.cia-tab-item {
  flex: 0 0 auto;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  margin-bottom: -2px;
  border-radius: 6px 6px 0 0;
}
.cia-tab-item:hover {
  color: #0077B6;
  background: #f0f6ff;
}
.cia-tab-item.active {
  color: #03045E;
  font-weight: 700;
  border-bottom-color: #0077B6;
  background: #eef4ff;
}

/* ===== セクション共通 ===== */
.cia-section { padding: 56px 0; }
.cia-section-white { background: #fff; }
.cia-section-gray { background: #f7f8fc; }
.cia-section-title {
  font-size: 26px;
  font-weight: 900;
  color: #03045E;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Noto Serif JP', serif;
}
.cia-section-title span {
  font-size: 15px;
  font-weight: 500;
  color: #888;
}
.cia-section-sub {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: -28px;
  margin-bottom: 36px;
}

/* ===== 概要 ===== */
.cia-overview-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.cia-overview-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.cia-overview-table tr {
  border-bottom: 1px solid #e8ecf0;
}
.cia-overview-table th {
  width: 160px;
  padding: 14px 16px;
  background: #f7f8fc;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-align: left;
  white-space: nowrap;
}
.cia-overview-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.cia-overview-table small {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
.cia-price-highlight {
  font-size: 28px;
  font-weight: 900;
  color: #E63946;
}
.cia-detail-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #0077B6;
  text-decoration: none;
  border: 1px solid #0077B6;
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.15s;
}
.cia-detail-link:hover { background: #0077B6; color: #fff; }
.cia-overview-photo img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.cia-overview-photo-caption {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 8px;
}

/* ===== スケジュール ===== */
.cia-schedule-flow {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.cia-schedule-step {
  flex: 0 0 auto;
  text-align: center;
  min-width: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 10px;
  border: 1px solid #e0e6ef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cia-schedule-icon { font-size: 28px; margin-bottom: 8px; }
.cia-schedule-time {
  font-size: 12px;
  font-weight: 700;
  color: #0077B6;
  margin-bottom: 6px;
}
.cia-schedule-label {
  font-size: 11px;
  color: #444;
  line-height: 1.5;
}
.cia-schedule-arrow {
  flex: 0 0 auto;
  font-size: 20px;
  color: #0077B6;
  padding-top: 28px;
}
.cia-schedule-note {
  font-size: 13px;
  color: #888;
}

/* ===== カリキュラム ===== */
.cia-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cia-curriculum-card {
  background: #f7f8fc;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid #e0e6ef;
}
.cia-curriculum-main {
  background: #03045E;
  border-color: #03045E;
}
.cia-curriculum-icon { font-size: 32px; margin-bottom: 12px; }
.cia-curriculum-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #03045E;
  margin-bottom: 10px;
  line-height: 1.4;
}
.cia-curriculum-main h3 { color: #fff; }
.cia-curriculum-count {
  font-size: 12px;
  font-weight: 500;
  color: #0077B6;
}
.cia-curriculum-main .cia-curriculum-count { color: #7dd3fc; }
.cia-curriculum-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}
.cia-curriculum-main p { color: rgba(255,255,255,0.8); }
.cia-curriculum-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cia-curriculum-card ul li {
  font-size: 12px;
  color: #444;
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.cia-curriculum-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16b553;
  font-weight: 700;
}
.cia-curriculum-main ul li { color: rgba(255,255,255,0.75); }
.cia-curriculum-main ul li::before { color: #7dd3fc; }

/* ===== 宿泊・食事 ===== */
.cia-stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.cia-stay-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e0e6ef;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.cia-stay-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #03045E;
  margin-bottom: 10px;
}
.cia-stay-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0077B6;
  margin-bottom: 10px;
}
.cia-stay-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.cia-stay-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
}
.cia-stay-photos img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.cia-safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cia-safety-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cia-safety-icon { font-size: 24px; flex-shrink: 0; }
.cia-safety-list strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #03045E;
  margin-bottom: 3px;
}
.cia-safety-list p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ===== アクティビティ ===== */
.cia-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cia-activity-card {
  background: #f7f8fc;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid #e0e6ef;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cia-activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cia-activity-icon { font-size: 36px; margin-bottom: 10px; }
.cia-activity-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #03045E;
  margin-bottom: 8px;
}
.cia-activity-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ===== 費用 ===== */
.cia-price-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}
.cia-price-main-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  border: 2px solid #0077B6;
  box-shadow: 0 4px 20px rgba(0,119,182,0.10);
}
.cia-price-main-amount {
  font-size: 56px;
  font-weight: 900;
  color: #03045E;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Noto Serif JP', serif;
}
.cia-price-main-label {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.cia-price-extra-note {
  font-size: 12px;
  color: #E63946;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 20px;
  display: inline-block;
}
.cia-price-main-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #03045E;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e8ecf0;
}
.cia-price-main-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cia-price-main-card ul li {
  font-size: 13px;
  color: #444;
  padding: 4px 0;
  line-height: 1.6;
}
.cia-price-flight-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e0e6ef;
  margin-bottom: 16px;
}
.cia-price-flight-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #03045E;
  margin-bottom: 14px;
}
.cia-flight-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 14px;
}
.cia-flight-table th,
.cia-flight-table td {
  padding: 8px 12px;
  text-align: center;
  border: 1px solid #e8ecf0;
}
.cia-flight-table th {
  background: #f7f8fc;
  font-weight: 700;
  color: #03045E;
  font-size: 13px;
}
.cia-flight-info {
  font-size: 13px;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid #e8ecf0;
  padding-top: 12px;
  margin-bottom: 12px;
}
.cia-flight-contact {
  font-size: 13px;
  color: #555;
  background: #f7f8fc;
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.7;
  margin: 0;
}
.cia-price-deadline {
  background: #E63946;
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
}
.cia-deadline-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.cia-deadline-date {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  font-family: 'Noto Serif JP', serif;
}
.cia-deadline-note {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ===== FAQ ===== */
.cia-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cia-faq-item {
  background: #f7f8fc;
  border-radius: 10px;
  border: 1px solid #e0e6ef;
  overflow: hidden;
}
.cia-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #1a2a4a;
  line-height: 1.5;
}
.cia-faq-q:hover { background: #eef3fd; }
.cia-faq-toggle {
  flex-shrink: 0;
  font-size: 24px;
  color: #0077B6;
  transition: transform 0.25s ease;
}
.cia-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.cia-faq-a p {
  padding: 16px 24px 20px;
  font-size: 14px;
  color: #444;
  line-height: 2;
  margin: 0;
  border-top: 1px solid #e8ecf0;
}
.cia-more-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #0077B6;
  text-decoration: none;
  border: 1px solid #0077B6;
  padding: 10px 28px;
  border-radius: 100px;
  transition: all 0.15s;
}
.cia-more-link:hover { background: #0077B6; color: #fff; }

/* ===== 下部CTA ===== */
.cia-bottom-cta {
  background: #f0f4fb;
  padding: 56px 0;
}
.cia-bottom-cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.cia-bottom-cta-left {
  flex: 1;
  padding: 48px 40px 48px 56px;
}
.cia-bottom-cta-left h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a2a4a;
  margin-bottom: 12px;
  line-height: 1.5;
}
.cia-bottom-cta-left p {
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.7;
}
.cia-bottom-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cia-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16b553;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 10px;
  transition: background 0.15s;
  min-height: 52px;
}
.cia-btn-line:hover { background: #129a47; }
.cia-btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a4fa8;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background 0.15s;
  min-height: 52px;
}
.cia-btn-mail:hover { background: #143d88; }
.cia-bottom-cta-right {
  flex: 0 0 320px;
  align-self: stretch;
}
.cia-bottom-cta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% top;
  display: block;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 768px) {
  .cia-hero-inner { flex-direction: column; min-height: auto; }
  .cia-hero-left { padding: 32px 0 24px; }
  .cia-hero-right { flex: none; width: 100%; height: 220px; }
  .cia-hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cia-features-grid { grid-template-columns: repeat(2, 1fr); }
  .cia-overview-inner { grid-template-columns: 1fr; }
  .cia-curriculum-grid { grid-template-columns: 1fr 1fr; }
  .cia-stay-grid { grid-template-columns: 1fr; }
  .cia-activity-grid { grid-template-columns: 1fr 1fr; }
  .cia-price-grid { grid-template-columns: 1fr; }
  .cia-bottom-cta-inner { flex-direction: column; }
  .cia-bottom-cta-left { padding: 32px 24px; }
  .cia-bottom-cta-right { flex: none; width: 100%; height: 200px; }
  .cia-bottom-cta-btns { flex-direction: column; }
  .cia-btn-line, .cia-btn-mail { justify-content: center; }
  .cia-schedule-flow { gap: 2px; }
  .cia-schedule-step { min-width: 80px; padding: 12px 6px; }
}