@charset "UTF-8";
/**
 * ▼ 使用するリセットCSSを1つだけ選んでコメントを外してください。
 *
 * - the-new-css-reset:
 *   デフォルトスタイルをほぼ全て削除する超ミニマルなリセット。
 *   → 自分で全てのスタイルを定義したい場合に最適。
 *
 * - modern-css-reset:
 *   フォームやUIパーツにも配慮された汎用的なリセット。
 *   → ベーススタイルを少し残しつつ整えたい場合におすすめ。
 *
 * - ress:
 *   normalize.cssをベースにした古いブラウザにも対応する安定型。
 *   → 互換性を重視したい場合はこちら。
 */
/**
 * Minified by jsDelivr using clean-css v5.3.3.
 * Original file: /npm/the-new-css-reset@1.8.0/css/reset.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

menu,
ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

pre {
  all: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}


/* --------------------------
	カラーの設定
-------------------------- */
/**
 * ▼ メディアクエリ用ブレイクポイント
 *
 * - $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単位の値。
 */
:root {
  /* ===== フォントファミリー ===== */
  --base-font-family: 'Noto Sans JP', sans-serif;
  --font-family-inter: "Inter", sans-serif;
  /* ===== 基本カラー ===== */
  --color-primary: #1F4C9F;
  --color-sub-primary: #E5F4FB;
  --color-base-black: #2E2E2E;
  --color-base-white: #FFFFFF;
  --color-dense-primary: #1F4C9F;
  --color-light-primary: #00A0E9;
  --color-gray: #9D9D9D;
  --color-light-gray: #CCCBCB;
  --color-ex-light-gray: #F0F0F0;
  --color-link-blue: #0972B3;
  /* ===== 道路・交通状態 ===== */
  --color-traffic-stop: #E60012; /* 通行止め */
  --color-traffic-ic-close-night: #7E3C93; /* IC閉鎖 */
  --color-traffic-jct-close-night: #7E3C93; /* JCT閉鎖 */
  --color-traffic-sa-close: #7E3C93; /* SA閉鎖 */
  --color-traffic-ic-close: #E60012; /* IC閉鎖 */
  --color-traffic-regulation: #ffcc00; /* 交通規制 */
  --color-traffic-emergency: #B90000; /* 緊急情報（帯） */
  --color-all-year-construction: #0074D6; /* 通年工事 */
  /* ===== 道路ラベル ===== */
  --color-route-number-bg: #008765; /* 道路ナンバー背景 */
  --color-etc-label-bg: #625EA9; /* ETC表示背景 */
  /* ===== 強調 ===== */
  --color-accent-strong: #FFD400; /* テキスト強調背景 */
  /* ===== 渋滞・所要時間 ===== */
  --color-congestion-small: #CCE7B4; /* 小 */
  --color-congestion-medium: #F8FC3B; /* 中 */
  --color-congestion-large: #F5CC61; /* 大 */
  --color-congestion-max: #F4AEAE; /* 最大 */
  --color-congestion-peak: #CF2626; /* ピーク */
  /* ===== ドロップシャドウ ===== */
  --shadow-md: 0 4px 0 0 rgba(0, 0, 0, 0.20);
  --shadow-soft: 0 4px 6px 0 rgba(0, 0, 0, 0.30);
  /* ===== レイアウト幅 ===== */
  --inner-width: 980px;
  --inner-width-wide: 1200px;
  --inner-width-ex-wide: 1380px;
  /* ===== グレーアウト ===== */
  --grayed-out-filter: brightness(0) saturate(100%) invert(61.5%);
  --delay-in: 0.25s;
  --delay-out: 0.5s;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
  scroll-padding-top: 18rem;
}
@media (max-width: 1000px) {
  html {
    font-size: 1vw; /* 10px / 1000px * 100 */
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6667vw; /* 10px / 375px * 100 */
    scroll-padding-top: 5rem;
  }
}

body {
  color: var(--color-base-black);
  font-size: 1.6rem;
  font-family: var(--base-font-family);
  line-height: 1.5;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

*:focus {
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  *:focus-visible {
    outline: 3px solid red;
    outline-offset: 3px;
  }
}
button {
  cursor: pointer;
}

.l-spacing {
  margin: 8rem 0;
}
@media (max-width: 767px) {
  .l-spacing {
    margin: 6.4rem 0;
  }
}

.l-spacing-pd {
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .l-spacing-pd {
    padding: 6.4rem 0;
  }
}

.l-inner {
  margin: 0 auto;
  width: var(--inner-width);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .l-inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .l-inner {
    padding: 0 2rem;
    width: 100%;
  }
}

.l-inner-wide {
  margin: 0 auto;
  max-width: var(--inner-width-wide);
  width: 90%;
}
@media (max-width: 767px) {
  .l-inner-wide {
    padding: 0 2rem;
    width: 100%;
  }
}

.l-inner-ex-wide {
  margin: 0 auto;
  max-width: var(--inner-width-ex-wide);
  width: 96%;
}
@media (max-width: 767px) {
  .l-inner-ex-wide {
    padding: 0 2rem;
    width: 100%;
  }
}

.react-map-placeholder {
  background: #BAE4FA;
  min-height: 100vh;
}
.react-map-placeholder.loaded {
  background: transparent;
  min-height: auto;
}

.simplebar-scrollbar::before {
  background-color: var(--color-light-primary);
  opacity: 1 !important;
}

.u-block {
  display: block !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-block-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  body .u-block-sp {
    display: block !important;
  }
}
.u-inline {
  display: inline !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-inline-tab {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-sp {
    display: inline !important;
  }
}
.u-inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-inline-block-tab {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-block-sp {
    display: inline-block !important;
  }
}
.u-flex {
  display: flex !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-flex-tab {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  body .u-flex-sp {
    display: flex !important;
  }
}
.u-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-inline-flex-tab {
    display: inline-flex !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-flex-sp {
    display: inline-flex !important;
  }
}
.u-grid {
  display: grid !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-tab {
    display: grid !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-sp {
    display: grid !important;
  }
}
.u-hidden {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-hidden-tab {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body .u-hidden-sp {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .u-is-pc {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-is-tab {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .u-is-tab {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-is-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-is-pc-tab {
    display: none !important;
  }
}

@media (min-width: 1201px) {
  .u-is-tab-sp {
    display: none !important;
  }
}

.u-grid-cols-none {
  grid-template-columns: none !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-cols-none-tab {
    grid-template-columns: none !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-none-sp {
    grid-template-columns: none !important;
  }
}
.u-grid-cols-1 {
  grid-template-columns: repeat(1, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-cols-1-tab {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-1-sp {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.u-grid-cols-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-cols-2-tab {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-2-sp {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.u-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-cols-3-tab {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-3-sp {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.u-grid-cols-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-cols-4-tab {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-4-sp {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
.u-grid-cols-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-cols-5-tab {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-5-sp {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
.u-grid-cols-6 {
  grid-template-columns: repeat(6, 1fr) !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-grid-cols-6-tab {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-cols-6-sp {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
.u-grid-autofit-160 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.u-grid-autofit-200 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.u-grid-autofit-240 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.u-grid-autofit-300 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.u-grid-autofit-360 {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.u-col-span-full {
  grid-column: span 1/-1 !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-col-span-full-tab {
    grid-column: span 1/-1 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-full-sp {
    grid-column: span 1/-1 !important;
  }
}
.u-col-span-1 {
  grid-column: span 1/span 1 !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-col-span-1-tab {
    grid-column: span 1/span 1 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-1-sp {
    grid-column: span 1/span 1 !important;
  }
}
.u-col-span-2 {
  grid-column: span 2/span 2 !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-col-span-2-tab {
    grid-column: span 2/span 2 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-2-sp {
    grid-column: span 2/span 2 !important;
  }
}
.u-col-span-3 {
  grid-column: span 3/span 3 !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-col-span-3-tab {
    grid-column: span 3/span 3 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-3-sp {
    grid-column: span 3/span 3 !important;
  }
}
.u-col-span-4 {
  grid-column: span 4/span 4 !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-col-span-4-tab {
    grid-column: span 4/span 4 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-4-sp {
    grid-column: span 4/span 4 !important;
  }
}
.u-col-span-5 {
  grid-column: span 5/span 5 !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-col-span-5-tab {
    grid-column: span 5/span 5 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-5-sp {
    grid-column: span 5/span 5 !important;
  }
}
.u-col-span-6 {
  grid-column: span 6/span 6 !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-col-span-6-tab {
    grid-column: span 6/span 6 !important;
  }
}
@media (max-width: 767px) {
  body .u-col-span-6-sp {
    grid-column: span 6/span 6 !important;
  }
}
.u-gap-0 {
  gap: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-0-tab {
    gap: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-0-sp {
    gap: 0rem !important;
  }
}
.u-gap-4 {
  gap: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-4-tab {
    gap: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-4-sp {
    gap: 0.4rem !important;
  }
}
.u-gap-8 {
  gap: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-8-tab {
    gap: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-8-sp {
    gap: 0.8rem !important;
  }
}
.u-gap-12 {
  gap: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-12-tab {
    gap: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-12-sp {
    gap: 1.2rem !important;
  }
}
.u-gap-16 {
  gap: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-16-tab {
    gap: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-16-sp {
    gap: 1.6rem !important;
  }
}
.u-gap-20 {
  gap: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-20-tab {
    gap: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-20-sp {
    gap: 2rem !important;
  }
}
.u-gap-24 {
  gap: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-24-tab {
    gap: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-24-sp {
    gap: 2.4rem !important;
  }
}
.u-gap-28 {
  gap: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-28-tab {
    gap: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-28-sp {
    gap: 2.8rem !important;
  }
}
.u-gap-30 {
  gap: 3rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-30-tab {
    gap: 3rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-30-sp {
    gap: 3rem !important;
  }
}
.u-gap-32 {
  gap: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-32-tab {
    gap: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-32-sp {
    gap: 3.2rem !important;
  }
}
.u-gap-36 {
  gap: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-36-tab {
    gap: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-36-sp {
    gap: 3.6rem !important;
  }
}
.u-gap-40 {
  gap: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-40-tab {
    gap: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-40-sp {
    gap: 4rem !important;
  }
}
.u-gap-48 {
  gap: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-48-tab {
    gap: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-48-sp {
    gap: 4.8rem !important;
  }
}
.u-gap-56 {
  gap: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-56-tab {
    gap: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-56-sp {
    gap: 5.6rem !important;
  }
}
.u-gap-64 {
  gap: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-64-tab {
    gap: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-64-sp {
    gap: 6.4rem !important;
  }
}
.u-gap-72 {
  gap: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-72-tab {
    gap: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-72-sp {
    gap: 7.2rem !important;
  }
}
.u-gap-80 {
  gap: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-gap-80-tab {
    gap: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-gap-80-sp {
    gap: 8rem !important;
  }
}
.u-justify-center {
  justify-content: center !important;
}

.u-justify-between {
  justify-content: space-between !important;
}

.u-items-center {
  align-items: center !important;
}

.u-flex-row {
  flex-direction: row !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-flex-row-tab {
    flex-direction: row !important;
  }
}
@media (max-width: 767px) {
  body .u-flex-row-sp {
    flex-direction: row !important;
  }
}
.u-flex-col {
  flex-direction: column !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-flex-col-tab {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  body .u-flex-col-sp {
    flex-direction: column !important;
  }
}
.u-font-normal {
  font-weight: 400 !important;
}

.u-font-midium {
  font-weight: 500 !important;
}

.u-font-bold {
  font-weight: 700 !important;
}

.u-text-left {
  text-align: left !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-left-tab {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  body .u-text-left-sp {
    text-align: left !important;
  }
}
.u-text-center {
  text-align: center !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-center-tab {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  body .u-text-center-sp {
    text-align: center !important;
  }
}
.u-text-right {
  text-align: right !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-right-tab {
    text-align: right !important;
  }
}
@media (max-width: 767px) {
  body .u-text-right-sp {
    text-align: right !important;
  }
}
.u-text-xs {
  font-size: 1.2rem !important;
}
@media (max-width: 767px) {
  .u-text-xs {
    font-size: 1rem !important;
  }
}

.u-text-sm {
  font-size: 1.4rem !important;
}
@media (max-width: 767px) {
  .u-text-sm {
    font-size: 1.2rem !important;
  }
}

.u-text-md {
  font-size: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-text-md {
    font-size: 1.4rem !important;
  }
}

.u-text-lg {
  font-size: 1.8rem !important;
}
@media (max-width: 767px) {
  .u-text-lg {
    font-size: 1.6rem !important;
  }
}

.u-text-xl {
  font-size: 2rem !important;
}
@media (max-width: 767px) {
  .u-text-xl {
    font-size: 1.8rem !important;
  }
}

.u-text-2xl {
  font-size: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-text-2xl {
    font-size: 2rem !important;
  }
}

.u-text-3xl {
  font-size: 3rem !important;
}
@media (max-width: 767px) {
  .u-text-3xl {
    font-size: 2.4rem !important;
  }
}

.u-text-10 {
  font-size: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-10-tab {
    font-size: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-10-sp {
    font-size: 1rem !important;
  }
}
.u-text-12 {
  font-size: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-12-tab {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-12-sp {
    font-size: 1.2rem !important;
  }
}
.u-text-14 {
  font-size: 1.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-14-tab {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-14-sp {
    font-size: 1.4rem !important;
  }
}
.u-text-16 {
  font-size: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-16-tab {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-16-sp {
    font-size: 1.6rem !important;
  }
}
.u-text-18 {
  font-size: 1.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-18-tab {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-18-sp {
    font-size: 1.8rem !important;
  }
}
.u-text-20 {
  font-size: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-20-tab {
    font-size: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-20-sp {
    font-size: 2rem !important;
  }
}
.u-text-24 {
  font-size: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-24-tab {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-24-sp {
    font-size: 2.4rem !important;
  }
}
.u-text-30 {
  font-size: 3rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-text-30-tab {
    font-size: 3rem !important;
  }
}
@media (max-width: 767px) {
  body .u-text-30-sp {
    font-size: 3rem !important;
  }
}
.u-link {
  color: var(--color-primary);
  text-decoration: none;
}
.u-link:hover {
  text-decoration: underline;
}

.u-text-line-through-double {
  text-decoration-line: line-through;
  text-decoration-style: double;
  text-decoration-skip-ink: none;
}

.u-ul-default {
  margin: 1rem 0;
  padding-left: 4rem;
  list-style-type: disc;
}
.u-ul-default li {
  list-style: inherit;
}

.u-ol-default {
  margin: 1rem 0;
  padding-left: 4rem;
  list-style-type: decimal;
}
.u-ol-default li {
  list-style: inherit;
}

.u-ul-asterisk {
  list-style: none;
  padding-left: 0;
}
.u-ul-asterisk > li {
  position: relative;
  padding-left: 1em;
}
.u-ul-asterisk > li::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-ul-asterisk--num {
  counter-reset: asterisk;
}
.u-ul-asterisk--num > li {
  padding-left: 2em;
  counter-increment: asterisk;
}
.u-ul-asterisk--num > li::before {
  content: "※" counter(asterisk);
}
.u-ul-asterisk--square > li {
  padding-left: 1.5em;
}
.u-ul-asterisk--square > li::before {
  content: "■";
}

.u-input, .u-textarea {
  display: inline-block;
  width: 100%;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: inherit;
  font: inherit;
}
.u-input:focus, .u-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.u-textarea {
  resize: vertical;
  min-height: 4rem;
}

.u-button {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: var(--color-primary);
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-align: center;
}
.u-button:hover {
  border: 1px solid color-mix(in srgb, var(--color-primary) 90%, black);
  background-color: color-mix(in srgb, var(--color-primary) 90%, black);
}
.u-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.u-default-checkbox {
  appearance: auto;
  -webkit-appearance: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.u-default-radio {
  appearance: auto;
  -webkit-appearance: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.u-select {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.u-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.u-aspect-square {
  aspect-ratio: 1 !important;
}

.u-aspect-16x9 {
  aspect-ratio: 1.7777777778 !important;
}

.u-aspect-4x3 {
  aspect-ratio: 1.3333333333 !important;
}

.u-aspect-3x2 {
  aspect-ratio: 1.5 !important;
}

.u-aspect-2x3 {
  aspect-ratio: 0.6666666667 !important;
}

.u-aspect-3x4 {
  aspect-ratio: 0.75 !important;
}

.u-aspect-9x16 {
  aspect-ratio: 0.5625 !important;
}

.u-w-auto {
  width: auto !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-w-auto-tab {
    width: auto !important;
  }
}
@media (max-width: 767px) {
  body .u-w-auto-sp {
    width: auto !important;
  }
}
.u-w-full {
  width: 100% !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-w-full-tab {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  body .u-w-full-sp {
    width: 100% !important;
  }
}
.u-w-screen {
  width: 100vw !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-w-screen-tab {
    width: 100vw !important;
  }
}
@media (max-width: 767px) {
  body .u-w-screen-sp {
    width: 100vw !important;
  }
}
.u-h-auto {
  height: auto !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-h-auto-tab {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  body .u-h-auto-sp {
    height: auto !important;
  }
}
.u-h-full {
  height: 100% !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-h-full-tab {
    height: 100% !important;
  }
}
@media (max-width: 767px) {
  body .u-h-full-sp {
    height: 100% !important;
  }
}
.u-h-screen {
  height: 100vh !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-h-screen-tab {
    height: 100vh !important;
  }
}
@media (max-width: 767px) {
  body .u-h-screen-sp {
    height: 100vh !important;
  }
}
.u-mt-0 {
  margin-top: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-0-tab {
    margin-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-0-sp {
    margin-top: 0rem !important;
  }
}
.u-mb-0 {
  margin-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-0-tab {
    margin-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-0-sp {
    margin-bottom: 0rem !important;
  }
}
.u-my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-0-tab {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-0-sp {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-0-tab {
    padding-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-0-sp {
    padding-top: 0rem !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-0-tab {
    padding-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-0-sp {
    padding-bottom: 0rem !important;
  }
}
.u-py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-0-tab {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-0-sp {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}
.u-mt-4 {
  margin-top: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-4-tab {
    margin-top: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-4-sp {
    margin-top: 0.4rem !important;
  }
}
.u-mb-4 {
  margin-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-4-tab {
    margin-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-4-sp {
    margin-bottom: 0.4rem !important;
  }
}
.u-my-4 {
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-4-tab {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-4-sp {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}
.u-pt-4 {
  padding-top: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-4-tab {
    padding-top: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-4-sp {
    padding-top: 0.4rem !important;
  }
}
.u-pb-4 {
  padding-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-4-tab {
    padding-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-4-sp {
    padding-bottom: 0.4rem !important;
  }
}
.u-py-4 {
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-4-tab {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-4-sp {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}
.u-mt-8 {
  margin-top: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-8-tab {
    margin-top: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-8-sp {
    margin-top: 0.8rem !important;
  }
}
.u-mb-8 {
  margin-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-8-tab {
    margin-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-8-sp {
    margin-bottom: 0.8rem !important;
  }
}
.u-my-8 {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-8-tab {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-8-sp {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}
.u-pt-8 {
  padding-top: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-8-tab {
    padding-top: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-8-sp {
    padding-top: 0.8rem !important;
  }
}
.u-pb-8 {
  padding-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-8-tab {
    padding-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-8-sp {
    padding-bottom: 0.8rem !important;
  }
}
.u-py-8 {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-8-tab {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-8-sp {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}
.u-mt-10 {
  margin-top: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-10-tab {
    margin-top: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-10-sp {
    margin-top: 1rem !important;
  }
}
.u-mb-10 {
  margin-bottom: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-10-tab {
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-10-sp {
    margin-bottom: 1rem !important;
  }
}
.u-my-10 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-10-tab {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-10-sp {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
}
.u-pt-10 {
  padding-top: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-10-tab {
    padding-top: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-10-sp {
    padding-top: 1rem !important;
  }
}
.u-pb-10 {
  padding-bottom: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-10-tab {
    padding-bottom: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-10-sp {
    padding-bottom: 1rem !important;
  }
}
.u-py-10 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-10-tab {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-10-sp {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
.u-mt-12 {
  margin-top: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-12-tab {
    margin-top: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-12-sp {
    margin-top: 1.2rem !important;
  }
}
.u-mb-12 {
  margin-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-12-tab {
    margin-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-12-sp {
    margin-bottom: 1.2rem !important;
  }
}
.u-my-12 {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-12-tab {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-12-sp {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
}
.u-pt-12 {
  padding-top: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-12-tab {
    padding-top: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-12-sp {
    padding-top: 1.2rem !important;
  }
}
.u-pb-12 {
  padding-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-12-tab {
    padding-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-12-sp {
    padding-bottom: 1.2rem !important;
  }
}
.u-py-12 {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-12-tab {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-12-sp {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
.u-mt-16 {
  margin-top: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-16-tab {
    margin-top: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-16-sp {
    margin-top: 1.6rem !important;
  }
}
.u-mb-16 {
  margin-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-16-tab {
    margin-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-16-sp {
    margin-bottom: 1.6rem !important;
  }
}
.u-my-16 {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-16-tab {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-16-sp {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}
.u-pt-16 {
  padding-top: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-16-tab {
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-16-sp {
    padding-top: 1.6rem !important;
  }
}
.u-pb-16 {
  padding-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-16-tab {
    padding-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-16-sp {
    padding-bottom: 1.6rem !important;
  }
}
.u-py-16 {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-16-tab {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-16-sp {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}
.u-mt-20 {
  margin-top: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-20-tab {
    margin-top: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-20-sp {
    margin-top: 2rem !important;
  }
}
.u-mb-20 {
  margin-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-20-tab {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-20-sp {
    margin-bottom: 2rem !important;
  }
}
.u-my-20 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-20-tab {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-20-sp {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
.u-pt-20 {
  padding-top: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-20-tab {
    padding-top: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-20-sp {
    padding-top: 2rem !important;
  }
}
.u-pb-20 {
  padding-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-20-tab {
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-20-sp {
    padding-bottom: 2rem !important;
  }
}
.u-py-20 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-20-tab {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-20-sp {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
.u-mt-24 {
  margin-top: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-24-tab {
    margin-top: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-24-sp {
    margin-top: 2.4rem !important;
  }
}
.u-mb-24 {
  margin-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-24-tab {
    margin-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-24-sp {
    margin-bottom: 2.4rem !important;
  }
}
.u-my-24 {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-24-tab {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-24-sp {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
.u-pt-24 {
  padding-top: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-24-tab {
    padding-top: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-24-sp {
    padding-top: 2.4rem !important;
  }
}
.u-pb-24 {
  padding-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-24-tab {
    padding-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-24-sp {
    padding-bottom: 2.4rem !important;
  }
}
.u-py-24 {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-24-tab {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-24-sp {
    padding-top: 2.4rem !important;
    padding-bottom: 2.4rem !important;
  }
}
.u-mt-28 {
  margin-top: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-28-tab {
    margin-top: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-28-sp {
    margin-top: 2.8rem !important;
  }
}
.u-mb-28 {
  margin-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-28-tab {
    margin-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-28-sp {
    margin-bottom: 2.8rem !important;
  }
}
.u-my-28 {
  margin-top: 2.8rem !important;
  margin-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-28-tab {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-28-sp {
    margin-top: 2.8rem !important;
    margin-bottom: 2.8rem !important;
  }
}
.u-pt-28 {
  padding-top: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-28-tab {
    padding-top: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-28-sp {
    padding-top: 2.8rem !important;
  }
}
.u-pb-28 {
  padding-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-28-tab {
    padding-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-28-sp {
    padding-bottom: 2.8rem !important;
  }
}
.u-py-28 {
  padding-top: 2.8rem !important;
  padding-bottom: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-28-tab {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-28-sp {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }
}
.u-mt-32 {
  margin-top: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-32-tab {
    margin-top: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-32-sp {
    margin-top: 3.2rem !important;
  }
}
.u-mb-32 {
  margin-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-32-tab {
    margin-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-32-sp {
    margin-bottom: 3.2rem !important;
  }
}
.u-my-32 {
  margin-top: 3.2rem !important;
  margin-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-32-tab {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-32-sp {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}
.u-pt-32 {
  padding-top: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-32-tab {
    padding-top: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-32-sp {
    padding-top: 3.2rem !important;
  }
}
.u-pb-32 {
  padding-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-32-tab {
    padding-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-32-sp {
    padding-bottom: 3.2rem !important;
  }
}
.u-py-32 {
  padding-top: 3.2rem !important;
  padding-bottom: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-32-tab {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-32-sp {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}
.u-mt-36 {
  margin-top: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-36-tab {
    margin-top: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-36-sp {
    margin-top: 3.6rem !important;
  }
}
.u-mb-36 {
  margin-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-36-tab {
    margin-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-36-sp {
    margin-bottom: 3.6rem !important;
  }
}
.u-my-36 {
  margin-top: 3.6rem !important;
  margin-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-36-tab {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-36-sp {
    margin-top: 3.6rem !important;
    margin-bottom: 3.6rem !important;
  }
}
.u-pt-36 {
  padding-top: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-36-tab {
    padding-top: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-36-sp {
    padding-top: 3.6rem !important;
  }
}
.u-pb-36 {
  padding-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-36-tab {
    padding-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-36-sp {
    padding-bottom: 3.6rem !important;
  }
}
.u-py-36 {
  padding-top: 3.6rem !important;
  padding-bottom: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-36-tab {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-36-sp {
    padding-top: 3.6rem !important;
    padding-bottom: 3.6rem !important;
  }
}
.u-mt-40 {
  margin-top: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-40-tab {
    margin-top: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-40-sp {
    margin-top: 4rem !important;
  }
}
.u-mb-40 {
  margin-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-40-tab {
    margin-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-40-sp {
    margin-bottom: 4rem !important;
  }
}
.u-my-40 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-40-tab {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-40-sp {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
}
.u-pt-40 {
  padding-top: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-40-tab {
    padding-top: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-40-sp {
    padding-top: 4rem !important;
  }
}
.u-pb-40 {
  padding-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-40-tab {
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-40-sp {
    padding-bottom: 4rem !important;
  }
}
.u-py-40 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-40-tab {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-40-sp {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}
.u-mt-48 {
  margin-top: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-48-tab {
    margin-top: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-48-sp {
    margin-top: 4.8rem !important;
  }
}
.u-mb-48 {
  margin-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-48-tab {
    margin-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-48-sp {
    margin-bottom: 4.8rem !important;
  }
}
.u-my-48 {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-48-tab {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-48-sp {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}
.u-pt-48 {
  padding-top: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-48-tab {
    padding-top: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-48-sp {
    padding-top: 4.8rem !important;
  }
}
.u-pb-48 {
  padding-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-48-tab {
    padding-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-48-sp {
    padding-bottom: 4.8rem !important;
  }
}
.u-py-48 {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-48-tab {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-48-sp {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}
.u-mt-50 {
  margin-top: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-50-tab {
    margin-top: 5rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-50-sp {
    margin-top: 5rem !important;
  }
}
.u-mb-50 {
  margin-bottom: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-50-tab {
    margin-bottom: 5rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-50-sp {
    margin-bottom: 5rem !important;
  }
}
.u-my-50 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-50-tab {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-50-sp {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
}
.u-pt-50 {
  padding-top: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-50-tab {
    padding-top: 5rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-50-sp {
    padding-top: 5rem !important;
  }
}
.u-pb-50 {
  padding-bottom: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-50-tab {
    padding-bottom: 5rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-50-sp {
    padding-bottom: 5rem !important;
  }
}
.u-py-50 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-50-tab {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-50-sp {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
.u-mt-56 {
  margin-top: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-56-tab {
    margin-top: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-56-sp {
    margin-top: 5.6rem !important;
  }
}
.u-mb-56 {
  margin-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-56-tab {
    margin-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-56-sp {
    margin-bottom: 5.6rem !important;
  }
}
.u-my-56 {
  margin-top: 5.6rem !important;
  margin-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-56-tab {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-56-sp {
    margin-top: 5.6rem !important;
    margin-bottom: 5.6rem !important;
  }
}
.u-pt-56 {
  padding-top: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-56-tab {
    padding-top: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-56-sp {
    padding-top: 5.6rem !important;
  }
}
.u-pb-56 {
  padding-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-56-tab {
    padding-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-56-sp {
    padding-bottom: 5.6rem !important;
  }
}
.u-py-56 {
  padding-top: 5.6rem !important;
  padding-bottom: 5.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-56-tab {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-56-sp {
    padding-top: 5.6rem !important;
    padding-bottom: 5.6rem !important;
  }
}
.u-mt-64 {
  margin-top: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-64-tab {
    margin-top: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-64-sp {
    margin-top: 6.4rem !important;
  }
}
.u-mb-64 {
  margin-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-64-tab {
    margin-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-64-sp {
    margin-bottom: 6.4rem !important;
  }
}
.u-my-64 {
  margin-top: 6.4rem !important;
  margin-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-64-tab {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-64-sp {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }
}
.u-pt-64 {
  padding-top: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-64-tab {
    padding-top: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-64-sp {
    padding-top: 6.4rem !important;
  }
}
.u-pb-64 {
  padding-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-64-tab {
    padding-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-64-sp {
    padding-bottom: 6.4rem !important;
  }
}
.u-py-64 {
  padding-top: 6.4rem !important;
  padding-bottom: 6.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-64-tab {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-64-sp {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }
}
.u-mt-72 {
  margin-top: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-72-tab {
    margin-top: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-72-sp {
    margin-top: 7.2rem !important;
  }
}
.u-mb-72 {
  margin-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-72-tab {
    margin-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-72-sp {
    margin-bottom: 7.2rem !important;
  }
}
.u-my-72 {
  margin-top: 7.2rem !important;
  margin-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-72-tab {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-72-sp {
    margin-top: 7.2rem !important;
    margin-bottom: 7.2rem !important;
  }
}
.u-pt-72 {
  padding-top: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-72-tab {
    padding-top: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-72-sp {
    padding-top: 7.2rem !important;
  }
}
.u-pb-72 {
  padding-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-72-tab {
    padding-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-72-sp {
    padding-bottom: 7.2rem !important;
  }
}
.u-py-72 {
  padding-top: 7.2rem !important;
  padding-bottom: 7.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-72-tab {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-72-sp {
    padding-top: 7.2rem !important;
    padding-bottom: 7.2rem !important;
  }
}
.u-mt-80 {
  margin-top: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-80-tab {
    margin-top: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-80-sp {
    margin-top: 8rem !important;
  }
}
.u-mb-80 {
  margin-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-80-tab {
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-80-sp {
    margin-bottom: 8rem !important;
  }
}
.u-my-80 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-80-tab {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-80-sp {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}
.u-pt-80 {
  padding-top: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-80-tab {
    padding-top: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-80-sp {
    padding-top: 8rem !important;
  }
}
.u-pb-80 {
  padding-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-80-tab {
    padding-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-80-sp {
    padding-bottom: 8rem !important;
  }
}
.u-py-80 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-80-tab {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-80-sp {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}
.u-mt-96 {
  margin-top: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-96-tab {
    margin-top: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-96-sp {
    margin-top: 9.6rem !important;
  }
}
.u-mb-96 {
  margin-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-96-tab {
    margin-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-96-sp {
    margin-bottom: 9.6rem !important;
  }
}
.u-my-96 {
  margin-top: 9.6rem !important;
  margin-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-96-tab {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-96-sp {
    margin-top: 9.6rem !important;
    margin-bottom: 9.6rem !important;
  }
}
.u-pt-96 {
  padding-top: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-96-tab {
    padding-top: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-96-sp {
    padding-top: 9.6rem !important;
  }
}
.u-pb-96 {
  padding-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-96-tab {
    padding-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-96-sp {
    padding-bottom: 9.6rem !important;
  }
}
.u-py-96 {
  padding-top: 9.6rem !important;
  padding-bottom: 9.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-96-tab {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-96-sp {
    padding-top: 9.6rem !important;
    padding-bottom: 9.6rem !important;
  }
}
.u-mt-112 {
  margin-top: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-112-tab {
    margin-top: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-112-sp {
    margin-top: 11.2rem !important;
  }
}
.u-mb-112 {
  margin-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-112-tab {
    margin-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-112-sp {
    margin-bottom: 11.2rem !important;
  }
}
.u-my-112 {
  margin-top: 11.2rem !important;
  margin-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-112-tab {
    margin-top: 11.2rem !important;
    margin-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-112-sp {
    margin-top: 11.2rem !important;
    margin-bottom: 11.2rem !important;
  }
}
.u-pt-112 {
  padding-top: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-112-tab {
    padding-top: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-112-sp {
    padding-top: 11.2rem !important;
  }
}
.u-pb-112 {
  padding-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-112-tab {
    padding-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-112-sp {
    padding-bottom: 11.2rem !important;
  }
}
.u-py-112 {
  padding-top: 11.2rem !important;
  padding-bottom: 11.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-112-tab {
    padding-top: 11.2rem !important;
    padding-bottom: 11.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-112-sp {
    padding-top: 11.2rem !important;
    padding-bottom: 11.2rem !important;
  }
}
.u-mt-120 {
  margin-top: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-120-tab {
    margin-top: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-120-sp {
    margin-top: 12rem !important;
  }
}
.u-mb-120 {
  margin-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-120-tab {
    margin-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-120-sp {
    margin-bottom: 12rem !important;
  }
}
.u-my-120 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-120-tab {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-120-sp {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
}
.u-pt-120 {
  padding-top: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-120-tab {
    padding-top: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-120-sp {
    padding-top: 12rem !important;
  }
}
.u-pb-120 {
  padding-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-120-tab {
    padding-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-120-sp {
    padding-bottom: 12rem !important;
  }
}
.u-py-120 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-120-tab {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-120-sp {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
}
.u-mt-128 {
  margin-top: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mt-128-tab {
    margin-top: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mt-128-sp {
    margin-top: 12.8rem !important;
  }
}
.u-mb-128 {
  margin-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mb-128-tab {
    margin-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mb-128-sp {
    margin-bottom: 12.8rem !important;
  }
}
.u-my-128 {
  margin-top: 12.8rem !important;
  margin-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-my-128-tab {
    margin-top: 12.8rem !important;
    margin-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-my-128-sp {
    margin-top: 12.8rem !important;
    margin-bottom: 12.8rem !important;
  }
}
.u-pt-128 {
  padding-top: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pt-128-tab {
    padding-top: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pt-128-sp {
    padding-top: 12.8rem !important;
  }
}
.u-pb-128 {
  padding-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pb-128-tab {
    padding-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pb-128-sp {
    padding-bottom: 12.8rem !important;
  }
}
.u-py-128 {
  padding-top: 12.8rem !important;
  padding-bottom: 12.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-py-128-tab {
    padding-top: 12.8rem !important;
    padding-bottom: 12.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-py-128-sp {
    padding-top: 12.8rem !important;
    padding-bottom: 12.8rem !important;
  }
}
.u-ml-0 {
  margin-left: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-0-tab {
    margin-left: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-0-sp {
    margin-left: 0rem !important;
  }
}
.u-mr-0 {
  margin-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-0-tab {
    margin-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-0-sp {
    margin-right: 0rem !important;
  }
}
.u-mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-0-tab {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-0-sp {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}
.u-pl-0 {
  padding-left: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-0-tab {
    padding-left: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-0-sp {
    padding-left: 0rem !important;
  }
}
.u-pr-0 {
  padding-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-0-tab {
    padding-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-0-sp {
    padding-right: 0rem !important;
  }
}
.u-px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-0-tab {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-0-sp {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}
.u-ml-4 {
  margin-left: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-4-tab {
    margin-left: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-4-sp {
    margin-left: 0.4rem !important;
  }
}
.u-mr-4 {
  margin-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-4-tab {
    margin-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-4-sp {
    margin-right: 0.4rem !important;
  }
}
.u-mx-4 {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-4-tab {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-4-sp {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }
}
.u-pl-4 {
  padding-left: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-4-tab {
    padding-left: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-4-sp {
    padding-left: 0.4rem !important;
  }
}
.u-pr-4 {
  padding-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-4-tab {
    padding-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-4-sp {
    padding-right: 0.4rem !important;
  }
}
.u-px-4 {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-4-tab {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-4-sp {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
}
.u-ml-8 {
  margin-left: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-8-tab {
    margin-left: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-8-sp {
    margin-left: 0.8rem !important;
  }
}
.u-mr-8 {
  margin-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-8-tab {
    margin-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-8-sp {
    margin-right: 0.8rem !important;
  }
}
.u-mx-8 {
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-8-tab {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-8-sp {
    margin-left: 0.8rem !important;
    margin-right: 0.8rem !important;
  }
}
.u-pl-8 {
  padding-left: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-8-tab {
    padding-left: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-8-sp {
    padding-left: 0.8rem !important;
  }
}
.u-pr-8 {
  padding-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-8-tab {
    padding-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-8-sp {
    padding-right: 0.8rem !important;
  }
}
.u-px-8 {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-8-tab {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-8-sp {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
}
.u-ml-10 {
  margin-left: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-10-tab {
    margin-left: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-10-sp {
    margin-left: 1rem !important;
  }
}
.u-mr-10 {
  margin-right: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-10-tab {
    margin-right: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-10-sp {
    margin-right: 1rem !important;
  }
}
.u-mx-10 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-10-tab {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-10-sp {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.u-pl-10 {
  padding-left: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-10-tab {
    padding-left: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-10-sp {
    padding-left: 1rem !important;
  }
}
.u-pr-10 {
  padding-right: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-10-tab {
    padding-right: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-10-sp {
    padding-right: 1rem !important;
  }
}
.u-px-10 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-10-tab {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-10-sp {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.u-ml-12 {
  margin-left: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-12-tab {
    margin-left: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-12-sp {
    margin-left: 1.2rem !important;
  }
}
.u-mr-12 {
  margin-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-12-tab {
    margin-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-12-sp {
    margin-right: 1.2rem !important;
  }
}
.u-mx-12 {
  margin-left: 1.2rem !important;
  margin-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-12-tab {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-12-sp {
    margin-left: 1.2rem !important;
    margin-right: 1.2rem !important;
  }
}
.u-pl-12 {
  padding-left: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-12-tab {
    padding-left: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-12-sp {
    padding-left: 1.2rem !important;
  }
}
.u-pr-12 {
  padding-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-12-tab {
    padding-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-12-sp {
    padding-right: 1.2rem !important;
  }
}
.u-px-12 {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-12-tab {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-12-sp {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}
.u-ml-16 {
  margin-left: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-16-tab {
    margin-left: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-16-sp {
    margin-left: 1.6rem !important;
  }
}
.u-mr-16 {
  margin-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-16-tab {
    margin-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-16-sp {
    margin-right: 1.6rem !important;
  }
}
.u-mx-16 {
  margin-left: 1.6rem !important;
  margin-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-16-tab {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-16-sp {
    margin-left: 1.6rem !important;
    margin-right: 1.6rem !important;
  }
}
.u-pl-16 {
  padding-left: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-16-tab {
    padding-left: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-16-sp {
    padding-left: 1.6rem !important;
  }
}
.u-pr-16 {
  padding-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-16-tab {
    padding-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-16-sp {
    padding-right: 1.6rem !important;
  }
}
.u-px-16 {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-16-tab {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-16-sp {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
}
.u-ml-20 {
  margin-left: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-20-tab {
    margin-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-20-sp {
    margin-left: 2rem !important;
  }
}
.u-mr-20 {
  margin-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-20-tab {
    margin-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-20-sp {
    margin-right: 2rem !important;
  }
}
.u-mx-20 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-20-tab {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-20-sp {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.u-pl-20 {
  padding-left: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-20-tab {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-20-sp {
    padding-left: 2rem !important;
  }
}
.u-pr-20 {
  padding-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-20-tab {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-20-sp {
    padding-right: 2rem !important;
  }
}
.u-px-20 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-20-tab {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-20-sp {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
.u-ml-24 {
  margin-left: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-24-tab {
    margin-left: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-24-sp {
    margin-left: 2.4rem !important;
  }
}
.u-mr-24 {
  margin-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-24-tab {
    margin-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-24-sp {
    margin-right: 2.4rem !important;
  }
}
.u-mx-24 {
  margin-left: 2.4rem !important;
  margin-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-24-tab {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-24-sp {
    margin-left: 2.4rem !important;
    margin-right: 2.4rem !important;
  }
}
.u-pl-24 {
  padding-left: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-24-tab {
    padding-left: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-24-sp {
    padding-left: 2.4rem !important;
  }
}
.u-pr-24 {
  padding-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-24-tab {
    padding-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-24-sp {
    padding-right: 2.4rem !important;
  }
}
.u-px-24 {
  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-24-tab {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-24-sp {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
}
.u-ml-28 {
  margin-left: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-28-tab {
    margin-left: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-28-sp {
    margin-left: 2.8rem !important;
  }
}
.u-mr-28 {
  margin-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-28-tab {
    margin-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-28-sp {
    margin-right: 2.8rem !important;
  }
}
.u-mx-28 {
  margin-left: 2.8rem !important;
  margin-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-28-tab {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-28-sp {
    margin-left: 2.8rem !important;
    margin-right: 2.8rem !important;
  }
}
.u-pl-28 {
  padding-left: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-28-tab {
    padding-left: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-28-sp {
    padding-left: 2.8rem !important;
  }
}
.u-pr-28 {
  padding-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-28-tab {
    padding-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-28-sp {
    padding-right: 2.8rem !important;
  }
}
.u-px-28 {
  padding-left: 2.8rem !important;
  padding-right: 2.8rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-28-tab {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-28-sp {
    padding-left: 2.8rem !important;
    padding-right: 2.8rem !important;
  }
}
.u-ml-32 {
  margin-left: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-32-tab {
    margin-left: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-32-sp {
    margin-left: 3.2rem !important;
  }
}
.u-mr-32 {
  margin-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-32-tab {
    margin-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-32-sp {
    margin-right: 3.2rem !important;
  }
}
.u-mx-32 {
  margin-left: 3.2rem !important;
  margin-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-32-tab {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-32-sp {
    margin-left: 3.2rem !important;
    margin-right: 3.2rem !important;
  }
}
.u-pl-32 {
  padding-left: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-32-tab {
    padding-left: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-32-sp {
    padding-left: 3.2rem !important;
  }
}
.u-pr-32 {
  padding-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-32-tab {
    padding-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-32-sp {
    padding-right: 3.2rem !important;
  }
}
.u-px-32 {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-32-tab {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-32-sp {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
}
.u-ml-36 {
  margin-left: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-36-tab {
    margin-left: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-36-sp {
    margin-left: 3.6rem !important;
  }
}
.u-mr-36 {
  margin-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-36-tab {
    margin-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-36-sp {
    margin-right: 3.6rem !important;
  }
}
.u-mx-36 {
  margin-left: 3.6rem !important;
  margin-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-36-tab {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-36-sp {
    margin-left: 3.6rem !important;
    margin-right: 3.6rem !important;
  }
}
.u-pl-36 {
  padding-left: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-36-tab {
    padding-left: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-36-sp {
    padding-left: 3.6rem !important;
  }
}
.u-pr-36 {
  padding-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-36-tab {
    padding-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-36-sp {
    padding-right: 3.6rem !important;
  }
}
.u-px-36 {
  padding-left: 3.6rem !important;
  padding-right: 3.6rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-36-tab {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-36-sp {
    padding-left: 3.6rem !important;
    padding-right: 3.6rem !important;
  }
}
.u-ml-40 {
  margin-left: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-ml-40-tab {
    margin-left: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-ml-40-sp {
    margin-left: 4rem !important;
  }
}
.u-mr-40 {
  margin-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mr-40-tab {
    margin-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mr-40-sp {
    margin-right: 4rem !important;
  }
}
.u-mx-40 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-mx-40-tab {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-mx-40-sp {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
.u-pl-40 {
  padding-left: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pl-40-tab {
    padding-left: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pl-40-sp {
    padding-left: 4rem !important;
  }
}
.u-pr-40 {
  padding-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-pr-40-tab {
    padding-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-pr-40-sp {
    padding-right: 4rem !important;
  }
}
.u-px-40 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

@media (min-width: 768px) and (max-width: 1200px) {
  body .u-px-40-tab {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .u-px-40-sp {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
.u-my-xs {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-my-xs {
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
}

.u-mt-xs {
  margin-top: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-mt-xs {
    margin-top: 0.4rem !important;
  }
}

.u-mb-xs {
  margin-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-mb-xs {
    margin-bottom: 0.4rem !important;
  }
}

.u-py-xs {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-py-xs {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
}

.u-pt-xs {
  padding-top: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-pt-xs {
    padding-top: 0.4rem !important;
  }
}

.u-pb-xs {
  padding-bottom: 0.8rem !important;
}
@media (max-width: 767px) {
  .u-pb-xs {
    padding-bottom: 0.4rem !important;
  }
}

.u-my-sm {
  margin-top: 1.6rem !important;
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-my-sm {
    margin-top: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
}

.u-mt-sm {
  margin-top: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-mt-sm {
    margin-top: 0.8rem !important;
  }
}

.u-mb-sm {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-mb-sm {
    margin-bottom: 0.8rem !important;
  }
}

.u-py-sm {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-py-sm {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
  }
}

.u-pt-sm {
  padding-top: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-pt-sm {
    padding-top: 0.8rem !important;
  }
}

.u-pb-sm {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .u-pb-sm {
    padding-bottom: 0.8rem !important;
  }
}

.u-my-md {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-my-md {
    margin-top: 1.6rem !important;
    margin-bottom: 1.6rem !important;
  }
}

.u-mt-md {
  margin-top: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-mt-md {
    margin-top: 1.6rem !important;
  }
}

.u-mb-md {
  margin-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-mb-md {
    margin-bottom: 1.6rem !important;
  }
}

.u-py-md {
  padding-top: 2.4rem !important;
  padding-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-py-md {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
}

.u-pt-md {
  padding-top: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-pt-md {
    padding-top: 1.6rem !important;
  }
}

.u-pb-md {
  padding-bottom: 2.4rem !important;
}
@media (max-width: 767px) {
  .u-pb-md {
    padding-bottom: 1.6rem !important;
  }
}

.u-my-lg {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-my-lg {
    margin-top: 3.2rem !important;
    margin-bottom: 3.2rem !important;
  }
}

.u-mt-lg {
  margin-top: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-mt-lg {
    margin-top: 3.2rem !important;
  }
}

.u-mb-lg {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-mb-lg {
    margin-bottom: 3.2rem !important;
  }
}

.u-py-lg {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-py-lg {
    padding-top: 3.2rem !important;
    padding-bottom: 3.2rem !important;
  }
}

.u-pt-lg {
  padding-top: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-pt-lg {
    padding-top: 3.2rem !important;
  }
}

.u-pb-lg {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .u-pb-lg {
    padding-bottom: 3.2rem !important;
  }
}

.u-my-xl {
  margin-top: 7.2rem !important;
  margin-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-my-xl {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
}

.u-mt-xl {
  margin-top: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-mt-xl {
    margin-top: 4.8rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-mb-xl {
    margin-bottom: 4.8rem !important;
  }
}

.u-py-xl {
  padding-top: 7.2rem !important;
  padding-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-py-xl {
    padding-top: 4.8rem !important;
    padding-bottom: 4.8rem !important;
  }
}

.u-pt-xl {
  padding-top: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-pt-xl {
    padding-top: 4.8rem !important;
  }
}

.u-pb-xl {
  padding-bottom: 7.2rem !important;
}
@media (max-width: 767px) {
  .u-pb-xl {
    padding-bottom: 4.8rem !important;
  }
}

.u-my-2xl {
  margin-top: 9.6rem !important;
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-my-2xl {
    margin-top: 6.4rem !important;
    margin-bottom: 6.4rem !important;
  }
}

.u-mt-2xl {
  margin-top: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-mt-2xl {
    margin-top: 6.4rem !important;
  }
}

.u-mb-2xl {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-mb-2xl {
    margin-bottom: 6.4rem !important;
  }
}

.u-py-2xl {
  padding-top: 9.6rem !important;
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-py-2xl {
    padding-top: 6.4rem !important;
    padding-bottom: 6.4rem !important;
  }
}

.u-pt-2xl {
  padding-top: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-pt-2xl {
    padding-top: 6.4rem !important;
  }
}

.u-pb-2xl {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .u-pb-2xl {
    padding-bottom: 6.4rem !important;
  }
}

.u-my-3xl {
  margin-top: 12.8rem !important;
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-my-3xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
}

.u-mt-3xl {
  margin-top: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-mt-3xl {
    margin-top: 8rem !important;
  }
}

.u-mb-3xl {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-mb-3xl {
    margin-bottom: 8rem !important;
  }
}

.u-py-3xl {
  padding-top: 12.8rem !important;
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-py-3xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
}

.u-pt-3xl {
  padding-top: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-pt-3xl {
    padding-top: 8rem !important;
  }
}

.u-pb-3xl {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .u-pb-3xl {
    padding-bottom: 8rem !important;
  }
}

/* コンポーネントやページのスタイルを追加する場合は、以下のように@useを追加してください。
 * 例: @use './components/button';
 *     @use './pages/home';
 *
 * 注意: 各ファイルはsrc/styles/components/やsrc/styles/pages/に配置してください。
 */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: var(--color-base-white);
}
.header__main {
  padding: 2.2rem 4rem 1.2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header__main {
    padding: 2.2rem 2rem 1.2rem;
  }
}
@media (max-width: 767px) {
  .header__main {
    padding: 1.4rem 5rem 0.8rem 2rem;
    border-bottom: 2px solid var(--color-light-primary);
  }
}
.header__main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  background: #00A0E9;
  background: linear-gradient(90deg, #00A0E9 50%, var(--color-base-white) 50%);
}
@media (max-width: 767px) {
  .header__main::before {
    height: 0.6rem;
  }
}
.header__main::after {
  content: "";
  position: absolute;
  right: 6rem;
  top: 0;
  display: block;
  width: 1440px;
  height: 10px;
  background-image: url(../images/common/header_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1440px) {
  .header__main::after {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .header__main::after {
    width: 100%;
    height: 0.6rem;
    right: 5%;
    background-image: url(../images/common/header_line-sp.svg);
    background-size: cover;
  }
}
.header__project-name {
  font-size: 2.4rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-feature-settings: "palt" on;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header__project-name {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .header__project-name {
    font-size: 1.4rem;
    gap: 0.4rem;
  }
}
.header__project-name .route-number-label {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .header__project-name .route-number-label {
    font-size: 1.4rem;
    padding: 0.4rem 0.4rem;
  }
}
.header__info {
  width: 17rem;
  display: block;
  font-size: 1.4rem;
  color: var(--color-base-black);
  font-weight: 700;
  line-height: 1.5;
  padding: 1.3rem 1.6rem 1.4rem;
  border-radius: 4px;
  font-feature-settings: "palt" on;
  height: 4.5rem;
  background-color: #ffa500;
  transition: all var(--delay-in);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header__info {
    width: 14rem;
    font-size: 1.2rem;
  }
}
.header__info::before {
  content: attr(data-hover);
  transform: translate(0, -100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  padding: 1.3rem 1.6rem 1.4rem;
  padding-right: 4rem;
  transition: all 0.3s ease-in-out;
  color: var(--color-base-white);
}
.header__info:hover span {
  opacity: 0;
  transform: translate(0, 100%);
}
.header__info:hover::before {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--color-base-black);
}
.header__info span {
  transition: all 0.3s ease-in-out;
}
.header__info img {
  margin-bottom: 0.4rem;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(20%);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header__info img {
    width: 1.6rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 4rem;
  }
}
.header__hmbbtn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}
.header__skip-content {
  display: block;
  width: 100%;
  min-width: 0;
  height: 1px;
  color: #000;
  text-align: center;
  background: #e0e4eb;
  margin: -1px 0 0;
  padding: 0;
  font-size: 1%;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  cursor: default;
}
.header__skip-content:focus, .header__skip-content:focus-visible {
  height: auto;
  line-height: 1;
  padding: 1.2rem 0;
  font-size: 1.3rem;
  opacity: 1;
  cursor: pointer;
}

.header-menu-button {
  display: block;
  font-size: 1.4rem;
  color: var(--color-base-black);
  font-weight: 700;
  line-height: 1;
  padding: 1.3rem 1.6rem 1.4rem;
  border-radius: 4px;
  border: 1px solid var(--color-primary);
  font-feature-settings: "palt" on;
  height: 4.5rem;
  transition: all var(--delay-in);
}
.header-menu-button:hover {
  background-color: #f5f5dc;
  transition: all var(--delay-in);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu-button {
    font-size: 1.2rem;
  }
}
.header-menu-button img {
  width: 20px;
  vertical-align: middle;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu-button img {
    width: 14px;
  }
}
.header-menu-button--coming {
  color: var(--color-gray);
  position: relative;
  pointer-events: none;
  padding: 2rem 1.6rem 0.8rem;
  border-color: var(--color-gray);
}
.header-menu-button--coming::after {
  content: "公開準備中";
  color: var(--color-traffic-emergency);
  font-size: 1.2rem;
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-menu-button--coming::after {
    font-size: 1rem;
  }
}
.header-menu-button--coming img {
  filter: var(--grayed-out-filter);
}
.header-menu-button--close {
  filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: none;
}

.menu-sp {
  background: var(--color-base-white);
  position: fixed;
  top: 5.1rem;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  overflow: scroll;
}
.menu-sp.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-sp > ul > li {
  border-bottom: 1px solid rgba(46, 46, 46, 0.5);
}
.menu-sp__latest {
  padding-top: 4rem;
  padding-bottom: 10rem;
}
.menu-sp__btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  width: 80%;
  white-space: nowrap;
  border-radius: 0.5rem;
  line-height: 1.4;
  margin: 0 auto;
  position: relative;
  justify-content: center;
  background-color: #ffa500;
  color: var(--color-base-black);
}
.menu-sp__btn a img {
  vertical-align: bottom;
  filter: brightness(0) saturate(100%) invert(20%);
}

.menu-sp-item img {
  width: 2.6rem;
  margin-right: 2rem;
}
.menu-sp-item__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  height: 6.5rem;
}
.menu-sp-item__link-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  width: 1.5rem !important;
}
.menu-sp-item--coming {
  position: relative;
}
.menu-sp-item--coming a {
  pointer-events: none;
  color: var(--color-gray);
}
.menu-sp-item--coming img {
  filter: var(--grayed-out-filter);
}
.menu-sp-item--coming::after {
  content: "公開準備中";
  font-size: 1.2rem;
  position: absolute;
  font-weight: 500;
  top: 50%;
  transform: translateY(-50%);
  left: 65%;
  color: var(--color-traffic-emergency);
}
.menu-sp-item--close {
  filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: none;
}
.menu-sp-item--close .menu-sp-item__link-arrow {
  display: none;
}
.menu-sp-item--has-child details[open] .menu-sp-item__link-arrow {
  transform: translateY(-50%) rotate(0deg);
}
.menu-sp-item--has-child summary:after {
  content: none;
}

.menu-sp-child {
  background: var(--color-sub-primary);
  padding: 0 2rem;
}
.menu-sp-child > li {
  border-bottom: 1px solid var(--color-primary);
}
.menu-sp-child > li:last-child {
  border-bottom: none;
}
.menu-sp-child > li a {
  font-weight: 500;
  display: inline-block;
  padding: 1.2rem 0;
  width: 100%;
}

.side-menu {
  position: fixed;
  right: 0;
  top: clamp(120px, 28vh, 180px);
  z-index: 995;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .side-menu {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    gap: 0.2rem;
    justify-content: center;
  }
}
.side-menu__item {
  width: 24rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  background-color: var(--color-base-white);
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow-soft);
  font-feature-settings: "palt" on;
  transform: translateX(75%);
  transition: all var(--delay-in);
}
@media (max-width: 767px) {
  .side-menu__item {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.5;
    border-radius: 6px 6px 0 0;
    transform: none;
    text-align: center;
    border-top: 1px solid var(--color-light-gray);
    border-right: 1px solid var(--color-light-gray);
    border-left: 1px solid var(--color-light-gray);
    box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.3);
    animation: none;
  }
}
.side-menu__item:has(.side-menu__link:hover), .side-menu__item:has(.side-menu__link.active) {
  transform: translateX(0);
  transition: all var(--delay-in);
}
@media (max-width: 767px) {
  .side-menu__item:has(.side-menu__link:hover), .side-menu__item:has(.side-menu__link.active) {
    transform: none;
  }
}
.side-menu__item:has(.side-menu__link:focus-visible) {
  transform: translateX(0);
  transition: all var(--delay-in);
}
@media (max-width: 767px) {
  .side-menu__item:has(.side-menu__link:focus-visible) {
    transform: none;
  }
}
.side-menu__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
}
@media (max-width: 767px) {
  .side-menu__link {
    justify-content: center;
    gap: 0.4rem;
    padding: 1.2rem 0.8rem;
  }
}
.side-menu__link img {
  vertical-align: middle;
  width: 4rem;
}
@media (max-width: 767px) {
  .side-menu__link img {
    width: 2.4rem;
  }
}

@keyframes sideMenuPeek {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(75%);
  }
}
.footer {
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 8rem;
  }
}

.footer-contact {
  background: var(--color-ex-light-gray);
  padding: 4rem 0;
}

.contact-info {
  background: var(--color-base-white);
  border-radius: 8px;
  padding: 3rem;
}
@media (max-width: 767px) {
  .contact-info {
    padding: 2rem 1rem;
  }
}
.contact-info__heading {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 3rem;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .contact-info__heading {
    margin-bottom: 0.8rem;
  }
}
.contact-info__heading--s-size {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .contact-info__heading--s-size {
    font-size: 1.4rem;
  }
}
.contact-info__heading--m-size {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .contact-info__heading--m-size {
    text-align: center;
  }
}
.contact-info__wrapper {
  display: flex;
  justify-content: space-around;
  position: relative;
  gap: 2.4rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contact-info__wrapper {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .contact-info__wrapper {
    padding: 0;
    gap: 0;
    flex-direction: column;
  }
}
.contact-info__item {
  width: 48%;
}
@media (max-width: 767px) {
  .contact-info__item {
    width: 100%;
  }
}
.contact-info__tel {
  width: 100%;
  text-align: right;
}
.contact-info__tel a {
  display: inline-block;
  pointer-events: none;
  transition: all var(--delay-in);
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .contact-info__tel a {
    pointer-events: all;
    margin-bottom: 0;
  }
}
.contact-info__tel a img {
  width: 100%;
  max-width: none;
}
.contact-info__tel .tel-sp {
  margin-bottom: 0;
}
.contact-info__tel img {
  margin-right: 1.1rem;
}
@media (max-width: 767px) {
  .contact-info__tel img {
    margin-right: 0;
    padding: 0 1rem;
  }
}
.contact-info__text {
  width: 100%;
  font-feature-settings: "palt" on;
  color: var(--color-base-black);
  font-size: 1.4rem;
  line-height: 1.5;
}

.footer-links {
  text-align: center;
}
.footer-links__sns {
  color: var(--color-base-black);
  font-feature-settings: "palt" on;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-light-gray);
}
@media (max-width: 767px) {
  .footer-links__sns {
    padding: 2.4rem 0;
  }
}
@media (max-width: 767px) {
  .footer-links__sns span {
    display: block;
    margin-bottom: 1.6rem;
  }
}
.footer-links__sns a {
  display: inline-block;
  margin-left: 2.4rem;
  width: 3.2rem;
  vertical-align: middle;
  line-height: 1;
  transition: all var(--delay-in);
}
.footer-links__sns a:hover {
  opacity: 0.8;
  transition: all var(--delay-in);
}
@media (max-width: 767px) {
  .footer-links__sns a {
    margin-left: 0;
    width: 4.8rem;
  }
}
.footer-links__menu {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-links__menu {
    padding: 2.4rem 0;
  }
}
.footer-links__menu li {
  font-size: 1.4rem;
  padding: 0 1.6rem;
  border-right: 1px solid var(--color-light-gray);
  line-height: 1.5;
}
.footer-links__menu li:first-child {
  padding-left: 0;
}
.footer-links__menu li:last-child {
  border-right: none;
  padding-right: 0;
}
.footer-links__menu li a {
  transition: all var(--delay-in);
}
.footer-links__menu li a:hover {
  color: var(--color-primary);
  transition: all var(--delay-in);
}

.footer-copy {
  text-align: center;
}
.footer-copy__text {
  font-size: 1.4rem;
  color: var(--color-gray);
  line-height: 1.5;
  font-feature-settings: "palt" on;
}

.wrap--top .g-navi {
  border-bottom: 4px solid #00A0E9;
}

.g-navi {
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 4px solid var(--color-gray);
}
.g-navi > ul {
  display: flex;
  margin: 0 auto;
  max-width: var(--inner-width-wide);
  width: 100%;
}
.g-navi > ul > li {
  border-right: 1px solid var(--color-light-gray);
  width: 25%;
}

.g-navi-item {
  text-align: center;
  position: relative;
}
.g-navi-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: var(--color-light-primary);
  opacity: 0;
}
.g-navi-item:first-child {
  border-left: 1px solid var(--color-light-gray);
}
.g-navi-item:has(a:hover)::after {
  opacity: 1;
}
.g-navi-item a {
  display: block;
  font-weight: bold;
  padding: 1.8rem 0;
  transition: background-color var(--delay-in);
}
.g-navi-item a:hover {
  background-color: var(--color-sub-primary);
  transition: background-color var(--delay-in);
}
.g-navi-item img {
  width: 20px;
  vertical-align: sub;
  margin-right: 1.2rem;
}
.g-navi-item--coming a {
  display: inline-block;
  color: var(--color-gray);
  position: relative;
  pointer-events: none;
}
.g-navi-item--coming a::after {
  content: "公開準備中";
  color: var(--color-traffic-emergency);
  font-size: 1rem;
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
}
.g-navi-item--coming img {
  filter: var(--grayed-out-filter);
}
.g-navi-item--close a {
  display: inline-block;
  color: var(--color-gray);
  position: relative;
  pointer-events: none;
}
.g-navi-item--close img {
  filter: var(--grayed-out-filter);
}

.wrap--work .g-navi-item[data-nav=work]::after {
  opacity: 1;
}

.wrap--prediction .g-navi-item[data-nav=prediction]::after {
  opacity: 1;
}

.wrap--detour .g-navi-item[data-nav=detour]::after {
  opacity: 1;
}

.wrap--price .g-navi-item[data-nav=price]::after {
  opacity: 1;
}

.wrap--construction .g-navi-item[data-nav=construction]::after {
  opacity: 1;
}

.wrap--pr [data-nav=pr] .header__menu {
  color: var(--color-primary);
}

.wrap--cp [data-nav=cp] .header__menu {
  color: var(--color-primary);
}

.footer-menu {
  background: var(--color-sub-primary);
  padding-top: 8rem;
  padding-bottom: 8rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .footer-menu {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
    margin-top: 6.4rem;
  }
}
.footer-menu__wrapper {
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-menu__wrapper {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .footer-menu__wrapper {
    padding: 0 2rem;
    width: 100%;
  }
}
.footer-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .footer-menu__list {
    gap: 2rem;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .footer-menu__list {
    gap: 1.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
}
.footer-menu__item {
  width: 15.5rem;
  height: 15.5rem;
}
@media screen and (max-width: 1200px) {
  .footer-menu__item {
    width: calc((100% - 4rem) * 1 / 3);
  }
}
@media (max-width: 767px) {
  .footer-menu__item {
    width: calc((100% - 1.5rem) * 1 / 2);
  }
}
.footer-menu__item .main-navi-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 1.2rem 0 0;
}
@media (max-width: 767px) {
  .footer-menu__item .main-navi-button {
    border-radius: 1.6rem;
  }
}
.footer-menu__item .main-navi-button:hover {
  background-color: var(--color-sub-primary);
}
.footer-menu__item .main-navi-button img {
  width: 4rem;
  height: 4rem;
}
.footer-menu__item .main-navi-button__ttl {
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0.4rem auto;
}
@media (max-width: 767px) {
  .footer-menu__item .main-navi-button__ttl {
    font-size: 1.6rem;
  }
}
.footer-menu__item .main-navi-button--coming::after {
  font-size: 1.4rem;
  font-weight: 700;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.footer-menu__hidden {
  display: none;
}

.wrap--work .footer-menu__item[data-menu-id=work] {
  display: none;
}

.wrap--prediction .footer-menu__item[data-menu-id=prediction] {
  display: none;
}

.wrap--detour .footer-menu__item[data-menu-id=detour] {
  display: none;
}

.wrap--price .footer-menu__item[data-menu-id=price] {
  display: none;
}

.wrap--construction .footer-menu__item[data-menu-id=construction] {
  display: none;
}

.wrap--pr .footer-menu__item[data-menu-id=pr] {
  display: none;
}

.wrap--cp .footer-menu__item[data-menu-id=cp] {
  display: none;
}

.heading-a {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 2.4rem;
  margin-bottom: 6.4rem;
  position: relative;
  font-feature-settings: "palt" on;
}
.heading-a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 70px;
  height: 6px;
  background-image: url(../images/common/heading-design.svg);
  z-index: 10;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .heading-a {
    font-size: 2.4rem;
    padding-bottom: 2rem;
    margin-bottom: 4.8rem;
  }
}
.heading-a--white {
  color: var(--color-base-white);
}
.heading-a--white::after {
  background-image: url(../images/common/heading-design-white.svg);
}

.heading-b {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt" on;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .heading-b {
    font-size: 2.8rem;
    margin-bottom: 4.8rem;
  }
}

.heading-c {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 4rem;
  border-top: 3px solid var(--color-base-black);
  border-bottom: 1px solid var(--color-base-black);
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .heading-c {
    font-size: 2.2rem;
    padding: 1.6rem 0;
    margin-bottom: 3.2rem;
  }
}

.heading-d {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 6.4rem;
  font-feature-settings: "palt" on;
  color: var(--color-base-white);
  background-color: var(--color-base-black);
}
@media (max-width: 767px) {
  .heading-d {
    font-size: 1.6rem;
    padding: 0.8rem 0;
    margin-bottom: 3.2rem;
  }
}
.heading-d .route-number-label {
  font-size: 1.8rem;
  margin-right: 1rem;
  line-height: 1;
  padding: 0.4rem;
  border: 1px solid var(--color-base-white);
  font-family: var(--font-family-inter);
  vertical-align: text-bottom;
}
@media (max-width: 767px) {
  .heading-d .route-number-label {
    font-size: 1.3rem;
    padding: 0.2rem;
    margin-bottom: 0.1rem;
  }
}

.page-heading-wrap {
  overflow: hidden;
}

.page-heading {
  margin: 0 auto 0;
  padding: 1rem 0 3rem 1rem;
  max-width: var(--inner-width-wide);
  width: 100%;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background-color: var(--color-base-white);
  position: relative;
}
.page-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 1px;
  background-color: var(--color-light-gray);
}
@media (max-width: 767px) {
  .page-heading {
    padding: 1rem 0 2rem 1.6rem;
  }
}
.page-heading img {
  width: 7.6rem;
}
@media (max-width: 767px) {
  .page-heading img {
    width: 4.5rem;
  }
}
.page-heading__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .page-heading__text {
    gap: 1rem;
  }
}
.page-heading__text h2 {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .page-heading__text h2 {
    font-size: 2.8rem;
  }
}
.page-heading__text p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .page-heading__text p {
    font-size: 1.6rem;
  }
}

.main-navi-button {
  border: 2px solid var(--color-primary);
  color: var(--color-base-black);
  border-radius: 16px;
  display: block;
  text-align: center;
  padding: 6rem 3.2rem 3.2rem;
  box-shadow: var(--shadow-md);
  background-color: var(--color-base-white);
  transition: all var(--delay-in);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .main-navi-button {
    padding: 6rem 2rem 3.2rem;
  }
}
@media (max-width: 767px) {
  .main-navi-button {
    border-radius: 8px;
    padding: 3rem 1.2rem 2rem;
  }
}
.main-navi-button:hover {
  background-color: var(--color-sub-primary);
}
.main-navi-button img {
  height: 8rem;
}
@media (max-width: 767px) {
  .main-navi-button img {
    height: 4rem;
  }
}
.main-navi-button__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin: 2rem auto;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .main-navi-button__ttl {
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
  }
}
.main-navi-button__desc {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .main-navi-button__desc {
    font-size: 1.2rem;
  }
}
.main-navi-button--coming {
  border: 2px solid var(--color-gray);
  color: var(--color-gray);
  position: relative;
  pointer-events: none;
}
.main-navi-button--coming::after {
  content: "公開準備中";
  color: var(--color-traffic-emergency);
  font-size: 1.6rem;
  position: absolute;
  font-weight: 700;
  top: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .main-navi-button--coming::after {
    font-size: 1.4rem;
    top: 0.8rem;
  }
}
.main-navi-button--coming img {
  filter: var(--grayed-out-filter);
}
.main-navi-button--close {
  pointer-events: none;
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-base-white);
}
.main-navi-button--close img {
  filter: brightness(0) invert(1);
}

.button-a {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 1.6rem 2.4rem;
  color: var(--color-base-black);
  background-color: var(--color-base-white);
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.3;
  font-feature-settings: "palt" on;
  border-radius: 8px;
  border: 1px solid var(--color-primary);
  position: relative;
  transition: all var(--delay-in);
}
@media (max-width: 767px) {
  .button-a {
    padding: 1.2rem 2.4rem;
  }
}
.button-a:hover {
  background-color: var(--color-sub-primary);
  transition: all --delay-in;
}
.button-a:hover::after {
  transition: all --delay-in;
}
.button-a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 5px;
  height: 10px;
  background-color: var(--color-primary);
  mask-image: url(../images/common/icon_arrow-r.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../images/common/icon_arrow-r.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: all var(--delay-in);
}
.button-a--blank {
  padding: 1.6rem 3.6rem 1.6rem 1.6rem;
}
@media (max-width: 767px) {
  .button-a--blank {
    padding: 1.2rem 3.6rem 1.2rem 1.6rem;
  }
}
.button-a--blank::after {
  width: 20px;
  height: 20px;
  mask-image: url(../images/common/icon_blank.svg);
  -webkit-mask-image: url(../images/common/icon_blank.svg);
}
.button-a--color-red {
  color: var(--color-primary);
}
.button-a--window {
  padding: 1.6rem 3.6rem 1.6rem 1.6rem;
}
@media (max-width: 767px) {
  .button-a--window {
    padding: 1.2rem 3.6rem 1.2rem 1.6rem;
  }
}
.button-a--window::after {
  width: 18px;
  height: 18px;
  mask-image: url(../images/common/icon_window.svg);
  -webkit-mask-image: url(../images/common/icon_window.svg);
}
.button-a--shadow {
  box-shadow: var(--shadow-soft);
}
.button-a--icon-left::after {
  right: auto;
  left: 10px;
  mask-image: url(../images/common/icon_arrow-l.svg);
  -webkit-mask-image: url(../images/common/icon_arrow-l.svg);
}
.button-a--fw-normal {
  font-weight: normal;
}
.button-a--left-img {
  padding: 1.6rem;
}
.button-a--left-img img {
  width: 1.8rem;
  vertical-align: top;
  margin-right: 1rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .button-a--left-img img {
    margin-right: 0.5rem;
  }
}
.button-a--left-img::after {
  display: none;
}
.button-a--down::after {
  transform: translateY(-50%) rotate(90deg);
}
.button-a--size-l {
  padding: 2.4rem 3.6rem 2.4rem 1.6rem;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .button-a--size-l {
    padding: 2rem 3.6rem 2rem 1.6rem;
    font-size: 1.6rem;
  }
}

.hmb-btn {
  position: relative;
  cursor: pointer;
  height: 5rem;
  width: 5rem;
}
.hmb-btn__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hmb-btn__hmb {
  position: relative;
  height: 2.4rem;
  width: 2.4rem;
}
.hmb-btn__hmb span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: var(--color-base-black);
  border-radius: 5px;
  width: 100%;
}
.hmb-btn__hmb span:nth-of-type(1) {
  top: 0;
}
.hmb-btn__hmb span:nth-of-type(2) {
  top: 23%;
  transform: translate(-50%, 0);
}
.hmb-btn__hmb span:nth-of-type(3) {
  top: 48%;
}
.hmb-btn__hmb span:nth-of-type(4) {
  font-feature-settings: "palt" on;
  color: var(--color-base-black);
  bottom: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  background: none;
  left: 50%;
  transform: translate(-60%, -50%);
  text-transform: uppercase;
}

.hmb-btn.active .hmb-btn__hmb span:nth-of-type(1) {
  top: 25%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 90%;
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(2) {
  width: 50%;
  opacity: 0;
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(3) {
  top: 25%;
  left: 50%;
  width: 90%;
  transform: translateX(-50%) rotate(45deg);
}

.close-btn {
  background-color: var(--color-base-black);
  border: 1px solid var(--color-base-white);
  padding: 1rem 1rem 0.8rem;
  height: 4rem;
  width: 4rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .close-btn {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media (max-width: 767px) {
  .close-btn {
    width: 3rem;
    height: 3rem;
  }
}
.close-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
}
@media (max-width: 767px) {
  .close-btn img {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 767px) {
  .close-btn img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6.4rem;
  border-radius: 5px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-base-white);
  z-index: 998;
  cursor: pointer;
  transition: var(--delay-in);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .pagetop {
    width: 5rem;
    height: 5.4rem;
  }
}
@media (max-width: 767px) {
  .pagetop {
    bottom: 6rem;
    right: 2rem;
    width: 4rem;
    height: 4.4rem;
  }
  .wrap.wrap--cp .pagetop {
    bottom: 8rem;
  }
}
.pagetop.active {
  opacity: 1;
  pointer-events: all;
}
.pagetop:hover {
  transition: var(--delay-in);
  background-color: var(--color-sub-primary);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .pagetop:hover {
    background-color: var(--color-base-white);
  }
}
@media (max-width: 767px) {
  .pagetop:hover {
    background-color: var(--color-base-white);
  }
}
.pagetop::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 3px var(--color-primary);
  border-right: solid 3px var(--color-primary);
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .pagetop::after {
    width: 10px;
    height: 10px;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
  }
}
@media (max-width: 767px) {
  .pagetop::after {
    width: 10px;
    height: 10px;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
  }
}

.link-card {
  border-radius: 16px;
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-md);
  background-color: var(--color-base-white);
}
.link-card:has(a:focus-visible) {
  outline: 3px solid red;
  outline-offset: 3px;
}
.link-card a {
  transition: all var(--delay-in);
}
.link-card a:hover {
  opacity: 0.8;
  transition: all var(--delay-in);
}
.link-card a:hover .link-card__thumbnail img {
  transform: scale(1.05);
  transition: all var(--delay-in);
}
.link-card__thumbnail {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  aspect-ratio: 47/23;
}
.link-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--delay-in);
}
.link-card__heading {
  color: var(--color-base-black);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt" on;
  position: relative;
}
@media (max-width: 767px) {
  .link-card__heading {
    font-size: 2rem;
  }
}
.link-card__heading--s-size {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .link-card__heading--s-size {
    font-size: 1.6rem;
  }
}
.link-card__heading--icon {
  position: relative;
}
.link-card__heading--icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.link-card__tail {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
}
.link-card__text {
  color: var(--color-base-black);
  font-feature-settings: "palt" on;
  font-size: 1.6rem;
  line-height: 1.8;
}

.modal {
  padding: 0;
  border: none;
  background: transparent;
  height: 100%;
  width: 100%;
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal[open],
.modal[open]::backdrop {
  animation-name: modalFadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.15s;
  animation-timing-function: ease-out;
}

.modal-content {
  position: absolute;
  max-height: 95vh;
  width: 75%;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .modal-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .modal-content {
    max-height: 80vh;
    width: 100%;
  }
}
.modal-content__content {
  background: var(--color-base-white);
  position: relative;
  padding: 1rem 1.6rem;
}
@media (max-width: 767px) {
  .modal-content__content {
    padding: 0.4rem 0.8rem;
  }
}
.modal-content__close {
  position: absolute;
  top: -4px;
  right: 0;
  z-index: 100;
  transform: translateY(-100%);
}
.modal-content__scroll-wrapper {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.modal-content__scroll {
  background-color: var(--color-base-white);
  max-height: 73vh;
}
.modal-content__scroll img {
  width: 100%;
  max-width: none;
  height: auto;
}
.modal-content__scroll .simplebar-content-wrapper {
  overflow-x: auto;
}
.modal-content .simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}
.modal-content .simplebar-content:after,
.modal-content .simplebar-content:before {
  padding-top: 1.5rem;
}
.modal-content .simplebar-track.simplebar-horizontal {
  bottom: 0;
}

.modal-btn {
  text-align: right;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .modal-btn {
    font-size: 1.6rem;
    line-height: 1.8;
    font-feature-settings: "palt" on;
  }
}
.modal-btn button {
  cursor: pointer;
}
.modal-btn img {
  vertical-align: text-top;
  margin-left: 1rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .modal-btn img {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media (max-width: 767px) {
  .modal-btn img {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.modal-image {
  position: relative;
}
.modal-image__btn {
  position: absolute;
  right: -5rem;
  bottom: 0;
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .modal-image__btn {
    right: 0;
  }
}
@media (max-width: 767px) {
  .modal-image__btn {
    right: 0;
  }
}
.modal-image__btn img {
  width: 4rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .modal-image__btn img {
    width: 4rem;
  }
}
@media (max-width: 767px) {
  .modal-image__btn img {
    width: 4rem;
  }
}

details {
  interpolate-size: allow-keywords;
}
details::details-content {
  overflow: clip;
  transition-property: content-visibility, block-size;
  transition-duration: 300ms;
  transition-behavior: allow-discrete;
}
details:not(:open)::details-content {
  block-size: 0;
  content-visibility: hidden;
}

summary {
  position: relative;
  cursor: pointer;
}
summary::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 26px;
  height: 14px;
  background-color: var(--color-base-white);
  mask-image: url(../images/common/icon_arrow-up.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../images/common/icon_arrow-up.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: transform 300ms;
}
@media (max-width: 767px) {
  summary::after {
    right: 2rem;
    width: 2rem;
    height: 1.2rem;
  }
}
summary::marker {
  content: "";
}
summary::-webkit-details-marker {
  display: none;
}

.accordion details[open] > summary::after {
  transform: rotate(180deg);
}
.accordion__summary {
  padding: 1.2rem 2.8rem;
  background-color: var(--color-primary);
  color: var(--color-base-white);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-radius: 5px;
  transition: all 300ms;
}
@media (max-width: 767px) {
  .accordion__summary {
    padding: 1.6rem 1.6rem;
    gap: 0 0.6rem;
  }
}
.accordion__summary::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  display: block;
  width: 26px;
  height: 14px;
  background-color: var(--color-base-white);
  mask-image: url(../images/common/icon_arrow-up.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../images/common/icon_arrow-up.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .accordion__summary::after {
    right: 1.6rem;
    width: 2rem;
    height: 1.2rem;
  }
}
.accordion__content {
  padding: 4rem 3.2rem 4.8rem;
  background-color: #f5f5f5;
  border-radius: 0 0 5px 5px;
}
@media (max-width: 767px) {
  .accordion__content {
    padding: 3.2rem 2rem 2rem;
  }
}

.accordion[open] .accordion__summary {
  border-radius: 5px 5px 0 0;
  transition: all 300ms;
}
.accordion[open] .accordion__summary::after {
  transform: translateY(-50%);
  transition: transform 300ms;
}

.yt-wrap {
  width: 73rem;
  height: 41rem;
  margin: 0 auto 4rem;
  margin-bottom: 4rem;
  aspect-ratio: 730/410;
}
@media (max-width: 767px) {
  .yt-wrap {
    width: 100%;
    height: 19.5rem;
    margin-bottom: 2rem;
  }
}

.route-number-label {
  background-color: var(--color-route-number-bg);
  border-radius: 4px;
  color: var(--color-base-white);
  display: inline-block;
  line-height: 1;
  padding: 0.3rem 0.8rem 0.5rem;
}

.crumb {
  margin: 0 auto;
  max-width: var(--inner-width-wide);
  width: 100%;
  background-color: var(--color-base-white);
}
.crumb__list {
  font-size: 1.6rem;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  line-height: 1.8;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .crumb__list {
    flex-wrap: wrap;
    font-size: 1.4rem;
  }
}
.crumb__list li {
  position: relative;
  padding-right: 1.6rem;
  margin-right: 1.6rem;
}
.crumb__list li a {
  white-space: nowrap;
}
.crumb__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  display: inline-block;
  transform: translateY(-50%) rotate(-45deg);
  border: solid var(--color-gray);
  border-width: 0 1px 1px 0;
  padding: 3px;
}
.crumb__list li:last-of-type {
  color: var(--color-primary);
  padding-right: 0;
  margin-right: 0;
}
.crumb__list li:last-of-type::after {
  content: none;
}

.caution {
  display: flex;
  box-shadow: var(--shadow-md);
}
@media (max-width: 767px) {
  .caution {
    flex-direction: column;
  }
}
.caution__heading {
  display: flex;
  width: 242px;
  height: 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-base-white);
  text-align: center;
  font-feature-settings: "palt" on;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: var(--color-primary);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .caution__heading {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .caution__heading {
    width: 100%;
    flex-direction: row;
    height: auto;
    padding: 1.6rem;
  }
}
.caution__text {
  display: flex;
  width: calc(100% - 242px);
  height: 120px;
  padding: 10px 13px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-align: center;
  font-feature-settings: "palt" on;
  font-size: 1.8rem;
  line-height: 1.5;
  border-top: 1px solid var(--color-light-gray);
  border-right: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
  background: var(--color-base-white);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .caution__text {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .caution__text {
    width: 100%;
    height: auto;
    text-align: left;
    padding: 1.2rem;
    font-size: 1.6rem;
    border-left: 1px solid var(--color-light-gray);
    border-right: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
  }
}

.warning {
  padding: 4rem 3rem 3rem;
  border-radius: 1rem;
  background: #FDE9E9;
  position: relative;
}
@media (max-width: 767px) {
  .warning {
    padding: 3rem 2rem 2rem;
  }
}
.warning__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .warning__heading {
    gap: 0.4rem;
  }
}
.warning__icon {
  width: 5rem;
  height: 4.4rem;
}
@media (max-width: 767px) {
  .warning__icon {
    width: 3rem;
    height: 2.2rem;
  }
}
.warning__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #E60012;
  text-align: center;
  white-space: nowrap;
  text-shadow: -2px -2px 0 var(--color-base-white), 2px -2px 0 var(--color-base-white), -2px 2px 0 var(--color-base-white), 2px 2px 0 var(--color-base-white), -2px 0px 0 var(--color-base-white), 2px 0px 0 var(--color-base-white), 0px -2px 0 var(--color-base-white), 0px 2px 0 var(--color-base-white);
}
@media (max-width: 767px) {
  .warning__ttl {
    font-size: 2.2rem;
  }
}
.warning__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  font-feature-settings: "palt" on;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .warning__desc {
    font-size: 1.4rem;
  }
}
.warning__desc a {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-link-blue);
  font-feature-settings: "palt" on;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 767px) {
  .warning__desc a {
    font-size: 1.4rem;
  }
}
.warning__container {
  padding: 2.8rem 6.4rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: center;
  background-color: var(--color-base-white);
  border: 1px solid var(--color-light-gray);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .warning__container {
    padding: 2.8rem 4rem;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .warning__container {
    padding: 2rem 1.6rem;
    flex-direction: column;
    gap: 1rem;
  }
}
.warning__logo {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .warning__logo {
    width: 60%;
  }
}
.warning__text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .warning__text {
    font-size: 1.4rem;
  }
}
.warning__text--red {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E60012;
  font-feature-settings: "palt" on;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .warning__text--red {
    font-size: 1.6rem;
    text-align: center;
  }
}
.warning__text .route-number-label {
  padding: 0.2rem 0.4rem 0.3rem;
  font-size: 1.6rem;
  margin-right: 0.4rem;
  font-weight: 700;
  font-family: var(--font-family-inter);
}
@media (max-width: 767px) {
  .warning__text .route-number-label {
    font-size: 1.4rem;
  }
}

.tel-sp {
  pointer-events: none;
}
@media (max-width: 767px) {
  .tel-sp {
    color: var(--color-base-black);
    text-decoration: underline;
    pointer-events: all;
  }
}

.released-message {
  padding: 4rem 2rem;
  color: #E60012;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  font-feature-settings: "palt" on;
  border: 1.6rem solid #FDE9E9;
}
@media (max-width: 767px) {
  .released-message {
    padding: 1.6rem 0.2rem;
    font-size: 1.6rem;
    border: 0.8rem solid #FDE9E9;
  }
}

.text-double-strike {
  text-decoration: line-through;
  text-decoration-style: double;
}

.text-double-strike-wrapper {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.text-double-strike-wrapper::before, .text-double-strike-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  pointer-events: none;
}
.text-double-strike-wrapper::before {
  top: calc(50% - 0.3rem);
}
.text-double-strike-wrapper::after {
  top: calc(50% + 0.3rem);
}
.text-double-strike-wrapper--date-display::before {
  top: calc(40% - 0.3rem);
}
@media (max-width: 767px) {
  .text-double-strike-wrapper--date-display::before {
    top: calc(65% - 0.3rem);
  }
}
.text-double-strike-wrapper--date-display::after {
  top: calc(40% + 0.3rem);
}
@media (max-width: 767px) {
  .text-double-strike-wrapper--date-display::after {
    top: calc(65% + 0.3rem);
  }
}

.gray-layer {
  position: relative;
}
.gray-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
  z-index: 1;
}
.gray-layer::after {
  content: "";
  color: var(--color-base-white);
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.gray-layer--cancelled::after {
  content: "取り止めとなりました。";
}
.gray-layer--consolidation::after {
  content: "各日21時から翌6時に集約しました。";
}

.top-map {
  position: relative;
}

.top-sect-group-1 {
  position: relative;
}

.sect-menu {
  position: relative;
  background-image: url(../images/top/bg_menu.webp);
  background-repeat: no-repeat;
  background-position: center bottom -50px;
  background-size: cover;
  overflow: hidden;
}
.sect-menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  content: "";
}
.sect-menu > .l-inner {
  position: relative;
  z-index: 1;
}

.sect-cp {
  background: repeating-linear-gradient(-45deg, #FFF6D7, #FFF6D7 5px, #fff 0, #fff 20px);
  position: relative;
}
.sect-cp__heading {
  margin-bottom: 0;
}

.sect-notice {
  background: var(--color-ex-light-gray);
}

.sect-search {
  background: var(--color-primary);
}
.sect-search .search-card {
  padding: 3rem;
  border-radius: 1.6rem;
  background-color: var(--color-base-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sect-search .search-card {
    padding: 2.8rem;
  }
}
.sect-search .search-card__heading {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .sect-search .search-card__heading {
    margin-bottom: 2rem;
  }
}
.sect-search .search-card__heading img {
  width: 9rem;
}
@media screen and (max-width: 1439px) {
  .sect-search .search-card__heading img {
    width: 5.5594162613vw;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .sect-search .search-card__heading img {
    width: 9rem;
  }
}
@media (max-width: 767px) {
  .sect-search .search-card__heading img {
    width: 7rem;
  }
}
.sect-search .search-card__heading h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt" on;
}
@media screen and (max-width: 1439px) {
  .sect-search .search-card__heading h3 {
    font-size: 1.1813759555vw;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .sect-search .search-card__heading h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .sect-search .search-card__heading h3 {
    font-size: 1.8rem;
  }
}
.sect-search .search-card__text {
  color: var(--color-base-black);
  font-size: 1.6rem;
  line-height: 1.8;
  font-feature-settings: "palt" on;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 1439px) {
  .sect-search .search-card__text {
    font-size: 1.1118832523vw;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .sect-search .search-card__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .sect-search .search-card__text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}

.sect-areas .area-banner a {
  width: 100%;
  display: block;
  text-align: center;
}
.sect-areas .area-banner a img {
  transition: 0.15s;
  outline: 1px solid;
  outline-color: #878787;
  outline-offset: -3px;
  text-shadow: none;
  transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}
.sect-areas .area-banner a:hover img {
  opacity: 0.7;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: transparent;
  outline-offset: 12px;
  cursor: pointer;
}
.sect-areas .area-banner--hokuriku a img {
  outline-color: #A50319;
}
.sect-areas .area-banner--chukyo a img {
  outline-color: #14B55A;
}
.sect-areas .area-banner--tomei a img {
  outline-color: #00A0E9;
}
.sect-areas .area-banner--chuo a img {
  outline-color: #E5004F;
}

@media (max-width: 767px) {
  .nx-news .l-spacing {
    margin-top: 1rem;
  }
}
.nx-news__date {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .nx-news__date {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.nx-news__ttl {
  background: var(--color-sub-primary);
  color: var(--color-base-black);
  font-size: 2.4rem;
  padding: 1.5rem 2rem;
  line-height: 1.5;
  margin-bottom: 4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .nx-news__ttl {
    padding: 1rem;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    text-align: left;
  }
}
.nx-news__btn {
  margin-top: 1rem;
  width: 20rem;
}

.nx-news-contents {
  margin: 0 auto 6.4rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .nx-news-contents {
    margin: 0 auto 4.8rem;
    font-size: 1.4rem;
  }
}
.nx-news-contents h1 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-align: left;
}
@media (max-width: 767px) {
  .nx-news-contents h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.nx-news-contents h2 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-align: left;
}
@media (max-width: 767px) {
  .nx-news-contents h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.nx-news-contents p {
  margin-bottom: 2rem;
}
.nx-news-contents img {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .nx-news-contents img {
    margin-bottom: 2rem;
  }
}
.nx-news-contents a {
  color: var(--color-link-blue);
  text-decoration: underline;
  transition: 0.15s;
}
.nx-news-contents a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.news-single .h-nav {
  position: static;
}

.regulation-desc {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
  font-feature-settings: "palt" on;
  margin-bottom: 6.4rem;
}

.regulation {
  padding: 0 0 8rem;
}
.regulation__img button {
  cursor: pointer;
  width: 100%;
}
.regulation__img img {
  width: 100%;
}
.regulation__btn {
  text-align: right;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .regulation__btn {
    font-size: 1.6rem;
    line-height: 1.8;
    font-feature-settings: "palt" on;
  }
}
.regulation__btn button {
  cursor: pointer;
}
.regulation__btn img {
  vertical-align: text-top;
  margin-left: 1rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .regulation__btn img {
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media (max-width: 767px) {
  .regulation__btn img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media screen and (max-width: 1400px) {
  .regulation .modal-content {
    width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  .regulation .modal-content {
    width: 100%;
  }
}
.regulation .modal-content__scroll {
  max-height: 80vh;
  padding-right: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.regulation .modal-content__scroll img {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .regulation .modal-content__scroll img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .regulation .modal-content__scroll img {
    width: 190%;
  }
}
.regulation .modal-content__content {
  padding: 1rem 1rem 1rem 1.6rem;
}

.work-list__link {
  width: 640px;
  margin: 6.4rem auto;
}
@media (max-width: 767px) {
  .work-list__link {
    width: 100%;
    margin: 2.4rem auto;
  }
}
.work-list__link .route-number-label {
  font-size: 1.8rem;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .work-list__link .route-number-label {
    font-size: 1.4rem;
  }
}
.work-list__link .button-a::after {
  width: 7px;
  height: 12px;
  right: 16px;
}
@media (max-width: 767px) {
  .work-list .heading-c {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 767px) {
  .work-list .heading-d {
    margin-bottom: 2.4rem;
  }
}

@media (max-width: 767px) {
  .workmap-legend-sp {
    margin-bottom: 6.4rem;
  }
}
.workmap-legend-sp img {
  width: 100%;
  box-shadow: var(--shadow-soft);
}

.wrap.wrap--detour .top-btn {
  margin-top: 8rem;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .top-btn {
    margin-top: 6.4rem;
    margin-bottom: 4.8rem;
  }
}
.wrap.wrap--detour .top-btn .button-a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 46rem;
  margin: 0 auto;
  padding: 1.6rem 3.6rem 1.6rem 1.6rem;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .top-btn .button-a {
    width: 100%;
    gap: 1.5rem;
    padding: 1.2rem 3.6rem 1.2rem 1.6rem;
  }
}
.wrap.wrap--detour .top-btn .button-a::before {
  content: "";
  width: 3.5rem;
  height: 3.8rem;
  background: url("../images/common/icon_fee.svg") no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .top-btn .button-a::before {
    width: 3.8rem;
    height: 3.5rem;
  }
}
.wrap.wrap--detour .detour {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour {
    gap: 0;
  }
}
.wrap.wrap--detour .detour .heading-c {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour .heading-c {
    margin-bottom: 3.2rem;
  }
}
.wrap.wrap--detour .detour__top-text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 175%;
  margin: 5rem 0;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__top-text {
    font-size: 1.4rem;
    margin: 2.5rem 0 2rem;
  }
}
.wrap.wrap--detour .detour__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__btn-wrap {
    flex-direction: column;
    margin-bottom: 4.8rem;
  }
}
.wrap.wrap--detour .detour__btn-wrap .button-a {
  width: 31rem;
  padding: 2.4rem 3.6rem 2.4rem 1.6rem;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__btn-wrap .button-a {
    width: 100%;
    padding: 2rem 3.6rem 2rem 1.6rem;
  }
}
.wrap.wrap--detour .detour__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__content {
    margin-bottom: 4rem;
  }
  .wrap.wrap--detour .detour__content:last-of-type {
    margin-bottom: 0;
  }
}
.wrap.wrap--detour .detour__content .heading-d {
  margin-bottom: 0;
}
.wrap.wrap--detour .detour__content .direction-arrow {
  color: var(--color-base-black);
}
.wrap.wrap--detour .detour__content .direction-arrow span::before {
  background: var(--color-base-white);
}
.wrap.wrap--detour .detour__map img {
  width: 100%;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__map {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.wrap.wrap--detour .detour__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__text {
    font-size: 1.6rem;
  }
}
.wrap.wrap--detour .detour__table {
  width: 100%;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__table {
    overflow-x: auto;
  }
}
.wrap.wrap--detour .detour__table table {
  width: 100%;
}
@media (max-width: 767px) {
  .wrap.wrap--detour .detour__table table {
    width: 98rem;
    margin-bottom: 2rem;
  }
}
.wrap.wrap--detour .detour table, .wrap.wrap--detour .detour th, .wrap.wrap--detour .detour td {
  border: 6px solid #fff;
  border-collapse: collapse;
  font-size: 1.6rem;
  vertical-align: middle;
  line-height: 1.8;
  font-feature-settings: "palt" on;
}
.wrap.wrap--detour .detour table th, .wrap.wrap--detour .detour th th, .wrap.wrap--detour .detour td th {
  color: var(--color-base-white);
  background: var(--color-dense-primary);
  padding: 0.75rem 1.65rem;
  font-weight: bold;
  text-align: center;
}
.wrap.wrap--detour .detour table td, .wrap.wrap--detour .detour th td, .wrap.wrap--detour .detour td td {
  background: #F5F5F5;
  padding: 2rem;
}
.wrap.wrap--detour .detour table td.--baseline, .wrap.wrap--detour .detour th td.--baseline, .wrap.wrap--detour .detour td td.--baseline {
  vertical-align: baseline;
}
.wrap.wrap--detour .detour table .route-number-label, .wrap.wrap--detour .detour th .route-number-label, .wrap.wrap--detour .detour td .route-number-label {
  margin-right: 0.8rem;
}
.wrap.wrap--detour .detour .annotation-wrap {
  font-size: 1.6rem;
  line-height: 180%;
  font-feature-settings: "palt" on;
}
.wrap.wrap--detour .detour .annotation-wrap a {
  text-decoration: underline;
  color: #0972B3;
  transition: 0.2s;
}
.wrap.wrap--detour .detour .annotation-wrap a:hover {
  opacity: 0.8;
}
.wrap.wrap--detour .direction-arrow {
  color: var(--color-base-white);
  display: inline-block;
  font-size: 1.2rem;
}
@media screen and (max-width: 1600px) {
  .wrap.wrap--detour .direction-arrow {
    font-size: 0.8125vw;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--detour .direction-arrow {
    font-size: 1.1rem;
  }
}
.wrap.wrap--detour .direction-arrow.--small {
  font-size: 1.2rem;
}
@media screen and (max-width: 1600px) {
  .wrap.wrap--detour .direction-arrow.--small {
    font-size: 0.8125vw;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--detour .direction-arrow.--small {
    font-size: 0.9rem;
  }
}
.wrap.wrap--detour .direction-arrow span {
  position: relative;
  z-index: 1;
}
.wrap.wrap--detour .direction-arrow span::before {
  content: "";
  position: absolute;
  top: 0.5px;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
}
.wrap.wrap--detour .direction-arrow--updown {
  margin: 0 1rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--detour .direction-arrow--updown {
    margin: 0 0.7rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--detour .direction-arrow--updown {
    margin: 0 1rem;
  }
}
.wrap.wrap--detour .direction-arrow--updown span::before {
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}
.wrap.wrap--detour .direction-arrow--up {
  margin: 0 1rem 0 0.4rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--detour .direction-arrow--up {
    margin: 0 0.7rem 0 0.2rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--detour .direction-arrow--up {
    margin: 0 1rem 0 0.5rem;
  }
}
.wrap.wrap--detour .direction-arrow--up span::before {
  left: -5%;
  width: 125%;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
.wrap.wrap--detour .direction-arrow--down {
  margin: 0 0.4rem 0 1rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--detour .direction-arrow--down {
    margin: 0 0.2rem 0 0.7rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--detour .direction-arrow--down {
    margin: 0 0.5rem 0 1rem;
  }
}
.wrap.wrap--detour .direction-arrow--down span::before {
  left: auto;
  right: -5%;
  width: 125%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
}

.prediction-desc {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
  font-feature-settings: "palt" on;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .prediction-desc {
    text-align: left;
    margin-bottom: 3.2rem;
  }
}

.prediction-wrap {
  padding: 8rem 0 0;
}
@media (max-width: 767px) {
  .prediction-wrap {
    padding: 6.4rem 0 0;
  }
}
.prediction-wrap__heading {
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .prediction-wrap__heading {
    margin-bottom: 4.8rem;
  }
}
.prediction-wrap__heading p {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .prediction-wrap__heading p {
    text-align: left;
  }
}
.prediction-wrap__link {
  width: 640px;
  margin: 0 auto 4rem;
}
@media (max-width: 767px) {
  .prediction-wrap__link {
    width: 100%;
  }
}
.prediction-wrap__link .route-number-label {
  font-size: 1.8rem;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .prediction-wrap__link .route-number-label {
    font-size: 1.4rem;
  }
}
.prediction-wrap__link .button-a::after {
  width: 7px;
  height: 12px;
  right: 16px;
}
.prediction-wrap .direction-arrow {
  color: var(--color-base-white);
  display: inline-block;
  font-size: 1.4rem;
}
@media screen and (max-width: 1600px) {
  .prediction-wrap .direction-arrow {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .direction-arrow {
    font-size: 1.1rem;
  }
}
.prediction-wrap .direction-arrow.--small {
  font-size: 1.2rem;
}
@media screen and (max-width: 1600px) {
  .prediction-wrap .direction-arrow.--small {
    font-size: 0.8125vw;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .direction-arrow.--small {
    font-size: 0.9rem;
  }
}
.prediction-wrap .direction-arrow span {
  position: relative;
  z-index: 1;
}
.prediction-wrap .direction-arrow span::before {
  content: "";
  position: absolute;
  top: 0.5px;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
}
.prediction-wrap .direction-arrow--updown {
  margin: 0 0.8rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prediction-wrap .direction-arrow--updown {
    margin: 0 0.5rem;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .direction-arrow--updown {
    margin: 0 0.5rem;
  }
}
.prediction-wrap .direction-arrow--updown span::before {
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}
.prediction-wrap .direction-arrow--up {
  margin: 0 0.8rem 0 0.4rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prediction-wrap .direction-arrow--up {
    margin: 0 0.5rem 0 0.2rem;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .direction-arrow--up {
    margin: 0 0.5rem 0 0.2rem;
  }
}
.prediction-wrap .direction-arrow--up span::before {
  left: -5%;
  width: 125%;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
.prediction-wrap .direction-arrow--down {
  margin: 0 0.4rem 0 0.8rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prediction-wrap .direction-arrow--down {
    margin: 0 0.2rem 0 0.5rem;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .direction-arrow--down {
    margin: 0 0.2rem 0 0.5rem;
  }
}
.prediction-wrap .direction-arrow--down span::before {
  left: auto;
  right: -5%;
  width: 125%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
}
.prediction-wrap .pred-result-tl-ex {
  display: flex;
  margin-bottom: 3rem;
  gap: 2rem;
  align-items: baseline;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prediction-wrap .pred-result-tl-ex {
    flex-direction: column;
    gap: 1.6rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .pred-result-tl-ex {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.prediction-wrap .pred-result-tl-ex__ttl {
  font-size: 1.4rem;
  border: 1px solid #000;
  padding: 0 1rem;
  background: var(--color-base-white);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prediction-wrap .pred-result-tl-ex__ttl {
    text-align: center;
    margin: 1rem auto 0;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .pred-result-tl-ex__ttl {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0 auto;
    text-align: center;
  }
}
.prediction-wrap .pred-result-tl-ex > ul {
  display: flex;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prediction-wrap .pred-result-tl-ex > ul {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .pred-result-tl-ex > ul {
    flex-wrap: wrap;
    gap: 0.4rem 1.2rem;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .pred-result-tl-ex > ul.center {
    margin: 0 auto;
  }
}
.prediction-wrap .pred-result-tl-ex > ul li {
  margin-right: 1.8rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prediction-wrap .pred-result-tl-ex > ul li {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .prediction-wrap .pred-result-tl-ex > ul li {
    font-size: 1.4rem;
    margin-right: 0;
  }
  .prediction-wrap .pred-result-tl-ex > ul li:last-of-type {
    margin-right: 0;
  }
}
.prediction-wrap .pred-result-tl-ex > ul li span {
  display: inline-block;
  position: relative;
  padding-left: 3rem;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .prediction-wrap .pred-result-tl-ex > ul li span {
    font-size: 1.4rem;
    padding-left: 2rem;
    line-height: 1.5;
    text-align: center;
  }
}
.prediction-wrap .pred-result-tl-ex > ul li span::before {
  content: "";
  background: #000;
  border: 1px solid var(--color-light-gray);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  height: 2.2rem;
  width: 2.2rem;
}
@media (max-width: 767px) {
  .prediction-wrap .pred-result-tl-ex > ul li span::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.prediction-wrap .pred-result-tl-ex .ex-s > span::before {
  background: var(--color-congestion-small);
}
.prediction-wrap .pred-result-tl-ex .ex-m > span::before {
  background: var(--color-congestion-medium);
}
.prediction-wrap .pred-result-tl-ex .ex-l > span::before {
  background: var(--color-congestion-large);
}
.prediction-wrap .pred-result-tl-ex .ex-xl > span::before {
  background: var(--color-congestion-max);
}
.prediction-wrap .pred-result-tl-ex .ex-max > span::before {
  background: var(--color-congestion-peak);
}
.prediction-wrap .pred-result-tl-ex .ex-time > span::before {
  background: #EA8686;
}

.pred-result-timeline__tl-wrap {
  background: #fff;
  padding: 1.6rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .pred-result-timeline__tl-wrap {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
  }
}
.pred-result-timeline__tl-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__tl-container {
    flex-direction: column;
    gap: 1.2rem;
    border-radius: 5px;
    padding: 1.6rem;
    background-color: var(--color-base-white);
  }
}
.pred-result-timeline__tl-container:last-child {
  margin-bottom: 0;
}
.pred-result-timeline__tl-container.--center {
  align-items: center;
}
.pred-result-timeline__tl-left {
  width: 3.5rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__tl-left {
    width: 100%;
  }
}
.pred-result-timeline__tl-right {
  width: calc(100% - 55px);
}
@media (max-width: 767px) {
  .pred-result-timeline__tl-right {
    width: 100%;
  }
}
.pred-result-timeline__ttl {
  display: block;
  height: 11.2rem;
  color: var(--color-base-white);
  padding: 1rem 0.4rem;
  text-align: center;
  font-feature-settings: "palt" on;
  font-size: 2rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.4rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
    padding: 0.5rem 1rem;
    height: auto;
    writing-mode: horizontal-tb;
  }
}
.pred-result-timeline__ttl.--weekday {
  background-color: var(--color-base-black);
}
.pred-result-timeline__ttl.--saturday {
  background-color: #008CD6;
}
.pred-result-timeline__ttl.--sunday {
  background-color: #E60012;
}
.pred-result-timeline__ttl.--short {
  height: 7.2rem;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .pred-result-timeline__ttl.--short {
    height: auto;
  }
}
.pred-result-timeline__peak-time {
  display: inline-block;
  color: var(--color-congestion-peak);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-feature-settings: "palt" on;
  background: #F8EDED;
  padding: 0.4rem 2rem;
  border-radius: 10px;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.pred-result-timeline__peak-time.--empty {
  color: #1D2088;
  background: #E5F0FF;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak-time {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0;
    padding: 0.4rem;
    border-radius: 5px;
  }
}
.pred-result-timeline__peak-time .num {
  font-size: 3rem;
  margin: 0 0.4rem 0 0.8rem;
  vertical-align: sub;
  font-family: var(--font-family-inter);
}
@media (max-width: 767px) {
  .pred-result-timeline__peak-time .num {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .pred-result-timeline__peak-time .num.--margin-s-sp {
    margin: 0 0.1rem 0 0.1rem;
  }
}
.pred-result-timeline__peak-time .num-none {
  font-size: 2.8rem;
  margin: 0 0.4rem 0 0.8rem;
  vertical-align: sub;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak-time .num-none {
    font-size: 2rem;
    vertical-align: text-top;
  }
}
.pred-result-timeline__peak-time .--size-m {
  font-size: 2rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak-time .--size-m {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.pred-result-timeline__peak-time .--size-s {
  font-size: 1.8rem;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak-time .--size-s {
    font-size: 1.4rem;
  }
}
.pred-result-timeline__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__wrap {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.pred-result-timeline__icon {
  text-align: center;
}
@media (max-width: 767px) {
  .pred-result-timeline__icon {
    width: 25%;
  }
}
.pred-result-timeline__peak {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  width: 16rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
.pred-result-timeline__peak .icon {
  text-align: center;
  margin: 0 auto 1.6rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak .icon {
    margin-bottom: 0.6rem;
  }
}
.pred-result-timeline__peak .icon svg {
  width: 4.4rem;
  height: 3.9rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak .icon svg {
    width: 3rem;
    height: 2.8rem;
  }
}
.pred-result-timeline__peak .heading {
  text-align: center;
  color: #2E2E2E;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak .heading {
    font-size: 1.2rem;
  }
}
.pred-result-timeline__peak .peak {
  border-radius: 10px;
  background: var(--color-sub-primary);
  padding: 1.6rem;
  color: var(--color-primary);
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  width: 100%;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak .peak {
    padding: 0.8rem;
    font-size: 1.4rem;
    width: 65%;
  }
}
.pred-result-timeline__peak .peak span {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__peak .peak span {
    font-size: 2rem;
  }
}
.pred-result-timeline__peak .peak--none {
  background: #E5F0FF;
  color: #2978E0;
}
.pred-result-timeline__tl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.pred-result-timeline__time {
  border-top: 1px solid var(--color-light-gray);
  border-right: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
  box-sizing: border-box;
  position: relative;
  height: 3.5rem;
  width: 4.1666666667%;
  margin: 3rem 0 0;
}
.pred-result-timeline__time:first-child {
  border-left: 1px solid var(--color-light-gray);
}
@media (max-width: 767px) {
  .pred-result-timeline__time {
    width: 8.3333333333%;
    margin: 2rem 0 0;
    height: 2.5rem;
  }
  .pred-result-timeline__time:nth-child(13) {
    border-left: 1px solid var(--color-light-gray);
  }
}
.pred-result-timeline__time--s {
  background: var(--color-congestion-small);
}
.pred-result-timeline__time--m {
  background: var(--color-congestion-medium);
}
.pred-result-timeline__time--l {
  background: var(--color-congestion-large);
}
.pred-result-timeline__time--xl {
  background: #EA8686;
}
.pred-result-timeline__time--max {
  background: var(--color-congestion-peak);
}
.pred-result-timeline__time-txt {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -100%);
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .pred-result-timeline__time-txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .pred-result-timeline__time-txt {
    width: 100%;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    left: 40%;
    transform: translate(-50%, -120%);
  }
}
.pred-result-timeline__time-txt span {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .pred-result-timeline__time-txt span {
    font-size: 0.8rem;
  }
}

.pred-accordion {
  margin-bottom: 4rem;
}
.pred-accordion:last-child {
  margin-bottom: 0;
}
.pred-accordion__summary {
  background-color: var(--color-dense-primary);
}
@media (max-width: 767px) {
  .pred-accordion__summary {
    flex-wrap: nowrap;
    padding: 1.6rem;
  }
}
@media (max-width: 767px) {
  .pred-accordion__summary::after {
    right: 1.2rem;
    width: 1.5rem;
    height: 0.8rem;
  }
}
.pred-accordion__direction {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .pred-accordion__direction {
    gap: 0.2rem 0.8rem;
  }
}
.pred-accordion__num {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .pred-accordion__num {
    font-size: 1.6rem;
  }
}
.pred-accordion__text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-base-white);
  font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
  .pred-accordion__text {
    font-size: 1.6rem;
    font-feature-settings: normal;
  }
}
.pred-accordion__text--size-s {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .pred-accordion__text--size-s {
    font-size: 1.4rem;
  }
}
.pred-accordion__break {
  display: none;
}
@media (max-width: 767px) {
  .pred-accordion__break {
    display: block;
    flex-basis: 100%;
    height: 0;
  }
}
.pred-accordion .route-number-label {
  font-size: 1.6rem;
  font-weight: 600;
  border: 1px solid var(--color-base-white);
  margin-top: 0.2rem;
  padding: 0.2rem 0.4rem 0.4rem;
}
@media (max-width: 767px) {
  .pred-accordion .route-number-label {
    font-size: 1.3rem;
  }
}
.pred-accordion .direction-arrow span {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
}
.pred-accordion .direction-arrow span::before {
  background-color: var(--color-base-white);
}
.pred-accordion__content {
  padding: 4rem 4.8rem 4.8rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .pred-accordion__content {
    padding: 3rem 3.6rem 3.6rem;
  }
}
@media (max-width: 767px) {
  .pred-accordion__content {
    padding: 3rem 2rem 1.2rem;
  }
}
.pred-accordion__heading {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}
.pred-accordion__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: var(--color-base-black);
}
.pred-accordion__heading span {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 0 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt" on;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .pred-accordion__heading span {
    font-size: 1.8rem;
  }
}
.pred-accordion__calender-inner {
  margin: 0 auto 4rem;
  width: 822px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .pred-accordion__calender-inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .pred-accordion__calender-inner {
    padding: 0;
    width: 100%;
  }
}
.pred-accordion__calender {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .pred-accordion__calender {
    width: 100%;
  }
}
.pred-accordion__calender img {
  width: 100%;
}

.pred-map {
  width: 90%;
  margin: 0 auto 6.4rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .pred-map {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .pred-map {
    width: 100%;
    margin: 0 auto 4.8rem;
  }
}
.pred-map img {
  width: 100%;
}

/*.wrap.wrap--prediction {
  .footer-menu {
    margin-top: 0;
  }
}*/
.print {
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .print {
    padding: 6.4rem 0;
  }
}
.print__ttl {
  margin-bottom: 5.3rem;
}

.wrap.wrap--price {
  font-feature-settings: "palt" on;
}
.wrap.wrap--price .top-btn {
  margin-top: 8rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .top-btn {
    margin-top: 6.4rem;
    margin-bottom: 4.8rem;
  }
}
.wrap.wrap--price .top-btn .button-a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-weight: normal;
  width: 46rem;
  margin: 0 auto;
  padding: 1.6rem 3.6rem 1.6rem 1.6rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .top-btn .button-a {
    width: 100%;
    gap: 2rem;
    padding: 1.2rem 3.6rem 1.2rem 1.6rem;
  }
}
.wrap.wrap--price .top-btn .button-a::before {
  content: "";
  width: 4rem;
  height: 3.7rem;
  background: url("../images/common/icon_detour.svg") no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .wrap.wrap--price .top-btn .button-a::before {
    width: 3.8rem;
    height: 3.5rem;
  }
}
.wrap.wrap--price .btn-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 6.4rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .btn-wrap {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 4.8rem;
  }
}
.wrap.wrap--price .btn-wrap .button-a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.6rem 2rem 1.6rem;
  font-weight: normal;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--price .btn-wrap .button-a {
    padding: 2rem 2rem 2rem 0.4rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .btn-wrap .button-a {
    width: 100%;
  }
}
.wrap.wrap--price .price {
  padding: 5rem 4rem;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin: 0 auto;
  width: var(--inner-width);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--price .price {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .price {
    width: 100%;
    padding: 5rem 2rem;
    gap: 4rem;
  }
}
.wrap.wrap--price .price .heading-c {
  margin-bottom: 0;
}
.wrap.wrap--price .price .heading-c .etc,
.wrap.wrap--price .price .heading-c .up,
.wrap.wrap--price .price .heading-c .all {
  font-size: 2.8rem;
  color: var(--color-base-white);
  line-height: 1.5;
  padding: 0.3rem 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price .heading-c .etc,
  .wrap.wrap--price .price .heading-c .up,
  .wrap.wrap--price .price .heading-c .all {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.wrap.wrap--price .price .heading-c .etc {
  background: #625EA9;
}
.wrap.wrap--price .price .heading-c .up {
  background: #E60012;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price .heading-c .up {
    margin-left: 1rem;
  }
}
.wrap.wrap--price .price .heading-c .all {
  background: var(--color-dense-primary);
}
.wrap.wrap--price .price__wrap {
  background: var(--color-base-white);
  border-radius: 1rem;
  padding: 3.2rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__wrap {
    padding: 2.8rem 1.6rem;
  }
}
.wrap.wrap--price .price__wrap dl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__wrap dl {
    margin-bottom: 2rem;
  }
}
.wrap.wrap--price .price__wrap dl:last-of-type {
  margin-bottom: 0;
}
.wrap.wrap--price .price__term {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__term {
    font-size: 1.6rem;
    padding-left: 2.2rem;
  }
}
.wrap.wrap--price .price__term::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__term::after {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.wrap.wrap--price .price__term--period::after {
  background: url("../images/price/icon-calendar.svg") no-repeat center center;
  background-size: contain;
}
.wrap.wrap--price .price__term--model::after {
  background: url("../images/price/icon-car.svg") no-repeat center center;
  background-size: contain;
}
.wrap.wrap--price .price__term--charge::after {
  background: url("../images/price/icon-price.svg") no-repeat center center;
  background-size: contain;
}
.wrap.wrap--price .price__term--method::after {
  background: url("../images/price/icon-wallet.svg") no-repeat center center;
  background-size: contain;
}
.wrap.wrap--price .price__detail {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__detail {
    letter-spacing: -0.01em;
  }
}
.wrap.wrap--price .price__detail-txt {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__detail-txt {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
}
.wrap.wrap--price .price__detail-txt span:first-of-type {
  min-width: 30.5rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__detail-txt span:first-of-type {
    min-width: auto;
  }
}
.wrap.wrap--price .price__detail a {
  color: #0972B3;
  text-decoration: underline;
  transition: 0.2s;
}
.wrap.wrap--price .price__detail a:hover {
  opacity: 0.7;
}
.wrap.wrap--price .price__detail-list li {
  margin-bottom: 2rem;
}
.wrap.wrap--price .price__notice summary {
  background: var(--color-sub-primary);
  color: var(--color-base-black);
  justify-content: center;
  font-weight: bold;
  border-radius: 0;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__notice summary {
    font-size: 1.6rem;
  }
}
.wrap.wrap--price .price__notice summary::after {
  content: "";
  width: 2.7rem;
  height: 2.7rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOCIgaGVpZ2h0PSIyOCIgdmlld0JveD0iMCAwIDI4IDI4IiBmaWxsPSJub25lIj48Y2lyY2xlIGN4PSIxMy44ODg1IiBjeT0iMTMuODg4OSIgcj0iMTMuODg4OSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCAxMy44ODg1IDEzLjg4ODkpIiBmaWxsPSJ3aGl0ZSIvPjxwYXRoIGQ9Ik03Ljc3NzM0IDE1LjU1NTdMMTMuODg4NSA5LjQ0NDU3TDE5Ljk5OTYgMTUuNTU1NyIgc3Ryb2tlPSIjMkUyRTJFIiBzdHJva2Utd2lkdGg9IjIuNzc3NzgiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==") no-repeat center center;
  background-size: contain;
  mask-image: none;
  -webkit-mask-image: none;
}
.wrap.wrap--price .price__notice .accordion__content {
  background: var(--color-base-white);
  padding: 2.8rem 0 0;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__notice .accordion__content {
    padding-top: 2.4rem;
  }
}
.wrap.wrap--price .price__notice .u-ul-asterisk {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .price__txt {
    line-height: 180%;
    font-size: 1.6rem;
  }
}
.wrap.wrap--price .detour-map .heading-d {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .detour-map .heading-d {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .detour-map__legend {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .detour-map__legend img {
    width: 100%;
  }
}
.wrap.wrap--price .transit {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.wrap.wrap--price .transit__heading {
  margin-bottom: 0;
}
.wrap.wrap--price .transit__ttl {
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .transit__ttl {
    font-size: 1.6rem;
    display: block;
  }
}
.wrap.wrap--price .transit__ttl .route-number-label {
  font-size: 1.8rem;
}
.wrap.wrap--price .transit__ref-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .transit__ref-ttl {
    font-size: 1.6rem;
  }
}
.wrap.wrap--price .transit__ref-ttl .route-number-label {
  font-size: 1.8rem;
}
.wrap.wrap--price .transit__content {
  background: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .transit__content {
    padding: 2.4rem 1.6rem;
    gap: 1.6rem;
  }
}
.wrap.wrap--price .transit__period {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .wrap.wrap--price .transit__period {
    font-size: 1.6rem;
  }
}
.wrap.wrap--price .transit__period-txt {
  font-size: 1.6rem;
  line-height: 180%;
}
.wrap.wrap--price .transit .route-number-label {
  margin: 0 0.4rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .transit .route-number-label {
    padding: 0.2rem 0.6rem 0.4rem;
  }
}
.wrap.wrap--price .transit .route-name-label {
  display: inline-block;
  margin-right: 0.4rem;
}
.wrap.wrap--price .transit .u-ul-asterisk {
  font-size: 1.6rem;
}
.wrap.wrap--price .transit .direction-arrow {
  color: var(--color-dense-primary);
}
.wrap.wrap--price .transit .direction-arrow--down span::before,
.wrap.wrap--price .transit .direction-arrow--up span::before,
.wrap.wrap--price .transit .direction-arrow--updown span::before {
  right: -8%;
  background-color: var(--color-base-white);
}
.wrap.wrap--price .transit .accordion__summary {
  background-color: var(--color-dense-primary);
}
.wrap.wrap--price .nx-ic {
  margin: 0 auto;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.wrap.wrap--price .nx-ic__wrap {
  display: grid;
  grid-template-columns: 1.5fr 4fr 4fr;
  justify-content: center;
}
@media (max-width: 767px) {
  .wrap.wrap--price .nx-ic__wrap {
    grid-template-columns: 2fr 4fr 4fr;
  }
}
.wrap.wrap--price .nx-ic__wrap:last-of-type {
  margin-bottom: 0;
}
.wrap.wrap--price .nx-ic__wrap:nth-child(1) {
  position: relative;
}
.wrap.wrap--price .nx-ic__head {
  background: var(--color-sub-primary);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .wrap.wrap--price .nx-ic__head {
    padding: 1.4rem 0.7rem;
  }
}
.wrap.wrap--price .nx-ic__head::after {
  content: "";
  width: 1px;
  height: 65%;
  background: var(--color-base-black);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wrap.wrap--price .nx-ic__head:last-of-type::after {
  content: none;
}
.wrap.wrap--price .nx-ic .route-number-label {
  padding: 4px 5px;
  font-size: 1.2rem;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .wrap.wrap--price .nx-ic .route-number-label {
    font-size: 1.1rem;
    border-radius: 5px;
    margin: 0;
    margin-right: 0.2rem;
  }
}
.wrap.wrap--price .nx-ic__content {
  width: 100%;
  background: #F5F5F5;
  padding: 2rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .wrap.wrap--price .nx-ic__content {
    font-size: 1.4rem;
    padding: 0.8rem 0.2rem 0.8rem 0.4rem;
  }
}
.wrap.wrap--price .nx-ic__content::after {
  content: "";
  width: 1px;
  height: 90%;
  background: var(--color-base-black);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 767px) {
  .wrap.wrap--price .nx-ic__content::after {
    height: 90%;
  }
}
.wrap.wrap--price .nx-ic__content:first-of-type {
  justify-content: center;
}
.wrap.wrap--price .nx-ic__content:last-of-type::after {
  content: none;
}
.wrap.wrap--price .nx-ic__content dl {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .nx-ic__content dl {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.wrap.wrap--price .nx-ic__content dl:last-of-type {
  margin-bottom: 0;
}
.wrap.wrap--price .nx-ic__content dt {
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.wrap.wrap--price .nx-ic__content dd {
  margin-bottom: 1.5rem;
}
.wrap.wrap--price .nx-ic__content dd:last-of-type {
  margin-bottom: 0;
}
.wrap.wrap--price .nx-ic__content .asterisk {
  font-size: 1rem;
  position: relative;
  display: inline-block;
  transform: translateY(-0.6rem);
}
.wrap.wrap--price .reference__heading {
  margin-bottom: 4rem;
}
.wrap.wrap--price .reference__ttl {
  text-align: center;
  border-radius: 10px 10px 0 0;
  border: 1px solid #E1E1E1;
  background: #F5F5DC;
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .wrap.wrap--price .reference__ttl {
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.wrap.wrap--price .reference__text {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-base-black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .reference__text {
    font-size: 2rem;
    align-items: end;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .reference__text .direction-arrow {
    margin-bottom: 0.2rem;
  }
}
.wrap.wrap--price .reference__img-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 5rem;
  border-radius: 0 0 1rem 1rem;
  border: 1px solid #E1E1E1;
  border-top: none;
  background-color: var(--color-base-white);
}
@media (max-width: 767px) {
  .wrap.wrap--price .reference__img-wrap {
    padding: 3rem 1.6rem;
    gap: 2.4rem;
  }
}
.wrap.wrap--price .reference__img-wrap img {
  width: 100%;
}
.wrap.wrap--price .reference__ttl-wrap {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .reference__ttl-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    font-size: 2rem;
    line-height: 1.2;
  }
}
.wrap.wrap--price .reference__name-wrap {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
@media (max-width: 767px) {
  .wrap.wrap--price .reference__name-wrap {
    gap: 0.4rem;
    font-size: 1.6rem;
  }
}
.wrap.wrap--price .reference__name-wrap .route-number-label {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .reference__name-wrap .route-number-label {
    padding: 0.2rem 0.4rem 0.3rem;
    font-size: 1.4rem;
  }
}
.wrap.wrap--price .reference .direction-arrow--up span::before {
  background: var(--color-dense-primary);
}
.wrap.wrap--price .faq {
  padding-top: 6.4rem;
  font-feature-settings: normal;
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq {
    padding-top: 4.8rem;
  }
}
.wrap.wrap--price .faq__wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.wrap.wrap--price .faq__ttl {
  background: var(--color-sub-primary);
  color: var(--color-base-black);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  padding: 2rem 7rem 2rem 9rem;
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq__ttl {
    padding: 2rem 4.5rem 2rem 5.5rem;
    font-weight: 700;
    font-feature-settings: "palt" on;
  }
}
.wrap.wrap--price .faq__ttl::before {
  content: "Q.";
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-base-black);
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq__ttl::before {
    font-size: 2.4rem;
    left: 2rem;
  }
}
.wrap.wrap--price .faq__ttl::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBmaWxsPSJub25lIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCAyMCAyMCkiIGZpbGw9IndoaXRlIi8+PHBhdGggZD0iTTExLjE5OTIgMjIuNDAwNEwxOS45OTkyIDEzLjYwMDRMMjguNzk5MiAyMi40MDA0IiBzdHJva2U9IiMyRTJFMkUiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=") no-repeat center center;
  background-size: contain;
  mask-image: none;
  -webkit-mask-image: none;
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq__ttl::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.wrap.wrap--price .faq__content {
  padding: 3rem 3rem 3rem 9rem;
  background: var(--color-base-white);
  position: relative;
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq__content {
    padding: 2rem 2rem 2rem 5.5rem;
  }
}
.wrap.wrap--price .faq__content::before {
  content: "A.";
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-base-black);
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq__content::before {
    font-size: 2.4rem;
    left: 2rem;
  }
}
.wrap.wrap--price .faq__txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.wrap.wrap--price .faq__txt {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq__txt {
    font-feature-settings: "palt" on;
  }
}
.wrap.wrap--price .faq__txt a {
  color: #0972B3;
  text-decoration: underline;
  transition: 0.2s;
}
.wrap.wrap--price .faq__txt a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .wrap.wrap--price .faq__txt .sp-word-break {
    word-break: break-all;
  }
}
.wrap.wrap--price .direction-arrow {
  color: var(--color-base-white);
  display: inline-block;
  font-size: 1.2rem;
}
@media screen and (max-width: 1600px) {
  .wrap.wrap--price .direction-arrow {
    font-size: 0.8125vw;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--price .direction-arrow {
    font-size: 1.0833333333vw;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .direction-arrow {
    font-size: 1.1rem;
  }
}
.wrap.wrap--price .direction-arrow.--small {
  font-size: 1.2rem;
}
@media screen and (max-width: 1600px) {
  .wrap.wrap--price .direction-arrow.--small {
    font-size: 0.8125vw;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .direction-arrow.--small {
    font-size: 0.9rem;
  }
}
.wrap.wrap--price .direction-arrow span {
  position: relative;
  z-index: 1;
}
.wrap.wrap--price .direction-arrow span::before {
  content: "";
  position: absolute;
  top: 0.5px;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
}
.wrap.wrap--price .direction-arrow--updown {
  margin: 0 1rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--price .direction-arrow--updown {
    margin: 0 0.7rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .direction-arrow--updown {
    margin: 0 1rem;
  }
}
.wrap.wrap--price .direction-arrow--updown span::before {
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}
.wrap.wrap--price .direction-arrow--up {
  margin: 0 1rem 0 0.4rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--price .direction-arrow--up {
    margin: 0 0.7rem 0 0.2rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .direction-arrow--up {
    margin: 0 1rem 0 0.5rem;
  }
}
.wrap.wrap--price .direction-arrow--up span::before {
  left: -5%;
  width: 125%;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
.wrap.wrap--price .direction-arrow--down {
  margin: 0 0.8rem 0 1rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--price .direction-arrow--down {
    margin: 0 0.5rem 0 0.8rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price .direction-arrow--down {
    margin: 0 0.5rem 0 1rem;
  }
}
.wrap.wrap--price .direction-arrow--down span::before {
  left: auto;
  right: -5%;
  width: 125%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap.wrap--price #price01,
  .wrap.wrap--price #price02,
  .wrap.wrap--price #faq {
    scroll-margin-top: -14rem;
  }
}
@media (max-width: 767px) {
  .wrap.wrap--price #price01,
  .wrap.wrap--price #price02,
  .wrap.wrap--price #faq {
    scroll-margin-top: -5rem;
  }
}

.fixed-btn {
  opacity: 0;
  position: fixed;
  z-index: 997;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  width: 6rem;
}
@media screen and (max-width: 1200px) {
  .fixed-btn {
    width: 6rem;
  }
}
@media (max-width: 767px) {
  .fixed-btn {
    bottom: 0;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: auto;
    bottom: -1px;
    left: 50%;
    width: 100%;
  }
}
.fixed-btn a {
  transition: 0.25s;
}
@media (max-width: 767px) {
  .fixed-btn a:hover {
    opacity: 0.7;
  }
}
.fixed-btn img {
  vertical-align: middle;
  width: 100%;
}

.mv-cp {
  height: 43vw;
  background: #fdd000;
  z-index: -1;
}
@media (max-width: 767px) {
  .mv-cp {
    height: 49rem;
  }
}
.mv-cp .js-scroll-cont {
  top: 0;
}
.mv-cp img {
  width: 100%;
  height: auto;
}
.mv-cp .mv-cp-swiper {
  position: relative;
  bottom: auto !important;
}
.mv-cp__slide {
  position: absolute;
  width: 100%;
}
.mv-cp__slide img {
  width: 100%;
}
.mv-cp .first-slide {
  z-index: 1;
}
.mv-cp .second-slide {
  z-index: 0;
}

.wrap--cp {
  --inner-width: 960px;
}
.wrap--cp .active {
  opacity: 1;
  transition: 0.3s;
  visibility: visible;
  pointer-events: inherit;
}
.wrap--cp .heading01 {
  position: relative;
  padding: 2.5rem 1rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #182987;
  font-size: 4rem;
  font-weight: bold;
  z-index: 1;
}
@media (max-width: 767px) {
  .wrap--cp .heading01 {
    padding: 1rem;
    line-height: 1.4;
    font-size: 2rem;
  }
}
.wrap--cp .heading01::after {
  position: absolute;
  width: 5rem;
  height: 2.5rem;
  clip-path: polygon(15% 0, 50% 100%, 85% 0);
  background: #182987;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .heading01::after {
    bottom: -1rem;
  }
}
.wrap--cp .highway-num {
  background: #008765;
  color: #FFF;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 1rem;
  padding: 0.3rem 0.5rem;
  display: inline-block;
  line-height: 1;
}
@media (max-width: 767px) {
  .wrap--cp .highway-num {
    font-size: 1.5rem;
    padding: 0.2rem 0.5rem 0.4rem 0.5rem;
    margin-right: 0.5rem;
  }
}
.wrap--cp .highway-num--second {
  margin-left: 1.5rem;
}
@media (max-width: 767px) {
  .wrap--cp .highway-num--second {
    margin-left: 1rem;
  }
}
.wrap--cp .bg-image-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-height: 450px;
  clip-path: inset(0);
  /* 切り抜き */
  z-index: -2;
}
@media (max-width: 767px) {
  .wrap--cp .bg-image-clip {
    min-height: 280px;
  }
}
.wrap--cp .bg-image-fixed {
  position: fixed;
  /* 背景を固定 */
  background: url("../images/cp/present-bg.png") no-repeat;
  bottom: -1px;
  right: 0;
  width: 73rem;
  height: 42rem;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .wrap--cp .bg-image-fixed {
    bottom: 5rem;
    width: 100%;
    height: 23rem;
  }
}
.wrap--cp .btnA {
  position: relative;
  display: block;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  background-color: #28883a;
  border-radius: 5rem;
  width: 53rem;
  margin: 0 auto;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .wrap--cp .btnA {
    width: 100%;
    font-size: 1.4rem;
    padding: 0.5rem 0;
  }
}
.wrap--cp .btnA::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  top: 43%;
  right: 3rem;
  border-radius: 0.1rem;
  transition: all 0.25s ease;
}
@media (max-width: 767px) {
  .wrap--cp .btnA::after {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 767px) {
  .wrap--cp .btnA:hover::after {
    top: 50%;
  }
}
.wrap--cp .btnA--blue {
  background-color: #182987;
}
.wrap--cp .btnA--pink {
  background-color: #1F4C9F;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .wrap--cp .btnA--pink {
    padding-right: 0;
  }
}
.wrap--cp .btnA--white {
  background-color: #fff;
  color: #182987;
  border: 2px solid #182987;
}
.wrap--cp .btnA--white::after {
  border-top: 3px solid #182987;
  border-right: 3px solid #182987;
}
.wrap--cp .summary-btn {
  position: absolute;
  background-color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border-radius: 0.4rem;
  z-index: 1;
}
.wrap--cp .summary-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  width: 1.8rem;
  border-top: 4px solid #1F4C9F;
  transform: translate(-50%, -50%);
}
.wrap--cp .summary-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  content: "";
  display: inline-block;
  width: 1.8rem;
  border-top: 4px solid #1F4C9F;
  transition: all 0.25s ease;
}
.wrap--cp .summary-btn--blue {
  border: 1px solid #182987;
}
.wrap--cp .summary-btn--blue::before {
  border-top: 0.8rem solid #182987;
}
.wrap--cp .summary-btn--blue::after {
  border-top: 0.8rem solid #182987;
}
.wrap--cp .accordion__header {
  cursor: pointer;
}
.wrap--cp .accordion__header.active .summary-btn::after {
  transition: all 0.25s ease;
  transform: translate(-50%, -50%) rotate(180deg);
}
.wrap--cp .accordion__body {
  display: none;
}
.wrap--cp .js-scroll-overlap,
.wrap--cp .js-scroll-overlap02 {
  position: relative;
  z-index: 0;
}
.wrap--cp .js-scroll-cont,
.wrap--cp .js-scroll-cont02 {
  position: absolute;
  width: 100%;
  height: inherit;
}
.wrap--cp .construction-section {
  position: relative;
  background: #fdd000;
  z-index: 1;
}
.wrap--cp .construction-section__image {
  position: relative;
  text-align: center;
  width: 44.5833333333vw;
  top: -6.25vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .wrap--cp .construction-section__image {
    width: 100%;
    top: -5rem;
  }
}
.wrap--cp .construction-section__text {
  margin-top: -5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .construction-section__text {
    margin-top: -9rem;
    padding-left: 1.5em;
    text-indent: -1.5em;
    text-align: left;
    font-size: 1.3rem;
  }
}
.wrap--cp .global-menu {
  position: relative;
  padding: 0 0 1.5rem;
  background: #fdd000;
  z-index: 1;
}
@media (max-width: 767px) {
  .wrap--cp .global-menu {
    padding: 0 0 3rem;
  }
}
.wrap--cp .global-menu__list {
  display: grid;
  grid-template-areas: "div1 div2" "div3 div4" "div5 div5";
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__list {
    gap: 1.5rem;
  }
}
.wrap--cp .global-menu__list .div1 {
  grid-area: div1;
}
.wrap--cp .global-menu__list .div2 {
  grid-area: div2;
}
.wrap--cp .global-menu__list .div3 {
  grid-area: div3;
}
.wrap--cp .global-menu__list .div4 {
  grid-area: div4;
}
.wrap--cp .global-menu__list .div5 {
  grid-area: div5;
}
.wrap--cp .global-menu__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2rem;
  width: 100%;
  background: #182987;
  overflow: hidden;
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__link {
    padding: 1rem;
    height: 100%;
  }
}
.wrap--cp .global-menu__link.--notice {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__link.--notice {
    padding: 1.8rem 2.6rem 1.8rem 1rem;
  }
}
.wrap--cp .global-menu__link.--notice .global-menu__ttl {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__link.--notice .global-menu__ttl {
    font-size: 1.25rem;
  }
}
.wrap--cp .global-menu__link.--notice::after {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  background: url("../images/cp/arrow-down-notice.svg") no-repeat;
  background-size: contain;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  transition: all 0.25s ease;
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__link.--notice::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.wrap--cp .global-menu__link:hover.--notice::after {
  transform: translateY(-30%);
}
.wrap--cp .global-menu__link:hover .global-menu__subttl::after {
  transform: translateY(-30%);
}
.wrap--cp .global-menu__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  line-height: 1.2;
  color: #FFF;
  font-size: 2.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__ttl {
    flex-direction: column;
    gap: 1rem;
    font-size: 1.4rem;
  }
}
.wrap--cp .global-menu__ttl.--overview::before {
  display: block;
  width: 5rem;
  height: 5.4rem;
  background: url("../images/cp/menu_overview.svg") no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__ttl.--overview::before {
    width: 3.5rem;
    height: 3.75rem;
  }
}
.wrap--cp .global-menu__ttl.--present::before {
  display: block;
  width: 6rem;
  height: 5.4rem;
  background: url("../images/cp/menu_present.svg") no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__ttl.--present::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.wrap--cp .global-menu__ttl.--howto::before {
  display: block;
  width: 4.1rem;
  height: 6.4rem;
  background: url("../images/cp/menu_howto.svg") no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__ttl.--howto::before {
    width: 2.4rem;
    height: 3.7rem;
  }
}
.wrap--cp .global-menu__ttl.--target::before {
  display: block;
  width: 6rem;
  height: 4.7rem;
  background: url("../images/cp/menu_target.svg") no-repeat;
  background-size: contain;
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__ttl.--target::before {
    width: 4.2rem;
    height: 3.5rem;
  }
}
.wrap--cp .global-menu__subttl {
  position: relative;
  padding: 1.4rem 3.2rem 1.4rem 1.4rem;
  text-align: center;
  line-height: 1.2;
  color: #192988;
  background: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__subttl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 2.4rem 0.8rem 0.8rem;
    height: 100%;
    font-size: 0.9rem;
  }
}
.wrap--cp .global-menu__subttl::after {
  position: absolute;
  background: url("../images/cp/arrow-down.svg") no-repeat;
  background-size: contain;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  right: 0.8rem;
  transition: all 0.25s ease;
  transform: translateY(-50%);
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .global-menu__subttl::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 0.6rem;
  }
}
.wrap--cp .period {
  padding: 8rem 0 5rem;
  text-align: center;
  background: #fdd000;
}
@media (max-width: 767px) {
  .wrap--cp .period {
    padding: 1.5rem 0 2.5rem;
  }
}
.wrap--cp .overview {
  position: relative;
  padding: 5rem 0;
  background-color: #fdd000;
  z-index: 1;
}
@media (max-width: 767px) {
  .wrap--cp .overview {
    padding: 0 0 2.5rem;
  }
}
.wrap--cp .overview__container {
  text-align: center;
  position: relative;
}
.wrap--cp .overview__txt-area {
  background: #fff;
  margin-top: 6.5rem;
  padding: 5rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .wrap--cp .overview__txt-area {
    margin-top: 2rem;
    padding: 2.5rem 1rem;
    border-radius: 0.5rem;
  }
}
.wrap--cp .overview__txt-area .highway-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .wrap--cp .overview__txt-area .highway-num {
    font-size: 1.5rem;
  }
}
.wrap--cp .overview__txt {
  line-height: 1.8;
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .wrap--cp .overview__txt {
    font-size: 1.8rem;
    font-feature-settings: "palt";
  }
}
.wrap--cp .overview__txt strong {
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrap--cp .overview__txt strong {
    font-size: 1.6rem;
  }
}
.wrap--cp .overview__txt.--size-small {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .wrap--cp .overview__txt.--size-small {
    font-size: 1.6rem;
  }
}
.wrap--cp .overview__logo {
  margin: 4rem auto 0;
  width: 31rem;
}
@media (max-width: 767px) {
  .wrap--cp .overview__logo {
    width: 13.3rem;
    margin: 1.5rem auto 0;
  }
}
.wrap--cp .overview__logo img {
  width: 100%;
}
.wrap--cp .overview .bg-image-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-height: 450px;
  clip-path: inset(0);
  /* 切り抜き */
  z-index: -2;
}
@media (max-width: 767px) {
  .wrap--cp .overview .bg-image-clip {
    min-height: 280px;
  }
}
.wrap--cp .overview .bg-image-fixed {
  position: fixed;
  /* 背景を固定 */
  background: url("../images/cp/present-bg.png") no-repeat;
  bottom: -1px;
  right: 0;
  width: 73rem;
  height: 42rem;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .wrap--cp .overview .bg-image-fixed {
    bottom: 5rem;
    width: 100%;
    height: 23rem;
  }
}
.wrap--cp .present {
  position: relative;
  padding: 5rem 0 30rem;
  background-color: #fdd000;
}
@media (max-width: 767px) {
  .wrap--cp .present {
    padding: 0 0 15rem;
  }
}
.wrap--cp .present-bg {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}
.wrap--cp .present__container {
  position: relative;
  margin: 5rem auto 0;
  padding: 5rem;
  width: 100%;
  text-align: center;
  background-color: #fff9e2;
  border-radius: 1rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .wrap--cp .present__container {
    margin: 2rem auto 0;
    padding: 2.5rem 1.6rem;
    border-radius: 0.5rem;
  }
}
@media (max-width: 767px) {
  .wrap--cp .present__head {
    padding: 0 0 2.5rem;
  }
}
.wrap--cp .present__head-sub-ttl {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem 0.8rem 2rem;
  line-height: 1.2;
  color: #fff;
  background: #FE0034;
  font-size: 3.2rem;
  font-weight: bold;
  border-radius: 5rem;
}
@media (max-width: 767px) {
  .wrap--cp .present__head-sub-ttl {
    display: block;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
  }
}
.wrap--cp .present__head-sub-ttl.--size-m {
  width: 100%;
  font-size: 3.8rem;
}
@media (max-width: 767px) {
  .wrap--cp .present__head-sub-ttl.--size-m {
    font-size: 1.5rem;
  }
}
.wrap--cp .present__txt {
  font-weight: bold;
  line-height: 1.6;
  font-size: 2.8rem;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .wrap--cp .present__txt {
    padding: 0 0 1rem;
    font-size: 1.5rem;
  }
}
.wrap--cp .present__txt span {
  color: #ff0033;
}
.wrap--cp .present__txt.--size-s {
  padding-top: 0;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .wrap--cp .present__txt.--size-s {
    padding-bottom: 2.5rem;
    font-size: 1rem;
  }
}
.wrap--cp .present__highway-img {
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .present__highway-img {
    width: 90%;
    margin: 0 auto;
  }
}
.wrap--cp .present__highway-list {
  margin: 2.5rem 0;
  text-align: left;
}
@media (max-width: 767px) {
  .wrap--cp .present__highway-list {
    padding: 0.5rem 0 2rem;
    margin: 0;
  }
}
.wrap--cp .present__highway-list li {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .wrap--cp .present__highway-list li {
    font-size: 1rem;
  }
}
.wrap--cp .present__btn-area {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .wrap--cp .present__btn-area {
    flex-direction: column;
    gap: 1rem;
  }
}
.wrap--cp .present__btn-area .btnA {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  padding-right: 0;
  min-height: 8rem;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .present__btn-area .btnA {
    font-size: 1.4rem;
    min-height: 5.5rem;
  }
}
.wrap--cp .present .bg-image-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-height: 450px;
  clip-path: inset(0);
  /* 切り抜き */
  z-index: 0;
}
@media (max-width: 767px) {
  .wrap--cp .present .bg-image-clip {
    min-height: 280px;
  }
}
.wrap--cp .present .bg-image-fixed {
  position: fixed;
  /* 背景を固定 */
  background: url(../images/cp/present-bg.png) no-repeat;
  bottom: -1px;
  right: 0;
  width: 73rem;
  height: 42rem;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .wrap--cp .present .bg-image-fixed {
    bottom: 5rem;
    width: 100%;
    height: 23rem;
  }
}
.wrap--cp .howto {
  background: #FEF2B8;
  padding: 8rem 0 5rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto {
    padding: 4rem 0;
  }
}
.wrap--cp .howto .btnA {
  margin: 3rem auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .howto .btnA {
    width: 80%;
    margin: 1.5rem auto;
  }
}
.wrap--cp .howto__ttl {
  padding-top: 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .howto__ttl {
    padding-top: 1.5rem;
    margin: 0 auto;
    width: 85%;
  }
}
.wrap--cp .howto__ttl-img {
  position: relative;
  padding-top: 8rem;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .howto__ttl-img {
    padding-top: 7rem;
  }
}
.wrap--cp .howto__ttl-img::before {
  position: absolute;
  background: url("../images/cp/deco.svg") no-repeat;
  background-size: contain;
  width: 5vw;
  height: 5vw;
  top: -2rem;
  left: -3rem;
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .howto__ttl-img::before {
    width: 14vw;
    height: 14vw;
    top: 0;
  }
}
.wrap--cp .howto__sub-ttl {
  position: relative;
  width: 44rem;
  margin: 2rem auto;
}
@media (max-width: 767px) {
  .wrap--cp .howto__sub-ttl {
    width: 25rem;
    margin: 0 auto 1rem;
  }
}
.wrap--cp .howto__step {
  margin: 5rem auto 0;
  width: 90%;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step {
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wrap--cp .howto__step .btnA {
    width: 80%;
    padding: 0.5rem 2rem 0.5rem 0;
    margin: 2rem auto 0;
  }
}
.wrap--cp .howto__step-ttl-img {
  width: 18rem;
  margin: 1rem 0;
  position: relative;
  left: -2rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step-ttl-img {
    width: 9rem;
    margin: 1rem 0 0;
    left: -1rem;
  }
}
.wrap--cp .howto__step-ttl {
  font-size: 3.4rem;
  font-weight: 900;
  padding: 1rem 0;
  text-align: center;
  background-color: #FDD100;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step-ttl {
    font-size: 1.7rem;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }
}
.wrap--cp .howto__step-container {
  position: relative;
}
.wrap--cp .howto__step-container::before {
  position: absolute;
  content: "";
  left: 2rem;
  top: 0;
  width: 1rem;
  height: 100%;
  background-color: #FDD100;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step-container::before {
    width: 0.5rem;
    left: 1rem;
  }
}
.wrap--cp .howto__cont-wrap {
  width: 92%;
  margin: 0 0 3rem auto;
  padding-top: 4.5rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__cont-wrap {
    padding: 1.9rem 0 0;
    margin: 0 0 2rem auto;
  }
}
.wrap--cp .howto__cont {
  display: grid;
  grid-template-areas: "img ttl" "img text";
  grid-template-columns: 24rem auto;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 1rem;
  -moz-box-shadow: 0px 1rem 0px 0px rgb(253, 208, 0);
  -webkit-box-shadow: 0px 1rem 0px 0px rgb(253, 208, 0);
  -ms-box-shadow: 0px 1rem 0px 0px rgb(253, 208, 0);
  box-shadow: 0px 1rem 0px 0px rgb(253, 208, 0);
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__cont {
    grid-template-areas: "img" "ttl" "text";
    grid-template-columns: 100%;
    padding: 2rem;
    -moz-box-shadow: 0px 5px 0px 0px rgb(253, 208, 0);
    -webkit-box-shadow: 0px 5px 0px 0px rgb(253, 208, 0);
    -ms-box-shadow: 0px 5px 0px 0px rgb(253, 208, 0);
    box-shadow: 0px 5px 0px 0px rgb(253, 208, 0);
    gap: 2rem;
  }
}
.wrap--cp .howto__cont.--column2 {
  grid-template-areas: "img text";
  gap: 4rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__cont.--column2 {
    grid-template-areas: "img" "text";
    grid-template-columns: 100%;
    gap: 2rem;
  }
}
.wrap--cp .howto__step-img {
  grid-area: img;
  width: 24rem;
  flex-shrink: 0;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step-img {
    margin: 0 auto;
    width: 13rem;
    padding-left: 0;
  }
}
.wrap--cp .howto__cont-flex {
  grid-area: ttl;
  display: flex;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .wrap--cp .howto__cont-flex {
    flex-direction: row-reverse;
    justify-content: left;
    align-items: center;
    gap: 1.25rem;
  }
}
.wrap--cp .howto__cont-flex img {
  width: 7.5rem;
  height: auto;
}
@media (max-width: 767px) {
  .wrap--cp .howto__cont-flex img {
    width: 4.75rem;
  }
}
.wrap--cp .howto__step-txt {
  grid-area: text;
  font-size: 2.4rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step-txt {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.wrap--cp .howto__step-txt span {
  font-weight: bold;
}
.wrap--cp .howto__step-txt .blue {
  color: #182987;
}
.wrap--cp .howto__step-txt .green {
  color: #11753E;
}
.wrap--cp .howto__step1-cont {
  width: 85%;
  margin: 0 0 0 auto;
  padding-right: 2rem;
}
.wrap--cp .howto__step1-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step1-list {
    gap: 2.3rem;
    margin-top: 1rem;
  }
}
.wrap--cp .howto__step1-list::after {
  position: absolute;
  content: "";
  background: url(../images/cp/arrow.png) no-repeat;
  background-size: contain;
  width: 4.9rem;
  height: 2.8rem;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step1-list::after {
    background-size: contain;
    width: 2.4rem;
    height: 1.4rem;
    top: 57%;
  }
}
.wrap--cp .howto__step1-list li {
  background: #fdd000;
  border-radius: 5rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 0;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step1-list li {
    font-size: 1.3rem;
    padding: 1rem 0;
    line-height: 1.2;
  }
}
.wrap--cp .howto__step-txt-notice {
  position: relative;
  font-size: 1.8rem;
  padding-top: 2rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__step-txt-notice {
    font-size: 1.1rem;
    padding-top: 1rem;
    padding-left: 1.5rem;
  }
}
.wrap--cp .howto__step-txt-notice::before {
  position: absolute;
  content: "※";
  left: 0;
}
.wrap--cp .howto__btn-area {
  width: 80%;
  margin: 1.5rem auto 0;
}
@media (max-width: 767px) {
  .wrap--cp .howto__btn-area .present__highway-img {
    width: 100%;
  }
}
.wrap--cp .howto__btn-area .btnA {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wrap--cp .howto__btn-area .btnA {
    width: 100%;
    margin: 0 auto;
  }
}
.wrap--cp .howto__container {
  width: 90%;
  margin: 0 auto;
  padding: 2.2rem 0 0;
}
.wrap--cp .howto__container .list-style li {
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__container .list-style li {
    padding-left: 1.3rem;
  }
}
.wrap--cp .howto__install {
  background-color: #fff;
  border: 5px solid #28883a;
  margin-bottom: 8rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__install {
    margin: 5rem 0;
    border-radius: 0.5rem;
  }
}
.wrap--cp .howto__install-txt {
  padding-top: 1.8rem;
  font-size: 2.4rem;
  font-weight: 500;
  flex-shrink: 0;
  font-feature-settings: "palt" 1;
}
@media (max-width: 767px) {
  .wrap--cp .howto__install-txt {
    line-height: 1.5;
    font-size: 1.4rem;
    padding-top: 0;
  }
}
.wrap--cp .howto__list-txt {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .wrap--cp .howto__list-txt {
    font-size: 1.2rem;
  }
}
.wrap--cp .howto__install-notice {
  font-size: 1.6rem;
  padding: 2rem 0 4.2rem;
}
.wrap--cp .howto__install-notice li {
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__install-notice li {
    line-height: 1.7;
    padding-left: 1rem;
  }
}
.wrap--cp .howto__install-notice li::before {
  position: absolute;
  content: "※";
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 767px) {
  .wrap--cp .howto__install-notice li::before {
    top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .wrap--cp .howto__install-notice {
    padding: 0.5rem 0 2rem;
    font-size: 1.1rem;
    line-height: 1.3;
  }
}
.wrap--cp .howto__highway {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .howto__highway {
    margin-top: 0.5rem;
  }
}
.wrap--cp .howto__highway-wrap {
  display: flex;
  justify-content: center;
  width: 85%;
  margin: 1.5rem auto 0;
}
@media (max-width: 767px) {
  .wrap--cp .howto__highway-wrap {
    width: 100%;
    margin: 1rem 0;
    display: block;
  }
}
.wrap--cp .howto__highway-img {
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .howto__highway-img {
    width: 90%;
    margin: 1.5rem auto 0.5rem;
  }
}
@media (max-width: 767px) {
  .wrap--cp .howto__highway-img img {
    width: 100%;
  }
}
.wrap--cp .howto__highway-install {
  display: flex;
  flex-direction: column;
  margin: 0 2rem;
}
.wrap--cp .howto__highway-install a:hover {
  opacity: 0.7;
  cursor: pointer;
}
.wrap--cp .howto__install-ttl img {
  width: 100%;
}
.wrap--cp .howto__qr {
  width: 10.4rem;
  margin: 0 auto;
}
.wrap--cp .howto__google-btn {
  width: 14rem;
  margin: 0 auto;
}
.wrap--cp .howto__highway-install-sp {
  display: flex;
  gap: 5%;
  margin: 1rem 0 0 0;
}
.wrap--cp .experience {
  padding: 8rem 0 10rem;
  background: #FDD100;
}
@media (max-width: 767px) {
  .wrap--cp .experience {
    padding: 2.5rem 0 5rem;
  }
}
.wrap--cp .experience__ttl {
  text-align: center;
  color: #192988;
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .wrap--cp .experience__ttl {
    font-size: 1.5rem;
  }
}
.wrap--cp .experience__ttl--honorifics {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .wrap--cp .experience__ttl--honorifics {
    font-size: 1.2rem;
  }
}
.wrap--cp .experience-movie {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .wrap--cp .experience-movie {
    margin-top: 2rem;
  }
}
.wrap--cp .experience-movie__ttl {
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .experience-movie__ttl img {
    width: 15rem;
    height: auto;
  }
}
.wrap--cp .experience-movie__text {
  margin-top: 2rem;
  text-align: center;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .wrap--cp .experience-movie__text {
    margin-top: 1rem;
    line-height: 1.4;
    font-size: 1.6rem;
  }
}
.wrap--cp .experience-movie__iframe {
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .experience-movie__iframe {
    margin-top: 2rem;
  }
}
.wrap--cp .experience-movie__btn {
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .experience-movie__btn {
    margin-top: 2rem;
  }
}
.wrap--cp .experience-movie__btn a {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 2.5rem 6.2rem 2.5rem 4rem;
  width: 55%;
  text-align: center;
  line-height: 1;
  color: #192988;
  background: #fff;
  font-size: 2rem;
  font-weight: bold;
  border: 2px solid #354396;
  border-radius: 5rem;
  transition: all 0.25s ease;
}
@media (max-width: 767px) {
  .wrap--cp .experience-movie__btn a {
    padding: 1.5rem 3.1rem 1.5rem 2rem;
    width: 80%;
    font-size: 1.4rem;
  }
}
.wrap--cp .experience-movie__btn a::after {
  position: absolute;
  width: 1.6rem;
  height: 2.7rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjciIHZpZXdCb3g9IjAgMCAxNiAyNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMiAyNC42Mjc0TDEzLjMxMzcgMTMuMzEzN0wyIDIuMDAwMDMiIHN0cm9rZT0iIzE5Mjk4OCIgc3Ryb2tlLXdpZHRoPSI0IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=") no-repeat;
  background-size: contain;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  content: "";
}
@media (max-width: 767px) {
  .wrap--cp .experience-movie__btn a::after {
    width: 1rem;
    height: 1rem;
    right: 2rem;
  }
}
.wrap--cp .experience-movie__btn a:hover {
  color: #fff;
  background: #192988;
}
.wrap--cp .experience-movie__btn a:hover::after {
  filter: brightness(0) invert(1);
}
.wrap--cp .target {
  position: relative;
  background: #A1D7EF url(../images/cp/target-bg.png) no-repeat;
  background-size: cover;
  padding: 10rem 0 15rem;
  text-align: center;
  overflow: clip;
}
@media (max-width: 767px) {
  .wrap--cp .target {
    padding: 5rem 0 15rem;
    background: #A1D7EF url(../images/cp/target-bg_sp.png) no-repeat;
    background-size: cover;
  }
}
.wrap--cp .target__ttl {
  margin: 2.5rem 0 1.6rem;
}
.wrap--cp .target__period-ttl img {
  display: block;
  margin: 0 auto;
}
.wrap--cp .target__cp-ttl {
  margin: 2rem 0 0;
}
@media (max-width: 767px) {
  .wrap--cp .target__cp-ttl {
    margin: 1.4rem 0 0;
  }
}
.wrap--cp .target__date {
  margin-bottom: 7rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__date {
    margin-bottom: 2.5rem;
  }
}
.wrap--cp .target__map-tab {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 0 !important;
}
@media (max-width: 767px) {
  .wrap--cp .target__map-tab {
    gap: 1rem;
    justify-content: left;
    padding: 1.5rem 0 !important;
  }
}
.wrap--cp .target__tab-item {
  position: relative;
  background: #E5004F;
  border-radius: 12px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.2rem 2.2rem 1.2rem 0;
  width: calc(33.3333333333% - 20px);
  cursor: pointer;
}
@media (max-width: 767px) {
  .wrap--cp .target__tab-item {
    width: calc(50% - 1.5vw);
    font-size: 1.3rem;
    border-radius: 5px;
    padding: 0.5rem 2.2rem 0.5rem 0;
  }
}
.wrap--cp .target__tab-item .target__tab-item-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrap--cp .target__tab-item .target__tab-item-flex {
    font-size: 1.3rem;
  }
}
.wrap--cp .target__tab-item .map-num {
  font-family: "Roboto";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  color: #182987;
  font-weight: 600;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.7rem;
  margin-bottom: auto;
  line-height: 2;
}
@media (max-width: 767px) {
  .wrap--cp .target__tab-item .map-num {
    font-size: 0.9rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}
.wrap--cp .target__tab-item span {
  font-size: 1.4rem;
  font-weight: normal;
}
@media (max-width: 767px) {
  .wrap--cp .target__tab-item span {
    font-size: 1rem;
  }
}
.wrap--cp .target__tab-item::after {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2225%22%20viewBox%3D%220%200%2024%2025%22%20fill%3D%22none%22%3E%3Crect%20y%3D%2224.4805%22%20width%3D%2224%22%20height%3D%2224%22%20rx%3D%223%22%20transform%3D%22rotate(-90%200%2024.4805)%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M8%2020.4805L16%2012.4805L8%204.48047%22%20stroke%3D%22%23E5004F%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
  right: 1.5rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__tab-item::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 1rem;
  }
}
.wrap--cp .target__map-img {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__map-img {
    margin-top: 3rem;
  }
}
.wrap--cp .target-wrap {
  position: relative;
  z-index: 1;
}
.wrap--cp .target__map-list-ttl {
  text-align: left;
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__map-list-ttl {
    margin-top: 1.2rem;
    width: 11rem;
  }
}
@media (max-width: 767px) {
  .wrap--cp .target__map-list-ttl--nagano {
    width: 8rem;
  }
}
.wrap--cp .target__map-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.wrap--cp .target__map-list li {
  position: relative;
  width: calc(33.3333333333% - 0.7rem);
  background: #1F4C9F;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 0.5rem 1.7rem 0.3rem 0;
}
@media (max-width: 767px) {
  .wrap--cp .target__map-list li {
    width: calc(50% - 0.5rem);
    font-size: 1.4rem;
  }
}
.wrap--cp .target__map-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap--cp .target__map-list li span {
  font-size: 2rem;
  margin-top: auto;
}
@media (max-width: 767px) {
  .wrap--cp .target__map-list li span {
    font-size: 1.2rem;
  }
}
.wrap--cp .target__map-list li svg {
  width: 2rem;
  height: 2.1rem;
  margin: 0 1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .wrap--cp .target__map-list li svg {
    width: 1.2rem;
    margin: 0 0.5rem;
  }
}
.wrap--cp .target__map-list li::after {
  position: absolute;
  content: "";
  background: url(../images/cp/summary-btn.png) no-repeat;
  background-size: contain;
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
  right: 0.8rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__map-list li::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.wrap--cp .target__map-list--blue li {
  background: #182987;
}
.wrap--cp .target__map-list--blue li::after {
  background: url(../images/cp/summary-btn-blue.png) no-repeat;
  background-size: contain;
}
.wrap--cp .target__ttl-run {
  margin: 8rem 0 5rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__ttl-run {
    margin: 5rem 0 2.5rem;
  }
}
.wrap--cp .target__place-txt {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__place-txt {
    margin-bottom: 3rem;
  }
}
.wrap--cp .target__place-txt p {
  font-size: 3.3rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .wrap--cp .target__place-txt p {
    font-size: 2rem;
  }
}
.wrap--cp .target__details-cont-ttl {
  position: relative;
  margin: 8rem auto 0;
  width: 43.5rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-cont-ttl--nagano {
    width: 12.5rem;
  }
}
.wrap--cp .target__details-wrap {
  position: relative;
  background-color: #665210;
  margin: 5rem 0;
  border-radius: 1rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-wrap--first {
    margin: 2.5rem 0 5rem;
    border-radius: 0.5rem;
  }
}
.wrap--cp .target__summary {
  text-align: center;
  position: relative;
  padding: 1rem 0;
  display: block;
}
@media (max-width: 767px) {
  .wrap--cp .target__summary {
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0;
  }
}
.wrap--cp .target__summary-ttl {
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__summary-ttl {
    font-size: 2.4rem;
  }
}
.wrap--cp .target__summary-img img {
  width: 100%;
}
.wrap--cp .target__details {
  width: 92%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wrap--cp .target__details {
    width: 90%;
  }
}
.wrap--cp .target__details-map {
  border-bottom: 25px solid #1F4C9F;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-map {
    border-bottom: 20px solid #1F4C9F;
  }
}
.wrap--cp .target__details-area {
  padding: 3rem;
  border-bottom: 25px solid #665210;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-area {
    padding: 1.5rem;
    border-bottom: 20px solid #665210;
  }
}
.wrap--cp .target__details-table {
  width: 100%;
}
.wrap--cp .target__details-table tr,
.wrap--cp .target__details-table td {
  padding: 1.5rem 0;
  line-height: 1;
  vertical-align: middle;
}
.wrap--cp .target__details-table td {
  font-size: 2.2rem;
  font-weight: bold;
  border: 1px solid #DCDDDD;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-table td {
    font-size: 1.3rem;
  }
}
.wrap--cp .target__details-label {
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: #05B78A;
  border-radius: 5rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-label {
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 0.5rem 0;
    margin-top: 2rem;
  }
}
.wrap--cp .target__details-label:first-of-type {
  margin-top: 0;
}
.wrap--cp .target__details-num {
  width: 18%;
  color: #05B78A;
  font-size: 3.6rem !important;
  padding: 0 0 1.5rem !important;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-num {
    width: 30%;
    font-size: 2.8rem !important;
  }
}
.wrap--cp .target__details-holiday {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  background: #e50012;
  border-radius: 5rem;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-holiday {
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
  }
}
.wrap--cp .target__details-holiday--black {
  background: #000;
}
.wrap--cp .target__details-holiday--blue {
  background: #182987;
}
.wrap--cp .target__details-txt {
  line-height: 1.3 !important;
  font-size: 1.8rem !important;
  font-weight: normal !important;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-txt {
    text-align: left !important;
    font-size: 1.4rem !important;
    padding: 1rem !important;
  }
}
.wrap--cp .target__details-txt span {
  color: #05B78A;
  font-weight: bold;
}
.wrap--cp .target__details-route {
  width: 20%;
  font-size: 2rem !important;
  padding: 1rem !important;
  text-align: left;
  line-height: 1.3 !important;
  font-weight: 400 !important;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-route {
    width: auto;
    font-size: 1.4rem !important;
  }
}
.wrap--cp .target__details-inner {
  background-color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-inner {
    font-size: 1.4rem;
  }
}
.wrap--cp .target__details-inner img {
  display: block;
}
.wrap--cp .target__details-link {
  margin-top: 3rem;
  text-align: right;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-link {
    margin-top: 1.5rem;
    text-align: center;
  }
}
.wrap--cp .target__details-link a {
  position: relative;
  font-size: 2rem;
  padding: 0.5rem 4rem 0.5rem 1.5rem;
  border: 2px solid #A0A0A0;
  border-radius: 5rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-link a {
    font-size: 1.3rem;
  }
}
.wrap--cp .target__details-link a::after {
  position: absolute;
  content: "";
  transform: translateY(-50%);
  top: 45%;
  right: 2rem;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.wrap--cp .target__details-notice {
  font-size: 2rem;
  background-color: #F0F0F0;
  margin-top: 3rem;
  padding: 1rem;
  line-height: 1.3;
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-notice {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}
.wrap--cp .target__details-notice .num {
  font-family: "Roboto";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background: #000;
  border-radius: 5rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: -0.05em;
  position: relative;
  top: -0.2rem;
}
@media (max-width: 767px) {
  .wrap--cp .target__details-notice .num {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.8rem;
    top: -0.2rem;
  }
}
.wrap--cp .target__details-map img {
  width: 100%;
}
.wrap--cp .target .bg-image-clip {
  position: absolute;
  top: 81rem;
  right: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  clip-path: inset(0);
  z-index: 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--cp .target .bg-image-clip {
    top: 88rem;
  }
}
@media (max-width: 767px) {
  .wrap--cp .target .bg-image-clip {
    top: 45rem;
  }
}
.wrap--cp .target .bg-image-fixed {
  position: fixed;
  /* 背景を固定 */
  background: url(../images/cp/present-bg.png) no-repeat;
  bottom: -1px;
  right: 0;
  width: 73rem;
  height: 42rem;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .wrap--cp .target .bg-image-fixed {
    bottom: 5rem;
    width: 100%;
    height: 23rem;
  }
}
.wrap--cp .notice {
  padding: 10rem 0 3rem;
  background-color: #fffbea;
  position: relative;
}
@media (max-width: 767px) {
  .wrap--cp .notice {
    padding: 5rem 0 2.5rem;
  }
}
.wrap--cp .notice .heading01 {
  cursor: pointer;
  display: block;
  font-size: 3.6rem;
  border-bottom: none;
  font-weight: bold;
  width: 100%;
}
@media (max-width: 767px) {
  .wrap--cp .notice .heading01 {
    font-size: 1.8rem;
  }
}
.wrap--cp .notice__list {
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .wrap--cp .notice__list {
    padding-top: 2.5rem;
  }
}
.wrap--cp .notice__list li {
  margin-top: 1rem;
  font-size: 2rem !important;
}
@media (max-width: 767px) {
  .wrap--cp .notice__list li {
    font-size: 1.2rem !important;
  }
}
.wrap--cp .notice__txt {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .wrap--cp .notice__txt {
    font-size: 1.2rem;
  }
}
.wrap--cp .notice .summary-btn {
  width: 4.6rem;
  height: 4.6rem;
  right: 3rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .wrap--cp .notice .summary-btn {
    top: 50%;
    right: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}
.wrap--cp .notice .summary-btn::before {
  width: 25px;
}
@media (max-width: 767px) {
  .wrap--cp .notice .summary-btn::before {
    width: 15px;
    border-top: 0.4rem solid #182987;
  }
}
.wrap--cp .notice .summary-btn::after {
  width: 25px;
}
@media (max-width: 767px) {
  .wrap--cp .notice .summary-btn::after {
    width: 15px;
    border-top: 0.4rem solid #182987;
  }
}
.wrap--cp .notice .js-acc-btn.is-open .summary-btn::after {
  top: 43%;
  left: 22%;
}
.wrap--cp .js-acc-inner {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}
.wrap--cp .js-acc-inner.is-open {
  opacity: 1;
}
.wrap--cp .paypay {
  background-color: #fffbea;
  padding: 6rem 0 10rem;
  position: relative;
}
@media (max-width: 767px) {
  .wrap--cp .paypay {
    padding: 0 0 5rem;
  }
}
.wrap--cp .paypay .heading01 {
  cursor: pointer;
  display: block;
  font-size: 3.6rem;
  border-bottom: none;
  font-weight: bold;
  width: 100%;
}
@media (max-width: 767px) {
  .wrap--cp .paypay .heading01 {
    font-size: 1.8rem;
  }
}
.wrap--cp .paypay__ttl {
  font-size: 2.9rem;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 767px) {
  .wrap--cp .paypay__ttl {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .wrap--cp .paypay-body li {
    line-height: 1.4;
  }
}
.wrap--cp .paypay__txt {
  padding-top: 6rem;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .wrap--cp .paypay__txt {
    padding-top: 2.5rem;
    font-size: 1.2rem;
  }
}
.wrap--cp .paypay .summary-btn {
  width: 4.6rem;
  height: 4.6rem;
  right: 3rem;
}
@media (max-width: 767px) {
  .wrap--cp .paypay .summary-btn {
    top: 50%;
    right: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}
.wrap--cp .paypay .summary-btn::before {
  width: 25px;
}
@media (max-width: 767px) {
  .wrap--cp .paypay .summary-btn::before {
    width: 15px;
    border-top: 0.4rem solid #182987;
  }
}
.wrap--cp .paypay .summary-btn::after {
  width: 25px;
}
@media (max-width: 767px) {
  .wrap--cp .paypay .summary-btn::after {
    width: 15px;
    border-top: 0.4rem solid #182987;
  }
}
.wrap--cp .paypay .js-acc-btn.is-open .summary-btn::after {
  top: 43%;
  left: 22%;
}
.wrap--cp .paypay .list-style li {
  font-size: 2rem !important;
  margin-top: 1rem;
  padding-left: 2rem !important;
}
@media (max-width: 767px) {
  .wrap--cp .paypay .list-style li {
    padding-left: 1.5rem !important;
    font-size: 1.2rem !important;
  }
}
.wrap--cp .paypay .list-style li::before {
  top: 1.7rem;
}
@media (max-width: 767px) {
  .wrap--cp .paypay .list-style li::before {
    top: 0.7rem;
  }
}
.wrap--cp .paypay__list li {
  margin-top: 1rem;
  font-size: 2rem !important;
}
@media (max-width: 767px) {
  .wrap--cp .paypay__list li {
    font-size: 1.2rem !important;
  }
}
.wrap--cp .footer-menu {
  margin-top: 0;
}
.wrap--cp .side-menu {
  display: none;
}
.wrap--cp .link-blue {
  color: #0972b3;
  text-decoration: underline;
}
.wrap--cp .footer-contact .l-inner {
  margin: 0 auto;
  width: 980px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--cp .footer-contact .l-inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .wrap--cp .footer-contact .l-inner {
    padding: 0 2rem;
    width: 100%;
  }
}

.wrap--pr .pr {
  margin: 8rem auto 0;
}
.wrap--pr .pr__btn {
  width: 46rem;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr .pr__btn {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .wrap--pr .pr__btn {
    width: 100%;
  }
}
.wrap--pr .pr .m-inner {
  width: 70rem;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr .pr .m-inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .wrap--pr .pr .m-inner {
    width: 100%;
  }
}
.wrap--pr .leaflet {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .wrap--pr .leaflet {
    margin-bottom: 4.8rem;
  }
}
.wrap--pr .leaflet__box {
  width: 75rem;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr .leaflet__box {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .wrap--pr .leaflet__box {
    width: 100%;
  }
}
.wrap--pr .leaflet .modal-content__content img {
  width: 250%;
}
@media (max-width: 767px) {
  .wrap--pr .leaflet .modal-content__content img {
    width: 600%;
  }
}
.wrap--pr .cm {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .wrap--pr .cm {
    margin-bottom: 4.8rem;
  }
}
.wrap--pr .cm .tab-labels {
  width: 79rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr .cm .tab-labels {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .wrap--pr .cm .tab-labels {
    width: max-content;
  }
}
.wrap--pr .cm .tab-labels::after {
  width: 98rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr .cm .tab-labels::after {
    width: 100vw;
  }
}
@media (max-width: 767px) {
  .wrap--pr .cm .tab-labels::after {
    width: 100%;
  }
}
.wrap--pr .cm__youtube {
  width: 74rem;
  margin: 0 auto;
  text-align: center;
}
.wrap--pr .cm__youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr .cm__youtube {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .wrap--pr .cm__youtube {
    width: 100%;
  }
}
.wrap--pr .cm__guidance {
  text-align: center;
  font-size: 1.6rem;
  line-height: 140%;
  margin: 3.2rem auto 1.2rem;
}
.wrap--pr .cm__size {
  text-align: center;
  font-size: 1.4rem;
  line-height: 150%;
  margin-top: 1.6rem;
}
.wrap--pr .poster {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .wrap--pr .poster {
    margin-bottom: 4.8rem;
  }
}
.wrap--pr .poster__box {
  width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr .poster__box {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .wrap--pr .poster__box {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .wrap--pr .poster .modal-content__content img {
    width: 100%;
  }
}
.wrap--pr .modal-content {
  width: 110rem;
}
@media (max-width: 767px) {
  .wrap--pr .modal-content {
    width: 100%;
  }
}
.wrap--pr .modal-content__scroll {
  max-height: 75vh;
}
.wrap--pr .simplebar-content-wrapper {
  cursor: grab;
  user-select: none;
}
.wrap--pr .simplebar-content-wrapper:active {
  cursor: grabbing;
}
.wrap--pr .simplebar-content-wrapper img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .wrap--pr #leaflet,
  .wrap--pr #cm,
  .wrap--pr #poster {
    scroll-margin-top: -14rem;
  }
}
@media (max-width: 767px) {
  .wrap--pr #leaflet,
  .wrap--pr #cm,
  .wrap--pr #poster {
    scroll-margin-top: -4rem;
  }
}

.wrap.wrap--construction .construction {
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .construction {
    padding-top: 6.4rem;
  }
}
.wrap.wrap--construction .img-wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 86rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .img-wrap {
    width: 100%;
    flex-direction: column;
    gap: 3.6rem;
  }
}
.wrap.wrap--construction .img-wrap figure {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc((100% - 2rem) / 2);
}
@media (max-width: 767px) {
  .wrap.wrap--construction .img-wrap figure {
    width: 100%;
  }
}
.wrap.wrap--construction .img-wrap figcaption {
  color: #000;
  font-size: 1.8rem;
  line-height: 1.5;
  background: #F5F5F5;
  text-align: center;
  padding: 0.6rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .img-wrap figcaption {
    font-size: 1.6rem;
    padding: 0.8rem;
  }
}
.wrap.wrap--construction .const-place__heading {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__heading {
    margin-bottom: 4.8rem;
  }
}
.wrap.wrap--construction .const-place__sec-wrap {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__sec-wrap {
    gap: 4.8rem;
  }
}
.wrap.wrap--construction .const-place__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__content {
    gap: 3rem;
  }
}
.wrap.wrap--construction .const-place__content:last-of-type {
  margin-bottom: 0;
}
.wrap.wrap--construction .const-place__circle li::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: var(--color-base-black);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__circle li::before {
    top: 0.7rem;
    transform: translateY(0);
  }
}
.wrap.wrap--construction .const-place__swiper-wrap {
  width: 86rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__swiper-wrap {
    width: 100%;
  }
}
.wrap.wrap--construction .const-place__swiper-wrap .swiper-button-prev {
  left: 0;
  transform: translateX(-50%);
  width: 7rem;
  height: 7rem;
  top: 40%;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__swiper-wrap .swiper-button-prev {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.wrap.wrap--construction .const-place__swiper-wrap .swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/construction/swiper-prev.svg) no-repeat center center;
  background-size: contain;
}
.wrap.wrap--construction .const-place__swiper-wrap .swiper-button-next {
  right: 0;
  transform: translateX(50%);
  width: 7rem;
  height: 7rem;
  top: 40%;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__swiper-wrap .swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.wrap.wrap--construction .const-place__swiper-wrap .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/construction/swiper-next.svg) no-repeat center center;
  background-size: contain;
}
.wrap.wrap--construction .const-place__swiper, .wrap.wrap--construction .const-place__swiper-02 {
  width: 100%;
}
.wrap.wrap--construction .const-place__swiper figure, .wrap.wrap--construction .const-place__swiper-02 figure {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__swiper figure, .wrap.wrap--construction .const-place__swiper-02 figure {
    width: 100%;
  }
}
.wrap.wrap--construction .const-place__swiper figcaption, .wrap.wrap--construction .const-place__swiper-02 figcaption {
  color: #000;
  font-size: 1.8rem;
  line-height: 1.5;
  background: #F5F5F5;
  text-align: center;
  padding: 0.6rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__swiper figcaption, .wrap.wrap--construction .const-place__swiper-02 figcaption {
    font-size: 1.6rem;
    padding: 0.8rem;
  }
}
.wrap.wrap--construction .const-place__swiper img, .wrap.wrap--construction .const-place__swiper-02 img {
  width: 100%;
}
.wrap.wrap--construction .const-place__txt {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .const-place__txt {
    text-align: left !important;
  }
}
.wrap.wrap--construction .const-place .u-ul-asterisk {
  font-size: 1.6rem;
}
.wrap.wrap--construction .main-work {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .main-work {
    display: block;
  }
}
.wrap.wrap--construction .main-work__txt {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .main-work__txt {
    margin-bottom: 4.8rem;
  }
}
.wrap.wrap--construction .main-work__example {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  width: calc((100% - 8.2rem) / 2);
}
@media (max-width: 767px) {
  .wrap.wrap--construction .main-work__example {
    width: 100%;
    gap: 2rem;
    margin-bottom: 4.8rem;
  }
}
.wrap.wrap--construction .main-work__example-txt {
  font-size: 1.6rem !important;
  font-weight: normal !important;
  text-align: left !important;
  background: transparent !important;
}
.wrap.wrap--construction .main-work .heading-c {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .wrap.wrap--construction .main-work .heading-c {
    margin-bottom: 3rem;
  }
}
.wrap.wrap--construction .heading-d {
  margin-bottom: 0;
}

.closed-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 990;
}
.closed-layer__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-base-white);
  z-index: 999;
}
.closed-layer__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .closed-layer__ttl {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 767px) {
  .closed-layer__txt {
    font-size: 1.4rem;
  }
}
.closed-layer--top .closed-layer__inner {
  top: 24rem;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .closed-layer--top .closed-layer__inner {
    top: 16rem;
  }
}

.has-closed-overlay {
  position: relative;
}
.has-closed-overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-base-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  z-index: 100;
}
@media (max-width: 767px) {
  .has-closed-overlay::after {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=style.css.map */
