@charset "UTF-8";
/**
 * ▼ メディアクエリ用ブレイクポイント
 *
 * - $bp-sp:
 *   スマホの上限幅（例: ~767px）
 * - $bp-tab:
 *   タブレットの上限幅（例: ~1023px）
 */
/**
 * ▼ メディアクエリミックスイン
 *
 * - media-pc:
 *   PC向けのスタイルを適用するためのメディアクエリ。
 * - media-tab:
 *   タブレット向けのスタイルを適用するためのメディアクエリ。
 * - media-sp:
 *   スマホ向けのスタイルを適用するためのメディアクエリ。
 */
/**
 * ▼ fluidスケーリングに関する設定
 *
 * - $fluid-vw-min / $fluid-vw-max:
 *   clamp()で滑らかに変化させる際のビューポート最小・最大値。
 *   → 通常はスマホ〜PCの幅（375〜1280pxなど）を想定。
 */
/**
 * ▼ fluid()
 *
 * - clamp()を生成するSass関数。
 * - 引数に最小サイズ・最大サイズを渡すことで、
 *   指定したビューポート範囲内で値を滑らかに変化させる。
 *
 * 使用例:
 *   font-size: fluid(14, 20);
 */
/**
 * @function vw-○○()
 * 指定されたサイズを基準に、ビューポート幅に応じたvw単位の値を計算します。
 * 
 * @param {Number} $size - 基準となるサイズ（ピクセル単位）。
 * @param {Number} $viewport - ビューポートの幅（デフォルトは1920px, 768px, 375px）。
 * @return {String} - 計算されたvw単位の値。
 */
.content.content--influence .heading-A {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .content.content--influence .heading-A {
    margin-bottom: 6.4rem;
  }
}
.content.content--influence .heading-C {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .content.content--influence .heading-C {
    margin-bottom: 2.8rem;
  }
}
.content.content--influence .influence__txt {
  font-size: 1.6rem;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .content.content--influence .influence__txt {
    font-size: 1.4rem;
    margin-bottom: 6.4rem;
  }
}
.content.content--influence .congestion-forecast {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .content.content--influence .congestion-forecast {
    margin-bottom: 6.4rem;
  }
}
.content.content--influence .congestion-forecast__img {
  margin-bottom: 3.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .content.content--influence .congestion-forecast__img {
    margin-bottom: 2.8rem;
  }
}
.content.content--influence .congestion-forecast__img button {
  width: 100%;
}
.content.content--influence .congestion-forecast__img picture {
  display: block;
  width: 100%;
}
.content.content--influence .congestion-forecast__img picture img {
  width: 100%;
}
.content.content--influence .congestion-forecast__img .modal-trigger {
  width: auto;
  height: auto;
  bottom: 4rem;
}
.content.content--influence .congestion-forecast__text {
  margin-top: -0.6rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 150%;
  display: flex;
  padding: 1.2rem 2rem;
  justify-content: center;
  align-items: center;
  background: #F4F4F4;
}
@media (max-width: 767px) {
  .content.content--influence .congestion-forecast__text {
    font-size: 1.4rem;
  }
}
.content.content--influence .detour-route__img {
  margin-bottom: 8rem;
  position: relative;
}
@media (max-width: 767px) {
  .content.content--influence .detour-route__img {
    margin-bottom: 6.4rem;
  }
}
.content.content--influence .detour-route__img img {
  width: 100%;
}
.content.content--influence .detour-route__img .modal-trigger {
  width: auto;
  height: auto;
}
.content.content--influence .detour-route__legend {
  margin-bottom: 1rem;
}
.content.content--influence .detour-route__legend img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .content.content--influence .detour-route__modal-img {
    width: 700px;
  }
}
.content.content--influence .detour-route__modal-img img {
  width: 100%;
}
.content.content--influence .btn-wrap {
  gap: 2rem;
}
@media (max-width: 767px) {
  .content.content--influence .btn-wrap {
    gap: 1.6rem;
  }
}
.content.content--influence .btn-wrap a {
  width: calc((100% - 2rem) / 2);
}
@media (max-width: 767px) {
  .content.content--influence .btn-wrap a {
    width: 100%;
  }
}
.content.content--influence .btn-wrap .btn-A {
  padding: 1.4rem 2.4rem 1.4rem 1.4rem;
}
.content.content--influence .peak {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .content.content--influence .peak {
    margin-bottom: 6.4rem;
  }
}
.content.content--influence .peak__txt {
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .content.content--influence .peak__txt {
    font-size: 1.4rem;
    margin-bottom: 2.8rem;
  }
}
