/* style.css */
/* @charset "UTF-8";*/
:root {
  --text-gradation_blue: linear-gradient(90deg, #0C72AD 5%, #53ABE0 79.81%);
}

.simulator-container {
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
}

h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.simulator__form-label {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--color-black, #333);
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
  letter-spacing: 0.3px;
}
.simulation__required {
  display: flex;
  padding: 5px 8px 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-5px, 5px);
  background: var(--color-soft_red, #FFEDED);
  color: var(--text-red, #D81616);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 12px */
}

select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

/* ボディタイプのタブボタン */
.body-type-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.type-tab-btn {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}
.type-tab-btn.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* 車種カードのレイアウト */
.car-card-container {
  display: block;
  margin-bottom: 50px;
}
.s-lineup__panel-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.car-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  width: 200px;
}

/* タブ全体のコンテナ */
.term-tab-container {
  display: flex;
  height: 46px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  margin-bottom: 24px;
}

/* ラジオボタン本来の丸ポチを隠す */
.term-tab-container input[type="radio"] {
  display: none;
}

/* ラジオボタンのラベルを「ボタンの見た目」にする */
.term-tab-btn {
  display: flex;
  height: 46px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border: 1px solid #ddd;
  background: var(--color-white, #FFF);
  color: var(--text-body, var(--color-black, #333));
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

/*--- シミュレーションセクション ---*/
.s-simulate {
  margin-top: 64px;
}
/* ホバーしたときの動き */
.term-tab-btn:hover {
  background: var(--color-muted_soft_blue, #E8F2FC);
  border-color: #ccc;
}
.simulation__title {
  margin-bottom: 20px;
}
.s-simulate {
  position: relative;
}
.s-simulate::before {
  content: ""; /* ★背景画像として使う場合でも、空のcontentは必須！ */
  position: absolute;
  top: -40px;
  right: -8px;
  /* アイコンのサイズ（CSSで自由に決められる！） */
  width: 367px;
  height: 86px;
  z-index: 1;
  /* 背景画像の設定 */
  background-image: url('/lp2/sukkiri/images/deco_simulate.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* ★重要：枠内に綺麗に収める指定 */
}
.simulation__title-img {
  margin: 0 auto;
}
.simulation__lead {
  color: var(--color-black, #333);
  /* body */
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 28px */
}

/* 2. ★魔法の外枠：ここを「テキストボックスの見た目」にする */
.input-group-container {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px 8px 15px;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-5px, 5px);
  border: 1px solid var(--color-light_gray, #DEDEDE);
  background: var(--color-white, #FFF);
}

/* クリックされたとき（フォーカス時）の綺麗な青枠エフェクト */
.input-group-container:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* 3. ★本物のinput：枠線と背景を消して外枠に溶け込ませる */
.car-input-box {
  border: none !important;      /* 枠線を完全に消去 */
  background: transparent !important; /* 背景を透明に */
  font-size: 16px;
  outline: none;                /* 標準の黄色や青の枠線を消す */
  cursor: pointer;
  color: #333;
  width: 100%;
}
.input-group-container:has(.car-input-box:not(:placeholder-shown)) {
  border: 1px solid var(--color-blue, #53ABE0);
}
.input-group-container:has(#open-modal-btn-color.is-disabled) .car-input-box {
  cursor: not-allowed;
  pointer-events: none;
}

/* 4. ★右端のボタン：inputと高さを合わせて右側にピタッと吸着 */
.select-trigger-btn {
  display: flex;
  width: 58px;
  height: 38px;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: var(--radius-full, 1000px);
  border: 1px solid var(--color-deep_blue, #0C72AD);
  background: var(--color-white, #FFF);
  color: var(--color-deep_blue, #0C72AD);
  /* フォントカラー */
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
  transition: all 0.2s ease;
}
.select-trigger-btn:hover {
  background: var(--color-muted_soft_blue, #E8F2FC);
  cursor: pointer;
}
.select-trigger-btn.is-disabled {
  /* ① マウスイベント（クリックやホバー）を完全に無効化 */
  pointer-events: none;
  
  /* ② 見た目で無効化されていることをユーザーに伝える */
  opacity: 0.5;
  cursor: not-allowed;
  color: #000;
  background-color: #ccc;
  border-color: #000;
}

/* モーダルの背景（画面全体を覆う黒いマスク） */
/* モーダルが開いている時、背景（ページ全体）のスクロールを完全に禁止する */
body.is-fixed {
  overflow: hidden;
}
.modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* ① 初期状態は透明 ＋ タップ不能にする */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  /* ② 透明度と表示状態にトランジションを設定 */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-open {
  opacity: 1;
}
.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-overlay.is-open .car-select__modal-content {
  opacity: 1;
  transform: translateY(0); /* 元の位置（中央）に戻す */
  transition: transform 0.5s ease;
  overflow: hidden;
}
/* モーダルの白い箱 */
.car-select__modal-content {
  display: inline-grid;
  width: 100%;
  max-width: 750px;
  margin-top: 64px;
  padding: 15px 15px 64px 15px;
  row-gap: 15px;
  grid-template-rows: repeat(2,fit-content(100%));
  grid-template-columns: repeat(1,minmax(0,1fr));
  border-radius: 15px 15px 0 0;
  background: var(--color-white, #FFF);
  height: 100dvh;
  opacity: 0;
  transform: translateY(800px); /* 40px 下に配置 */
  transition: opacity 1s cubic-bezier(0.22, 1, 0.3, 1),
              transform 1s cubic-bezier(0.22, 1, 0.3, 1);
  will-change: opacity, transform;
  /* ★ ここ（元クラス）に書くことで、remove された時も 0.5秒かけて元に戻る！ */
  transition: opacity 1s ease, transform 1s ease;
}
.car-select__modal-header {
  display: flex;
  justify-content: center;
  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
  justify-self: stretch;
  position: relative;
}
.car-select__modal-header::before {
  position: absolute;
  width: 110%;
  height: 1px;
  background: var(--color-light_gray, #DEDEDE);
  content: "";
  bottom: -15px;
}
.car-select__modal-header-text {
  color: var(--color-black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 24px */
}
.car-select__modal-car-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.car-select__modal-car-name-main {
  color: var(--color-black, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.car-select__modal-car-name-sub {
  color: var(--55, #8C8C8C);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
.modal-close-x {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 0;                  /* ★右端にくっつける */
  /* 縦中央に寄せるための調整 */
  top: 50%;
  transform: translateY(-50%);
  color: #8C8C8C !important; /* 💡 サイトに合わせた文字色（白ボタンなら #ffffff 等） */
  -webkit-text-fill-color: #8C8C8C !important; /* 💡 iOS Safariの塗りを強制上書き */
}
/* モーダル内の車種ボタン一覧 */
.modal-car-list__wrap {
  display: block;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
}
.modal-car-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  grid-row: 2 / span 1;
  grid-column: 1 / span 1;
  justify-self: stretch;
  padding-top: 10px;
}
/* 車の画像エリア（71x50にサイズを指定） */
.modal-car-img-wrapper {
  width: 71px;               /* 横幅を71pxに固定 */
  height: 50px;              /* 高さを50pxに固定 */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;          /* 画像の後ろを白背景に */
  overflow: hidden;
  flex-shrink: 0;            /* 潰れ防止 */
}
/* 実際の画像 */
.modal-car-img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* 比率を保ったまま枠（71x50）に収める */
}
.modal-car-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px 0;
  background: #ffffff;
  border: none;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.modal-car-btn:not(:first-child)::before {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-light_gray, #DEDEDE);
  content: "";
  top: -10px;
}
.modal-car-btn::after {
  content: ""; /* ★背景画像として使う場合でも、空のcontentは必須！ */
  position: absolute;
  right: 3%;
  top: 50%; /* ★縦方向の中央寄せ */
  transform: translateY(-50%); /* ★縦方向の中央寄せ（自身の高さの半分戻す） */
  /* アイコンのサイズ（CSSで自由に決められる！） */
  width: 5.667px;
  height: 10.314px;
  /* 背景画像の設定 */
  background-image: url('/lp2/sukkiri/images/arrow_right.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* ★重要：枠内に綺麗に収める指定 */
}
.modal-car-btn:hover {
  background: #e9ecef;
}
.modal-color-circle-wrapper {
  border: 1px solid #DEDEDE;
}
.modal-color-circle-wrapper img {
  max-width: 70px;
}
.modal-color-name {
  color: var(--color-black, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  padding-right: 20px;
  text-align: left;
}

.modal-car-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  flex: 1 0 0;
  padding-right: 30px;
}
.modal-car-name {
  color: #333 !important;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.modal-car-grade {
  color: #8C8C8C !important;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  text-align: left;
}

/* ★チェックが入ったラジオボタンの「隣のラベル」のデザインを変える（選択状態） */
.term-tab-container input[type="radio"]:checked + .term-tab-btn {
  border-radius: var(--radius-5px, 5px);
  border: 1px solid var(--color-blue, #53ABE0);
  background: var(--color-deep_blue, #0C72AD);
  color: #FFF;
  font-weight: bold;
}
.options-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.option__description-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  align-self: stretch;
  margin-bottom: 20px;
}
.option__description-list-text {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  color: var(--color-gray, #707070);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.8px;
  letter-spacing: 0.56px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.option__description-list-icon-star, .option__description-list-icon-circle {
  padding-left: 2.4em;       /* 全体を右にズラす */
  text-indent: -2.4em;
}
.option {
  font-family:  "Noto Sans JP";
  display: flex;
  padding: 15px 10px;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-5px, 5px);
  border: 1px solid var(--color-light_gray, #DEDEDE);
  background: var(--color-white, #FFF);
}
.option:has(.option-checkbox:checked) {
  border: 1px solid var(--color-blue, #53ABE0);
}
.option-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--color-light_gray, #DEDEDE);
  background: #FFF;
  -webkit-appearance: none; /*Safari iOS用*/
  appearance: none;        /*標準仕様*/
  /* チェックマークの位置をコントロールするための必須指定 */
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
/* 2. チェックがついた時の「背景色」 */
.option-checkbox[type="checkbox"]:checked {
  border: 1px solid var(--color-light_gray, #DEDEDE);
  background: var(--color-deep_blue, #0C72AD);
}
/* 3. チェックがついた時の「レ点（白いチェックマーク）」 */
.option-checkbox[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 4px;
  height: 9px;
  /* 白い「L」字型の線を描く */
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  /* 45度回転させて「レ」の形にする */
  transform: rotate(45deg);
}


/* 注意事項 */
.attention__intro-text {
  color: var(--text-red, #D81616);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.8px; /* 141.429% */
  letter-spacing: 0.56px;
}
.attention__modal-container {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;
}
.attention__modal-link {
  position: relative; /* 基準点 */
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  align-self: center;
  color: var(--text-strong, var(--color-deep_blue, #0C72AD));
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 20px */
  width: 100%;
  max-width: 335px;
  height: 56px;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background-color: #ffffff;
  border: 2px solid transparent;
  background-image: 
    linear-gradient(#FFF, #FFF), 
    var(--text-gradation_blue, linear-gradient(90deg, #0C72AD 5%, #53ABE0 79.81%));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  
  /* button_hover */
  box-shadow: 0 10px 18px 0 rgba(150, 196, 224, 0.4);
  transition: all 0.2s ease;
}
.attention__modal-link:hover {
  color: var(--text-strong_hover, #0B6599);
  border: 2px solid transparent;
  background-image: 
  linear-gradient(var(--color-muted_soft_blue, #E8F2FC)), /* 内側の背景色（白） */
  var(--text-gradation_blue, linear-gradient(90deg, #0C72AD 5%, #53ABE0 79.81%)); /* 枠線用グラデーション */
  /* 🌟 ④ 切り抜き範囲（クリッピング）を層ごとに指定する（ここがポイント！） */
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 5px 18px 0 rgba(12, 114, 173, 0.4);
}
.attention__modal-link::after {
  content: ""; /* ★背景画像として使う場合でも、空のcontentは必須！ */
  position: absolute;
  right: 4%;
  top: 50%; /* ★縦方向の中央寄せ */
  transform: translateY(-50%); /* ★縦方向の中央寄せ（自身の高さの半分戻す） */
  /* アイコンのサイズ（CSSで自由に決められる！） */
  width: 15px;
  height: 15px;
  /* 背景画像の設定 */
  background-image: url('/lp2/sukkiri/images/icon_modal.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* ★重要：枠内に綺麗に収める指定 */
}
.attention__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 最前面に表示 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
/* JSでこのクラスが付与されたら「ふわっ」と表示する */
.attention__modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.attention__modal-window {
  background: #fff;
  z-index: 9999;
  height: 100vh;
  overflow-y: auto;
}
.attention__modal-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.attention__modal-body {
  padding: 100px 20px 100px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.attention__modal-header {
  display: flex;
}
.attention__modal-title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  flex-grow: 1;
}
.attention__modal-content {
  box-sizing: border-box;
  margin: 30px auto 0;
  padding: 25px 20px;
  border: solid 1px #ddd;
}
.attention__modal-term {
  margin: 0;
  padding: 0 0 0 20px;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAADMzMwAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuYTZhNjM5NjhhLCAyMDI0LzAzLzA2LTExOjUyOjA1ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjUuMTIgKDIwMjQwODEyLm0uMjczNSBiMmRjMzc0KSAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZBODZDQUMzNUFBQjExRUY4Rjc2QzVEOUE0RTM2NzIwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZBODZDQUM0NUFBQjExRUY4Rjc2QzVEOUE0RTM2NzIwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkE4NkNBQzE1QUFCMTFFRjhGNzZDNUQ5QTRFMzY3MjAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkE4NkNBQzI1QUFCMTFFRjhGNzZDNUQ5QTRFMzY3MjAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQAAAAAACwAAAAAAQABAAACAkQBADs=);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 8px 20px;
  font-size: 18px;
  font-weight: bold;
}
.attention__modal-desc {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
}

/* 結果表示エリア */
.result-box {
  display: flex;
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  border-radius: 10px;
  background: var(--color-light_blue, #F0F9FF);
}
.result__term {
  align-self: stretch;
  color: var(--color-black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.7px; /* 133.571% */
}

.result-label {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.result-price {
  margin: 0 auto;
  color: var(--color-deep_blue, #0C72AD);
  text-align: center;
  font-family: Roboto;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 1; /* 113.333% */
}

.result-price .unit {
  font-size: 18px;
  color: var(--text-color);
}
.result-sub {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.result-sub-text {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #FFF;
  color: var(--color-deep_blue, #0C72AD);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px; /* 121.429% */
}
.result-price-total {
  color: var(--color-deep_blue, #0C72AD);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
}

.submit-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  padding-top: 60px;
  padding-bottom: 107px;
  background-color: #F0F9FF;
}
.submit-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-image: url('/lp2/sukkiri/images/deco_arrow-simu.svg');
  background-repeat: no-repeat;
}
.submit-container::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  /* アイコンのサイズを指定 */
  width: 364px;
  height: 92px;
  background: url('/lp2/sukkiri/images/deco_illust01.svg');
  background-repeat: no-repeat;
}
.submit-simulation-btn__sub-text {
  position: relative;
  color: var(--color-black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin-top: 30px;
  z-index: 2;
}
.submit-simulation-btn__sub-text::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  /* アイコンのサイズを指定 */
  width: 14px;
  height: 26px;
  /* 🌟 1. SVGファイルをマスク（型紙）として指定 */
  background: url('/lp2/sukkiri/images/line_left.svg');
  background-repeat: no-repeat;
}
.submit-simulation-btn__sub-text::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  /* アイコンのサイズを指定 */
  width: 14px;
  height: 26px;
  /* 🌟 1. SVGファイルをマスク（型紙）として指定 */
  background: url('/lp2/sukkiri/images/line_right.svg');
  background-repeat: no-repeat;
}
.submit-simulation-btn-icon {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 4px;
  top: 6px;
  border-radius: var(--radius-full, 1000px);
  background: var(--color-white, #FFF);
  color: #DF3400;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 17.5px */
  top: 50%;
  transform: translateY(-50%); /* 自身の高さの半分だけ上に引き上げる */
  display: grid;
  place-items: center;
}
/* 決定ボタンの基本スタイル（クラス名を修正） */
#screening__form{
  width: 100%;
}
.submit-simulation-btn {
  position: relative;
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 335px;
  height: 56px;
  padding: 8px 40px 8px 60px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 2px solid var(--color-white, #FFF);  
  background-color: var(--color-orange, #DF3400);

  /* button_fill */
  box-shadow: 0 10px 18px 0 rgba(150, 196, 224, 0.40);
  z-index: 2;
}
.submit-simulation-btn:hover {
  border: 2px solid var(--color-white, #FFF);
  background: #C82F00;
  box-shadow: 0 5px 18px 0 rgba(12, 114, 173, 0.40);
}
.submit-simulation-btn::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  
  /* アイコンのサイズを指定 */
  width: 14px;
  height: 14px;

  /* 🌟 1. SVGファイルをマスク（型紙）として指定 */
  background: url('/lp2/sukkiri/images/icon_window_active.svg');
  background-repeat: no-repeat;
}
.submit-simulation-btn:disabled::before {
  background: url('/lp2/sukkiri/images/icon_open-window.svg');
  width: 21px;
  height: 21px;
}
.submit-simulation-btn-text {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  color: var(--text-white, var(--color-white, #FFF));
  text-align: center;

  /* button_text_orange */
  text-shadow: 0 0 8px #FF4900;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 20px */
}

.submit-simulation-btn:hover:not(:disabled) {
  cursor: pointer;
  border: 2px solid var(--color-white, #FFF);
  background: #C82F00;
  box-shadow: 0 5px 18px 0 rgba(12, 114, 173, 0.40);
}
.submit-simulation-btn:not(:disabled):hover .submit-simulation-btn-icon {
  background: #EBEBEB;
  color: #C82F00;
}

/* 非活性（disabled）状態のスタイル（クラス名を修正） */
.submit-simulation-btn:disabled {
  background-color: #ccc;   /* グレーアウト */
  color: #888;
  cursor: not-allowed;      /* 禁止マークのカーソル */
  box-shadow: none;
  border: none;
}
.submit-simulation-btn:disabled .submit-simulation-btn-icon, .submit-simulation-btn:disabled .submit-simulation-btn-text {
  color: var(--text-gray, #626262);
  text-shadow: none;
}

/* --- 600px以下 --- */
@media screen and (max-width: 600px) {
  .attention__modal-body {
    display: block;
  }
  .car-card-container {
    margin: 0 0 40px;
  }
  .submit-container::after {
    background-image: url('/lp2/sukkiri/images/deco_arrow-simu_sp.svg');
  }
  .submit-container {
    padding-top: 30px;
  }
}
@media screen and (min-width: 601px) {
  .car-card-container {
    margin: 0 clamp(0px, 5.333vw, 40px) 40px;
  }
  .s-simulate {
    padding: 0 64px;
  }
}
@media screen and (max-width: 374px) {
  .attention__modal-link {
    font-size: 1.4rem;
  }
  .result-sub-text {
    font-size: 1.3rem;
  }
}



