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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
  --text-color: #000000;
  --sub-text-color: #606060;
  --text-link: #e60012;
  --primary-color: #002f7d;
  --secondary-color: #005bac;
  --accent-color: #e60012;
  --sub-color: #00aaee;
  --red-color: #e60012;
  --bg-color: #e9f5fc;
  --bg02-color: rgb(0 0 0 / 0.8);
  --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: #000; /* アコーディオンボタンのベース色 */
  --btn-text-color: #fff; /* アコーディオンボタンのテキスト色 */
  --font-jost: Jost, serif;
}
/* 背景固定 */
/* 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;
} */

.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;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

a:hover img {
  opacity: 1;
}

.container {
  width: 92%;
  margin: 0 auto;
  max-width: 800px;
}
.indent li,
.txt-note.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.fc-red {
  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: 11px;
}
.note__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.box02 + .note__list {
  max-width: 560px;
  margin: 16px auto 0;
}
.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;
}

/* 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);
}

/* 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__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%);
  }
}

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

/* ドアラ背景 */
.js__line {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  transition: all 0.4s;
}
.js__line.is-inview {
  animation-name: lineAnime;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-direction: normal;
}
@keyframes lineAnime {
  0% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
  display: none;
}
.acc__body {
  margin-top: 8px;
  color: var(--text-color);
}
.acc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  background-color: var(--btn-base-color);
  padding: 6px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.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
------------------------------------------------------------ */
.voice-btn__block {
  position: relative;
}
a.voice-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.voice-btn {
  position: relative;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .voice-btn__block {
    max-width: 500px;
    margin: 32px auto 0;
  }
  .voice-btn__pc {
    /* background-color: var(--primary-color,#B3B3B3); */
    background: linear-gradient(123deg, var(--secondary-color) 80%, var(--primary-color) 80%);
    padding: 16px;
  }
  .voice-btn__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .voice-btn__txt {
    color: #fff;
    padding-right: 16px;
    padding-left: 16px;
  }
  .voice-btn__txt .txt01 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
  }
  .voice-btn__img {
    background-color: #fff;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
  }
}

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

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__logo {
  max-width: 500px;
  margin: 8px auto 0;
  width: 84.54%;
}
.mv__img {
  position: relative;
}
.mv__scroll {
  font-family: var(--font-jost);
  font-weight: 500;
  transform: rotate(-90deg);
  color: var(--secondary-color);
  position: absolute;
  right: 0;
  bottom: 30vw;
  z-index: 5;
}
.mv__scroll p {
  animation: scrollAnimeText 3s ease infinite;
  opacity: 0;
}
@keyframes scrollAnimeText {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
.mv__scroll::before {
  content: "";
  background-color: var(--secondary-color);
  height: 1px;
  width: 40px;
  position: absolute;
  width: 0;
  left: -5px;
  opacity: 1;
  bottom: 9px;
  animation: scrollAnime2 3s ease infinite;
}
@keyframes scrollAnime2 {
  0% {
    width: 0;
    left: -5px;
    opacity: 1;
  }
  40% {
    left: -45px;
    width: 40px;
    opacity: 1;
  }
  80% {
    left: -45px;
    width: 40px;
    opacity: 1;
  }
  90% {
    left: -45px;
    width: 40px;
    opacity: 0;
  }
  100% {
    left: -5px;
    width: 0;
    opacity: 0;
  }
}
.mv__scroll::after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
  transform: rotate(135deg);
  position: absolute;
  bottom: 7px;
  animation: scrollAnime 3s ease infinite;
  opacity: 0;
  left: 0;
}
@keyframes scrollAnime {
  0% {
    left: 0;
    opacity: 0;
  }
  40% {
    left: -45px;
    opacity: 1;
  }
  80% {
    left: -45px;
    opacity: 1;
  }
  90% {
    left: -45px;
    opacity: 0;
  }
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .mv__img img {
    max-width: 930px;
    margin: 0 auto;
  }
  .mv__scroll {
    bottom: 130px;
  }
}

/* ------------------------------------------------------------
date
------------------------------------------------------------ */
.date__wrap {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 4px 20px 0;
  text-align: center;
  width: fit-content;
  margin: 16px auto 0;
  z-index: 2;
  position: relative;
}
.date__wrap.blue {
  border-color: var(--primary-color);
}
.date__wrap.white {
  border-color: #fff;
}
.date__wrap p {
  font-family: var(--font-jost);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 27.2px;
}
.date__wrap.blue p {
  color: var(--primary-color, #002f7d);
}
.date__wrap.white {
  color: #fff;
  font-size: 16px;
}
.date__l {
  line-height: 27.2px;
  font-size: 26px;
}
.date__wrap.white .date__l {
  font-size: 24px;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__text {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color, #002f7d);
  line-height: 2;
  text-align: center;
  padding: 40px 0 24px;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.doala__wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  z-index: 2;
  padding-top: 16px;
}
.doala__line {
  background-position: center top;
  background-size: 670px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.doala__line_b {
  background-image: url(../img/head_line_b.svg);
}
.doala__line_w {
  background-image: url(../img/head_line_w.svg);
}

.menu__wrap {
  padding-bottom: 40px;
}
.menu__head {
  text-align: center;
  color: var(--primary-color, #002f7d);
  font-family: var(--font-jost);
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin-top: 16px;
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 16px auto 0;
  max-width: 640px;
  width: 92%;
}
.menu__list li {
  width: 100%;
}
.menu__list li a {
  transition: all 0.5s;
  display: block;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .menu__list {
    gap: 20px;
  }
  .menu__list li {
    width: calc((100% - 20px) / 2);
  }
  .menu__list li a:hover {
    transform: translateY(-5px);
  }
}

/* ------------------------------------------------------------
#wallpaper
------------------------------------------------------------ */
.sec__border01 {
  background-color: var(--secondary-color);
  aspect-ratio: 375 / 32;
  position: relative;
}
.sec__border__inner {
  position: absolute;
  top: -0.2%;
  left: 0;
  bottom: 0;
  right: 0;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%);
}
.sec__border01 .sec__border__inner {
  background-color: #fff;
}
.sec__border02 .sec__border__inner {
  background-color: var(--secondary-color);
}
#wallpaper {
  background-color: var(--secondary-color);
  position: relative;
}

.sec__wrap {
  overflow: hidden;
}
.sec__top {
  position: relative;
  padding-top: 40px;
  padding-bottom: 24px;
}
.sec__head {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto;
}
.sec__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(../img/bg_head.png) center bottom / 66% no-repeat;
  z-index: 0;
  opacity: 0.7;
}
.box01 {
  background-color: #fff;
  padding: 24px 14px;
}
.box01__text01 {
  font-weight: 500;
}
.img01__wrap {
  max-width: 400px;
  margin: 24px auto 0;
  position: relative;
}
.box02 {
  background-color: var(--bg-color);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
  margin-top: 24px;
  position: relative;
}
.box02__head {
  background-color: var(--primary-color);
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 4px 0;
}
.box02__text01 {
  font-weight: 500;
}
.box03 {
  padding: 16px;
  border: 1px solid var(--accent-color, #e60012);
  border-radius: 8px;
  background-color: #fff;
  position: relative;
}
.box03_dl {
  display: flex;
  flex-direction: column;
}
.box03_dl dt {
  width: 100%;
  text-align: center;
  background: var(--accent-color, #e60012);
  color: #fff;
  font-family: var(--font-jost);
  font-style: italic;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
}
.box03_dl dd + dt {
  margin-top: 12px;
}
.box03_dl dd {
  width: 100%;
  margin-top: 4px;
  font-weight: 500;
}
.box02_dStore .box02__text01 {
  font-size: 12px;
}
.box02_dStore .box02__text01 a {
  font-size: 14px;
  margin-right: 0.5rem;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .sec__bg {
    background: url(../img/bg_head.png) center bottom / 360px no-repeat;
  }
  .box01 {
    padding: 48px 96px;
  }
  .box01__text01 {
    text-align: center;
  }
  .box02 {
    max-width: 560px;
    margin: 32px auto 0;
    padding: 24px;
  }
  .box03_dl {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 8px;
  }
  .box03_dl dt {
    width: 80px;
    border-radius: 4px 0 0 4px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0;
  }
  .box03_dl dd + dt {
    margin: 0;
  }
  .box03_dl dd {
    width: calc(100% - 88px);
  }
  .box03_dl dd {
    margin: 0;
  }
}

/* ------------------------------------------------------------
#rewards
------------------------------------------------------------ */
#rewards {
  background-color: var(--secondary-color);
  position: relative;
  padding-bottom: 40px;
}

.img02__flex {
  display: flex;
  max-width: 500px;
  margin: 40px auto 0;
  position: relative;
  width: 93%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.img02__wrap:nth-of-type(1) {
  width: 90%;
}
.img02__wrap:nth-of-type(2) {
  width: 50%;
}

.img02__title {
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  margin-top: 4px;
}
.box02_dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  margin-top: 8px;
}
.box02_dl dt {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
  text-align: center;
  width: 64px;
  line-height: 21px;
  font-weight: 500;
  border-radius: 4px;
}
.box02_dl dd {
  font-weight: 500;
  line-height: 21px;
  width: calc(100% - 72px);
}
.box02_dl dd .txt-note {
  font-weight: normal;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .img02__flex {
    margin-top: 24px;
    flex-direction: row;
  }
}

/* ------------------------------------------------------------
#meitetsu
------------------------------------------------------------ */
.sec__border02 {
  background-color: #00a496;
  aspect-ratio: 375 / 32;
  position: relative;
}
#meitetsu {
  background-color: #00a496;
  padding-bottom: 40px;
}
.meitetsu__head01 {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.meitetsu__head02 {
  font-weight: 900;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  text-align: center;
}
.meitetsu__text_link {
  display: block;
  margin: 8px auto;
  border: 1px solid #fff;
  padding: 12px 0;
  width: 200px;
  text-align: center;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s;
}

.meitetsu_logo {
  max-width: 247px;
  margin: 0 auto;
}
#meitetsu .sec__top {
  padding-bottom: 8px;
  padding-top: 16px;
}
.meitetsu_link {
  display: block;
  max-width: 310px;
  margin: 16px auto 0;
  width: 100%;
  transition: all 0.3s;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .meitetsu__text_link:hover {
    background-color: #fff;
    color: #00a496;
  }
  .meitetsu_link:hover {
    transform: scale(1.02);
    opacity: 0.7;
  }
}

/* ------------------------------------------------------------
doala
------------------------------------------------------------ */
.doala_img {
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
}
.doala01 {
  width: 110px;
  opacity: 0;
}
.doala01.is-inview {
  animation-name: boundAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@keyframes boundAnime {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 0;
  }
  15% {
    /* transform: scale(0.9, 0.9) */
    transform: scale(1, 1) translate(0%, 5%);
  }
  30% {
    /* transform: scale(1.1, 0.8) */
    transform: scale(1, 1) translate(0%, 20%);
  }
  50% {
    /* transform: scale(0.8, 1.05) */
    transform: scale(1, 1) translate(0%, -20%);
  }
  70% {
    /* transform: scale(1.1, 0.9) */
    transform: scale(1, 1) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 1;
  }
}
.doala02 {
  width: 112px;
  transform: scale(0);
  opacity: 0;
  transition-delay: 0.3s;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.55, 0.03, 0.58, 1.98);
}
.doala02.is-inview {
  transform: scale(1);
  opacity: 1;
}
.doala03 {
  width: 128px;
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.doala03.is-inview {
  animation: flipAnime 1s ease 0.5s forwards;
  perspective-origin: left center;
  transform-origin: 30% center;
  opacity: 0;
}
@keyframes flipAnime {
  from {
    transform: perspective(300px) rotateY(420deg);
    opacity: 0;
  }
  to {
    transform: perspective(300px) rotateY(0deg);
    opacity: 1;
  }
}
.doala04 {
  width: 83px;
  opacity: 0;
}
.doala04.is-inview {
  animation: slideInRight 0.3s ease 0.5s forwards;
}
@keyframes slideInRight {
  0% {
    transform: translateX(200%) /* skewX(-20deg) */;
    opacity: 0;
  }
  70% {
    transform: translateX(-20%) /* skewX(10deg) */;
  }
  90% {
    transform: translateX(10%) /* skewX(-5deg) */;
  }
  100% {
    opacity: 1;
    transform: translateX(0) /* skewX(0deg) */;
  }
}

.doala_float {
  position: absolute;
}
.doala05 {
  width: 83px;
  left: -33px;
  bottom: 0;
  transform-origin: 50% 100%;
  /* animation: skewRightAnime 1.2s ease infinite; */
  animation: stepAnime 1s step-start 0s infinite;
}
@keyframes skewRightAnime {
  0% {
    transform: skewX(0deg);
  }
  10% {
    transform: skewX(-2deg);
  }
  20% {
    transform: skewX(2deg);
  }
  30% {
    transform: skewX(-2deg);
  }
  40% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.doala06 {
  width: 87px;
  right: -45px;
  bottom: -6px;
  transform-origin: 50% 100%;
  /* animation: skewLeftAnime 1.2s ease infinite; */
  animation: stepAnime 1.1s step-start 0s infinite;
}
@keyframes skewLeftAnime {
  0% {
    transform: skewX(0deg);
  }
  10% {
    transform: skewX(2deg);
  }
  20% {
    transform: skewX(-2deg);
  }
  30% {
    transform: skewX(2deg);
  }
  40% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.doala07 {
  width: 66px;
  top: -17px;
  left: -12px;
}
.doala08 {
  width: 84px;
  bottom: 0px;
  left: -31px;
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.doala08.is-inview {
  animation: flipUp 1s ease 0.5s forwards;
  perspective-origin: left center;
  transform-origin: center;
  opacity: 0;
}
@keyframes flipUp {
  from {
    transform: perspective(300px) rotateY(420deg) translateY(50%);
    opacity: 0;
  }
  to {
    transform: perspective(300px) rotateY(0deg) translateY(0);
    opacity: 1;
  }
}
.doala09 {
  width: 88px;
  top: -17px;
  right: -26px;
  transform: rotate(3deg);

  animation: stepAnime 1s step-start 0s infinite;
}
@keyframes stepAnime {
  0% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .doala06 {
    right: 5px;
  }
  .doala07 {
    top: -32px;
    left: -37px;
    width: 84px;
    height: auto;
  }
  .doala08 {
    bottom: -10px;
  }
}

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

/* ------------------------------------------------------------
howto
------------------------------------------------------------ */
.icon_phone {
  width: 46px;
  display: block;
  margin: 16px auto;
}
/* splide */
.howto_splide {
  position: relative; /* ここで基準にする */
}
/* 矢印を絶対配置でリストの上に重ねる */
.howto_splide .splide__arrow {
  position: absolute;
  top: 50%; /* 縦中央 */
  transform: translateY(-50%); /* 上下補正 */
  background: none;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  z-index: 10; /* スライドの上に表示 */
  cursor: pointer;
}
/* 左右の位置 */
.howto_splide .splide__arrow--prev {
  left: -3px; /* 左端 */
}
.howto_splide .splide__arrow--next {
  right: -3px; /* 右端 */
}
/* 画像だけ表示 */
.howto_splide .splide__arrow img {
  display: block;
  width: 29px; /* お好みで調整 */
  height: auto;
}
/* ページネーションリセット */
.howto_splide .splide__pagination {
  all: unset;
  display: flex !important; /* 強制表示 */
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}
.howto_splide .splide__pagination__page {
  all: unset;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5f5f5;
}
.howto_splide .splide__pagination__page.is-active {
  background: var(--primary-color);
}

/* スライド自体をフレックスコンテナに */
.howto_splide .slide__box {
  display: flex; /* フレックス化 */
  flex-direction: column; /* 上下方向 */
  justify-content: center; /* 縦中央 */
  align-items: center; /* 横中央 */
  text-align: center; /* テキスト中央寄せ */
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px 8px;
}
.howto_splide .splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 93%;
  margin: 0 auto;
}
.howto_splide .slide__box--inner p {
  font-weight: bold;
  font-size: 15px;
}
.img-btn_VT01 {
  width: 172px;
  margin: 0 auto 8px;
}
.plate-bk {
  background-color: #000;
  color: #fff;
  border-radius: 40px;
  padding: 3px 12px;
  line-height: 1.2;
  margin-bottom: 2px;
  margin-top: 2px;
}
.aori-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}
.aori-txt::before,
.aori-txt::after {
  width: 2px;
  height: 24px;
  background-color: #000;
  content: "";
}
.aori-txt::before {
  transform: rotate(-35deg);
  margin-right: 20px;
}
.aori-txt::after {
  transform: rotate(35deg);
  margin-left: 20px;
}
.slide__box--inner.flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.flex-left {
  width: 80%;
  flex-shrink: 0;
}
.slide__box--inner .icon {
  width: 36px;
}

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

/* ------------------------------------------------------------
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: var(--accent-color);
  font-weight: bold;
  text-align: center;
  padding: 6px;
  font-family: var(--font-jost);
  font-style: italic;
  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;
} /* PC: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;
  }
}
