/* ===============================
   共通余白
=============================== */
.page-main {
  padding-bottom: 40px;
  font-family: "Kosugi Maru", sans-serif;
}

/* ===============================
   電話CTA
=============================== */
.taxi-cta {
  display: flex;
  justify-content: center;
  margin: 40px 0 60px;
}

.taxi-cta-pill {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 20px 36px;
  border-radius: 999px;
  background: #1b1464;
  color: #fff;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.taxi-cta-icon {
  font-size: 18px;
}

.taxi-cta-number {
  font-size: 20px;
  letter-spacing: 0.05em;
}




/* ===============================
   モバイル
=============================== */
@media (max-width: 767px) {
    /* 電話CTA（スマホ） */
  .taxi-cta {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .taxi-cta-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    width: 100%;
    padding: 18px 16px;

    border-radius: 20px;
    background: #1b1464;
    color: #fff;

    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    text-decoration: none;
  }

  .taxi-cta-time {
    font-size: 12px;
    opacity: 0.85;
  }

  .taxi-cta-label {
    font-size: 13px;
  }

  .taxi-cta-number {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .taxi-cta-icon {
    display: none; /* ← スマホでは不要 */
  }


  .taxi-guide-title {
    margin: 40px auto 48px;
    height: 52px;
    font-size: 16px;
  }
}



/* ===============================
   タイトル
=============================== */
.charter-title-wrap {
  max-width: 1100px;
  margin: 56px auto 48px;
}

.charter-title {
  width: fit-content;
  padding: 0 40px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 2px solid #1b1464;
  background: #fff;

  font-size: 18px;
  font-weight: 700;
  color: #1b1464;
}

/* ===============================
   HERO（貸切バス）
=============================== */
.charter-hero {
  padding: 0px 0 32px;
}

.charter-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 0;
  display: grid;
  align-items: center;
}

/* 左：テキスト */
.charter-hero-title {
  width: fit-content;
  min-width: 280px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* ★ calc を削除 */
  margin: 0 0 32px 0;
  padding: 0 40px;

  border-radius: 999px;
  border: 2px solid #1b1464;
  background: #fff;

  font-size: 18px;
  font-weight: 700;
  color: #1b1464;
}



.charter-hero-desc {
  line-height: 1.9;
  margin-bottom: 16px;
}

.bus-type-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.bus-type-list li {
  margin-bottom: 10px;
}

.bus-type-list a {
  display: inline-block;
  padding: 8px 22px;
  border: 2px solid #1b1464;
  border-radius: 999px;
  color: #1b1464;
  font-weight: 700;
  text-decoration: none;
}

.bus-type-list a:hover {
  background: #1b1464;
  color: #fff;
}


/* 右：画像 */
.charter-hero-image img {
   width: 120%;
  max-width: none;
}

body {
  overflow-x: hidden;
}

/* ===============================
   モバイル
=============================== */
@media (max-width: 767px) {

  .charter-hero {
    padding: 10px 0 72px;
  }

  .charter-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    text-align: center;
  }

  .charter-hero-image img {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .bus-type-list a {
    font-size: 14px;
  }

    .charter-hero-title {
    margin: 40px auto 24px;
    height: 52px;
    font-size: 16px;
    padding: 0 32px;
  }
}


/* ===============================
   セクション見出し
=============================== */
.section-heading {
  font-size: 20px;
  margin-bottom: 5px;
  color: #1b1464;
}

/* ===============================
   ご利用シーン（カード）
=============================== */
.charter-scene{
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.charter-scene .section-heading{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* 共通：カードレイアウト */
.scene-list{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC：4列 */
  gap: 18px;
}

.scene-card{
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid rgba(27,20,100,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.scene-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f3f4f8;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 10px;
}

.scene-title{
  font-size: 15px;
  font-weight: 700;
  color: #1b1464;
  margin-bottom: 6px;
}

.scene-text{
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ===============================
   タブレット & モバイル：2×2
=============================== */
@media (max-width: 1024px){
  .scene-list{
    grid-template-columns: repeat(2, 1fr); /* ← タブレットもスマホも2列 */
  }
}

/* ===============================
   スマホ微調整
=============================== */
@media (max-width: 767px){
  .charter-scene{
    padding: 0 16px;
  }

  .scene-card{
    padding: 18px 14px;
  }

  .scene-title{
    font-size: 14px;
  }

  .scene-text{
    font-size: 12.5px;
  }
}


/* ===============================
   バス紹介
=============================== */
.charter-bus {
  max-width: 1100px;
  margin: 0 auto;
}

.bus-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.bus-item img {
  width: 100%;
  border-radius: 16px;
}

.bus-info h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1b1464;
}

.bus-spec {
  margin-top: 12px;
}

.bus-spec dt {
  font-weight: 700;
  color: #1b1464;
}

.bus-spec dd {
  margin: 0 0 8px;
}

/* ===============================
   モバイル
=============================== */
@media (max-width: 767px) {

  .charter-scene,
  .charter-bus {
    padding: 0 16px;
  }

  .bus-item {
    grid-template-columns: 1fr;
  }

  .charter-title {
    margin: 0 auto;
    font-size: 16px;
    height: 52px;
  }


}



/* ===============================
   バス紹介（白カード）
=============================== */
.charter-bus {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.bus-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  margin-bottom: 56px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

/* pill型タイトル */
.bus-card-title {
  width: fit-content;
  margin-bottom: 28px;
  padding: 10px 32px;
  border-radius: 999px;
  border: 2px solid #1b1464;
  color: #1b1464;
  font-size: 18px;
  font-weight: 700;
}

/* 各バス行 */
.bus-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.bus-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.bus-name {
  font-size: 16px;
  font-weight: 700;
  color: #1b1464;
  margin-bottom: 10px;
}

.bus-info p {
  line-height: 1.9;        /* 行間を広めに */
  margin-bottom: 20px;     /* 次の要素との間 */
  letter-spacing: 0.02em;  /* わずかに字間 */
}

/* スペック全体 */
.bus-spec {
  margin-top: 20px;
}

.bus-spec dt {
  font-weight: 700;
  color: #1b1464;
  margin-top: 14px;        /* 項目間の余白 */
  margin-bottom: 4px;
  letter-spacing: 0.04em;  /* 見出しは少し強調 */
}

.bus-spec dt::before {
  content: "■";
  color: #1b1464;
  margin-right: 6px;
  font-size: 12px;
}

.bus-spec dd {
  margin: 0;
  padding-left: 0;
  line-height: 1.8;
  color: #333;
}

/* 内装写真 */
.bus-interior {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bus-interior img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

/* ===============================
   レスポンシブ
=============================== */
@media (max-width: 767px) {

  .bus-card {
    padding: 24px 18px;
  }

  .bus-item {
    grid-template-columns: 1fr;
  }

  .bus-interior {
    grid-template-columns: repeat(2, 1fr);
  }
}


