@charset "UTF-8";
/* CSS Document */

/* PC用設定 */
@media screen and (min-width: 751px) {
}
/*************
メディアクエリ
*************/
@media (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
  --text-color: #5a3f28;
  --sub-text-color: #606060;
  --text-link: #2689fd;
  --primary-color: #80ccda;
  --primary-color-dark: #5badbc;
  --secondly-color: #f08e42;
  --secondly-color-dark: #e67740;
  --accent-color: #f4ef8c;
  --red-color: #ee0000;
  --bg-colorA: #f0ece5;
  --bg-colorB: #80ccda;
  --bg-colorC: #5badbc;
  --bg-colorD: #ffeabf;
  --border-color: #aaaaaa;
  --grad-color: linear-gradient(90deg, #e24d01 0%, #f57710 100%);
  --grad02-color: linear-gradient(90deg, #f57710 0%, #e24d01 100%);
  --font-serif: "Noto Serif JP", 游明朝, 游明朝体, "Yu Mincho", YuMincho, serif;
  --scale-factor: 1; /* 通常時 */
  --btn-base-color: #ccc; /* アコーディオンボタンのベース色 */
  --btn-text-color: #000; /* アコーディオンボタンのテキスト色 */
}
/* 背景固定 */
/* body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) no-repeat center center;
	background-size: cover;
} */

.content_wrap {
  overflow: hidden;
}
.main__wrap {
  padding-top: 66px;
  background-color: #fff;
  color: var(--text-color);
  line-height: 1.5;
  font-size: 14px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.main__wrap * {
  box-sizing: border-box;
  line-height: 1.5;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

a:hover img {
  opacity: 1;
}

.container {
  position: relative;
  width: 92%;
  margin: 0 auto;
  max-width: 650px;
}
.indent li,
.txt-note.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.fc-red {
  color: var(--red-color);
}
.fc-accent {
  color: var(--red-color);
}
.fc-white {
  color: #fff;
}

.txt-link {
  color: var(--text-link);
  text-decoration: underline;
  font-weight: bold;
}
.txt-note {
  font-size: 12px;
}
.txt-note.fz-s {
  font-size: 10px;
}
.note__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.note__list li {
  font-size: 12px;
}
.note__list li.fc-red {
  color: var(--red-color);
}

.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.bold {
  font-weight: bold;
}
.auto_center {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.credit {
  font-size: 10px;
  padding-top: 8px;
  text-align: center;
  background-color: #fff;
}

.fz-smaller {
  font-size: 0.8em;
}
.fz-larger {
  font-size: 1.2em;
}

.fontZenMaruGothic {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fontUnbounded {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  :root {
    --scale-factor: 1.15; /* 1.15倍に */
  }
  a img {
    transition: all 0.5s;
  }
  .main__wrap {
    padding-top: 90px;
  }
  .pc_center {
    text-align: center;
  }
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.js__fadeIn {
  opacity: 0; /* 最初は非表示 */
  transition: opacity 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeIn.is-inview {
  opacity: 1;
}

/* フェードアップ */
.js__fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(15px); /* 下にXXpxの位置から */
  transition:
    opacity 0.8s,
    transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js__popUp {
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s;
}
.js__popUp.is-inview {
  opacity: 1;
  transform: scale(1);
}

.js__popUp2 {
  opacity: 0;
  transform: scale(0);
  transition: transform cubic-bezier(0.7, 0.2, 0.5, 1.5) 0.5s;
}
.js__popUp2.is-inview {
  opacity: 1;
  transform: scale(1);
}

/* animationフェードダウン */
.js__fadeDown {
  opacity: 0; /* 最初は非表示 */
  transition:
    opacity 1s,
    transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeDown.is-inview {
  animation-name: fadeInDown;
  animation-duration: 1.3s;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -8%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ブラー*/
.js__blurAnime {
  opacity: 0; /* 最初は非表示 */
}
.js__blurAnime.is-inview {
  animation-name: blurAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

/* flipLeft */
.js__flipLeft {
  opacity: 0;
  transition:
    opacity 0.8s,
    transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__flipLeft.is-inview {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
  transition-delay: 0.8s;
  animation-delay: 0.3s;
}
@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }

  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

/* スライド（左から右） */
.js__slide {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: all 0.8s;
}
.js__slide.is-inview {
  animation-name: anime_left_to_right;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes anime_left_to_right {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/* スライド（左から右） */
.js__slideUp {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: all 0.8s;
}
.js__slideUp.is-inview {
  animation-name: anime_bottom_to_top;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes anime_bottom_to_top {
  0% {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/* スライド（左上から右下） */
.js__diagonal {
  /* 初期状態：左上の1点に集約 */
  clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  transition: all 0.8s;
}

.js__diagonal.is-inview {
  animation-name: anime_diagonal_wipe;
  animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-timing-function: ease;
}

@keyframes anime_diagonal_wipe {
  0% {
    /* 左上の外側に隠れている状態（三角形） */
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  /* 50% {
    clip-path: polygon(0% 0%, 60% 0%, 0% 100%, 0% 0%);
  } */
  100% {
    /* 右下の外側まで突き抜けることで、角が埋まる違和感を消す */
    /* 200%まで飛ばすのがポイントです */
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
  }
}

.js__listFadeUp li {
  opacity: 0;
  transform: translateY(5px);
}
.js__listFadeUp.is-inview li {
  animation-name: listFadeUp;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.js__listFadeUp li:nth-child(1) {
  animation-delay: 0s;
}
.js__listFadeUp li:nth-child(2) {
  animation-delay: 0.2s;
}
.js__listFadeUp li:nth-child(3) {
  animation-delay: 0.4s;
}
.js__listFadeUp li:nth-child(4) {
  animation-delay: 0.6s;
}
.js__listFadeUp li:nth-child(5) {
  animation-delay: 0.8s;
}
.js__listFadeUp li:nth-child(6) {
  animation-delay: 1s;
}
.js__listFadeUp li:nth-child(7) {
  animation-delay: 1.2s;
}
.js__listFadeUp li:nth-child(8) {
  animation-delay: 1.4s;
}

@keyframes listFadeUp {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js__listFlip li {
  opacity: 0;
  transform: rotateY(360deg);
}
.js__listFlip.is-inview li {
  animation-name: listFlip;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.js__listFlip li:nth-child(1) {
  animation-delay: 0s;
}
.js__listFlip li:nth-child(2) {
  animation-delay: 0.2s;
}
.js__listFlip li:nth-child(3) {
  animation-delay: 0.4s;
}
.js__listFlip li:nth-child(4) {
  animation-delay: 0.6s;
}
.js__listFlip li:nth-child(5) {
  animation-delay: 0.8s;
}
.js__listFlip li:nth-child(6) {
  animation-delay: 1s;
}
.js__listFlip li:nth-child(7) {
  animation-delay: 1.2s;
}
.js__listFlip li:nth-child(8) {
  animation-delay: 1.4s;
}

@keyframes listFlip {
  from {
    opacity: 0;
    transform: rotateY(360deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

.js__listPopUp li {
  opacity: 0;
  transform: scale(0);
}
.js__listPopUp.is-inview li {
  animation-name: listPopUp;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.js__listPopUp li:nth-child(1) {
  animation-delay: 0s;
}
.js__listPopUp li:nth-child(2) {
  animation-delay: 0.2s;
}
.js__listPopUp li:nth-child(3) {
  animation-delay: 0.4s;
}
.js__listPopUp li:nth-child(4) {
  animation-delay: 0.6s;
}
.js__listPopUp li:nth-child(5) {
  animation-delay: 0.8s;
}
.js__listPopUp li:nth-child(6) {
  animation-delay: 1s;
}
.js__listPopUp li:nth-child(7) {
  animation-delay: 1.2s;
}
.js__listPopUp li:nth-child(8) {
  animation-delay: 1.4s;
}

@keyframes listPopUp {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.is-transition-delayed00 {
  transition-delay: 0.2s;
}
.is-transition-delayed01 {
  transition-delay: 0.4s;
}
.is-transition-delayed02 {
  transition-delay: 0.6s;
}
.is-transition-delayed03 {
  transition-delay: 0.8s;
}
.is-transition-delayed04 {
  transition-delay: 1s;
}
.is-animation-delayed {
  animation-delay: 0.4s;
}

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
  display: none;
}
.acc__block01 .acc__body {
  margin-top: 16px;
  color: var(--text-color);
}
.acc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  padding: 6px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.acc__block01 .acc__btn {
  width: fit-content;
  margin: 0 auto;
  background-color: var(--btn-base-color);
  border-radius: 20px;
}
.acc__btn_text {
  font-weight: bold;
  color: var(--btn-text-color);
}
.acc__btn_plus {
  background-color: var(--btn-text-color);
  height: 16px;
  width: 16px;
  border-radius: 100%;
  position: relative;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
  content: "";
  background-color: var(--btn-base-color);
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.acc__btn_plus::after {
  transform: translate(-50%, -50%);
}
.acc__btn_plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.acc__btn.open .acc__btn_plus::before {
  transform: translate(-50%, -50%);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.voice-btn {
  position: relative;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .voice-btn__pc {
    background-color: var(--primary-color, #b3b3b3);
    border: 1px solid #000000;
    padding: 16px;
  }
  .voice-btn__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .voice-btn__txt {
    color: #fff;
    padding-right: 16px;
  }
  .voice-btn__txt .txt01 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #fff;
    color: var(--secondly-color-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 0.48px;
  }
  .voice-btn__img {
    background-color: #fff;
    width: 120px;
    height: 120px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
  }
}

/* サイズをかえる書き方 */
.SD01 {
  width: calc(81px * var(--scale-factor));
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */

.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.menu__list li {
  width: calc((100% - 20px) / 2);
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .menu__list {
    gap: 30px;
  }
  .menu__list li {
    width: calc((100% - 90px) / 4);
    max-width: 130px;
  }
  .menu__list li a {
    transition: all 0.5s;
    display: block;
  }
  .menu__list li a:hover {
    transform: translateY(-5px);
  }
}

/* ------------------------------------------------------------
step
------------------------------------------------------------ */
.step__wrap {
  padding: 16px;
  border: 1px solid var(--primary-color);
}
.step__list {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}
.step__list + .step__list {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}
.step__list dt {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  line-height: 1;
  width: 64px;
  border-radius: 40px;
  padding: 5px 0;
  text-align: center;
  font-size: 12px;
}
.step__list dd {
  width: calc(100% - 64px - 8px);
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
overview 応募要項ボタン
------------------------------------------------------------ */
.overview__btn {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-color);
  border-radius: 40px;
  padding: 8px 0;
  max-width: 180px;
  margin: 16px auto 0;
  color: var(--primary-color);
  text-align: center;
  font-weight: bold;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 1px 3px 0px;
}
.overview__icon {
  width: 13px;
  height: 16px;
  transition: all 0.3s;
  mask: url(../img/icon_pdf.svg) no-repeat center / contain;
  background-color: var(--primary-color);
}

/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap {
  background-color: #fff;
}
.oshitabi_btn--block {
  padding: 40px 30px;
}
.oshitabi_btn {
  display: block;
  border: 3px solid #000000;
  color: #000000;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  position: relative;
}
.oshitabi_btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .oshitabi_btn--block {
    max-width: 640px;
    margin: 0 auto;
  }
  .oshitabi_btn {
    transition: all 0.3s;
    width: 360px;
    margin: 32px auto;
  }
  .oshitabi_btn:hover {
    background-color: #000000;
    color: #fff;
  }
  .oshitabi_btn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: 0.3s;
  width: 56px;
  z-index: 99;
  opacity: 0; /*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active {
  opacity: 1;
}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute {
  position: absolute;
  top: -70px;
  bottom: auto;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .pagetop-btn {
    right: 24px;
  }
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive {
  pointer-events: none;
}
.cs {
  /* background-color: rgba(255, 255, 255, 0.7); */
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 6px;
  font-size: 20px;
}
.event-end {
  color: var(--red-color);
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: 2px solid var(--red-color);
  padding: 6px;
}
.event-end-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width: 751px) {
  .cs.event-end-block {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  /* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}

/* ------------------------------------------------------------
アキ調整
------------------------------------------------------------ */

.mgbS {
  margin-bottom: 8px;
} /* PC:8px */
.mgbM {
  margin-bottom: 16px;
} /* PC:24px */
.mgbL {
  margin-bottom: 24px;
} /* PC:32px */
.mgbLL {
  margin-bottom: 32px;
} /* PC:40px */

.mgtSS {
  margin-top: 4px;
}
.mgtS {
  margin-top: 8px;
}
.mgtM {
  margin-top: 16px;
} /* PC:24px */
.mgtL {
  margin-top: 24px;
} /* PC:32px */
.mgtLL {
  margin-top: 32px;
} /* PC:40px */

.pdtS {
  padding-top: 8px;
} /* PC:8px */
.pdtM {
  padding-top: 16px;
} /* PC:24px */
.pdtL {
  padding-top: 24px;
} /* PC:32px */

.pdbS {
  padding-bottom: 8px;
} /* PC:8px */
.pdbM {
  padding-bottom: 16px;
} /* PC:24px */
.pdbL {
  padding-bottom: 24px;
} /* PC:32px */

/* PC用設定 */
@media screen and (min-width: 751px) {
  .mgbM {
    margin-bottom: 24px;
  }
  .mgbL {
    margin-bottom: 32px;
  }
  .mgbLL {
    margin-bottom: 40px;
  }

  .mgtM {
    margin-top: 24px;
  }
  .mgtL {
    margin-top: 32px;
  }
  .mgtLL {
    margin-top: 40px;
  }

  .pdtM {
    padding-top: 24px;
  }
  .pdtL {
    padding-top: 32px;
  }

  .pdbM {
    padding-bottom: 24px;
  }
  .pdbL {
    padding-bottom: 32px;
  }
}

/* モーダル */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.modal_flex {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  flex-direction: column;
  gap: 16px;
}
.modal_container {
  pointer-events: initial;
  max-width: 760px;
  width: calc(100% - 20px);
  padding: 40px 24px 16px;
}
.modal_close_btn {
  width: fit-content;
  margin: 16px auto 0;
  padding: 28px 2px 2px;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.modal_close_btn::before,
.modal_close_btn::after {
  content: "";
  background-color: #fff;
  width: 2px;
  height: 30px;
  position: absolute;
  top: 14px;
  right: 50%;
}
.modal_close_btn::before {
  transform: translateY(-50%) rotate(-45deg);
}
.modal_close_btn::after {
  transform: translateY(-50%) rotate(45deg);
}
.modal__cts {
  position: relative;
  background: #fff;
  border-radius: 16px;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 32px 32px 24px 32px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.modal_ttl {
}
.modal_ttl p {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-color);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 1.44px;
}
.modal_ttl span {
  display: inline-block;
  width: 13px;
  height: 18px;
  background: url(../img/deco09.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.modal__cts .modal_close_btn {
  position: absolute;
  top: -16px;
  right: -5px;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: #e67740;
}
.modal__cts .modal_close_btn::before,
.modal__cts .modal_close_btn::after {
  height: 18px;
  top: 16px;
  right: auto;
}

@media (min-width: 751px) {
  .modal-btn__img {
    transition: all 0.5s;
    opacity: 1;
  }
  .modal-btn__img:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  overflow-y: scroll;
}

@media (min-width: 751px) {
  .modal-container {
    top: 5%;
  }
}

.intro__wrap {
  padding-block: 24px 28%;
  background-color: var(--bg-colorA);
}
.intro__wrap .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.intro__wrap .period__wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  background-image: linear-gradient(to right, var(--primary-color-dark) 2px, transparent 2px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.intro__wrap .period__wrap dt {
  position: relative;
  display: flex;
  padding: 4px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-radius: 100vmax;
  background-color: var(--primary-color-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.intro__wrap .period__wrap dt::before,
.intro__wrap .period__wrap dt::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  border-bottom: 1px solid #fff;
}
.intro__wrap .period__wrap dt::before {
  left: 38%;
}
.intro__wrap .period__wrap dt::after {
  right: 38%;
}
.intro__wrap .period__wrap dd {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.intro__wrap .period__wrap dd span {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.intro__wrap .period__wrap dd span em {
  color: var(--text-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.intro__wrap .period__wrap dd span.dayOfWeek {
  background: var(--text-color);
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #ffffff;
  border-radius: 100vmax;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  transform: translateY(-5px);
}
.sec__seo {
  color: var(--text-color);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 200%; /* 28px */
  letter-spacing: 1.12px;
}
.sec__seo em {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 200%; /* 36px */
  letter-spacing: 1.44px;
}
.sec__seo em span {
  color: var(--secondly-color-dark);
}
.menu__wrap {
  position: relative;
}
.menu__wrap::before,
.menu__wrap::after {
  content: "";
  position: absolute;
  background: url(../img/deco01.png);
  aspect-ratio: 132/94;
  background-size: cover;
}
.menu__wrap::before {
  width: 14.9%;
  top: 3%;
  left: -6%;
}
.menu__wrap::after {
  width: 18.4%;
  top: -11%;
  right: -15px;
}
.menu__wrap h2 {
  margin-bottom: 8px;
  color: var(--text-color);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.92px;
}
.menu__cts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu__wrap p {
  margin-bottom: 12px;
  color: var(--primary-color-dark);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 200%; /* 32px */
  letter-spacing: 1.28px;
}
.menu__wrap ul:not(:last-child) {
  margin-bottom: 16px;
}
.menu__wrap ul {
  display: flex;
  gap: 8px;
  padding-inline: 4.3%;
}
.menu__wrap ul li {
  width: calc((100% - 8px) / 2);
}
.menu__wrap ul li img {
  border-radius: 4px;
}
.intro__wrap .bn__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.intro__wrap .bn__wrap dt {
  position: relative;
  color: var(--text-color);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
  letter-spacing: 1.12px;
}
.intro__wrap .bn__wrap dt::before,
.intro__wrap .bn__wrap dt::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, var(--text-color) 2px, transparent 2px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 44px;
  display: block;
  height: 2px;
}
.intro__wrap .bn__wrap dt::before {
  top: 50%;
  left: -10%;
  transform: rotate(60deg);
}
.intro__wrap .bn__wrap dt::after {
  top: 50%;
  right: -10%;
  transform: rotate(-60deg);
}
.intro__wrap .bn__wrap dd {
  text-align: center;
}
.intro__wrap .bn__wrap dd div {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
}
.intro__wrap .bn__wrap dd span {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.48px;
}

.voice__wrap {
  position: relative;
  background-color: var(--bg-colorB);
  padding-bottom: 28%;
}
.voice__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../img/deco_m01_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 750 / 141;
  width: 100%;
  left: 0;
  transform: translateY(-80%);
}
.voice__wrap .container::after {
  content: "";
  position: absolute;
  top: -3.2%;
  background-image: url(../img/deco_ttl01_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 126 / 128;
  width: 16.8%;
  left: 4%;
}
.voice__wrap .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sec-ttl__wrap {
  position: relative;
}
.voice__wrap .charactor {
  position: absolute;
  top: -40%;
  right: -2%;
  width: 26%;
}
.sec__lead {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 200%; /* 30px */
  letter-spacing: 1.2px;
}
.sec__lead span {
  color: var(--accent-color);
}
.promotion__wrap .sec__lead span {
  font-size: 18px;
}
.contents__wrap {
  position: relative;
  padding-inline: 5.8%;
  padding-block: 39px;
  background: #fff;
  border-radius: 8px;
}
.contents__wrap::before,
.contents__wrap::after {
  content: "";
  position: absolute;
  background-image: url(../img/deco03.png);
  background-size: cover;
  left: 0;
  aspect-ratio: 690/78;
  width: 100%;
}
.promotion__wrap .contents__wrap::before,
.panel__wrap .contents__wrap::before,
.promotion__wrap .contents__wrap::after,
.panel__wrap .contents__wrap::after {
  content: "";
  position: absolute;
  background-image: url(../img/deco03_dark.png);
  background-size: cover;
  left: 0;
  aspect-ratio: 690/78;
  width: 100%;
}
.contents__wrap::before {
  top: 0;
}
.contents__wrap::after {
  bottom: 0;
  transform: scale(1, -1);
}
.voice-btn__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sec-subttl__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sec-subttl__wrap hgroup p {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  background: url(../img/deco10.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  padding-bottom: 8px;
  aspect-ratio: 610/100;
  text-align: center;
  color: var(--primary-color-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 1.6px;
}
.sec-subttl__wrap hgroup p em {
  font-size: 20px;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 1.6px;
  color: var(--secondly-color-dark);
}
.sec-subttl__wrap hgroup h3 {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  color: var(--primary-color-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.92px;
  background: linear-gradient(to top, var(--accent-color) 0, var(--accent-color) 12px, transparent 12px, transparent 100%);
}
.sec-subttl__wrap hgroup h3 span {
  font-size: 18px;
  font-weight: 700;
}
.icn__01 {
  position: relative;
  display: inline-block;
  width: 6.2%;
  aspect-ratio: 38 / 36;
}
.icn__01::before {
  content: "";
  position: absolute;
  background-image: url(../img/deco04.png);
  background-size: cover;
  left: 0;
  aspect-ratio: 38 / 36;
  width: 100%;
  background-size: contain;
}
.sec-subttl__wrap p {
  color: var(--text-color);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 30px */
  letter-spacing: 1.2px;
}
.acc__block01 .acc__btn {
  background-color: #fff;
  border: 1px solid var(--text-color);
}
.acc__block01 .acc__btn_text {
  color: var(--text-color);
}
.acc__btn_plus {
  background: #fff;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
  background-color: var(--text-color);
}
.txt-link {
  color: var(--secondly-color-dark);
}

.promotion__wrap {
  position: relative;
  background-color: var(--bg-colorC);
  padding-bottom: 28%;
}
.promotion__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../img/deco_m02_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 750 / 141;
  width: 100%;
  left: 0;
  transform: translateY(-78%);
}
.promotion__wrap .container::after {
  content: "";
  position: absolute;
  top: -2%;
  background-image: url(../img/deco_ttl02_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 146 / 158;
  width: 19.4%;
  right: 5%;
}
.promotion__wrap .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.promotion__wrap .charactor {
  position: absolute;
  top: -30%;
  left: -2%;
  width: 26%;
}
.sec__lead span.sec__lead-annotation {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}
.carabiner__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.howto_exchange__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.howto_exchange__wrap ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.howto_exchange__wrap dl {
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
}
.howto_exchange__wrap dt {
  display: flex;
  padding: 0 8px;
  height: 2rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: #f0ece5;
  color: var(--primary-color-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 200%; /* 28px */
  letter-spacing: 1.12px;
}
.howto_exchange__wrap dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 1.12px;
}
.howto_exchange__wrap dd em {
  color: var(--secondly-color-dark);
  font-size: 14px;
  font-weight: 500;
}
.howto_exchange__wrap dd span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.48px;
}
.place_toexchange__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.annimate__wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}
.annimate__wrap dt {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1.6px;
}
.annimate__wrap dd {
  display: flex;
  gap: 2.6%;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 1.12px;
}
.annimate__wrap dd p {
  width: 91.2%;
}
.annimate__wrap dd p a {
  color: var(--secondly-color-dark);
  text-decoration: underline;
}
.annimate__wrap dd p span {
  display: block;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.48px;
}
.annimate__wrap .icn__01 {
}
.limited__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 4px;
  background: #fcf7f0;
}
.limited__wrap p {
  position: relative;
  width: 100%;
  text-align: center;
  color: var(--secondly-color-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1.6px;
}
.limited__wrap p::before {
  position: absolute;
  content: "";
  background-size: cover;
  left: 3%;
  top: 15%;
  width: 27px;
  border-top: 1px solid var(--secondly-color-dark);
  transform: rotate(60deg);
}
.limited__wrap p::after {
  position: absolute;
  content: "";
  background-size: cover;
  right: 3%;
  top: 15%;
  width: 27px;
  border-top: 1px solid var(--secondly-color-dark);
  transform: rotate(-60deg);
}
.limited__wrap p span {
  display: block;
  color: var(--primary-color-dark);
}
.limited__wrap p.limited__text {
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px dashed var(--text-color);
  color: var(--text-color);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 160%; /* 24px */
  letter-spacing: 1.2px;
}
.limited__wrap p.limited__text::before,
.limited__wrap p.limited__text::after {
  content: none;
}
.limited__wrap dl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3%;
  width: 100%;
}
.limited__wrap dt {
  display: flex;
  width: 28.3%;
  padding: 0 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: var(--blue_, #5badbc);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 160%; /* 24px */
  letter-spacing: 1.2px;
}
.limited__wrap dd {
  width: 68.7%;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
}

.stamp__wrap {
  position: relative;
  background-color: var(--bg-colorB);
  padding-bottom: 28%;
}
.stamp__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../img/deco_m01_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 750 / 141;
  width: 100%;
  left: 0;
  transform: translateY(-80%);
}
.stamp__wrap .container::after {
  content: "";
  position: absolute;
  top: -1.3%;
  background-image: url(../img/deco_ttl01_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 126 / 128;
  width: 16.8%;
  left: 2.5%;
}
.stamp__wrap .charactor {
  position: absolute;
  top: -40%;
  right: -2%;
  width: 26%;
}
.stamp__wrap .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.date__wrap {
  display: flex;
  padding: 10px 16px 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 100px;
  background: #f9f3ea;
  color: var(--primary-color-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.64px;
  margin-inline: auto;
}
.date__wrap em {
  font-size: 21px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.84px;
}
.date__wrap span {
  color: var(--primary-color-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
}
.date__wrap span.dayOfWeek {
  background: var(--primary-color-dark);
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #f9f3ea;
  border-radius: 100vmax;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  transform: translateY(-3px);
}
.rally__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mordal-map__wrap {
  position: relative;
  background: url(../img/map.png);
  aspect-ratio: 610 / 410;
  background-size: contain;
  background-repeat: no-repeat;
}
.mordal-map__wrap + p {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.48px;
}
/* .mordal-map__wrap .js__modal-btn {
  position: absolute;
} */
.map__item01 {
  position: absolute;
  top: 17%;
  left: 70%;
  width: 25.2%;
}
.map__item02 {
  position: absolute;
  top: 59%;
  left: 51%;
  width: 25.2%;
}
.map__item03 {
  position: absolute;
  top: 34%;
  left: 27%;
  width: 25.2%;
}
.map__item04 {
  position: absolute;
  top: 64%;
  left: 2%;
  width: 29.8%;
}
.ar_sticker__wrap {
  display: flex;
  padding-inline: 15px;
  padding-bottom: 24px;
  padding-top: calc(24px + 1.2rem);
  flex-direction: column;
  align-items: flex-start;
  gap: calc(24px + 1.2rem);
  border-radius: 8px;
  background: #fcf7f0;
}
.ar_sticker__wrap dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ar_sticker__wrap dt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../img/deco06.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 550/128;
  color: var(--secondly-color-dark);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1.6px;
}
.ar_sticker__wrap dt span {
  display: flex;
  position: absolute;
  top: -1.2rem;
  padding: 1px 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: var(--primary-color-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
}
.ar_sample img {
  width: 57%;
  margin-inline: auto;
  transform: rotate(8deg);
}
.sticker_sample img {
  width: 88%;
  margin-inline: auto;
  transform: rotate(4deg);
}
.place_toexchange-date__wrap {
  width: 100%;
  margin-block: 8px;
}
.place_toexchange-date__cnt {
  display: flex;
  gap: 8px;
}
.place_toexchange-date__cnt dt {
  display: flex;
  padding: 0 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: var(--primary-color-dark);
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 24px */
  letter-spacing: 1.2px;
}
.place_toexchange-date__cnt dd {
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.28px;
}
.howtojoin__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.howtojoin__wrap ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.howtojoin__wrap dl {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.howtojoin__wrap dt {
  display: flex;
  padding: 0 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: #f0ece5;
  color: var(--secondly-color-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 200%; /* 26px */
  letter-spacing: 1.04px;
}
.howtojoin__wrap dd {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 1.12px;
}

.panel__wrap {
  position: relative;
  background-color: var(--bg-colorC);
  padding-bottom: 28%;
}
.panel__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../img/deco_m02_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 750 / 141;
  width: 100%;
  left: 0;
  transform: translateY(-95%);
}
.panel__wrap .container::after {
  content: "";
  position: absolute;
  top: -7.5%;
  background-image: url(../img/deco_ttl04_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 660 / 264;
  width: 88%;
  left: 5%;
}

.panel__wrap .charactor {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 20.8%;
}
.panel__wrap .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benten__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benten__wrap div {
  position: relative;
}
.benten__wrap div span {
  position: absolute;
  bottom: 7px;
  left: 0;
  display: flex;
  padding: 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 0 4px 4px 0;
  background: #fff;
  color: var(--primary-color-dark);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%; /* 12px */
  letter-spacing: 0.96px;
}

.info__wrap {
  position: relative;
  background-color: var(--bg-colorD);
  padding-bottom: 16%;
}
.info__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../img/deco_m03_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 750 / 141;
  width: 100%;
  left: 0;
  transform: translateY(-99%);
}
.info__wrap .container::after {
  content: "";
  position: absolute;
  top: -4.2%;
  background-image: url(../img/deco_ttl05_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 685 / 169;
  width: 91.2%;
  left: 5%;
}
.info__wrap .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info__wrap .sec__lead {
  color: var(--text-color);
}
.info__wrap h3 {
  width: 46%;
  margin-inline: auto;
  margin-bottom: 16px;
}
.mapinfo__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mapinfo__wrap .note__list a {
  color: var(--secondly-color-dark);
  text-decoration: underline;
  font-weight: bold;
}
.info__btn {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background-color: var(--primary-color-dark);
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  line-height: 160%; /* 24px */
  letter-spacing: 1.2px;
  transition: 0.3s;
}
.info__btn span {
  background: url(../img/icn_pdf_w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  transition: 0.3s;
}
.info__wrap .bn__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 751px) {
  .mv__block {
    background: url(../img/bg_kv_pc.png);
    aspect-ratio: 1300 / 510;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  h1 {
    max-width: 1300px;
    padding-top: 72px;
    padding-inline: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 904 / 406;
    margin-inline: auto;
  }
  .contents__wrap {
    padding-inline: 48px;
    padding-block: 47px;
  }
  .contents__wrap::before,
  .contents__wrap::after {
    background-image: url(../img/deco03_pc.png);
    aspect-ratio: 1300 / 94;
  }
  .promotion__wrap .contents__wrap::before,
  .panel__wrap .contents__wrap::before,
  .promotion__wrap .contents__wrap::after,
  .panel__wrap .contents__wrap::after {
    background-image: url(../img/deco03_pc_dark.png);
    aspect-ratio: 1300 / 94;
  }
  .intro__wrap .period__wrap dt::before {
    left: 44%;
  }
  .intro__wrap .period__wrap dt::after {
    right: 44%;
  }
  .sec__seo {
    font-size: 15px;
    letter-spacing: 1.2px;
  }
  .sec__seo em {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
  .intro__wrap {
    padding-block: 24px 100px;
  }
  .intro__wrap .container {
    gap: 40px;
  }
  .intro__wrap .bn__wrap {
    max-width: 420px;
    margin-inline: auto;
  }
  .menu__cts {
    flex-direction: row;
  }
  .menu__wrap ul {
    padding-inline: 0;
  }
  .menu__list li {
    max-width: 154px;
  }
  .menu__wrap::before {
    width: 56px;
    top: -30px;
  }
  .menu__wrap::after {
    width: 69px;
    top: -65px;
  }
  .intro__wrap .bn__wrap dd div {
    padding: 24px;
  }
  .sec-ttl__wrap h2 {
    max-width: 420px;
    margin-inline: auto;
  }
  .sec-subttl__wrap hgroup p {
    max-width: 350px;
    margin-inline: auto;
  }
  .sec-subttl__wrap hgroup h3 {
    margin-top: 24px;
  }
  .voice-btn__pc {
    background-image: url(../img/bg_voice_btn.png);
    aspect-ratio: 1108/260;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    border: none;
  }
  .voice-btn__img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background: #d9d9d9;
  }
  .voice-btn__img img {
    border-radius: 10px;
  }
  .cs.event-end-block {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary-color-dark);
    letter-spacing: -0.05rem;
    font-size: 20px;
  }
  .voice__wrap {
    padding-bottom: 120px;
  }
  .carabiner__img img {
    margin-inline: auto;
    margin-bottom: 8px;
    max-width: 420px;
  }
  .howto_exchange__wrap dt {
    padding: 0 24px;
  }
  .annimate__wrap dd {
    width: 100%;
    gap: 8px;
  }
  .annimate__wrap .icn__01 {
    width: 19px;
  }
  .limited__wrap {
    padding: 24px;
  }
  .limited__wrap dt {
    width: 74px;
  }
  .promotion__wrap {
    padding-bottom: 120px;
  }
  .mordal-map__wrap {
    max-width: 450px;
    margin-inline: auto;
    margin-bottom: 8px;
  }
  .map__item01,
  .map__item02,
  .map__item03 {
    width: 83px;
  }
  .map__item04 {
    width: 99px;
  }
  .map__item01 {
    top: 63px;
    left: 350px;
  }
  .map__item02 {
    top: 178px;
    left: 260px;
  }
  .map__item03 {
    top: 115px;
    left: 122px;
  }
  .map__item04 {
    top: 195px;
    left: 12px;
  }
  .ar_sticker__wrap {
    padding-inline: 32px;
  }
  .ar_sticker__wrap dt {
    background: url(../img/deco06_pc.png);
    aspect-ratio: 980 / 128;
    background-size: cover;
  }
  .ar_sample img {
    max-width: 190px;
  }
  .sticker_sample img {
    max-width: 280px;
    margin-inline: auto;
  }
  .ar_sticker__wrap dl {
    gap: 16px;
  }
  .sticker_sample .note__list {
    margin-top: 16px;
  }
  .place_toexchange-date__cnt {
    width: 100%;
  }
  .place_toexchange-date__cnt dt {
    white-space: nowrap;
  }
  .limited__wrap p::before {
    left: 130px;
  }
  .limited__wrap p::after {
    right: 130px;
  }
  .stamp__wrap {
    padding-bottom: 120px;
  }

  .benten__wrap div {
    max-width: 450px;
    margin-inline: auto;
  }
  .benten__wrap div span {
    bottom: 16px;
  }
  .panel__wrap {
    padding-bottom: 120px;
  }

  .info__wrap h3 {
    max-width: 141px;
  }
  .info__wrap .bn__wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    flex-direction: row;
    margin-inline: auto;
    max-width: 504px;
    margin-top: 16px;
  }
  .info__wrap .bn__wrap li {
    max-width: 244px;
  }
  .info__wrap {
    padding-bottom: 64px;
  }

  .voice__wrap::before {
    background-image: url(../img/deco_m01_pc.png);
    aspect-ratio: 2600/157;
    background-size: cover;
  }
  .promotion__wrap::before {
    background-image: url(../img/deco_m02_pc.png);
    aspect-ratio: 2600/157;
    background-size: cover;
  }
  .stamp__wrap::before {
    background-image: url(../img/deco_m01_pc.png);
    aspect-ratio: 2600/157;
    background-size: cover;
  }
  .panel__wrap::before {
    background-image: url(../img/deco_m02_pc.png);
    aspect-ratio: 2600/157;
    background-size: cover;
  }
  .info__wrap::before {
    background-image: url(../img/deco_m03_pc.png);
    aspect-ratio: 2600/157;
  }
  .voice__wrap .charactor {
    width: 100px;
    top: -70px;
    right: 80px;
  }
  .promotion__wrap .charactor {
    width: 100px;
    top: -70px;
    left: 80px;
  }
  .stamp__wrap .charactor {
    width: 100px;
    top: -70px;
    right: 80px;
  }
  .panel__wrap .charactor {
    width: 90px;
    top: 42px;
    right: 120px;
  }
  .voice__wrap .container::after {
    background-image: url(../img/deco_ttl01_pc.png);
    aspect-ratio: 126 / 128;
    width: 63px;
    top: 0px;
    left: 13%;
  }
  .promotion__wrap .container::after {
    background-image: url(../img/deco_ttl02_pc.png);
    aspect-ratio: 146 / 158;
    width: 73px;
    top: -1%;
    right: 7%;
  }
  .stamp__wrap .container::after {
    background-image: url(../img/deco_ttl01_pc.png);
    aspect-ratio: 126 / 128;
    width: 63px;
    top: 0.5%;
    left: 7%;
  }
  .panel__wrap .container::after {
    background-image: url(../img/deco_ttl03_pc.png);
    aspect-ratio: 998 / 163;
    width: 499px;
    top: -3%;
    left: 10%;
  }
  .info__wrap .container::after {
    background-image: url(../img/deco_ttl04_pc.png);
    aspect-ratio: 1157 / 128;
    width: 578px;
    top: 0;
    left: 8%;
  }
  .info__btn {
    border: 1px solid #fff;
  }
  .info__btn:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color-dark);
    color: var(--primary-color-dark);
  }
  .info__btn:hover span {
    background-image: url(../img/icn_pdf_b.svg);
    background-repeat: none;
  }

  /*   .mordal-map__wrap .js__modal-btn {
    transition: 0.3s;
  }
  .mordal-map__wrap .js__modal-btn:hover {
    transform: scale(1.2);
  } */
}
