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

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

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
  --text-color: #00378c;
  --sub-text-color: #ffffff;
  --text-link: #f51d00;
  --primary-color: #0044ad;
  --secondary-color: #4887e9;
  --accent-color: #ff651e;
  --red-color: #f51d00;
  --bg-color: #ffffff;
  --bg02-color: #fff575;
  --border-color: #b2cffc;
  --font-serif: "Noto Serif JP", 游明朝, 游明朝体, "Yu Mincho", YuMincho, serif;
  --scale-factor: 1; /* 通常時 */
  --btn-base-color: #0044ad; /* アコーディオンボタンのベース色 */
  --btn-text-color: #ffffff; /* アコーディオンボタンのテキスト色 */
}
/* 背景固定 */
/* 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.4;
  font-size: 14px;
  /* font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif"; */
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.main__wrap * {
  box-sizing: border-box;
}
.main__bg {
  background: url(../img/bg01.jpg) center top / 375px repeat;
}
img {
  display: block;
  width: 100%;
  height: auto;
}

a:hover img {
  opacity: 1;
}

.container {
  width: calc(100% - 30px);
  margin: 0 auto;
  max-width: 800px;
}
.indent li,
.txt-note.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.fc-red {
  color: var(--red-color);
}
.fc-accent {
  color: var(--accent-color);
}
.fc-white {
  color: #fff;
}
.txt-link {
  color: var(--text-link);
  text-decoration: underline;
  font-weight: bold;
}
.txt-note {
  font-size: 11px;
  line-height: 1.4;
}
.txt-note.fz-s {
  font-size: 10px;
}
.note__list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.note__list li {
  font-size: 11px;
  line-height: 1.4;
}
.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;
}
.fw500 {
  font-weight: 500;
}
.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%);
  }
}

/* ポップアップ */
.js__popUp {
  transform: scale(0);
}
.js__popUp.is-inview {
  animation-name: anime_popUp;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}
@keyframes anime_popUp {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.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__acc-body {
  display: none;
}
.acc__body {
  margin-top: 10px;
  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 15px;
  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%);
}

.acc__btn02 {
  background-color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  padding: 4px 15px;
}
.acc__btn02 .acc__btn_plus::after,
.acc__btn02 .acc__btn_plus::before {
  background-color: var(--secondary-color);
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.voice-btn {
  position: relative;
  filter: drop-shadow(4px 6px 0 #b51500);
}
.voice-btn.inactive {
  filter: drop-shadow(0 0 0 transparent);
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .voice-btn__pc {
    /* background-color: var(--accent-color); */
    background: repeating-linear-gradient(-45deg, #fb3e24, #fb3e24 10px, #f85640 10px, #f85640 20px);
    border: 4px solid #fff;
    box-shadow: 3px 3px 0 #ccc;
    border-radius: 16px;
    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: 800;
    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
------------------------------------------------------------ */
h1 {
  background: repeating-linear-gradient(90deg, #fff899, #fff899 50px, #fffddc 50px, #fffddc 100px);
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  h1 {
    display: flex;
    justify-content: center;
  }
  h1 img {
    max-width: 600px;
  }
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap {
  overflow-x: clip;
}
.intro__box {
  padding: 35px 0 30px;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.intro__text {
  color: #00378c;
  text-align: center;
  -webkit-text-stroke-width: 0.35em;
  -webkit-text-stroke-color: #fff;
  paint-order: stroke;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}
.intro__text .fc-accent {
  padding: 0 0.1em;
}
.star__wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.15));
}
.star__twinkle {
  position: absolute;
  display: block;
}
.star_y {
  width: 41px;
  animation-name: twinkleAnime;
  animation-duration: 3s;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
  transform-origin: 49% 48%;
  animation-delay: 0;
}
.star_b {
  width: 36px;
  animation-name: twinkleAnime;
  animation-duration: 3s;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  animation-delay: 0.5s;
}
.star_g {
  width: 27px;
  animation-name: twinkleAnime;
  animation-duration: 3s;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
  transform-origin: 48% 51%;
  animation-delay: 1s;
}
.star_p {
  width: 27px;
  width: 27px;
  animation-name: twinkleAnime;
  animation-duration: 3s;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
  transform-origin: 53% 48%;
  animation-delay: 1.5s;
}
#intro .star_y {
  bottom: 19%;
  left: -1%;
}
#intro .star_b {
  top: 40%;
  right: -2%;
}
#intro .star_g {
  bottom: 11%;
  right: 16%;
}
#intro .star_p {
  top: -1%;
  left: 12%;
}
@keyframes twinkleAnime {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .intro__text {
    font-size: 20px;
  }
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
  background-color: var(--bg02-color);
  padding: 20px 0;
  overflow-x: clip;
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.menu__list li {
  width: calc((100% - 16px) / 3);
  transform: scale(0);
}
.menu__list li a {
  display: block;
  filter: drop-shadow(3px 5px 0 rgba(0, 101, 184, 0.6));
}
.menu__list.is-inview li {
  animation-name: menuAnime;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.menu__list li:nth-child(1) {
  animation-delay: 0s;
}
.menu__list li:nth-child(2) {
  animation-delay: 0.1s;
}
.menu__list li:nth-child(3) {
  animation-delay: 0.2s;
}
@keyframes menuAnime {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .menu__list {
    gap: 16px;
  }
  .menu__list li {
    width: calc((100% - 32px) / 3);
    max-width: 130px;
  }
  .menu__list li a {
    transition: all 0.3s;
    display: block;
  }
  .menu__list li a:hover {
    transform: translate(3px, 5px);
    opacity: 0.7;
    filter: drop-shadow(0 0 0 rgba(0, 101, 184, 0.6));
  }
}

/* ------------------------------------------------------------
section
head
------------------------------------------------------------ */
.sec__wrap {
  overflow-x: clip;
}
.sec__head__wrap {
  overflow: hidden;
}
.sec__head {
  position: relative;
  max-width: 440px;
  padding: 70px 0 30px;
  margin: 0 auto;
}
@keyframes popAnime {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.sec__head h2 {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: scale(0);
}
.sec__head.is-inview h2 {
  animation-name: popAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: none;
}
.cloud__wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cloud__float {
  position: absolute;
  display: block;
  animation-name: floatAnime;
  animation-iteration-count: infinite;
}
@keyframes floatAnime {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.cloud01 {
  width: 62px;
  animation-duration: 3.5s;
}
.cloud02 {
  width: 47px;
  animation-duration: 3s;
}
.cloud03 {
  width: 38px;
  animation-duration: 2.5s;
}
.cloud04 {
  animation-duration: 2.5s;
}
.cloud05 {
  animation-duration: 3s;
}
.cloud06 {
  animation-duration: 3.5s;
}
.sec__wrap .cloud__float img {
  transform: scale(0);
}
.is-inview .cloud__float img {
  animation-name: popAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.cloud01 img {
  animation-delay: 0.2s;
}
.cloud02 img {
  animation-delay: 0.4s;
}
.cloud03 img {
  animation-delay: 0.6s;
}
.star__twinkle img {
  transform: scale(0);
}
.is-inview .star__twinkle img {
  animation-name: popAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.star__twinkle:nth-child(1) img {
  animation-delay: 0.1s;
}
.star__twinkle:nth-child(2) img {
  animation-delay: 0.3s;
}
.star__twinkle:nth-child(3) img {
  animation-delay: 0.5s;
}

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

/* ------------------------------------------------------------
box
------------------------------------------------------------ */
.box01 {
  padding: 40px 12px;
  border-radius: 20px;
  border: 3px solid var(--primary-color);
  background: url(../img/roof.svg) center top / 70px repeat-x, url(../img/bg02.jpg) center top / 100% auto repeat-y;
  box-shadow: 5px 6px 0 0 #b2cffc;
}
.box02__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 20px;
}
.box02 {
  padding-top: 34px;
  position: relative;
  max-width: 315px;
  transform-origin: 50% 0%;
  opacity: 0;
}
.box02__list.is-inview .box02 {
  animation-name: box02Anime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
@keyframes box02Anime {
  0% {
    transform: rotate(-40deg);
    opacity: 0;
  }
  33% {
    transform: rotate(20deg);
  }
  66% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
.box02:nth-child(1) {
  animation-delay: none;
}
.box02:nth-child(2) {
  animation-delay: 0.3s;
}
.box02__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  filter: drop-shadow(0 6px 0 #9fd5fb);
}
.box02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 52px;
  width: 100%;
  background: url(../img/hanging.svg) center / contain no-repeat;
  z-index: 0;
}
.box02__head__wrap {
  background-color: var(--primary-color);
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: 15px 15px 0 0;
}
.box02__head__num {
  background-color: #fff;
  font-weight: 800;
  line-height: 1.5;
  font-size: 13px;
  text-align: center;
  width: 43px;
  border-radius: 4px;
  padding: 2px 0;
}
.box02__head__date {
  color: #fff794;
  font-weight: 800;
  font-size: 15px;
}
.box02__head__date span {
  font-size: 12px;
}
.box02__body__wrap {
  border-color: var(--primary-color);
  border-style: solid;
  border-width: 0 3px 3px 3px;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(../img/bg03.jpg) 100% top / cover no-repeat;
  padding: 10px 0 12px;
}
.box02__body__title.title01 {
  width: 56.31%;
  margin: 0 auto;
}
.box02__body__title.title02 {
  width: 77.35%;
  margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .box01 {
    padding: 64px;
    background: url(../img/roof.svg) center top / 120px repeat-x, url(../img/bg02.jpg) center top / 50% auto repeat;
  }
}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
#voice h2 {
  width: 64%;
}
#voice .cloud01 {
  bottom: 30%;
  left: -3%;
}
#voice .cloud02 {
  top: 30%;
  right: 3%;
}
#voice .cloud03 {
  top: 10%;
  right: 50%;
}
#voice .star_y {
  bottom: 8%;
  right: 7%;
}
#voice .star_b {
  top: 32%;
  left: 5%;
}
#voice .star_p {
  bottom: 24%;
  right: 2%;
}
.voice__sub__text {
  color: #6a8bbf;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}

/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
#goods h2 {
  width: 92.267%;
}
#goods .cloud01 {
  bottom: 15%;
  left: -4%;
}
#goods .cloud02 {
  top: 22%;
  right: 3%;
}
#goods .cloud03 {
  top: 11%;
  right: 57%;
}
#goods .star_y {
  top: 27%;
  left: 5%;
}
#goods .star_g {
  top: 36%;
  right: 4%;
  width: 38px;
}
#goods .star_p {
  bottom: 17%;
  right: 15%;
}
.date__wrap {
  padding: 10px 0;
  text-align: center;
  border-top: 4px dotted var(--primary-color);
  border-bottom: 4px dotted var(--primary-color);
}
.date__text {
  color: var(--navy, #0044ad);
  text-align: center;
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: #fff;
  paint-order: stroke;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}
.date__s {
  font-size: 14px;
  padding-right: 3px;
}
.sec__intro {
  text-align: center;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 32px;
}
.goods__img__wrap {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.goods__img__wrap img {
  width: 221px;
  transform: rotate(-6deg);
  aspect-ratio: 221/151;
}
.box03 {
  padding: 25px 15px 20px;
  margin-top: 30px;
  border-radius: 15px;
  border: 3px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  position: relative;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform-origin: center top;
}
.box03::before,
.box03::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 16px;
  height: 34px;
  background: url(../img/ring.svg) center / contain no-repeat;
}
.box03::before {
  left: 5%;
}
.box03::after {
  right: 5%;
}
.box03.is-inview {
  animation-name: box03Anime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: none;
}
@keyframes box03Anime {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.box03 dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  gap: 6px;
}
.box03 dt {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 800;
  text-align: center;
  width: 120px;
  padding: 2px 0;
  border-radius: 50px;
  font-size: 15px;
}
.box03 dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 6px;
}
.box03__text01 {
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary-color);
  font-size: 15px;
  text-align: center;
}
.box03__text01 span {
  font-size: 12px;
}
.box03__text02 {
  font-size: 12px;
  color: var(--primary-color);
  text-align: center;
}
.box03__text02 .txt-link {
  color: var(--primary-color);
}
.box03 dl.box03__inbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.box03 dl.box03__inbox dt {
  font-weight: 400;
  font-size: 14px;
  width: fit-content;
  border-radius: 5px;
  padding: 2px 10px;
  background: var(--primary-color);
}
.box04 {
  padding: 25px 12px;
  border-radius: 15px;
  border: 3px solid var(--primary-color);
  background-color: #fff;
}
.box04 dl {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
}
.box04 dl + dl {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 3px dotted var(--border-color);
}
.box04 dt {
  border-radius: 50px;
  background-color: var(--primary-color);
  padding: 2px 0 3px;
  text-align: center;
  width: 64px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.box04 dd {
  width: calc(100% - 64px);
  color: var(--primary-color);
}
.box04__text01 {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
}
/* ------------------------------------------------------------
#ar
------------------------------------------------------------ */
#ar h2 {
  width: 80.27%;
}
#ar .cloud01 {
  bottom: 18%;
  left: -5%;
}
#ar .cloud02 {
  bottom: 22%;
  right: 5%;
}
#ar .cloud03 {
  top: 13%;
  left: 63%;
}
#ar .star_y {
  top: 20%;
  left: 10%;
}
#ar .star_b {
  bottom: 7%;
  left: 13%;
}
#ar .star_p {
  top: 38%;
  right: 5%;
}
#ar.sec__wrap {
  padding-bottom: 70px;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  #ar.sec__wrap {
    padding-bottom: 96px;
  }
}

/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
.info__bg_pc {
  /* background: linear-gradient(180deg, rgb(224, 103, 186), rgb(114, 41, 179)); */
  background-color: #c3a3d4;
}
.info__bg {
  background: url(../img/bg04.jpg) center top / cover no-repeat;
  max-width: 800px;
  margin: 0 auto;
}
.info__wrap {
  padding: 0 30px;
  position: relative;
  overflow-x: clip;
}
.info__inner {
  padding: 80px 0 150px;
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}
.info__wrap .container {
  width: 100%;
  position: relative;
  z-index: 2;
}
.info__cloud_s {
  position: absolute;
  top: 0;
  z-index: 1;
}
.info__cloud_l__wrap {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.info__cloud_l {
  position: absolute;
}
.cloud04 {
  width: 164px;
  top: -43px;
  left: -57px;
}
.cloud05 {
  width: 94px;
  top: 25px;
  right: 0;
  transform: scaleX(-1);
}
.cloud06 {
  width: 154px;
  top: 123px;
  right: -80px;
}
.cloud07 {
  width: 100%;
  top: 320px;
  left: -18%;
  transform: scale(-1);
}
.cloud08 {
  width: 84.8%;
  top: 340px;
  right: -14%;
}
.cloud09 {
  width: 109.6%;
  top: 353px;
  left: -26%;
}
.info_cloud__float img {
  animation-name: infoFloatAnime;
  animation-iteration-count: infinite;
}
@keyframes infoFloatAnime {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.info_cloud__float.cloud04 img {
  animation-duration: 2.5s;
}
.info_cloud__float.cloud05 img {
  animation-duration: 3s;
}
.info_cloud__float.cloud06 img {
  animation-duration: 3.5s;
}
.info_cloud__float.cloud07 img {
  animation-duration: 7s;
}
.info_cloud__float.cloud08 img {
  animation-duration: 8s;
}
.info_cloud__float.cloud09 img {
  animation-duration: 9s;
}
.info__chara {
  position: absolute;
  z-index: 2;
}
.info__chara.shin {
  width: 85px;
  top: -3%;
  left: -5%;
  transform: rotate(-7deg);
}
.info__chara.shiro {
  width: 100px;
  bottom: 5%;
  right: -6%;
  transform: rotate(13deg);
}
.info__head {
  width: 209px;
  margin: 0 auto;
}
.info__link {
  display: block;
  border: 3px solid #fde2a9;
  background-color: #fff;
  max-width: 315px;
  padding: 14px 23px;
  transition: all 0.3s;
  box-shadow: 0 9px 15px rgba(35, 2, 81, 0.2);
  margin: 14px auto 0;
}
/* PC用設定 */
@media screen and (min-width: 751px) {
  .info__bg {
    border-left: 4px solid #fde2a9;
    border-right: 4px solid #fde2a9;
  }
  .info__link:hover {
    transform: translateY(3px);
    opacity: 0.7;
    box-shadow: 0 6px 12px rgba(35, 2, 81, 0.2);
  }
  .cloud04 {
    width: 184px;
    top: -50px;
    left: -90px;
  }
  .cloud05 {
    width: 124px;
    top: 15px;
    right: 30px;
  }
  .cloud06 {
    width: 194px;
    top: 113px;
    right: -110px;
  }
  .cloud07 {
    width: 80%;
    left: -10%;
    top: 62%;
    transform: scale(-1);
  }
  .cloud08 {
    width: 63%;
    top: 62%;
    right: 0;
  }
  .cloud09 {
    width: 69%;
    top: 68%;
    left: 0;
  }
  .info__chara.shin {
    width: 100px;
    top: -3%;
    left: -10%;
  }
  .info__chara.shiro {
    width: 120px;
    bottom: 5%;
    right: -15%;
  }
}

/* ------------------------------------------------------------
ar_splide
------------------------------------------------------------ */
.ar__slide__head {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  background: url(../img/ar_head.svg) center / contain no-repeat;
  padding: 13px 14px;
  margin-top: 40px;
}
.ar_title__text {
  color: var(--primary-color);
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: #fff;
  paint-order: stroke;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 10px;
}
.ar_splide {
  margin-top: 10px;
  max-width: 500px;
  margin: 10px auto 0;
}
.ar_splide .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.ar_splide .splide__arrow {
  background: none;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  transition: all 0.3s;
}
.ar_splide .splide__slide .ar__img__wrap img {
  transform: scale(0.67);
  transition: all 0.3s;
}
.ar_splide .splide__slide.is-active .ar__img__wrap img {
  transform: scale(1);
}
.ar_splide .pagination {
  font-weight: 800;
  color: #000;
  font-size: 14px;
  display: flex;
}

/* PC用設定 */
@media screen and (min-width: 751px) {
  .ar_splide .splide__arrow:hover {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
    opacity: 0.7;
    transform: translateY(3px);
  }
}

/* ------------------------------------------------------------
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(--red-color);
  font-weight: 800;
  text-align: center;
  padding: 6px;
  font-size: 20px;
  border-radius: 400px;
}
.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;
  }
}
