@charset "UTF-8";
/* Scss Document */
body {
  font-family: "Noto Sans JP", sans-serif;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 510px) {
  .sp_only {
    display: inline-block;
  }
}
.pc_only {
  display: inline-block;
}

@media screen and (max-width: 510px) {
  .pc_only {
    display: none;
  }
}
li {
  list-style-type: none;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

dd {
  margin: 0;
}

label {
  margin: 0;
}

h2 {
  margin: 0;
}

.customize-support {
  margin: 0;
}

@media screen and (max-width: 510px) {
  html, body {
    height: 100%; /* htmlとbodyの高さを100%に設定 */
  }
  body {
    background-color: #E6ECF4; /* 背景色を設定 */
  }
}
.btn {
  padding: 30px 100px;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  background: linear-gradient(to right, #FA8F5A, #FD6857);
  text-decoration: none;
  border-radius: 10px;
  color: #fff;
}

.btn_blue{
   background: linear-gradient(to right, #4C5FB5, #00174E);
}

.btn:hover {
  opacity: 0.9;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .mv__contents .btn {
    padding: 20px 66px;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.btn2 {
  padding: 17px 60px;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #E7C085;
  background: linear-gradient(to bottom, #FEED64 0%, #FDD72A 40%, #BE7C21 50%, #F7D336 100%);
  text-decoration: none;
  border-radius: 8px;
  color: #fff;
  text-shadow: -2px -2px 0 #65460F, 2px -2px 0 #65460F, -2px 2px 0 #65460F, 2px 2px 0 #65460F;
  box-shadow: 0px 3px 0px 5px #6F4D12;
}

.btn2::after {
  content: "";
  position: absolute;
  bottom: -23px;
  right: -17px;
  width: 54px;
  height: 53px;
  background-image: url("../images/personalinfo/hands.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.btn2:hover {
  opacity: 0.9;
  cursor: pointer;
}

.btn3 {
  padding: 18px 97px;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #2841FF;
  text-decoration: none;
  border-radius: 8px;
  color: #000;
  background-color: #fff;
}

.btn3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 47px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2841FF;
  border-right: 2px solid #2841FF;
  transform: translateY(-50%) rotate(45deg);
}

.btn3:hover {
  opacity: 0.8;
  cursor: pointer;
}

.mv .btn {
  padding: 30px 75px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  background: linear-gradient(to right, #FA8F5A, #FD6857);
  border-radius: 10px;
  color: #fff;
  /* エフェクト用に必要 */
  position: relative;
  overflow: hidden;
}

/*──────────────────────────────────────────────
  → 矢印アイコン（::before）
──────────────────────────────────────────────*/
.mv .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; /* 矢印を少し内側へ */
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff; /* 白い二等辺 */
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2; /* ←キラッより上に乗せる */
  pointer-events: none;
}

/*──────────────────────────────────────────────
  キラッと走る閃光（::after）
──────────────────────────────────────────────*/
.mv .btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80px; /* 太さ */
  height: 100%;
  transform: skewX(-25deg);
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.9) 60%, transparent 100%);
  pointer-events: none;
  animation: shine-btn 2.5s ease-in-out infinite;
  z-index: 1; /* 矢印の下、テキストの上 */
}

@keyframes shine-btn {
  0% {
    left: -120%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}
.form__checkbox {
  text-align: left;
}

.form__checkbox label {
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #D9D9D9;
  cursor: pointer;
  position: relative;
}



/* チェックボックス非表示 */
/* チェックボックス本体を非表示に */
.form__checkbox input[type="checkbox"] {
  display: none;

}

/* カスタム見た目用の span */
.form__checkbox .checkbox-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  transition: background-color 0.2s;
   flex-shrink: 0;
   background-color: white; 
}

/* チェックされたときのスタイル */
.form__checkbox input[type="checkbox"]:checked + .checkbox-icon {
  background-color: #2841FF;  /* チェック時の青背景 */
  border-color: #2841FF;
}

.form__checkbox input[type="checkbox"]:checked + .checkbox-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.form__checkbox span:last-child {
  margin-left: 12px;
}

.mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.mv__title-wrap {
  position: absolute;
  z-index: 3;
  top: 430px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.4); /* 背景色を直接ここに */
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 50px 15px;
  width: 85%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.mv__img,
.mv__img img,
.mv__img picture {
  height: inherit;
  min-height: inherit;
}

.mv__img img,
.mv__img picture {
  width: 100%;
  object-fit: cover;
}

.mv__main-img {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv__main-img img {
  width: 368px;
  max-width: 100%;
}

@media screen and (max-width: 510px) {
  .mv__main-img img {
    width: 255px; /* 幅510px以下の場合、画像の幅を368pxに指定 */
  }
}
.mv__main-bg {
  width: 360px;
  max-width: 100%;
  background-color: #000;
  opacity: 0.8;
  margin: 0 auto;
}

@media screen and (max-width: 510px) {
  .mv__main-bg {
    width: 255px; /* 幅510px以下の場合、画像の幅を368pxに指定 */
  }
}
.mv__sub-title {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
}

@media screen and (max-width: 510px) {
  .mv__sub-title {
    font-size: 18px;
  }
}
.mv__sub-title-lined {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 12px; /* 下線との間に余白を */
  color: #fff;
}

.mv__sub-title-lined::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #fff 0%, #fff 60%, transparent 60%, transparent 70%, #fff 70%, #fff 100%);
}

.mv__sub-title-lined::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 64.9%; /* グラデ透明部分の始まりに調整 */
  transform: translateX(-50%) rotate(-45deg);
  width: 26px;
  height: 26px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: transparent;
}

@media screen and (max-width: 510px) {
  .mv__sub-title-lined::before {
    left: 65%; /* グラデ透明部分の始まりに調整 */
    bottom: -7px;
    width: 14px;
    height: 14px;
  }
}
.mv__main-title {
  font-family: "Noto Serif JP", serif;
  margin: 0;
  margin-bottom: 31px;
}

.mv__main-title .toptxt {
  font-size: 66px;
}

@media screen and (max-width: 510px) {
  .mv__main-title .toptxt {
    font-size: 50px;
  }
}
.mv__main-title .bottomtxt {
  font-size: 95px;
}

@media screen and (max-width: 510px) {
  .mv__main-title .bottomtxt {
    font-size: 73px;
  }
}
.mv-single {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 510px) {
  .mv-single {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #E6ECF4;
  }
}
.mv-single__head {
  padding-top: clamp(30px, 5vh, 64px);
  text-align: center;
}


@media screen and (max-width: 510px) {
  .mv-single__head {
    padding-top: 56px;
  }
}
/* .mv-single__dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
} */

/* .mv-single__dot-item::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #B1B9CB;
  margin: 0 5px;
} */

/* .mv-single__dot-list .is_active::before {
  background-color: #2841FF; 
} */



.mv-single__number {
  color: #2841FF;
  margin-top: 6px;
}

.mv-single__contents {
  position: relative;
  background-color: #E6ECF4;
  border-radius: 8px;
  height: 100%;
  max-height: 500px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 510px) {
  .mv-single__contents {
    max-height: none;
    box-shadow: none;
  }
}
.mv-single__btn a {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 1px solid #2841FF;
}

.mv-single__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #2841FF;
  border-left: 1px solid #2841FF;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 510px) {
  .mv-single__btn a {
    position: fixed;
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 30px;
    left: 40px;
    border: 1px solid #FD6857;
  }
  .mv-single__btn a::before {
    left: 26px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #FD6857;
    border-left: 1px solid #FD6857;
  }
}
.mv-single__title {
  padding-top: 65px;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 510px) {
  .mv-single__title {
    padding-top: 0px;
  }
}
.mv-single__strong {
  font-size: 20px;
  font-weight: bold;
}

.mv-single__list-items {
  margin-top: 30px;
}

.mv-single__list-item {
  list-style-type: none;
  width: 440px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

@media screen and (max-width: 510px) {
  .mv-single__list-item {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
.mv-single__list-item:last-child {
  margin-bottom: 100px;
}

.mv-single__list-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mv-single__list-item.active {
  background-color: #2841FF; /* クリックしたアイテムの背景色 */
  color: #fff; /* 背景色に合わせて文字色も変更 */
}

.mv-single__list-item input[type=radio] {
  display: none; /* ボタン自体を非表示にしてカスタムUIにしてもOK */
}

.mv-single__list-item label {
  display: block;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 24px;
  cursor: pointer;
}

.mv-double {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 510px) {
  .mv-double {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #E6ECF4;
    height: 100%;
  }
}
.mv-double__head {
  padding-top: clamp(60px, 10vh, 127px);
  text-align: center;
}

@media screen and (max-width: 510px) {
  .mv-double__head {
    padding-top: 56px;
  }
}
.mv-double__dot-list {
  list-style: none; /* デフォルトのリストスタイルを削除 */
  padding: 0;
  margin: 0;
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央揃え */
}

.mv-double__dot-item::before {
  content: ""; /* 擬似要素の中身を空に */
  display: block; /* ブロック要素として表示 */
  width: 7px; /* 丸の幅 */
  height: 7px; /* 丸の高さ */
  border-radius: 50%; /* 丸くする */
  background-color: #B1B9CB; /* 丸の色（黒色） */
  margin: 0 5px; /* 丸同士の間隔を調整 */
}

.mv-double__dot-list .is_active::before {
  background-color: #2841FF; /* 丸の色（黒色） */
}

.mv-double__number {
  color: #2841FF;
  margin-top: 6px;
}

.mv-double__contents {
  position: relative;
  background-color: #E6ECF4;
  border-radius: 8px;
  height: 100%;
  max-height: 500px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 510px) {
  .mv-double__contents {
    max-height: none;
    box-shadow: none;
  }
}
.mv-double__btn a {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 1px solid #2841FF;
}

.mv-double__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #2841FF;
  border-left: 1px solid #2841FF;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 510px) {
  .mv-double__btn a {
    position: fixed;
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 30px;
    left: 40px;
    border: 1px solid #FD6857;
  }
  .mv-double__btn a::before {
    left: 26px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #FD6857;
    border-left: 1px solid #FD6857;
  }
}
.mv-double__title {
  padding-top: 65px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

@media screen and (max-width: 510px) {
  .mv-double__title {
    padding-top: 0px;
  }
}
.mv-double__strong {
  font-size: 20px;
  font-weight: bold;
}

.mv-double__list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.mv-double__list-item {
  list-style-type: none;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 24px;
  margin-bottom: 10px;
  margin-right: 5px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

.mv-double__list-item:nth-child(even) {
  margin-right: 0px;
}

.mv-double__list-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mv-double__list-item.active {
  background-color: #2841FF; /* クリックしたアイテムの背景色 */
  color: #fff; /* 背景色に合わせて文字色も変更 */
}

/* ポップアップのオーバーレイ */
.mv-double__popup-overlay {
  display: flex; /* フレックスボックスを使用 */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00174E; /* 半透明の背景 */
  z-index: 10; /* 他のコンテンツより上に表示 */
  justify-content: center; /* 横方向で中央揃え */
  align-items: center; /* 縦方向で中央揃え */
}

/* ポップアップのボックス */
.mv-double__popup {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 4px;
  width: 560px;
  max-width: 100%;
  box-shadow: 2px 2px 6px rgba(68, 78, 93, 0.04); /* 6%の透明度の#03345E */
  text-align: center; /* コンテンツの文字を中央揃え */
}

@media screen and (max-width: 560px) {
  .mv-double__popup {
    width: 370px;
  }
}
/* チェックボックスのスタイル */
.mv-double__popup label {
  display: block;
}

.mv-double__popup-inner {
  width: 310px;
  margin: 0 auto;
}

.mv-double__popup-lavel {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.mv-double__popup-count {
  font-size: 12px;
  margin-bottom: 20px;
}

.mv-double__popup-number {
  font-size: 24px;
  padding-left: 3px;
}

.mv-double__popup-attention {
  color: red;
  font-size: 10px;
}

/* 閉じるボタン */
.mv-double__popup .btn {
  padding: 15px 100px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.mv-double__select-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mv-double__select-item {
  margin-right: 10px;
  padding-left: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 30px;
  background-color: #2841FF;
  color: #fff;
  border-radius: 20px;
  position: relative; /* 疑似要素の配置に必要 */
}

/* 疑似要素で白い×ボタンを追加 */
.mv-double__select-item::after {
  content: "×"; /* ×の文字を追加 */
  position: absolute;
  top: 50%; /* 垂直中央に配置 */
  right: 8px; /* 右側に少し余白 */
  transform: translateY(-50%); /* 正確に中央に配置 */
  color: #fff; /* 白色 */
  font-size: 14px; /* サイズ調整 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

.mv-double__contents-inner {
  width: 380px;
  margin: 0 auto;
}

.mv-double__list-item input,
.mv-double__select-item input[type=radio] {
  display: none;
}

.mv-double__list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
}

.mv-double__nextpage {
  text-align: center;
}

.mv-double__nextpage .btn {
  border: none;
  padding: 20px 100px;
}

.mv-double-singlesel {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 510px) {
  .mv-double-singlesel {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #E6ECF4;
    height: 100%;
  }
}
.mv-double-singlesel__head {
  padding-top: clamp(60px, 10vh, 127px);
  text-align: center;
}

@media screen and (max-width: 510px) {
  .mv-double-singlesel__head {
    padding-top: 56px;
  }
}
.mv-double-singlesel__dot-list {
  list-style: none; /* デフォルトのリストスタイルを削除 */
  padding: 0;
  margin: 0;
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央揃え */
}

.mv-double-singlesel__dot-item::before {
  content: ""; /* 擬似要素の中身を空に */
  display: block; /* ブロック要素として表示 */
  width: 7px; /* 丸の幅 */
  height: 7px; /* 丸の高さ */
  border-radius: 50%; /* 丸くする */
  background-color: #B1B9CB; /* 丸の色（黒色） */
  margin: 0 5px; /* 丸同士の間隔を調整 */
}

.mv-double-singlesel__dot-list .is_active::before {
  background-color: #2841FF; /* 丸の色（黒色） */
}

.mv-double-singlesel__number {
  color: #2841FF;
  margin-top: 6px;
}

.mv-double-singlesel__contents {
  position: relative;
  background-color: #E6ECF4;
  border-radius: 8px;
  height: 100%;
  max-height: 500px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 510px) {
  .mv-double-singlesel__contents {
    max-height: none;
    box-shadow: none;
  }
}
.mv-double-singlesel__btn a {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 1px solid #2841FF;
}

.mv-double-singlesel__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #2841FF;
  border-left: 1px solid #2841FF;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 510px) {
  .mv-double-singlesel__btn a {
    position: fixed;
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 30px;
    left: 40px;
    border: 1px solid #FD6857;
  }
  .mv-double-singlesel__btn a::before {
    left: 26px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #FD6857;
    border-left: 1px solid #FD6857;
  }
}
.mv-double-singlesel__title {
  padding-top: 65px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

@media screen and (max-width: 510px) {
  .mv-double-singlesel__title {
    padding-top: 0px;
  }
}
.mv-double-singlesel__strong {
  font-size: 20px;
  font-weight: bold;
}

.mv-double-singlesel__list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.mv-double-singlesel__list-item {
  list-style-type: none;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  margin-right: 10px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

.mv-double-singlesel__list-item:nth-child(even) {
  margin-right: 0px;
}

.mv-double-singlesel__list-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mv-double-singlesel__list-item.active {
  background-color: #2841FF; /* クリックしたアイテムの背景色 */
  color: #fff; /* 背景色に合わせて文字色も変更 */
}

/* ポップアップのオーバーレイ */
.mv-double-singlesel__popup-overlay {
  display: flex; /* フレックスボックスを使用 */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00174E; /* 半透明の背景 */
  z-index: 10; /* 他のコンテンツより上に表示 */
  justify-content: center; /* 横方向で中央揃え */
  align-items: center; /* 縦方向で中央揃え */
}

/* ポップアップのボックス */
.mv-double-singlesel__popup {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 4px;
  width: 560px;
  max-width: 100%;
  box-shadow: 2px 2px 6px rgba(68, 78, 93, 0.04); /* 6%の透明度の#03345E */
  text-align: center; /* コンテンツの文字を中央揃え */
}

@media screen and (max-width: 560px) {
  .mv-double-singlesel__popup {
    width: 370px;
  }
}
/* チェックボックスのスタイル */
.mv-double-singlesel__popup label {
  display: block;
}

.mv-double-singlesel__popup-inner {
  width: 310px;
  margin: 0 auto;
}

.mv-double-singlesel__popup-lavel {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.mv-double-singlesel__popup-count {
  font-size: 12px;
  margin-bottom: 20px;
}

.mv-double-singlesel__popup-number {
  font-size: 24px;
  padding-left: 3px;
}

.mv-double-singlesel__popup-attention {
  color: red;
  font-size: 10px;
}

/* 閉じるボタン */
.mv-double-singlesel__popup .btn {
  padding: 15px 100px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.mv-double-singlesel__select-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mv-double-singlesel__select-item {
  margin-right: 10px;
  padding-left: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 30px;
  background-color: #2841FF;
  color: #fff;
  border-radius: 20px;
  position: relative; /* 疑似要素の配置に必要 */
}

/* 疑似要素で白い×ボタンを追加 */
.mv-double-singlesel__select-item::after {
  content: "×"; /* ×の文字を追加 */
  position: absolute;
  top: 50%; /* 垂直中央に配置 */
  right: 8px; /* 右側に少し余白 */
  transform: translateY(-50%); /* 正確に中央に配置 */
  color: #fff; /* 白色 */
  font-size: 14px; /* サイズ調整 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

.mv-double-singlesel__contents-inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.mv-double-singlesel__list-item input,
.mv-double-singlesel__select-item input[type=radio] {
  display: none;
}

.mv-double-singlesel__list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 24px;
}

.mv-double-singlesel__nextpage {
  text-align: center;
}

.mv-double-singlesel__nextpage .btn {
  border: none;
  padding: 20px 100px;
}

.mv-single-multisel {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 510px) {
  .mv-single-multisel {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #E6ECF4;
  }
}
.mv-single-multisel__head {
  padding-top: clamp(60px, 10vh, 127px);
  text-align: center;
}

@media screen and (max-width: 510px) {
  .mv-single-multisel__head {
    padding-top: 56px;
  }
}
.mv-single-multisel__dot-list {
  list-style: none; /* デフォルトのリストスタイルを削除 */
  padding: 0;
  margin: 0;
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央揃え */
}

.mv-single-multisel__dot-item::before {
  content: ""; /* 擬似要素の中身を空に */
  display: block; /* ブロック要素として表示 */
  width: 7px; /* 丸の幅 */
  height: 7px; /* 丸の高さ */
  border-radius: 50%; /* 丸くする */
  background-color: #B1B9CB; /* 丸の色（黒色） */
  margin: 0 5px; /* 丸同士の間隔を調整 */
}

.mv-single-multisel__dot-list .is_active::before {
  background-color: #2841FF; /* 丸の色（黒色） */
}

.mv-single-multisel__number {
  color: #2841FF;
  margin-top: 6px;
}

.mv-single-multisel__contents {
  position: relative;
  background-color: #E6ECF4;
  border-radius: 8px;
  height: 100%;
  max-height: 500px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 510px) {
  .mv-single-multisel__contents {
    max-height: none;
    box-shadow: none;
  }
}
.mv-single-multisel__btn a {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 1px solid #2841FF;
  z-index: 10;
}

.mv-single-multisel__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #2841FF;
  border-left: 1px solid #2841FF;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 510px) {
  .mv-single-multisel__btn a {
    position: fixed;
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 30px;
    left: 40px;
    border: 1px solid #FD6857;
  }
  .mv-single-multisel__btn a::before {
    left: 26px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #FD6857;
    border-left: 1px solid #FD6857;
  }
}
.mv-single-multisel__title {
  padding-top: 65px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

@media screen and (max-width: 510px) {
  .mv-single-multisel__title {
    padding-top: 0px;
  }
}
.mv-single-multisel__strong {
  font-size: 20px;
  font-weight: bold;
}

.mv-single-multisel__list-items {
  margin-top: 30px;
}

.mv-single-multisel__list-item {
  list-style-type: none;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

@media screen and (max-width: 510px) {
  .mv-single-multisel__list-item:last-child {
    margin-bottom: 100px;
  }
}
.mv-single-multisel__list-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mv-single-multisel__list-item.active {
  background-color: #2841FF; /* クリックしたアイテムの背景色 */
  color: #fff; /* 背景色に合わせて文字色も変更 */
}

.mv-single-multisel__list-item input[type=radio] {
  display: none; /* ボタン自体を非表示にしてカスタムUIにしてもOK */
}

.mv-single-multisel__list-item label {
  display: block;
  cursor: pointer;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 24px;
  box-sizing: border-box;
}

/* ポップアップのオーバーレイ */
.mv-single-multisel__popup-overlay {
  display: flex; /* フレックスボックスを使用 */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00174E; /* 半透明の背景 */
  z-index: 10; /* 他のコンテンツより上に表示 */
  justify-content: center; /* 横方向で中央揃え */
  align-items: center; /* 縦方向で中央揃え */
}

/* ポップアップのボックス */
.mv-single-multisel__popup {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 4px;
  width: 560px;
  max-width: 100%;
  box-shadow: 2px 2px 6px rgba(68, 78, 93, 0.04); /* 6%の透明度の#03345E */
  text-align: center; /* コンテンツの文字を中央揃え */
}

@media screen and (max-width: 560px) {
  .mv-single-multisel__popup {
    width: 370px;
  }
}
/* チェックボックスのスタイル */
.mv-single-multisel__popup label {
  display: block;
}

.mv-single-multisel__popup-inner {
  width: 310px;
  margin: 0 auto;
}

.mv-single-multisel__popup-lavel {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.mv-single-multisel__popup-count {
  font-size: 12px;
  margin-bottom: 20px;
}

.mv-single-multisel__popup-number {
  font-size: 24px;
  padding-left: 3px;
}

.mv-single-multisel__popup-attention {
  color: red;
  font-size: 10px;
}

/* 閉じるボタン */
.mv-single-multisel__popup .btn {
  padding: 15px 100px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.mv-single-multisel__select-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mv-single-multisel__select-item {
  margin-right: 10px;
  padding-left: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 30px;
  background-color: #2841FF;
  color: #fff;
  border-radius: 20px;
  position: relative; /* 疑似要素の配置に必要 */
}

/* 疑似要素で白い×ボタンを追加 */
.mv-single-multisel__select-item::after {
  content: "×"; /* ×の文字を追加 */
  position: absolute;
  top: 50%; /* 垂直中央に配置 */
  right: 8px; /* 右側に少し余白 */
  transform: translateY(-50%); /* 正確に中央に配置 */
  color: #fff; /* 白色 */
  font-size: 14px; /* サイズ調整 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

.mv-single-multisel__contents-inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.mv-single-multisel__list-item input,
.mv-single-multisel__select-item input[type=checkbox] {
  display: none;
}

.mv-single-multisel__list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
}

.mv-single-multisel__nextpage {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 510px) {
  .mv-single-multisel__nextpage {
    position: fixed;
    top: auto;
    bottom: 10px;
    left: 130px;
    margin-bottom: 0px;
  }
}
.mv-single-multisel__nextpage .btn {
  border: none;
  padding: 20px 100px;
}

@media screen and (max-width: 510px) {
  .mv-single-multisel__nextpage .btn {
    border: none;
    padding: 20px 50px;
  }
}
.mv-double-multisel {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 510px) {
  .mv-double-multisel {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #E6ECF4;
    height: 100%;
  }
}
.mv-double-multisel__head {
  padding-top: clamp(60px, 10vh, 127px);
  text-align: center;
}

@media screen and (max-width: 510px) {
  .mv-double-multisel__head {
    padding-top: 56px;
  }
}
.mv-double-multisel__dot-list {
  list-style: none; /* デフォルトのリストスタイルを削除 */
  padding: 0;
  margin: 0;
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央揃え */
}

.mv-double-multisel__dot-item::before {
  content: ""; /* 擬似要素の中身を空に */
  display: block; /* ブロック要素として表示 */
  width: 7px; /* 丸の幅 */
  height: 7px; /* 丸の高さ */
  border-radius: 50%; /* 丸くする */
  background-color: #B1B9CB; /* 丸の色（黒色） */
  margin: 0 5px; /* 丸同士の間隔を調整 */
}

.mv-double-multisel__dot-list .is_active::before {
  background-color: #2841FF; /* 丸の色（黒色） */
}

.mv-double-multisel__number {
  color: #2841FF;
  margin-top: 6px;
}

.mv-double-multisel__contents {
  position: relative;
  background-color: #E6ECF4;
  border-radius: 8px;
  height: 100%;
  max-height: 500px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 510px) {
  .mv-double-multisel__contents {
    max-height: none;
    box-shadow: none;
  }
}
.mv-double-multisel__btn a {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 1px solid #2841FF;
}

.mv-double-multisel__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #2841FF;
  border-left: 1px solid #2841FF;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 510px) {
  .mv-double-multisel__btn a {
    position: fixed;
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 30px;
    left: 40px;
    border: 1px solid #FD6857;
  }
  .mv-double-multisel__btn a::before {
    left: 26px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #FD6857;
    border-left: 1px solid #FD6857;
  }
}
.mv-double-multisel__title {
  padding-top: 65px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px;
}

@media screen and (max-width: 510px) {
  .mv-double-multisel__title {
    padding-top: 0px;
  }
}
.mv-double-multisel__strong {
  font-size: 20px;
  font-weight: bold;
}

.mv-double-multisel__list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.mv-double-multisel__list-item {
  list-style-type: none;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  margin-right: 5px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

.mv-double-multisel__list-item:nth-child(even) {
  margin-right: 0px;
}

.mv-double-multisel__list-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mv-double-multisel__list-item.active {
  background-color: #2841FF; /* クリックしたアイテムの背景色 */
  color: #fff; /* 背景色に合わせて文字色も変更 */
}

/* ポップアップのオーバーレイ */
.mv-double-multisel__popup-overlay {
  display: flex; /* フレックスボックスを使用 */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00174E; /* 半透明の背景 */
  z-index: 10; /* 他のコンテンツより上に表示 */
  justify-content: center; /* 横方向で中央揃え */
  align-items: center; /* 縦方向で中央揃え */
}

/* ポップアップのボックス */
.mv-double-multisel__popup {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 4px;
  width: 560px;
  max-width: 100%;
  box-shadow: 2px 2px 6px rgba(68, 78, 93, 0.04); /* 6%の透明度の#03345E */
  text-align: center; /* コンテンツの文字を中央揃え */
}

@media screen and (max-width: 560px) {
  .mv-double-multisel__popup {
    width: 370px;
  }
}
/* チェックボックスのスタイル */
.mv-double-multisel__popup label {
  display: block;
}

.mv-double-multisel__popup-inner {
  width: 310px;
  margin: 0 auto;
}

.mv-double-multisel__popup-lavel {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}



.form__checkbox {
  text-align: left;
}

.form__checkbox label {
  display: flex;
  align-items: center;
  padding-left: 25px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #D9D9D9;
}

.mv-double-multisel__popup-count {
  font-size: 12px;
  margin-bottom: 20px;
}

.mv-double-multisel__popup-number {
  font-size: 24px;
  padding-left: 3px;
}

.mv-double-multisel__popup-attention {
  color: red;
  font-size: 10px;
}

/* 閉じるボタン */
.mv-double-multisel__popup .btn {
  padding: 15px 100px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.mv-double-multisel__select-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mv-double-multisel__select-item {
  margin-right: 10px;
  padding-left: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 30px;
  background-color: #2841FF;
  color: #fff;
  border-radius: 20px;
  position: relative; /* 疑似要素の配置に必要 */
}

/* 疑似要素で白い×ボタンを追加 */
.mv-double-multisel__select-item::after {
  content: "×"; /* ×の文字を追加 */
  position: absolute;
  top: 50%; /* 垂直中央に配置 */
  right: 8px; /* 右側に少し余白 */
  transform: translateY(-50%); /* 正確に中央に配置 */
  color: #fff; /* 白色 */
  font-size: 14px; /* サイズ調整 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

.mv-double-multisel__contents-inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.mv-double-multisel__list-item input,
.mv-double-multisel__select-item input[type=checkbox] {
  display: none;
}

.mv-double-multisel__list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 24px;
}

.mv-double-multisel__nextpage {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 510px) {
  .mv-double-multisel__nextpage {
    position: fixed;
    top: auto;
    bottom: 30px;
    left: 130px;
    margin-bottom: 0px;
  }
}
.mv-double-multisel__nextpage .btn {
  border: none;
  padding: 20px 100px;
}

@media screen and (max-width: 510px) {
  .mv-double-multisel__nextpage .btn {
    border: none;
    padding: 20px 60px;
  }
}
.mv-single-personalinfo {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #E6ECF4;
  }
}
.mv-single-personalinfo__head {
  padding-top: clamp(60px, 10vh, 127px);
  text-align: center;
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo__head {
    padding-top: 56px;
  }
}
.mv-single-personalinfo__dot-list {
  list-style: none; /* デフォルトのリストスタイルを削除 */
  padding: 0;
  margin: 0;
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央揃え */
}

.mv-single-personalinfo__dot-item::before {
  content: ""; /* 擬似要素の中身を空に */
  display: block; /* ブロック要素として表示 */
  width: 7px; /* 丸の幅 */
  height: 7px; /* 丸の高さ */
  border-radius: 50%; /* 丸くする */
  background-color: #B1B9CB; /* 丸の色（黒色） */
  margin: 0 5px; /* 丸同士の間隔を調整 */
}

.mv-single-personalinfo__dot-list .is_active::before {
  background-color: #2841FF; /* 丸の色（黒色） */
}

.mv-single-personalinfo__number {
  color: #2841FF;
  margin-top: 6px;
}

.mv-single-personalinfo__contents {
  position: relative;
  background-color: #E6ECF4;
  border-radius: 4px;
  height: 100%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 40px 0;
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo__contents {
    max-height: none;
    box-shadow: none;
  }
}
.mv-single-personalinfo__btn a {
  position: absolute;
  z-index: 10;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 1px solid #2841FF;
}

.mv-single-personalinfo__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #2841FF;
  border-left: 1px solid #2841FF;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo__btn a {
    position: fixed;
    width: 60px;
    height: 60px;
    top: auto;
    bottom: 40px;
    left: 40px;
    border: 1px solid #FD6857;
  }
  .mv-single-personalinfo__btn a::before {
    left: 26px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #FD6857;
    border-left: 1px solid #FD6857;
  }
}
.mv-single-personalinfo__error {
  text-align: center;
}

.mv-single-personalinfo__title {
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo__title {
    padding-top: 0px;
  }
}
.mv-single-personalinfo__strong {
  font-size: 20px;
  font-weight: bold;
}

.mv-single-personalinfo__list {
  margin-right: 60px;
  margin-left: 60px;
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo__list {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.mv-single-personalinfo__list-items {
  margin-top: 30px;
}

.mv-single-personalinfo__list-item {
  list-style-type: none;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo__list-item {
    width: 342px;
  }
}
.mv-single-personalinfo__list-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mv-single-personalinfo__list-item.active {
  background-color: #2841FF; /* クリックしたアイテムの背景色 */
  color: #fff; /* 背景色に合わせて文字色も変更 */
}

.mv-single-personalinfo__list-item input[type=radio] {
  display: none; /* ボタン自体を非表示にしてカスタムUIにしてもOK */
}

.mv-single-personalinfo__list-item label {
  display: block;
  cursor: pointer;
}

.mv-single-personalinfo__list-item input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #fff;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
  padding: 10px 15px;
}

.mv-single-personalinfo__list-lavel {
  margin-bottom: 10px;
  padding-left: 5px;
}

.mv-single-personalinfo__note {
  text-align: center;
  font-size: 10px;
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.mv-single-personalinfo__btn-wrap {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}

.mv-single-personalinfo__wraptxt {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 10px;
  font-weight: bold;
}

.mv-single-personalinfo__btn {
  text-align: center;
  padding-bottom: 45px;
}

@media screen and (max-width: 510px) {
  .mv-single-personalinfo__btn {
    padding-bottom: 0px;
  }
}
.mv-single-personalinfo__btntext {
  font-size: 28px;
}

.mv-result {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

@media screen and (max-width: 510px) {
  .mv-result {
    height: auto;
    background-color: #E6ECF4;
  }
}
.mv-result__contents {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: clamp(16px, 5vh, 40px) 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

@media screen and (max-width: 510px) {
  .mv-result__contents {
    padding: clamp(16px, 5vh, 40px) 10px;
  }
}
.mv-result__title-wrap {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  text-align: center;
  z-index: auto;
  max-height: calc(100vh - 275px); /* ヘッダーや余白を差し引いて高さ制限 */
}

.mv-result__img,
.mv-result__img img,
.mv-result__img picture {
  height: inherit;
  min-height: inherit;

}

@media screen and (max-width: 510px) {
  .mv-result__img {
    height: 50vh; /* ← 画面の縦の33%に */
    min-height: 200px; /* ← 小さい画面でも見栄えが崩れないように */
    overflow: hidden;
  }
  .mv-result__img img {
    height: 100%; /* 親に合わせてぴったり */
    object-fit: cover;
  }
}
.mv-result__img img,
.mv-result__img picture {
  width: 100%;
  object-fit: cover;
}

.mv-result__main-text {
  position: absolute;
  top: clamp(40px, 10vh, 120px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.mv-result__main-text__detail {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
}

.mv-result__bg {
  position: absolute;
  top: clamp(40px, 15vh, 190px);
  left: 50%;
  transform: translateX(-50%);
  width: 683px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  z-index: 3;
  height: calc(100vh - 190px); /* 必要な余白を引いた高さに */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 550px;
  overflow-y:auto;
}

@media screen and (max-width: 510px) {
  .mv-result__bg {
    top: 180px;
    width: calc(100% - 10px);
    padding: 20px 15px;
    height: auto; /* 必要な余白を引いた高さに */
  }
}
.mv-result__sub-title {
  font-size: 14px;
}

.mv-result__sub2-title {
  margin-bottom: 15px;
}

.mv-result__sub2-title__strong {
  font-size: 18px;
  font-weight: bold;
}

.mv-result__inner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  height: auto;
  max-height: calc(100vh - 275px); /* ヘッダーや余白を差し引いて高さ制限 */
}

.mv-result__boxes2,
.mv-result__inner,
.mv-result__boxes2-form {
  height: auto;
  max-height: none;
}

.mv-result__boxes {
  margin-bottom: 15px;
}

.mv-result__boxes-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.mv-result__items {
  flex: 1 1 calc(50% - 8px); /* 2列時の均等幅（gap分マイナス） */
  border: 1px solid #9D7A3A;
  border-radius: 8px;
  padding: max(10px, 2vh) max(5px, 1vw) max(15px, 3vh) max(5px, 1vw);
  box-sizing: border-box; /* パディングを含めた幅指定 */
  min-width: 100px; /* 小さくなりすぎないように保護 */
}

@media screen and (max-width: 510px) {
  .mv-result__boxes-list {
    flex-wrap: wrap; /* 横並び維持、折り返し */
    gap: 12px; /* アイテム間の間隔 */
  }
  .mv-result__items {
    flex: 1 1 calc(50% - 8px); /* スマホでも2列表示 */
    min-width: 130px; /* 最小幅を設定 */
    padding: 10px 5px 15px 5px;
  }
}
.mv-result__items-mdiashi {
  font-size: 11px;
  margin-bottom: 5px;
}

.mv-result__items-num {
  font-weight: bold;
}

.mv-result__items-strong {
  font-size: 42px;
  color: #9D7A3A;
}

@media screen and (max-width: 510px) {
  .mv-result__items-strong {
    font-size: 40px;
  }
}
.mv-result__boxes2-wrap {
  background-color: #F1F1F1;
  padding: 30px 15px 30px 15px;
}

.mv-result__boxes2--midashi {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

.mv-result-personalinfo__list-lavel {
  text-align: left;
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 12px;
}

.mv-result-personalinfo__list-item {
  list-style-type: none;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

.mv-result-personalinfo__list-item input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #fff;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
  padding: 10px 15px;
}


.mv-result-personalinfo__note {
  font-size: 11px;
  margin-bottom: 40px;
}

.mv-result-personalinfo__note2 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
}

@media screen and (max-width: 510px) {
  .mv-result-personalinfo__note {
    font-size: 11px;
    margin-bottom: 30px;
  }

  .mv-result-personalinfo__note2 {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
  }

}

.mv-result__attension-texts {
  position: absolute;
  bottom: clamp(10px, 5vh, 40px); /* 最小10px、最大40px、基本は画面高の5% */
  left: 50%;
  transform: translateX(-50%);
  width: 683px;
  max-width: 100%;
  color: #333;
  font-size: 11px;
  text-align: left;
  z-index: 4; /* 背景画像より上にくるように */
  padding: 0 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 510px) {
  .mv-result__attension-texts {
    position: static;
    transform: none;
    width: 100%;
    padding: 20px 15px 50px;
    color: #000; /* 白背景になるなら黒字に */
    background-color: transparent;
  }
}
.mv-result__attension-items {

  margin: 0;
  list-style: disc; /* ← 黒ポチを表示（必要に応じて） */
}

.mv-result__attension-texts li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.mv-result__boxesbtm {
  margin: 0 auto;
  margin-top: 120px;
  color: #000;
  width: 100%; /* ← 全幅表示 */
  box-sizing: border-box; /* ← paddingを含めてサイズを調整 */
  padding: 0 5px; /* ← 左右に余白を作りつつズレ防止 */
}

.mv-result__boxesbtm--midashi {
  font-size: 18px;
}

@media screen and (max-width: 510px) {
  .mv-result__boxesbtm--midashi {
    font-size: 16px;
    margin-top: 10px;
  }
}
.mv-result__boxesbtm-wrap {
  text-align: center;
}

.mv-result2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

@media screen and (max-width: 510px) {
  .mv-result2 {
    height: auto; /* ← 全画面表示をやめる */
    background-color: #E6ECF4;
  }
}
.mv-result2__title-wrap {
  position: absolute;
  z-index: 3;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #333;
  text-align: center;
}

.mv-result2__img,
.mv-result2__img img,
.mv-result2__img picture {
  height: inherit;
  min-height: inherit;
}

.mv-result2__img img,
.mv-result2__img picture {
  width: 100%;
  object-fit: cover;
}

.mv-result2__contents {
  font-size: 20px;
}

.mv-result2__main-text {
  position: absolute;
  z-index: 3;
  top: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv-result2__main-text__detail {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 510px) {
  .mv-result2__main-text__detail {
    font-size: 18px;
    white-space: nowrap;
  }
}
.mv-result2__bg {
  position: absolute;
  z-index: 2;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 683px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  height: 30vh;
}

@media screen and (max-width: 510px) {
  .mv-result2__bg {
    top: 40%;
    height: 25vh;
    width: calc(100% - 40px);
    box-sizing: border-box;
  }
}
.mv-result2__text {
  margin-bottom: 10px;
}

.mv-result2__inner {
  width: 370px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.mv-result2__items-num {
  font-weight: bold;
}

@media screen and (max-width: 510px) {
  .mv-result2__items-strong {
    font-size: 40px;
  }
}
.mv-result2-personalinfo__list-lavel {
  text-align: left;
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 12px;
}

.mv-result2__attension-items {
  padding-left: 20px; /* ← デフォルトのリストっぽく少し余白 */
  margin: 0;
  list-style: disc; /* ← 黒ポチを表示（必要に応じて） */
}

.mv-result2__attension-texts li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.mv-result2__img {
  position: relative; /* ← オーバーレイを絶対配置するために必要 */
  overflow: hidden; /* はみ出し防止 */
}

.mv-result2__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* ← 黒で60%透過 */
  z-index: 2; /* 画像の上に表示 */
  pointer-events: none; /* ← クリック操作を透過させる（必要に応じて） */
}

.mv-result2__img picture,
.mv-result2__img img {
  position: relative;
  z-index: 1; /* ← オーバーレイの下に配置 */
}

.footer {
  position: relative;
  z-index: 100;
  padding: 33px 0 18px 0;
  background-color: #EEEFEB;
}

.footer__inner {
  margin: 0 auto;
  width: 373px;
  max-width: 100%;
}

.footer__nav {
  margin-bottom: 10px;
}

.footer__nav-items {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 510px) {
  .footer__nav-item {
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 510px) {
  .footer__nav-items {
    flex-direction: column;
    text-align: center;
  }
}
.footer__nav-item a {
  color: #333333;
}

.footer__copyright {
  display: block;
  margin: 0 auto;
  text-align: center;
}


/* 
.page-next {
  animation: slideOutLeft 0.2s forwards;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-15px);
    opacity: 0;

  }
}

.page-now {
  animation: slideInLeft 0.2s forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(15px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



.page-back {
  animation: slideOutRight 0.2s forwards;
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0); 
    opacity: 1;
  }
  100% {
    transform: translateX(15px); 
    opacity: 0;
  }
}

.page-backnow {
  animation: slideInRight 0.2s forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(-15px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}  */

/* .q01,
.q02,
.q03,
.q04,
.q05,
.q06,
.q07,
.q08,
.q09,
.q10,
.q11,
.q12{
  opacity: 0;
  transform: translateX(15px);
  transition: none;
} */


/* ポップアップのオーバーレイ */
.mv-single__popup-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(144, 144, 144, 0.5); /* ← #909090 の50%透明 */
  z-index: 10;
  justify-content: center;
  align-items: center;
  
}
@media screen and (max-width: 510px) {
.mv-single__popup-overlay {
  padding-top: 30px;
}
.mv-single__popup {
  transform: translateY(20px); /* ← 中央より20px下へずらす */
}
}

/* ポップアップのボックス */
.mv-single__popup {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 4px;
  width: 560px;
  max-width: 100%;
  box-shadow: 2px 2px 6px rgba(68, 78, 93, 0.04); /* 6%の透明度の#03345E */
  text-align: center; /* コンテンツの文字を中央揃え */
  margin-top: 60px;
}

@media screen and (max-width: 1280px) {
  .mv-single__popup {
    margin-top: 0;
  } 
}


@media screen and (max-width: 560px) {
  .mv-single__popup {
    width: 370px;
  }
}
/* チェックボックスのスタイル */
.mv-single__popup label {
  display: block;
}

.mv-single__popup-inner {
  width: 310px;
  margin: 0 auto;
}

.mv-single__popup-lavel {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.mv-single__popup-count {
  font-size: 12px;
  margin-bottom: 20px;
}

.mv-single__popup-number {
  font-size: 24px;
  padding-left: 3px;
}

.mv-single__popup-attention {
  color: red;
  font-size: 10px;
}

.mv-single__popup .btn {
  padding: 20px 50px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.mv-single__midashi{
  margin-bottom: 40px;
}

.mv-single__btnnext:first-of-type {
  margin-bottom: 30px;
}

.mv-single__btnnext a {
  display: block;      /* aタグをブロック要素にする */
  width: 100%;         /* 親要素に合わせる */
  box-sizing: border-box; /* paddingやborderも幅に含める（推奨） */
}
/*──────────────────────────────────────────────
  キラッと走る閃光（::after）
──────────────────────────────────────────────*/
.mv-single__popup-overlay .btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80px; /* 太さ */
  height: 100%;
  transform: skewX(-25deg);
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.9) 60%, transparent 100%);
  pointer-events: none;
  animation: shine-btn 2.5s ease-in-out infinite;
  z-index: 1; /* 矢印の下、テキストの上 */
}

@keyframes shine-btn {
  0% {
    left: -30%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media screen and (max-width: 560px) {
@keyframes shine-btn {
  0% {
    left: -12%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    left: 90%;
    opacity: 0;
  }
}
}

/* q10のレイアウト修正 */
.mv-single__contents--q10 {
  position: relative;
  background-color: #E6ECF4;
  border-radius: 8px;
  height: 100%;
  max-height: 500px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  margin-top: 40px;
   margin-bottom: 30px;
}

@media screen and (max-width: 510px) {
  .mv-single__contents--q10 {
    max-height: none;
    box-shadow: none;
  }
}

.mv-single__midashi {
  width: 440px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 510px) {
  .mv-single__midashi {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv-single__list-item--q10{
  margin-top: 0px;
}

.mv-single-q10-attention {
  color: red;
  font-size: 10px;
  margin-bottom: 10px;
}

.mv-single-q10-count {
  font-size: 12px;
  margin-bottom: 20px;
}

.mv-single-q10-count-wrap{
  background-color: #fff;
  opacity: 0.5;
  width: 440px;
  max-width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 510px) {
  .mv-single-q10-count-wrap { 
    width: 85%;
  }
}

.mv-single-q10-wrap{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}


/* .mv-single__listq10-items {
  margin-top: 30px;
} */


.mv-single-q10__select-list{
    width: 440px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.mv-single__listq10-item {
  list-style-type: none;
  width: 440px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  box-shadow: 0px 0px 6px rgba(3, 52, 94, 0.06); /* 6%の透明度の#03345E */
}

@media screen and (max-width: 510px) {
  .mv-single__listq10-item {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
.mv-single__listq10-item:last-child {
  margin-bottom: 30px;
}

.mv-single__listq10-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mv-single__listq10-item.active {
  background-color: #2841FF; /* クリックしたアイテムの背景色 */
  color: #fff; /* 背景色に合わせて文字色も変更 */
}

.mv-single__listq10-item input[type=radio] {
  display: none; /* ボタン自体を非表示にしてカスタムUIにしてもOK */
}

.mv-single__listq10-item label {
  display: block;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 24px;
  cursor: pointer;
}

.common_submit_form{
  margin-bottom: 100px;
}

.mv-single--q10__nextpage {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 510px) {
  .mv-single--q10__nextpage {
    position: fixed;
    top: auto;
    bottom: 30px;
    left: 130px;
    margin-bottom: 0px;
  }
}
.mv-single--q10__nextpage .btn {
  border: none;
  padding: 20px 100px;
}

@media screen and (max-width: 510px) {
  .mv-single--q10__nextpage .btn {
    border: none;
    padding: 20px 50px;
  }
}

/* チェックボックス非表示 */
/* チェックボックス本体を非表示に */
.mv-single__listq10-item input[type="checkbox"] {
  display: none;
}

/* カスタム見た目用の span */
.mv-single__listq10-item .custom-checkbox {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  transition: background-color 0.2s;
}

/* チェックされたときのスタイル */
.mv-single__listq10-item input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #fff;
}

.mv-single__listq10-item input[type="checkbox"]:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #2841FF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* ラベル全体をボタンっぽく */


.mv-single-q10__select-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 510px) {
  .mv-single-q10__select-list {
    width: 85%;
  }
}


.mv-single-q10__select-item {
  margin-right: 10px;
  padding-left: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 30px;
  background-color: #2841FF;
  color: #fff;
  border-radius: 20px;
  position: relative; /* 疑似要素の配置に必要 */
}

/* 疑似要素で白い×ボタンを追加 */
.mv-single-q10__select-item::after {
  content: "×"; /* ×の文字を追加 */
  position: absolute;
  top: 50%; /* 垂直中央に配置 */
  right: 8px; /* 右側に少し余白 */
  transform: translateY(-50%); /* 正確に中央に配置 */
  color: #fff; /* 白色 */
  font-size: 14px; /* サイズ調整 */
  cursor: pointer; /* カーソルをポインターに変更 */
}

.mv-single-q10__select-item input[type=checkbox] {
  display: none;
}

.mv-single-q10-number {
  font-size: 24px;
  padding-left: 3px;
}

@media screen and (max-width: 510px) {
.mv-single__listq10-regiondeteil{
  font-size: 10px;
}
}

/* 2025/07/30開発 */
/* ------- 共通スタイル ------- */
.header {
  width: 100%;
  position: relative;
  z-index: 100;
}

/* 共通 */
.header__logo img {
  width: 93px;
  height: 62px;
}

.header__catchphrase {
  font-size: 20px;
  font-weight: bold;
  white-space: normal;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}

.header__license {
  font-size: 10px;
  white-space: nowrap;
}

/* ------- PC表示 ------- */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2841FF;
  padding: 5px 20px;
}

.header__inner .header__catchphrase,
.header__inner .header__license {
  color: #fff;
}

/* スマホ版は非表示 */
.header__sp {
  display: none;
}

/* ------- スマホ表示 (510px以下) ------- */
@media (max-width: 510px) {
  /* PC版を非表示 */
  .header__inner {
    display: none;
  }

  .header__sp {
    display: block;
  }

  .header__top {
    background-color: #2841FF;
    padding: 10px 10px;
    text-align: center;
  }

  .header__top .header__catchphrase {
    color: #fff;
    white-space: normal; /* ← 折り返しを許可 */
    font-size: 11px;
  }

  .header__bottom {
    background-color: #fff;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;        /* 中央寄せ */
    align-items: center;
    flex-wrap: wrap;                /* 縦並び許可 */
    gap: 10px;                      /* ロゴとテキスト間の余白 */
    text-align: center;
  }

  .header__bottom .header__logo,
  .header__bottom .header__license {
    flex: 0 1 auto;
    color: #333;
  }

  .header__bottom .header__license {
    font-size: 10px;
    white-space: normal; /* 折り返し許可 */
  }

  .header__bottom .header__logo img {
    width: 61px;
    height: 41px;
  }
}

.mv .mv__contents {
  position: absolute;
  top: 45px;             /* 上から70px */
  left: 50%;             /* 左右中央起点 */
  transform: translateX(-50%); /* 水平方向に中央寄せ */
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 510px) {
  .mv .mv__contents {
  top: 20px;
  left: 37%;  
}
}

.mv__sub-title{
  color: #fff;
  text-align: center;
}
@media (max-width: 510px) {
  .mv__sub-title{

  text-align: left;
}
}


.mv__text-leading {
  font-size: 21px;
  font-weight: bold;
  color: #000F81;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

@media (max-width: 510px) {
  .mv__text-leading {
    font-size: 18px;
}
}

.mv .mv__sub-title-top {
  text-align: center;
  font-size: 40px;
}

@media (max-width: 510px) {
.mv .mv__sub-title-top {
  font-size: 30px;
}
}

.mv .mv__sub-title-bottom {
  font-size: 32px;
}

@media (max-width: 510px) {
.mv .mv__sub-title-bottom {
  font-size: 26px;
}
}

.mv-single__dot-list {
  display: flex;
  align-items: flex-end; /* ← ドット下端揃えでラベルに余白ができる */
  justify-content: center;
  gap: 40px;
  padding: 40px 0 20px; /* 上に余白追加 */
  list-style: none;
  margin: 0;
}

.mv-single__dot-item {
  position: relative; /* ラベルの位置基準 */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #AAB4FF;
}

/* 線をつなげる */
.mv-single__dot-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 50px;
  height: 2px;
  background-color: #ccc;
  transform: translateY(-50%);
}

/* ラベルをドットの上に表示 */
.mv-single__step-label {
  position: absolute;
  bottom: 100%;        /* ドットの上端に合わせる */
  left: 50%;
  transform: translateX(-50%) translateY(-20px); /* 少し上に */
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  color: #2841FF;
  font-weight: bold;
}

.mv-single__dot-item {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #AAB4FF;
  overflow: visible;
}

/* アクティブ状態 */
.mv-single__dot-item.is_active {
  background-color: #2841FF; 
}

.mv-single__dot-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;     /* アイコンの大きさ */
  height: 37px;
  transform: translate(-50%, -50%);
}

.mv-single__dot-item.is_active::after {
  background-color: #2841FF;
}

.mv-single__step-label_en{
  font-size: 9px;
}

.mv-single__step-label_num{
  font-size: 14px;
}

@media (max-width: 510px) {

.mv-result__boxes2-wrap{
  background-color: #fff;
  padding: 30px 15px 30px 15px;
  border-radius: 8px;
}
}


.mv-result__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* ← 薄暗くする黒背景 */
  z-index: 1;
  pointer-events: none; /* ボタンなど操作が効かなくなるのを防止 */
}
@media (max-width: 510px) {
  .mv-result__overlay {
  height: 50%;
}
}