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

/*------------------------------
  共通設定
-------------------------------- */
:root {
  --sp-width: 430px;
  /*  --sp-width: 393px; */

  --color-bgColor: #FFCAE3;
  --color-btnbk: #0a1421;
  --color-btnOff: #fff;
  --color-mainText: #65412F;
  --color-border: #7c7b75;
  --color-tokai: #ED6D00;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: gray;
}

/* --------------------------------
  Layout
-------------------------------- */
/*iOS Safari のフォントサイズ自動調整機能off*/
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


body {
  font-family: "Noto Sans JP", "Noto Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: normal;
  color: var(--color-black);
  background-color: var(--color-gray);
  margin: 0;
}

main {
  margin-top: 66px;
  background-color: var(--color-white);
}

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

#momo ul {
  list-style: none;
  padding-left: 0;
}

#momo table {
  border-collapse: collapse;
  border-spacing: 0;
}

.border {
  border: none;
  /* デフォルトの枠線を消す */
  width: 89.06%;
  margin: 0 auto;
  border-top: 3px solid #FA3378
}

.underline {
  color: blue;
  text-decoration: underline solid blue;
  /*iOS Safari でアンダーバー表示が適用されない挙動の対応*/
  -webkit-text-decoration: underline solid blue;
}

/*ボタン 共通
----------------------------*/
.btn {
  display: inline-block;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  color: var(--color-white);
  width: 360px;
  max-width: 100%;
  border-radius: 10px;

  text-align: center;
  justify-content: center;
  text-decoration: none;

  border: none;
  /* クリックした際に枠線をnone消す */
  outline: none;
  /* 影を消す */
  box-shadow: none;
  padding: 0;
  /* 必要に応じて初期化 */
  margin: 0 auto;
}

.btn__wrapper {
  display: flex;
  justify-content: center;
  /* 中央寄せ */
}

.btn__text {
  display: flex;
  flex: 40;
  /* 比率b */
  align-items: center;
  font-size: 1.25rem;
  /*20px*/
  font-weight: 900;
  padding: 26px 0 25px;
  letter-spacing: 0.04em;
  justify-content: center;
  /* 中央寄せ */
}

.btn__left-icon {
  display: flex;
  flex: 19;
  /* 比率a */
  justify-content: center;
}

.btn__right-icon {
  display: flex;
  flex: 12;
  /* 比率c */
  justify-content: center;
}

.btn--shadow {
  box-shadow: 4px 4px 0px 0px #000000;
  /* 右下にぼかしのある黒い影 */
  /*box-shadow: 5px 5px 10px rgba(0, 0, 0, 1.0);*/
}


/*  コンプリート特典を引き換える ボタン
----------------------------*/
.btn-code-input {
  display: flex;
  align-items: center;
  width: 76.28%;
  height: 55px;
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(0deg, #005BE7 -9.09%, #0097E7 100%);
  border: 2px solid #0047B7
}

.btn-code-input__text,
.btn-code-input__text--on {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.25rem;
  /*20px*/
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

/*  新幹線速度検知 ボタン
----------------------------*/
.btn-speed-detection {
  display: flex;
  align-items: center;
  width: 91.61%;
  height: 80px;
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(0deg, #005BE7 -9.09%, #0097E7 100%);
  border: 2px solid #0047B7;
  position: relative;
}

.btn-speed-detection::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 18.6%;
  width: 100%;
  height: 25px;
  background-image: url(/view/event/momotetsu/svg/volume.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.btn-speed-detection--img {
  width: 185px;
  height: auto;
  margin-left: 33px;
}


/*  リアル桃鉄特設サイトはこちら ボタン
----------------------------*/
.btn-site-link {
  display: flex;
  align-items: center;
  width: 91.61%;
  height: 80px;
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(0deg, #FA3378 -9.09%, #FF75A5 100%);
  border: 2px solid #C53B6B
}

.btn-site-link__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.25rem;
  /*20px*/
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}



/* main class="page-content"
----------------------------------------------- */
.page-content {
  width: var(--sp-width);
  max-width: 430px;
  padding-top: 60px;
  min-height: calc(100vh - 150px);
  margin: auto;
  display: block;
  overflow: hidden;
  background-color: var(--color-bgColor);
  background-image: 100%;
}

/*注意事項 共通
-------------------------------*/
.event-warning {
  width: 90%;
  margin: 0 auto;
}

/*リスト*/
.event-warning-list {
  margin: 0;
  padding: 0;
}

.event-warning-list__item {
  position: relative;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem;
  /*12px*/
  line-height: 20px;
  letter-spacing: 0.05em;

  padding-left: 1.2em;
  /*リスト左スペース調整*/
  padding-right: 0;
  /*リスト右スペース調整*/
}

.event-warning-list__item::before {
  content: "※";
  position: absolute;
  left: 0.0em;
  /*ドット位置調整*/
}

/*リスト上部のスペース調整*/
.event-warning-list__item:first-child {
  padding-top: 0em;
}

/*リスト下部のスペース調整*/
.event-warning-list__item:last-child {
  padding-bottom: 0;
}

/*------------------------------
  共通設定 ここまで
-------------------------------- */

/* section class="main-visual"
----------------------------------------------- */
.main-Visual {
  background-color: var(--color-bgColor);
}

.visual__inner {}

.visual__image {
  display: block;
  width: var(--sp-width);
  height: auto;
}

.visual__title {
  background-color: #FD5690;
  padding: 20px 0 26px;
  text-align: center;
}

.visual__title--image {
  width: 346px;
  height: auto;
}

.visual__heading {
  display: block;
  /* ブロック要素にする */
  width: 52.675%;
  height: auto;
  margin: 0 auto;
  transform: translateY(-50%);
}

.visual__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.9375rem;
  /*15px*/
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  transform: translateY(-4%);
}

.visual__image--shinkansen {
  display: block;
  /* ブロック要素にする */
  width: 97%;
  height: auto;
  margin-left: auto;
  /* 右寄せ */
  margin-right: 0;
  padding-top: 11px;
  padding-bottom: 8px;
}

/*認証セクション
----------------------------------------------- */
.registration--off {
  display: none;
}

.registration {
  padding-top: 0;
  padding-bottom: 5px;
  background-color: var(--color-bgColor);
}

.registration__inner {
  width: 91.6%;
  margin: 0 auto;
}

/* 認証処理ボタン 
----------------------------------------------- */
.registration__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 34px 0 10px;
}

.btn-registration {
  color: #000;
  background: linear-gradient(0deg, #D1A319 -9.09%, #E4BE48 100%);
  border: 2px solid #B48C14;
}

.btn-login {
  color: #000;
  background: linear-gradient(0deg, #D1A319 -9.09%, #E4BE48 100%);
  border: 2px solid #B48C14;
}

/*アカウント新規登録*/
.btn-registration__icon-left {
  flex: 3;
  margin: auto;
  padding-right: 10px;
}

.btn-registration__text {
  flex: 8;
  font-family: Noto Sans JP;
  text-align: center;
  font-size: 1.25rem;
  /*20px*/
  font-weight: bold;
  margin: 13.5px auto;
  color: #fff;
}

.btn-registration__icon-right {
  flex: 1;
}

.btn__registration-icon-size {
  height: auto;
}

/*ログイン*/
.btn-login__icon-left {
  flex: 7;
  margin: auto;
  padding-right: 10px;

}

.btn-login__text {
  flex: 20;
  font-family: Noto Sans JP;
  text-align: center;
  font-size: 1.25rem;
  /*20px*/
  font-weight: bold;
  margin: 13.5px auto;
  padding-right: 1rem;
  color: #fff;
}

.btn-login__icon-right {
  flex: 3;
}

.btn__login-icon-size {
  width: 18px;
  height: auto;
}



/* コンテンツ ご注意事項 
----------------------------------------------- */
/*ご注意事項ボタン*/
.warning-content {
  padding: 0 0 20px 0;
  margin: 0 auto;
  transition: 0.5s;
  background-color: var(--color-bgColor);
  padding-bottom: 27px;
}

.toggleWarning {
  cursor: pointer;
  position: relative;
}

.toggleWarning__title {
  color: var(--color-black);
  text-indent: -3em;
  font-size: 1.0rem;
  font-weight: bold;
  text-align: center;
  padding: 9px 0 0 0;
  margin: 0px;
}

/*icon デザイン*/
.open__icon__block {
  position: absolute;
  right: 35%;
  top: 68%;
  transform: translatey(-50%);
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  z-index: 2;
}

.open__icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.open__icon::before,
.open__icon::after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.3s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  transform: translate(-50%, -50%);
}

.open__icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.open__icon.open::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.open__icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*  特典商品の紹介
----------------------------------------------*/
.introduction {
  padding-top: 47px;
  padding-bottom: 17px;
}

.introduction-title {
  display: flex;
  width: 100%;
  justify-content: center;
}

.introduction__title--img {
  display: flex;
  width: 54%;
  height: auto;
  margin-left: auto;
  /* 右寄せ */
  margin-right: auto;
  top: 0;
  bottom: 0;
  margin: auto 3%;
}

.introduction__title--icon {
  display: flex;
  top: 0;
  bottom: 0;
  margin: auto 0 auto 1%;
}

.border-body {
  padding-top: 20px;
  padding-bottom: 13px;
}

.introduction__text {
  font-family: Zen Maru Gothic;
  font-weight: 700;
  font-size: 1.1875rem;
  /*19px*/
  line-height: 31px;
  letter-spacing: 0;
  text-align: center;
}

.introduction__text span {
  color: #FA3378;
}

/*----------------------
のぞみ賞
----------------------*/
.nozomi {
  padding-bottom: 23px;
}

.content__wrapper {
  display: flex;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 5px solid #2191FF;
  background-color: #2191FF;
  height: 75px;
}

.content__title--img {
  display: block;
  /* ブロック要素にする */
  width: 52.675%;
  height: auto;
  margin: auto;
}

.content-award__wrapper {
  border: 5px solid #2191FF;
  background-color: #fff;
}

.content-award__title {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.0625rem;
  /*17px*/
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  color: #0047B7;
  padding: 27px 0 10px;
}

.cards {
  display: block;
}

.cards__item {
  width: 91.4%;
  margin: 0 auto;
  margin-bottom: 13px;
  background-color: #CBE5FF;
}

.card {
  display: flex;
  align-items: center;
}

.card--last {
  margin-bottom: 0;
}

.card__image {
  width: 59%;
}

.cards__item--text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.79625rem;
  /*12.74px*/
  line-height: 18.41px;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto;
}

.cards__note {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.846875rem;
  /*13.55px*/
  line-height: 33.87px;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 5px;
}

.media--reverse {
  flex-direction: row-reverse;
}

.content-award__texts {
  padding-top: 8px;
}

.award-heading__title {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1.125rem;
  /*16px*/
  line-height: 29px;
  letter-spacing: 0.01em;
  text-align: center;
  padding-bottom: 9px;
}

.award-heading__title span {
  font-size: 1.3125rem;
  /*21px*/
  color: #0047B7;
}

.award-heading__title .small {
  font-size: 0.8125rem;
  /*13px*/
  color: #0047B7;
}

.award-heading__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 1rem;
  /*16px*/
  line-height: 25.5px;
  letter-spacing: 0;
  text-align: center;
}

.award-heading__text span {
  display: block;
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem;
  /*12px*/
  line-height: 1.16;
  letter-spacing: 0;
  text-align: center;
  padding: 6px 0 10px;
}

.award-heading__note {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem;
  /*12px*/
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1E1E1E;
  padding: 6px 0 23px;
}


/*達成条件*/
.message-board {
  padding: 17px 0 31px;
}

.message-board__wrapper {
  width: 91.91%;
  margin: 0 auto;
  border: 1px solid #000000;
}

.message-board__title {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 1.4px 0;
}

.message-board .event-warning {
  width: 90%;
  margin: 0 auto;
  padding-top: 13px;
}

.message-board .event-warning-list__item {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0;
}

.message-board .event-warning-list__item::before {
  content: "・";
  position: absolute;
  left: 0.0em;
  /*ドット位置調整*/
}

.message-board__note {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem;
  /*12px*/
  line-height: 100%;
  letter-spacing: 0;
  margin-left: 2rem;
  padding: 5px 0 14px;
}



/*----------------------
ひかり賞
----------------------*/
.hikari .content__wrapper {
  border: 5px solid #E74F4E;
  background-color: #E74F4E;
}

.hikari .content-award__wrapper {
  border: 5px solid #E74F4E;
}

.hikari .award-heading__title {
  padding-top: 10px;
  padding-bottom: 13px;
}

.hikari .award-heading__title span {
  color: #FA3378;
}

.hikari .cards {
  padding-bottom: 12px;
}

.hikari .cards__item {
  background-color: #fff;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.hikari .card__image {
  display: block;
  margin: 0 auto;
  width: 226px;
}

.hikari .cards__note {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 0.75rem;
  /*12px*/
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0;
}

.hikari .award-heading__text {
  line-height: 26px;
}

.hikari .award-heading__note {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: center;
  padding: 17px 0;
}

.content__logo--img {
  display: block;
  width: 257px;
  margin: 0 auto;
  padding: 29px 0 14px;
}

.hikari .message-board {
  padding: 21px 0 18px;
}

.hikari .message-board .event-warning {
  padding-top: 12px;
}

.hikari .message-board__note {
  padding: 8px 0 20px;
}

.hikari .message-board {
  padding: 21px 0 22px;
}

/*注意事項*/
.precautions {}

.precautions__wrapper {
  padding: 20px 0 6px;
}

.precautions .event-warning {
  width: 93%;
}

.precautions .event-warning-list__item:first-child {
  color: #FF0000;
}

.precautions .event-warning-list__item {
  font-family: Noto Sans JP;
  font-weight: 350;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0;
}

.precautions .border-body {
  padding-top: 31px;
  padding-bottom: 13px;
}

.precautions .border {
  width: 91.61%;
  margin: 0 auto;
  border-top: 1px solid #FA3378;
}



/*----------------------
あなたの新幹線乗車
スタンプ獲得数
-----------------------*/
.number-of-stamps {
  padding-top: 17px;
}

.number-of-stamps__wrapper {
  width: 91.6%;
  margin: 0 auto;
}

.number-of-stamps .content__wrapper {
  border: 5px solid #FA3378;
  background-color: #FA3378;
  height: 89px;
}

.number-of-stamps .content__title--img {
  padding-top: 4px;
  width: 292px;
}

.number-of-stamps .content-award__wrapper {
  border: 3px solid #FA3378;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.count {
  position: relative;
}

.count::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 100%;
  height: 40px;
  background-image: url(/view/event/momotetsu/img/times-81.webp);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: translate(67%, 80%);
}

.count__number {
  font-family: Zen Maru Gothic;
  font-weight: 900;

  font-size: 116px;
  line-height: 123px;

  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: middle;
  color: #FA3378;
  padding-right: 15px;
}

.count__number--edging {
  text-shadow:
    2px 2px 0 #FA3378,
    -2px 2px 0 #FA3378,
    2px -2px 0 #FA3378,
    -2px -2px 0 #FA3378;
}

.number-of-stamps .precautions__wrapper {
  padding: 14px 0 18px;
}

.number-of-stamps>.precautions__wrapper {
  padding-top: 15px;
}

.number-of-stamps>.precautions__wrapper .event-warning-list__item {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.06em;
}

.number-of-stamps .precautions__wrapper .event-warning {
  width: 93%;
}

.number-of-stamps .precautions__wrapper--w .event-warning {
  width: 90%;
}

/*-------------------------------
キャンペーン終了までに
新幹線コード(7桁)を入れてね！
-------------------------------*/
.code-input {
  margin-top: 12px;
}

.code-input__wrapper {
  width: 91.6%;
  margin: 0 auto;
}

.code-input .content__title--img {
  padding-bottom: 4px;
  width: 314px;
}

.code-input .content__wrapper {
  border: 5px solid #0066E6;
  background-color: #0066E6;
  height: 112px;
}

.code-input .content-award__wrapper {
  text-align: center;
  border: 3px solid #0066E6;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: auto;
}

.campaign-code .shinkansen__img {
  display: block;
  /* ブロック要素にする */
  width: 97%;
  margin-left: 10px;
  margin-right: 0px;
  transform: translateY(-52%);
  margin-top: 0;
  margin-bottom: -11.8%;
}

.campaign-code__period {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.9375rem;
  /*15px*/
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
}

.input-box {
  padding: 14px 0 7px;
}

.input-box__number {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 1.875rem;
  /*30px*/
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;

  border-radius: 8px;
  border: 1px solid #fff;

  width: 80%;
  height: 50px;
  box-sizing: border-box;
}

.input-box__number::placeholder {
  color: #868686;
}

.input-box__number:focus {
  border: 1px solid #000;
  outline: none;
}

.input-box__text {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 0.8125rem;
  /*13px*/
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  padding-left: 1.6rem;
  position: relative;
}

.input-box__text::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 33%;
  width: 100%;
  height: 26px;
  background-image: url(/view/event/momotetsu/svg/hatena.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.code-input-btn {
  padding: 15px 0 28px;
}

.btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 45px 0 9px;
}

.application .precautions__wrapper {
  padding: 0 0 10px;
}

.application .site-link {
  padding: 21px 0 29px;
}

.application .precautions .event-warning {
  width: 88%;
}

.application .precautions .event-warning-list__item {
  color: #000;
}




/*無効制御*/
input:disabled {
  background-color: #fff;
  color: #000;
  opacity: 1;
}

.btn-code-input__text--on {
  display: none;
}


/*入力制御 modification-mode*/

.modification-mode .btn-code-input__text {
  display: none;
}

.modification-mode .btn-code-input__text--on {
  display: block;
}

.modification-mode .input-box__number {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 1.875rem;
  /*30px*/
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;

  border-radius: 8px;
  border: 1px solid #BFBFBF;

  width: 80%;
  height: 50px;
  box-sizing: border-box;
}










/*-------------------------------
モーダル
-------------------------------*/
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
}

#js-modal--close {}

.modal-body__wrapper {
  width: 85%;
  max-width: 430px;
  height: auto;
  background-color: #fff;
}

.modal-body__title {
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 0.9375rem;
  /*15px*/
  line-height: 21px;
  letter-spacing: 0.06em;
  text-align: center;
  padding-top: 35px;
  padding-bottom: 14px;
}

.modal-body__title>span {
  color: #FF0000;
}

.modal-visual__wrapper {
  display: block;
  margin: 0 auto;
  padding-bottom: 25px;
  width: 90%;
}

.modal-visual--main {
  display: block;
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.modal-visual--sub {
  display: block;
  width: 62%;
  height: auto;
  margin-left: auto;
  padding-right: 3%;
}

/*背景 オーバーレイ透過処理*/
.modal-overlay {
  position: fixed;
  /* 画面全体に固定 */
  inset: 0;
  width: 100vw;
  min-width: var(--sp-width);
  height: auto;
  /*height: 100vh;*/
  background: rgba(0, 0, 0, 0.8);
  /* 黒の透過80% */
  display: flex;
  /* モーダルを中央寄せ */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* 他要素より前に出す */
}

/*クローズボタンデザイン*/
.btn-modal__close {
  position: absolute;
  /* モーダル枠に対して絶対配置 */
  top: 15px;
  right: 6vw;
  width: 32px;
  height: 32px;
  z-index: 2;
}

.btn-modal__close02 {
  position: absolute;
  /* モーダル枠に対して絶対配置 */
  top: 15px;
  right: 6vw;
  width: 32px;
  height: 32px;
  z-index: 1;
}

.btn-modal__close::before,
.btn-modal__close::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%);
  width: 2px;
  /* 棒の幅（太さ） */
  height: 47px;
  /* 棒の高さ */
  background: var(--color-white);
  transform-origin: center;
}

.btn-modal__close02::before,
.btn-modal__close02::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 54%;
  right: 46%;
  transform: translateY(-50%);
  width: 2px;
  /* 棒の幅（太さ） */
  height: 47px;
  /* 棒の高さ */
  background: var(--color-gray);
  transform-origin: center;
}

.btn-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-modal__close02::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-modal__close02::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal {
  display: none;
}