@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  background-color: #1E539D;
  color: #ffffff;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
/*ページ内スクロール位置の指定
***************************************************************/
html {
  scroll-padding-top: 5.25rem; /* ヘッダーの高さ */
}

html {
  /* ベースのフォントサイズ */
  font-size: 16px;
  /* スマートフォン 375px以下 */
  /* タブレット 376px~inner */
  /* PC inner以上 */
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none; /* Safari など */
  -moz-appearance: none;
       appearance: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

/* イロモンってなぁに？
***************************************************************/
.about {
  position: relative;
  padding-block: 5.625rem 3.125rem;
}

/* ===== 青のライン ===== */
.about::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: -12%;
  left: 0;
  aspect-ratio: 750/623;
  width: 100%;
  background-image: url(../images/line/line_sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.about__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.75rem;
}

/* ===== 黄色もじゃモン ===== */
.about__container::after {
  display: block;
  position: absolute;
  bottom: -1.4375rem;
  left: -1.4375rem;
  aspect-ratio: 86/117;
  width: 5.375rem;
  background-image: url(../images/monster/yellow.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

/* アニメーション前の初期状態（PC） */

/* 登場アニメーション（PC） */
@-webkit-keyframes about-monster-in {
  0% {
    z-index: -1;
    left: -46%;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    opacity: 0;
  }
  20% {
    z-index: -1;
    left: 34%;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    opacity: 1;
  }
  36% {
    z-index: 2;
    left: 44%;
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  } /* こちらに姿を見せる */
  52% {
    left: 36%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  66% {
    left: 43%;
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  78% {
    left: 39%;
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  88% {
    left: 41%;
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    left: 40.5%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes about-monster-in {
  0% {
    z-index: -1;
    left: -46%;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    opacity: 0;
  }
  20% {
    z-index: -1;
    left: 34%;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    opacity: 1;
  }
  36% {
    z-index: 2;
    left: 44%;
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  } /* こちらに姿を見せる */
  52% {
    left: 36%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  66% {
    left: 43%;
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  78% {
    left: 39%;
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  88% {
    left: 41%;
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    left: 40.5%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.about__heading span + span {
  margin-top: 0.375rem;
}

.about__textbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 21.875rem;
  margin-top: 1.6875rem;
  margin-inline: auto;
  gap: 1.9375rem;
}

.about__text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.06em;
}

.about__img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  aspect-ratio: 333/265;
  width: 20.8125rem;
  max-width: 100%;
  margin-inline: auto;
}

.about__img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

/*ヘッダーボタン
***************************************************************/
.btn__nav {
  display: inline-block;
  position: relative;
  padding-inline: 3rem;
  padding-block: 0.125rem;
  border-radius: 9999px;
  background-color: #FF8990;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: "Dela Gothic One", sans-serif;
  text-wrap: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn__nav .arrow::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  aspect-ratio: 44/37;
  width: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon-arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
/*チャンスセクションボタン
***************************************************************/
.btn__chance {
  display: inline-block;
  position: relative;
  padding-inline: 6.5rem 6.4375rem;
  padding-block: 0.4375rem;
  border-radius: 9999px;
  background-color: #12458B;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: "Dela Gothic One", sans-serif;
  text-wrap: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn__chance .arrow::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  aspect-ratio: 44/23;
  width: 1.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon-arrow-chance.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
/*お問い合わせボタン
***************************************************************/
.btn__contact {
  display: inline-block;
  position: relative;
  min-width: 18.9375rem;
  padding-inline: 5rem 4.9375rem;
  padding-block: 0.4375rem;
  border-radius: 9999px;
  background-color: #00FFAA;
  color: #12458B;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: "Dela Gothic One", sans-serif;
  text-wrap: nowrap;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn__contact .arrow::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  aspect-ratio: 44/23;
  width: 1.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon-arrow-b.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
/*カード
***************************************************************/
.card {
  padding-block: 2.5rem;
}

.card__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 1.875rem;
}

.card__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}

.card__item-img {
  aspect-ratio: 4/3;
  width: 18.75rem;
}

.card__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.card__item h3 {
  font-size: 1.25rem;
}

.card__item p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
}

.card-btn {
  margin-top: 1.25rem;
  text-align: center;
}

.card-btn a {
  display: inline-block;
  padding-inline: 2.5rem;
  padding-block: 0.125rem;
  border-radius: 0.1875rem;
  background-color: pink;
  color: #000000;
  font-size: 1rem;
  text-transform: uppercase;
}

/*応募してイロモンをGET！
***************************************************************/
.chance {
  position: relative;
  padding-top: 3.5rem;
  overflow-x: clip;
}

/* ===== 青のライン ===== */
.chance::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0.9375rem;
  left: 0;
  aspect-ratio: 750/623;
  width: 100%;
  background-image: url(../images/line/line_sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.chance__inner {
  position: relative;
}

/* ===== ピンクモンスター ===== */

/* アニメーション前の初期状態（PC） */

/* 降ってくる＋着地スカッシュアニメーション（PC） */
@-webkit-keyframes chance-monster-drop {
  0% {
    -webkit-transform: translateY(-150%) scaleX(1) scaleY(1);
            transform: translateY(-150%) scaleX(1) scaleY(1);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateY(10%) scaleX(1) scaleY(1);
            transform: translateY(10%) scaleX(1) scaleY(1);
    opacity: 1;
  }
  58% {
    -webkit-transform: translateY(10%) scaleX(1.25) scaleY(0.65);
            transform: translateY(10%) scaleX(1.25) scaleY(0.65);
  } /* 着地・潰れ */
  68% {
    -webkit-transform: translateY(-6%) scaleX(0.9) scaleY(1.15);
            transform: translateY(-6%) scaleX(0.9) scaleY(1.15);
  } /* 跳ね＋伸び */
  78% {
    -webkit-transform: translateY(3%) scaleX(1.1) scaleY(0.88);
            transform: translateY(3%) scaleX(1.1) scaleY(0.88);
  }
  88% {
    -webkit-transform: translateY(-1%) scaleX(0.97) scaleY(1.05);
            transform: translateY(-1%) scaleX(0.97) scaleY(1.05);
  }
  100% {
    -webkit-transform: translateY(0) scaleX(1) scaleY(1);
            transform: translateY(0) scaleX(1) scaleY(1);
  }
}
@keyframes chance-monster-drop {
  0% {
    -webkit-transform: translateY(-150%) scaleX(1) scaleY(1);
            transform: translateY(-150%) scaleX(1) scaleY(1);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateY(10%) scaleX(1) scaleY(1);
            transform: translateY(10%) scaleX(1) scaleY(1);
    opacity: 1;
  }
  58% {
    -webkit-transform: translateY(10%) scaleX(1.25) scaleY(0.65);
            transform: translateY(10%) scaleX(1.25) scaleY(0.65);
  } /* 着地・潰れ */
  68% {
    -webkit-transform: translateY(-6%) scaleX(0.9) scaleY(1.15);
            transform: translateY(-6%) scaleX(0.9) scaleY(1.15);
  } /* 跳ね＋伸び */
  78% {
    -webkit-transform: translateY(3%) scaleX(1.1) scaleY(0.88);
            transform: translateY(3%) scaleX(1.1) scaleY(0.88);
  }
  88% {
    -webkit-transform: translateY(-1%) scaleX(0.97) scaleY(1.05);
            transform: translateY(-1%) scaleX(0.97) scaleY(1.05);
  }
  100% {
    -webkit-transform: translateY(0) scaleX(1) scaleY(1);
            transform: translateY(0) scaleX(1) scaleY(1);
  }
}

.chance__item {
  position: relative;
  padding-inline: 0.3125rem 0.375rem;
  padding-block: 2.3125rem 2.5rem;
  border: 0.125rem solid #000000;
  border-radius: 1.25rem;
  background-color: #ffffff;
}

/* ===== 星飾り ===== */
.chance__item::before {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0.9375rem;
  left: 0.3125rem;
  aspect-ratio: 149/162;
  width: 9.3125rem;
  background-image: url(../images/treat/chance01_sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.chance__item::after {
  display: block;
  z-index: 0;
  position: absolute;
  right: 0.3125rem;
  bottom: 0.8125rem;
  aspect-ratio: 116/126;
  width: 7.25rem;
  background-image: url(../images/treat/chance02_sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.chance__text {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 1.125rem 1.25rem;
  color: #000000;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: -0.06em;
}

/* ===== チャンス脇の▼ ===== */
.chance__text::before,
.chance__text::after {
  display: block;
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.chance__text::before {
  top: 0;
  left: 0;
  aspect-ratio: 57/67;
  width: 0.875rem;
  background-image: url(../images/treat/chance_treat_L.png);
}

.chance__text::after {
  top: -0.375rem;
  right: 0;
  aspect-ratio: 59/88;
  width: 0.875rem;
  background-image: url(../images/treat/chance_treat_R.png);
}

.chance__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.625rem;
  padding-inline: 0.125rem 0.1875rem;
  padding-block: 0rem 0.125rem;
  background-color: #000000;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: -0.06em;
  text-wrap: nowrap;
}

.chance__btn {
  z-index: 1;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}

/* フレーバー選択
***************************************************************/
.choice {
  overflow-x: clip;
}

.choice__container {
  width: 100%;
  max-width: 20.9375rem;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 2.4375rem 2.5rem;
  border-radius: 1.5rem;
  background-color: #FF8990;
}

.choice__heading {
  z-index: 1;
  position: relative;
}

.choice__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
  gap: 1.5rem;
}

.choice__list.is-animated {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* ===== 星飾り ===== */
.choice__list::before,
.choice__list::after {
  display: block;
  z-index: 0;
  position: absolute;
  aspect-ratio: 109/150;
  width: 6.8125rem;
  max-width: 100%;
  background-image: url(../images/treat/flavor_star_sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.choice__list::before {
  top: -9.5%;
  left: -20%;
}

.choice__list::after {
  right: -16%;
  bottom: -1.5625rem;
}

.choice__card {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 0.625rem;
  background-color: #ffffff;
}

.choice__head {
  position: relative;
  aspect-ratio: 303/160;
  width: 100%;
  max-width: 100%;
  padding-top: 1.5rem;
  border-radius: 0.625rem 0.625rem 0 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.choice__head.grape {
  background-image: url(../images/treat/flavor_sp_grape.png);
}

.choice__head.lime {
  background-image: url(../images/treat/flavor_sp_lime.png);
}

.choice__head.peach {
  background-image: url(../images/treat/flavor_sp_peach.png);
}

.choice__img {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  aspect-ratio: 104/188;
  width: 6.5rem;
  max-width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: drop-shadow(8px 8px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(8px 8px 4px rgba(0, 0, 0, 0.1));
}

.choice__img img,
.choice__body-monster img {
  -o-object-fit: cover;
     object-fit: cover;
}

.choice__body {
  padding-inline: 1rem;
  padding-block: 1.5rem;
}

.choice__body-monster {
  z-index: 1;
  position: relative;
  aspect-ratio: 61/92;
  width: 3.8125rem;
  max-width: 100%;
  margin-top: -3.4375rem;
}

.choice__body-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.0625rem;
  margin-inline: auto;
  padding-top: 0.0625rem;
  padding-inline: 0.125rem 0.3125rem;
  background-color: #000000;
  font-size: 2rem;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: -0.06em;
  text-wrap: nowrap;
}

.choice__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.3125rem;
  padding-left: 0.75rem;
}

.choice__rating.peach {
  padding-left: 1.5rem;
}

.choice__rating-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1875rem;
}

.choice__rating-label {
  width: 4.8125rem;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.choice__rating-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
}

.choice__star {
  display: inline-block;
  aspect-ratio: 1/1;
  width: 1.5rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.choice__star--on {
  background-image: url(../images/treat/flavor.webp);
}

.choice__star--off {
  background-image: url(../images/treat/flavor_gr.webp);
}

/*FAQセクション
***************************************************************/
.faq {
  background-image: url(../images/top/faq.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faq__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -3.75rem;
  padding-block: 4.5625rem 4.375rem;
  gap: 0.625rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
}

.faq-item {
  width: 100%;
  max-width: 91.4%;
  margin-inline: auto;
}

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

/*safariで三角を非表示*/
summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 1.875rem 0.9375rem;
  padding-block: 0.9375rem;
  background-color: #1E539D;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
}

.faq-item__icon {
  display: block;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 12px;
  -webkit-transform-origin: center 43%;
          transform-origin: center 43%;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

/* アイコンのバーのスタイル */
.faq-item__icon::before,
.faq-item__icon::after {
  display: block;
  position: absolute;
  width: 8px;
  height: 3px;
  background-color: #ffffff;
  content: "";
}

.faq-item__icon::before {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-item__icon::after {
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*details[open] .icon {*/
/*  transform: rotate(180deg);*/
/*}*/
/* is-openedクラスが付与されたときのスタイル */
details.is-opened .faq-item__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-item__summary-inner {
  position: relative;
}

.faq-item__summary-inner::before {
  display: inline-block;
  position: absolute;
  top: 0.9375rem;
  left: 0.625rem;
  content: "Q.";
  font-weight: 700;
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
}

/* --------アコーディオンの中身のスタイル-------- */
.faq-item__content {
  overflow: hidden;
  background-color: #ffffff;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.faq-item__content-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-inline: 1.875rem 0.9375rem;
  padding-block: 0.9375rem;
  gap: 1.3125rem;
  background-color: #eee;
  text-align: justify;
  text-justify: inter-ideograph;
}

.faq-item__content-inner::before {
  display: inline-block;
  position: absolute;
  top: 0.9375rem;
  left: 0.625rem;
  content: "A.";
  font-weight: 700;
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
}

/* フッター
***************************************************************/
footer {
  display: grid;
  place-items: center;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.footer small {
  text-transform: capitalize;
}

/* ファーストビュー
***************************************************************/
.fv {
  margin-top: 5.25rem;
}

/* ===== 赤モンスター ===== */
.fv__inner {
  position: relative;
}

.fv__inner::after {
  display: block;
  position: absolute;
  bottom: -8.5%;
  left: 2%;
  aspect-ratio: 129/191;
  width: 8.0625rem;
  max-width: 100%;
  background-image: url(../images/monster/red-sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.fv__container {
  position: relative;
  padding-inline: 0.8125rem;
  padding-block: 0.9375rem 1.3125rem;
  overflow: clip;
  border: 2px solid #000000;
  border-radius: 1.25rem;
  background-color: #FF8990;
  -webkit-box-shadow: inset 20px 20px 4px 0px rgba(255, 83, 83, 0.25);
          box-shadow: inset 20px 20px 4px 0px rgba(255, 83, 83, 0.25);
}

/* ===== ライムグリーンのライン ===== */
.fv__container::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  aspect-ratio: 670/671;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/treat/fv_sp_line.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

/* ===== イエローもじゃのモンスター ===== */
.fv__container::after {
  display: none;
}

.fv__heading {
  z-index: 1;
  position: relative;
  font-size: 5rem;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: -0.06em;
  text-align: center;
}

.fv__catch {
  margin-top: 0.6875rem;
}

.fv__catch span {
  position: relative;
}

.fv__catch span + span {
  margin-top: 0.5rem;
}

/* ===== 缶 ===== */
.fv__image {
  aspect-ratio: 309/396;
  width: 20.625rem;
  margin-top: -6.0625rem;
  margin-inline: auto;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  opacity: 0;
}
.fv__image.is-pop {
  -webkit-animation: fv-image-pop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: fv-image-pop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: drop-shadow(10px 10px 18px rgba(0, 0, 0, 0.52));
          filter: drop-shadow(10px 10px 18px rgba(0, 0, 0, 0.52));
}

@-webkit-keyframes fv-image-pop {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  55% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
  78% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  92% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes fv-image-pop {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  55% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
  78% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  92% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.fv__textbox {
  width: 61%;
  margin-top: -3rem;
  margin-left: auto;
}

.fv__text {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.06em;
}

/* ===== 黄色と紫色モンスター ===== */
.fv__monster {
  position: relative;
}

.fv__monster::before,
.fv__monster::after {
  display: block;
  position: absolute;
  max-width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.fv__monster::before {
  z-index: 1;
  right: -2.5rem;
  bottom: 8.6875rem;
  aspect-ratio: 91/70;
  width: 5.6875rem;
  background-image: url(../images/monster/yemon.webp);
}

.fv__monster::after {
  z-index: 1;
  right: -2.625rem;
  bottom: 4rem;
  aspect-ratio: 96/68;
  width: 6rem;
  background-image: url(../images/monster/purple.webp);
}

/* アニメーション定義
***************************************************************/
/* アニメーション定義
***************************************************************/
/* びよーんと飛び出して戻る（黄色・紫モンスター用） */
/* ラインの背後からしゅっと出てくる（イエローもじゃ用） */
/* 左右に揺れて入ってくる（あかモン用） */
/* ハンバーガーメニュー
***************************************************************/
.hamburger {
  z-index: 9999;
  width: 1.875rem;
  padding: 0;
}

.hamburger span {
  display: block;
  position: relative;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #ffffff;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.hamburger span:nth-child(2) {
  margin-block: 0.5rem;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.8125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ヘッダー
***************************************************************/
.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.25rem;
}

.header__inner,
.header__logo,
.header__logo-link,
.header__nav,
.header__nav-list,
.header__nav-item,
.header__nav-link {
  height: inherit;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo-link {
  display: grid;
  z-index: 9999;
  position: relative;
  place-items: center;
  aspect-ratio: 185/50;
  width: 11.5625rem;
  max-width: 100%;
}

.header__logo-link img {
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
}

.header__nav-link {
  display: grid;
  place-content: center;
  margin-block: auto;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: -0.06em;
  text-align: center;
  text-transform: capitalize;
}

.header__nav-link span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.3125rem;
  margin-inline: auto;
  font-weight: 500;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

/** スクロールででてくるヘッダー **/
.header__sticky {
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(16, 49, 96, 0.8);
  -webkit-animation: slideDown 0.5s ease-in-out;
          animation: slideDown 0.5s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*インフォメーション
***************************************************************/
.info {
  padding-top: 3.375rem;
}

.info__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info__image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  aspect-ratio: 335/196;
  width: 20.9375rem;
  max-width: 100%;
  margin-top: 1.5rem;
}

.info__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.info__table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.9375rem;
  gap: 1.125rem;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.info__table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.info__table-label {
  white-space: nowrap;
}

.info__table-data {
  font-size: 0.9375rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.info__btn {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 1.5rem;
  text-align: center;
}

/* inner
***************************************************************/
.inner {
  width: 100%;
  max-width: 31.25rem;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/* ローディング画面
***************************************************************/
.loading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10000;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  inset: 0;
  overflow: hidden;
  background-color: rgba(16, 49, 96, 0.9);
  background-color: #FF8990;
  -webkit-transition: opacity 0.9s ease, visibility 0.9s ease;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.loading.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

html.is-loading {
  overflow: hidden;
}

/* 横並びレイアウト */
.loading__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -webkit-animation: loading-run 3.4s 0.7s linear infinite;
          animation: loading-run 3.4s 0.7s linear infinite;
}

/* ===== 走るアニメーション（右へ移動）===== */
@-webkit-keyframes loading-run {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(110vw);
            transform: translateX(110vw);
  }
}
@keyframes loading-run {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(110vw);
            transform: translateX(110vw);
  }
}
/* ===== 走るときの上下バウンド（通常モンスター）===== */
@-webkit-keyframes loading-run-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.75rem);
            transform: translateY(-0.75rem);
  }
  70% {
    -webkit-transform: translateY(0.125rem);
            transform: translateY(0.125rem);
  }
}
@keyframes loading-run-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.75rem);
            transform: translateY(-0.75rem);
  }
  70% {
    -webkit-transform: translateY(0.125rem);
            transform: translateY(0.125rem);
  }
}
/* モンスター共通 */
.loading__monster {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: loading-run-bounce 0.4s ease-in-out infinite;
          animation: loading-run-bounce 0.4s ease-in-out infinite;
}

/* red（赤モンスター）*/
.loading__monster.loading__monster--red {
  width: auto;
  height: 5rem;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

/* yellow_s（もじゃモンスター）*/
.loading__monster.loading__monster--yellow {
  width: auto;
  height: 2.8125rem;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

/* yemon（黄色モンスター） */
.loading__monster.loading__monster--yemon {
  width: 4.5rem;
  height: auto;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

/* purple（紫モンスター） */
.loading__monster.loading__monster--purple {
  width: 4.5rem;
  height: auto;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

/* ニュース
***************************************************************/
.news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__content {
  padding-block: 2rem;
  border-radius: 1.25rem;
  background-color: lightcyan;
}

.content__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 0.625rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content__tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 0.625rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__tag {
  padding-inline: 0.625rem;
  padding-block: 0 0.125rem;
  border: 1px solid black;
  border-radius: 0.3125rem;
}

.content__heading a {
  display: block;
  position: relative;
  padding-left: 0.3125rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid;
  color: black;
  font-weight: 500;
}

.content__heading a:hover {
  color: rgb(2, 49, 85);
}

.content__heading a::after {
  display: grid;
  position: absolute;
  top: 50%;
  right: 0;
  place-content: center;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid;
  border-radius: 9999px;
  content: "›";
  font-weight: 500;
  font-size: 1.25rem;
}

.content__heading a:hover::after {
  color: rgb(2, 49, 85);
}

.sidebar {
  padding-block: 2.5rem;
}

.sidebar__link {
  color: black;
}

/* TOPへ戻る
***************************************************************/
.page-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.625rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-top img {
  width: 100%;
  height: auto;
}

.page-top__text {
  margin-top: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
}

/*ピンクマーカー
***************************************************************/
.pink-marker span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.3125rem;
  padding-block: 0.0625rem;
  background-color: #FF00DD;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: -0.06em;
}

.pink-marker.info__heading span {
  font-size: 2rem;
}

/* スマホメニュー
***************************************************************/
.sp-nav {
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-inline: 2rem;
  padding-block: 1.875rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #FECD00;
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}

.sp-nav.is-openSP::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 0;
  aspect-ratio: 750/640;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/treat/menu_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.sp-nav.is-openSP::after {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -5%;
  left: 0.75rem;
  aspect-ratio: 129/191;
  width: 8.0625rem;
  max-width: 100%;
  background-image: url(../images/monster/red-sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.sp-nav.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sp-nav__items {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 7.25rem;
  gap: 1.5rem;
  text-align: center;
}

.sp-nav__link {
  display: block;
  color: #ffffff;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: "Dela Gothic One", sans-serif;
  text-transform: capitalize;
}

.sp-nav__link span {
  display: block;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
}

.sp-nav__btn {
  margin-top: 2.5rem;
  text-align: center;
}

@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    scroll-padding-top: 5.625rem;
  }
  html {
    font-size: 1.25vw;
  }
  .about {
    padding-block: 7.875rem;
  }
  .about::before {
    top: -49%;
    left: -9%;
    aspect-ratio: 2880/1385;
    width: 100%;
    max-width: 100%;
    background-image: url(../images/line/line.webp);
  }
  .about__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.8125rem;
  }
  .about__container::after {
    bottom: -3rem;
    left: 40.5%;
    aspect-ratio: 165/224;
    width: 10.3125rem;
  }
  .about__container:not(.is-animated)::after {
    z-index: -1;
    left: -46%;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    opacity: 0;
  }
  .about__container.is-animated::after {
    -webkit-animation: about-monster-in 2.5s ease forwards;
            animation: about-monster-in 2.5s ease forwards;
  }
  .about__heading span + span {
    margin-top: 0.5rem;
  }
  .about__textbox {
    max-width: 100%;
    margin-top: 1.6875rem;
    gap: 2.0625rem;
  }
  .about__text {
    font-size: 1.125rem;
  }
  .about__img {
    aspect-ratio: 705/561;
    width: 44.0625rem;
  }
  .about__img img {
    border-radius: 1.25rem;
  }
  .btn__chance {
    padding-inline: 9.125rem;
    padding-block: 1rem 0.9375rem;
    font-size: 2.5rem;
  }
  .btn__chance .arrow::after {
    right: 1.5rem;
    width: 2.5625rem;
  }
  .btn__contact {
    padding-inline: 6.5rem;
    padding-block: 0.9375rem 0.9375rem;
    font-size: 2.5rem;
  }
  .btn__contact .arrow::after {
    right: 1.5rem;
    width: 2.5625rem;
  }
  .chance {
    padding-top: 8.625rem;
  }
  .chance::before {
    top: -24%;
    aspect-ratio: 2880/1385;
    width: 100%;
    max-width: 100%;
    background-image: url(../images/line/line.webp);
  }
  .chance__inner::after {
    display: block;
    position: absolute;
    top: -10%;
    left: 9.5%;
    aspect-ratio: 332/419;
    width: 20.75rem;
    max-width: 100%;
    background-image: url(../images/monster/pink.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .chance__inner:not(.is-animated)::after {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    opacity: 0;
  }
  .chance__inner.is-animated::after {
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-animation: chance-monster-drop 1s ease forwards;
            animation: chance-monster-drop 1s ease forwards;
  }
  .chance__item {
    max-width: 57.125rem;
    margin-left: 18.7%;
    padding-inline: 12.625rem 4.3125rem;
    padding-block: 2.5rem 3.4375rem;
    border-radius: 2.5rem;
  }
  .chance__item::before {
    top: 21%;
    left: 13%;
    aspect-ratio: 304/247;
    width: 19rem;
    background-image: url(../images/treat/chance01.webp);
  }
  .chance__item::after {
    right: 2.7%;
    bottom: 16%;
    aspect-ratio: 254/277;
    width: 15.875rem;
    background-image: url(../images/treat/chance02.webp);
  }
  .chance__text {
    font-size: 2.5rem;
  }
  .chance__text::before {
    top: -2%;
    left: -7%;
    width: 1.5625rem;
  }
  .chance__text::after {
    top: -20%;
    right: -12%;
    width: 1.75rem;
  }
  .chance__heading {
    z-index: 1;
    margin-top: 0.9375rem;
    padding-inline: 0.125rem 0.625rem;
    padding-block: 0 0.1875rem;
    font-weight: normal;
    font-size: 3.5rem;
    font-family: "Dela Gothic One", sans-serif;
  }
  .chance__btn {
    margin-top: 2.875rem;
  }
  .choice {
    padding-block: 4.8125rem 6.25rem;
    border-radius: 3.125rem;
    background-color: #FF8990;
  }
  .choice__container {
    max-width: 100%;
    padding-inline: 0;
    padding-block: 0;
    background-color: transparent;
  }
  .choice__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.5rem;
    gap: 2.5rem;
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  }
  .choice__list::before,
  .choice__list::after {
    aspect-ratio: 199/275;
    width: 12.4375rem;
    background-image: url(../images/treat/flavor_star.webp);
  }
  .choice__list::before {
    top: -65%;
    left: -9.3%;
  }
  .choice__list::after {
    right: -10.5%;
    bottom: -41%;
  }
  .choice__card {
    aspect-ratio: 1/1;
    min-width: 0;
    max-width: 25rem;
    border-radius: 1.25rem;
  }
  .choice__head {
    aspect-ratio: 400/200;
    padding-top: 1.625rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  .choice__img {
    aspect-ratio: 120/218;
    width: 7.5rem;
  }
  .choice__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-block: 1.5625rem 0.8125rem;
    gap: 0.9375rem;
  }
  .choice__body-monster {
    aspect-ratio: 109/162;
    width: 6.8125rem;
    margin-top: 0;
  }
  .choice__body-detail {
    margin-top: 1rem;
  }
  .choice__body-heading {
    padding-bottom: 0.0625rem;
    padding-inline: 0.1875rem 0.3125rem;
  }
  .choice__rating {
    padding-left: 0;
  }
  .choice__rating.peach {
    padding-left: 0;
  }
  .faq__list {
    margin-top: -5rem;
    padding-block: 7.9375rem 5rem;
    gap: 0.9375rem;
  }
  .faq-item {
    max-width: 50rem;
  }
  .faq-item__summary-inner {
    padding-inline: 5rem 1rem;
    padding-block: 0.875rem;
  }
  .faq-item__icon {
    width: 24px;
  }
  .faq-item__icon::before,
  .faq-item__icon::after {
    width: 15px;
    height: 3px;
  }
  .faq-item__summary-inner::before {
    top: 0.875rem;
    left: 2.5rem;
  }
  .faq-item__content-inner {
    padding-inline: 5rem 2.5rem;
    padding-block: 1.25rem;
  }
  .faq-item__content-inner::before {
    top: 1.25rem;
    left: 2.5rem;
  }
  footer {
    padding-bottom: 3.625rem;
  }
  .fv {
    margin-top: 5.625rem;
  }
  .fv__inner::after {
    z-index: 10;
    bottom: -4%;
    left: -3%;
    aspect-ratio: 240/357;
    width: 15rem;
    background-image: url(../images/monster/red.webp);
  }
  .fv__container {
    padding-inline: 1.9375rem;
    padding-block: 2.5625rem 2.9375rem;
    border-radius: 2.5rem;
  }
  .fv__container::before {
    z-index: 1;
    top: 46%;
    aspect-ratio: 2560/1200;
    background-image: url(../images/treat/fv_line.webp);
  }
  .fv__container::after {
    display: block;
    z-index: 0;
    position: absolute;
    top: 47%;
    right: 22%;
    aspect-ratio: 130/164;
    width: 9.6875rem;
    background-image: url(../images/monster/yellow_s.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .fv__heading {
    font-size: 10.625rem;
    text-align: left;
  }
  .fv__catch {
    margin-top: 1.25rem;
  }
  .fv__catch span {
    z-index: 1;
  }
  .fv__image {
    z-index: 1;
    position: relative;
    left: 4.375rem;
    width: 31.875rem;
    margin-top: -22.9375rem;
  }
  .fv__textbox {
    width: 33.3%;
    margin-top: -14.1875rem;
    margin-left: 9.6875rem;
  }
  .fv__monster::before {
    right: -8.6875rem;
    bottom: 28.4375rem;
    aspect-ratio: 290/222;
    width: 18.125rem;
  }
  .fv__monster::after {
    right: -9.375rem;
    bottom: 13.375rem;
    aspect-ratio: 305/216;
    width: 19.0625rem;
  }
  .header {
    height: 5.625rem;
  }
  .header__inner.inner {
    max-width: 87.5rem;
  }
  .header__logo-link {
    aspect-ratio: 233/60;
    width: 14.5625rem;
  }
  .header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .info {
    padding-top: 8.125rem;
  }
  .info__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.6875rem;
  }
  .info__image {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    aspect-ratio: 651/381;
    width: 40.6875rem;
    margin-top: 0;
  }
  .info__table {
    margin-top: 1.5625rem;
    gap: 1.125rem;
  }
  .info__btn {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 4.0625rem;
    text-align: left;
  }
  .inner {
    max-width: 1330px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .loading__inner {
    gap: 1.75rem;
  }
  .loading__monster.loading__monster--red {
    height: 12.5rem;
  }
  .loading__monster.loading__monster--yellow {
    height: 5.625rem;
  }
  .loading__monster.loading__monster--yemon {
    width: 8.75rem;
  }
  .loading__monster.loading__monster--purple {
    width: 8.75rem;
  }
  .news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .news__content {
    width: 70%;
    padding-block: 5rem;
    border-radius: 1.25rem 0 0 1.25rem;
  }
  .sidebar {
    width: 30%;
    padding-block: 5rem;
    border-radius: 0 1.25rem 1.25rem 0;
    background-color: lightcyan;
  }
  .page-top {
    right: 2.5rem;
    bottom: 2.5rem;
    width: 4.125rem;
  }
  .page-top__text {
    font-size: 0.9375rem;
  }
  .pink-marker span {
    font-size: 3rem;
  }
  .pink-marker.info__heading span {
    font-size: 3rem;
  }
  .sp-nav {
    display: none;
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
  .btn__nav:hover {
    background-color: #00FFAA;
    opacity: 1;
  }
  .btn__chance:hover {
    background-color: #FF8990;
    opacity: 1;
  }
  .btn__contact:hover {
    background-color: #12458B;
    color: #ffffff;
    opacity: 1;
  }
  .btn__contact:hover .arrow::after {
    background-image: url(../images/icon-arrow-chance.svg);
    opacity: 1;
  }
}
/*# sourceMappingURL=map/styles.css.map */