/* ============================================
   団体航空券セクション
============================================ */
.group-ticket {
  background: #f7f9fc;
  padding: 48px 16px;
}
.group-ticket .inner {
  max-width: 960px;
  margin: 0 auto;
}
.group-ticket-ttl {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #191D6A;
  margin-bottom: 8px;
}
.group-ticket-ttl span {
  display: inline-block;
  background: #191D6A;
  color: #fff;
  padding: 4px 20px;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.group-ticket-lead {
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.7;
}
.group-ticket-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .group-ticket-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.group-ticket-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.group-ticket-card .card-icon {
  font-size: 2.2rem;
  color: #191D6A;
  margin-bottom: 12px;
}
.group-ticket-card .card-ttl {
  font-size: 0.9rem;
  font-weight: bold;
  color: #191D6A;
  margin-bottom: 8px;
  line-height: 1.4;
}
.group-ticket-card .card-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}
.group-ticket-example {
  background: #fff;
  border: 2px solid #191D6A;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.group-ticket-example .example-ttl {
  font-size: 1rem;
  font-weight: bold;
  color: #191D6A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.group-ticket-example .example-body {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.8;
}
.group-ticket-example .example-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d9534f;
  margin-top: 8px;
}
.group-ticket-example .example-price span {
  font-size: 0.85rem;
  color: #888;
  font-weight: normal;
  text-decoration: line-through;
  margin-left: 8px;
}
.group-ticket-notes {
  background: #fff8e1;
  border-left: 4px solid #f0a500;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.8;
}
.group-ticket-notes strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #333;
}
.group-ticket-cta {
  text-align: center;
}
.btn-primary {
  display: inline-block;
  background: #191D6A;
  color: #fff;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: #2a3099;
  color: #fff;
}

/* ============================================
   羽田→石見 特集セクション
============================================ */
.featured-route {
  background: linear-gradient(135deg, #0f1f5c 0%, #1a3a8c 100%);
  padding: 56px 16px;
  color: #fff;
}
.featured-route .inner {
  max-width: 960px;
  margin: 0 auto;
}
.featured-route-badge {
  display: inline-block;
  background: #f0a500;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.featured-route-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .featured-route-ttl {
    font-size: 2.4rem;
  }
}
.featured-route-ttl .route-arrow {
  color: #f0a500;
  margin: 0 8px;
}
.featured-route-sub {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.7;
}
.featured-route-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .featured-route-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}
.featured-route-info {
  flex: 1;
}
.featured-route-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.featured-route-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.featured-route-points li .fa {
  color: #f0a500;
  margin-top: 3px;
  flex-shrink: 0;
}
.featured-route-img {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .featured-route-img {
    width: 300px;
  }
}
.featured-route-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.btn-accent {
  display: inline-block;
  background: #f0a500;
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-accent:hover {
  background: #d4920a;
  color: #fff;
}

/* ============================================
   お問い合わせCTAセクション
============================================ */
.inquiry-cta {
  background: #fff;
  padding: 48px 16px;
  border-top: 4px solid #191D6A;
}
.inquiry-cta .inner {
  max-width: 720px;
  margin: 0 auto;
}
.inquiry-cta-ttl {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #191D6A;
  margin-bottom: 8px;
}
.inquiry-cta-sub {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 28px;
}
.inquiry-form {
  background: #f7f9fc;
  border-radius: 8px;
  padding: 28px 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: bold;
  color: #333;
}
.form-group label .required {
  background: #d9534f;
  color: #fff;
  font-size: 0.7rem;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: normal;
}
.form-group select,
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="number"] {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: #191D6A;
  box-shadow: 0 0 0 2px rgba(25,29,106,0.15);
}
.form-submit {
  text-align: center;
  margin-top: 20px;
}
.btn-submit {
  display: inline-block;
  background: #191D6A;
  color: #fff;
  padding: 16px 56px;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  max-width: 320px;
}
.btn-submit:hover {
  background: #2a3099;
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 12px;
}

/* ============================================
   その他路線セクション
============================================ */
.other-routes {
  background: #f7f9fc;
  padding: 48px 16px;
}
.other-routes .inner {
  max-width: 960px;
  margin: 0 auto;
}
.other-routes-ttl {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #191D6A;
  margin-bottom: 28px;
}
.route-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .route-groups {
    grid-template-columns: repeat(3, 1fr);
  }
}
.route-group {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.route-group-header {
  background: #191D6A;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: bold;
}
.route-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
}
.route-group-list a {
  display: inline-block;
  background: #f0f2ff;
  color: #191D6A;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid #c5caf0;
  transition: background 0.15s;
}
.route-group-list a:hover {
  background: #191D6A;
  color: #fff;
}
.other-routes-btn {
  text-align: center;
  margin-top: 28px;
}
.btn-outline {
  display: inline-block;
  border: 2px solid #191D6A;
  color: #191D6A;
  padding: 12px 36px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: #191D6A;
  color: #fff;
}

/* ============================================
   トップページ追加スタイル（top.html専用）
============================================ */
/* セクション見出し共通 */
.sec-ttl {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: #191D6A;
  text-align: center;
  margin-bottom: 0.3em;
  letter-spacing: 0.02em;
}
.sec-ttl-bar {
  display: block;
  width: 48px;
  height: 4px;
  background: #f0a500;
  margin: 8px auto 32px;
  border-radius: 2px;
}

/* Swiper スライダー */
.iwami-slider { width: 100%; padding-bottom: 40px !important; }
.iwami-slider .swiper-slide {
  height: 210px; border-radius: 8px; overflow: hidden; position: relative;
}
@media (min-width: 768px) { .iwami-slider .swiper-slide { height: 250px; } }
@media (min-width: 1024px) { .iwami-slider .swiper-slide { height: 280px; } }
.iwami-slider .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.05) 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 12px 14px;
}
.slide-overlay .slide-desc { display: none; }
@media (min-width: 768px) { .slide-overlay .slide-desc { display: block; } }
.swiper-button-next, .swiper-button-prev {
  color: #fff !important; width: 32px !important; height: 32px !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; }
.swiper-pagination-bullet-active { background: #f0a500 !important; }

/* 価格例 70/30 レイアウト */
@media (min-width: 768px) {
  .price-example-box { flex: 0 0 calc(70% - 8px) !important; }
  .notes-box         { flex: 0 0 calc(30% - 8px) !important; }
}
/* 価格例カード：モバイル=薄水色 / デスクトップ=背景画像 */
.price-example-card {
  background: #dbeafe;
}
@media (min-width: 768px) {
  .price-example-card {
    background: url('/image/tokubk1.jpg') right center / cover no-repeat;
  }
}

/* スライダーボタン・お問い合わせボタン：ホバー時アンダーライン無効 */
.iwami-slider a:hover,
.btn-inquiry:hover { text-decoration: none; }

/* お問い合わせボタン・オレンジ系ボタン共通 */
.btn-inquiry {
  background: #FFAA00 !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
}
.btn-inquiry:hover { background: #4675B0 !important; color: #fff !important; }

/* 詳しい利用方法を見るボタン ホバー上書き */
.descButtonLink { border: none !important; outline: none !important; }
.descButtonLink:hover { background: #4675B0 !important; color: #fff !important; }

/* ステップ矢印 */
.step-arrow { color: #f0a500; font-size: 1.5rem; }
@media (max-width: 767px) { .step-arrow { transform: rotate(90deg); } }

/* AOS デフォルト */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* CTAフォーム select/input */
.cta-select, .cta-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #d1d5db; border-radius: 6px;
  font-size: 1rem; background: #fff;
  transition: border-color 0.2s;
}
.cta-select:focus, .cta-input:focus {
  outline: none; border-color: #191D6A;
  box-shadow: 0 0 0 3px rgba(25,29,106,0.12);
}

/* ============================================
   フッター
============================================ */
footer {
  background: #81ADDE !important;
}
#footWhite {
  background: #fff !important;
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
#footerAirs {
  padding: 0 !important;
}
#footer-typing {
  margin-bottom: 40px !important;
}
#footerAirs > div > ul.footerAirsList {
  margin-top: 16px !important;
  margin-bottom: 40px !important;
}
#footerAirs > p {
  margin-top: 40px !important;
  margin-bottom: 16px !important;
  font-size: 1rem !important;
}
#footerAirs ul.footerAirsList li {
  margin: 10px !important;
}
#footerCopyrights {
  background: #4D4D4D !important;
}
#footerWrap {
  width: 100% !important;
  max-width: 100% !important;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  box-sizing: border-box !important;
}
#footerWrap a,
#footerWrap p,
#footerWrap li {
  color: #fff !important;
}
