/* ===============================
   共通余白
=============================== */
.page-main {
  padding-bottom: 120px;
  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;
}


/* ===============================
   タクシー：セクションタイトル
=============================== */
.taxi-guide-title {
  width: fit-content;
  min-width: 280px;
  height: 56px;

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

  /* ★ PCは左寄せ（taxi-contentと同じ位置） */
  margin: 0 0 64px calc((100% - 1100px) / 2);
  padding: 0 40px;

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

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

/* ===============================
   メイン2カラム
=============================== */
.taxi-content {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.taxi-photo {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.taxi-message {
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.taxi-text {
  line-height: 1.8;
}

/* ===============================
   運賃カード
=============================== */
.taxi-fare-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.taxi-fare-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1b1464;
}

/* ===============================
   運賃リスト
=============================== */
.taxi-fare-list {
  margin: 0;
  padding: 0;
}

.fare-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e6e9f0;
}

.fare-item:last-child {
  border-bottom: none;
}

.taxi-fare-list dt {
  font-weight: 700;
  color: #1b1464;
}

.taxi-fare-list dd {
  margin: 0;
  line-height: 1.7;
  color: #333;
}

/* ===============================
   モバイル
=============================== */
@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-content {
    grid-template-columns: 1fr;
    padding: 0 30px;   /* ← 左右余白 */
  }

  .fare-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .taxi-fare-list dt,
  .taxi-fare-list dd {
    font-size: 14px;
  }

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