@charset "UTF-8";
/* Zen Kaku Gothic Antique */
@font-face {
  font-family: "Zen Kaku Gothic Antique";
  src: url("../../assets/fonts/zenkakugothicantique-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic Antique";
  src: url("../../assets/fonts/zenkakugothicantique-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic Antique";
  src: url("../../assets/fonts/zenkakugothicantique-black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Reggae One */
@font-face {
  font-family: "Reggae One";
  src: url("../../assets/fonts/reggaeone-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Inter */
@font-face {
  font-family: "Inter";
  src: url("../../assets/fonts/inter-variablefont-opsz-wght.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Shippori Mincho */
@font-face {
  font-family: "Shippori Mincho";
  src: url("../../assets/fonts/shipporimincho-extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* SPファースト */
html {
  font-size: 16px;
}
@media (max-width: 520px) {
  html {
    font-size: 3.0769230769vw;
  }
}

/* フォントカラーは、使用頻度が多いものを選択する */
body {
  color: #1f0800;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  transition: opacity 0.3s, color 0.3s, filter 0.3s;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

/* PC版Chromeで拡縮画像ぼやけ対策 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* iPhoneSafariで画像ジャギ対策 */
img {
  image-rendering: auto;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ---- */
.content-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ここまで ---- */
/* YouTubeのframeborder属性の変わり(HTML5の標準仕様で廃止されているため) */
iframe {
  border: none;
}

/* ------------------------ */
/* 固有の背景色設定 */
/* 共通パーツで設定すると不便な場合、こちらに設定する */
/* ------------------------ */
/* ---------- 背景色の設定 ここから ---------- */
/* 16進数カラーコードも命名する。bg-color-light-blue、bg-color-dark-blueで管理すると、色の判別がしにくいため。 */
.bg-color-red_9a0000 {
  background-color: #9a0000;
}

.bg-color-blue_00349a {
  background-color: #00349a;
}

/* ---------- 背景色の設定 ここまで ---------- */
/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 414px以下で改行 */
@media screen and (min-width: 414px) {
  .br-414-less {
    display: none;
  }
}

/* 520px以下で改行 */
@media screen and (min-width: 520px) {
  .br-520-less {
    display: none;
  }
}

/* 520px以上で改行 */
.br-520-more {
  display: none;
}
@media screen and (min-width: 520px) {
  .br-520-more {
    display: block;
  }
}

/* 768px以下で改行 */
@media screen and (min-width: 768px) {
  .br-768-less {
    display: none;
  }
}

/* 768px以上で改行 */
.br-768-more {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-768-more {
    display: block;
  }
}

/* 1000px以下で改行 */
@media screen and (min-width: 768px) {
  .br-1000-less {
    display: none;
  }
}

/* 1000px以上で改行 */
.br-1000-more {
  display: none;
}
@media screen and (min-width: 1000px) {
  .br-1000-more {
    display: block;
  }
}

/* 1920px以上で改行 */
.br-1920-more {
  display: none;
}
@media screen and (min-width: 1920px) {
  .br-1920-more {
    display: block;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここから ---------- */
/* PCのとき非表示 */
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

/* SPのとき非表示 */
.sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

/* SPのとき非表示（インライン要素ver） */
.sp-none-inline-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none-inline-block {
    display: inline-block;
  }
}

/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここまで ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ------------------------ */
/* 固有のフォント設定 */
/* 共通パーツで設定すると不便な場合、こちらに設定する */
/* ------------------------ */
/* ---------- フォントカラーの設定 ここから ---------- */
/* 16進数カラーコードも命名する。text-light-blue、text-dark-blueで管理すると、色の判別がしにくいため。 */
.text-yellow-ffd600 {
  color: #ffd600;
}

.text-red-9a0000 {
  color: #9a0000;
}

.text-blue-00349a {
  color: #00349a;
}

.text-blue-003292 {
  color: #9a0000;
  color: #003292;
}

.text-black-000000 {
  color: #000000;
}

/* ---------- フォントカラーの設定 ここまで ---------- */
/* ---------- フォントの大文字・小文字の設定 ここから ---------- */
/* capitalize はspanタグで囲って使用する。「:first-letter」は使用しない。 */
/* 各単語の最初のテキストを大文字に変換 */
.text-capitalize {
  text-transform: capitalize;
}

/* 全てのテキストを大文字に変換 */
.text-uppercase {
  text-transform: uppercase;
}

/* ---------- フォントの大文字・小文字の設定 ここまで ---------- */
/* ---------- フォントウェイトの設定 ここから ---------- */
.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

/* ---------- フォントウェイトの設定 ここまで ---------- */
/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここから ---------- */
.text-wrap {
  padding-left: 1em;
  text-indent: -1em;
}

/* ---------- 2行目から先頭1文字開けて表示される（※、・が先頭に記載されているときに使用） ここまで ---------- */
/* ------------ */
/* テキストの下線 */
/* ------------ */
.underline-02 {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.underline-04 {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

/* ---------- テキストの下線 ここまで ---------- */
/* ---------- テキストの背景色の設定 ここから ---------- */
.course-bg-red {
  background-color: #9a0000;
  width: -moz-fit-content;
  width: fit-content;
}

.course-bg-blue {
  background-color: #00349a;
  width: -moz-fit-content;
  width: fit-content;
}

/* ---------- テキストの背景色の設定 ここまで ---------- */
/* ---------- レタースペースの設定 ここから ---------- */
.letter-space-0_11 {
  letter-spacing: 0.11em;
}

/* ---------- レタースペースの設定 ここまで ---------- */
/* ---------- line-heightの設定 ここから ---------- */
.line-height-17 {
  line-height: 1.7;
}

/* ---------- line-heightの設定 ここまで ---------- */
/* ---------- line-heightの設定 ここから ---------- */
/* 英数字の折り返し処置 */
.text-break-word {
  overflow-wrap: break-word;
}

/* URLの折り返し処置 */
.text-break-all {
  word-break: break-all;
}

/* ---------- line-heightの設定 ここまで ---------- */
.inner {
  width: 100%;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 33.75rem;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.about-application {
  padding-bottom: 4.125rem;
}

.about-application__title {
  padding-top: 3.125rem;
}

.about-application__heading {
  margin-top: 1.875rem;
  font-size: 1.25rem;
  padding: 1.25rem 0;
  font-weight: 900;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  background-image: url(../../assets/images/common/heading-bg.jpg);
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about-application__content {
  margin-top: 1.5625rem;
  padding-inline: 3.125rem;
}

.about-application__text-wrap {
  margin-top: 0.625rem;
}

.about-application__text {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1f0800;
  line-height: 1.4375;
}

.about-application__text-small {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #000000;
  line-height: 1.6;
}

.about-application__text-small a {
  word-break: break-all;
  color: #000000;
}

.about-campaign {
  position: relative;
  padding-bottom: 21.75rem;
}

.about-campaign::before {
  content: "";
  position: absolute;
  top: 15.625rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/top/about-campaign/about-campaign-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 117.4375rem;
  height: 67.125rem;
  z-index: -1;
}

body.webp .about-campaign::before {
  background-image: url(../../assets/images/top/about-campaign/about-campaign-bg.webp);
}

.about-campaign__headding {
  position: relative;
  text-align: center;
}

.about-campaign__headding::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-image: url(../../assets/images/common/heading-bg-brown.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.about-campaign__headding-text {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  padding: 1.5625rem 0;
}

.about-campaign__headding-text::before,
.about-campaign__headding-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.5rem;
  height: 1.875rem;
}

.about-campaign__headding-text::before {
  left: -2.1875rem;
  background-image: url(../../assets/images/common/icon-drink-red.svg);
}

.about-campaign__headding-text::after {
  right: -2.1875rem;
  background-image: url(../../assets/images/common/icon-drink-white.svg);
}

.about-campaign__container {
  position: relative;
  padding-top: 1.5625rem;
}

.about-campaign__container::before,
.about-campaign__container::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.about-campaign__container::before {
  top: -9.375rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/top/about-campaign/about-campaign-deco-01.png);
  width: 48rem;
  height: 29.95625rem;
  z-index: -1;
  mix-blend-mode: overlay;
}
@media screen and (min-width: 768px) {
  .about-campaign__container::before {
    top: -4.375rem;
    width: 40.0625rem;
    height: 25rem;
  }
}

body.webp .about-campaign__container::before {
  background-image: url(../../assets/images/top/about-campaign/about-campaign-deco-01.webp);
}

.about-campaign__container::after {
  top: 10rem;
  right: 0;
  width: 25rem;
  height: 13.5rem;
  background-image: url(../../assets/images/top/about-campaign/about-campaign-deco-02.png);
  mix-blend-mode: plus-lighter;
  z-index: -1;
  animation: sparkleAndFloat 10s infinite ease-in-out;
}

/* 火の粉のアニメーション */
@keyframes sparkleAndFloat {
  0% {
    filter: brightness(1);
    transform: translateY(0);
  }
  10% {
    filter: brightness(1.8);
    transform: translateY(-2px);
  }
  20% {
    filter: brightness(0.7);
    transform: translateY(-4px);
  }
  30% {
    filter: brightness(1.9);
    transform: translateY(-6px);
  }
  40% {
    filter: brightness(0.6);
    transform: translateY(-8px);
  }
  50% {
    filter: brightness(2);
    transform: translateY(-10px);
  }
  60% {
    filter: brightness(0.5);
    transform: translateY(-8px);
  }
  70% {
    filter: brightness(1.9);
    transform: translateY(-6px);
  }
  80% {
    filter: brightness(0.7);
    transform: translateY(-4px);
  }
  90% {
    filter: brightness(1.8);
    transform: translateY(-2px);
  }
  100% {
    filter: brightness(1);
    transform: translateY(0);
  }
}
.about-campaign__apply-text {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #00742f;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
}

.about-campaign__apply-text::before,
.about-campaign__apply-text::after {
  content: "";
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  background-color: #00742f;
  width: 1rem;
  height: 1px;
}

.about-campaign__apply-text::before {
  left: -1.25rem;
}

.about-campaign__apply-text::after {
  right: -1.25rem;
}

.about-campaign__applicable-products-btn {
  margin-top: 0.9375rem;
  text-align: center;
}

.about-campaign__line-btn {
  margin-top: 1.5625rem;
  text-align: center;
}

.about-campaign__campaign-title {
  max-width: 18.75rem;
  width: 100%;
  margin: 7.5rem auto 0;
}

.about-campaign__text-wrapper {
  margin-top: 1.75rem;
}

.about-campaign__text {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #9A0000;
  line-height: 1.45;
  text-align: center;
}

.about-campaign__text:nth-child(n+2) {
  margin-top: 1.875rem;
}

.about-campaign__movie {
  position: relative;
  width: 100%;
  max-width: 24.8125rem;
  margin: 3.125rem auto 0;
}

.about-campaign__movie a {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}

.about-campaign__movie a:hover {
  opacity: 1;
  filter: brightness(1.3);
}

.about-campaign__movie-thumbnail {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-campaign__rathalos {
  position: absolute;
  bottom: 0.625rem;
  left: calc(50% - 15.625rem);
  width: 36.4375rem;
  z-index: 0;
}

/* YouTubeモーダル発火時、body要素をスクロールさせない ここから -------------------------- */
body.is-scroll {
  overflow: hidden;
}

/* YouTubeモーダル発火時、body要素をスクロールさせない ここまで -------------------------- */
/* ローダー ここから -------------------------- */
.loading {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: #ffffff;
  display: block;
}

/* ローダー ここまで -------------------------- */
/* MVテキストのマスクエフェクト ここから -------------------------- */
.js-mv__text {
  opacity: 1;
  -webkit-clip-path: inset(0% 100% 0% 0%);
          clip-path: inset(0% 100% 0% 0%); /* 左から右へ */
  transition-property: opacity, -webkit-clip-path;
  transition-property: clip-path, opacity;
  transition-property: clip-path, opacity, -webkit-clip-path;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

.js-mv__text.is-open {
  opacity: 1;
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}

/* MVテキストのマスクエフェクト ここまで -------------------------- */
/* MVのリオレウスの非表示（表示開始時のちらつき防止） ここから -------------------------- */
.mv__rathalos {
  opacity: 0;
}

/* MVのリオレウスの非表示（表示開始時のちらつき防止） ここまで -------------------------- */
.apologize {
  background-color: #ffffff;
  padding: 1.875rem 3.125rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.apologize__heading,
.apologize__text {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ca0f0f;
  line-height: 1.4375;
}

.apologize__text {
  margin-top: 0.5rem;
}

.applicable-products {
  padding-bottom: 2.5rem;
}

.applicable-products__inner {
  padding-inline: 3.125rem;
}

.applicable-products__title {
  padding-top: 3.125rem;
}

.applicable-products__media-items {
  width: min(100%, 23.75rem);
  margin-top: 1.5625rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.applicable-products__media-item {
  width: 100%;
}

.applicable-products__media-item-wrapper {
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 0.3125rem;
  border: 2px solid #a58f56;
  margin: auto;
  aspect-ratio: 1/1;
}

.applicable-products__media-item-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../../assets/images/applicable-products/product-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.applicable-products__media-item img {
  width: 3.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.applicable-products__media-text {
  margin-top: 0.4375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1f0800;
  line-height: 1.2;
  text-align: center;
}

.applicable-products__text {
  margin-top: 2.625rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1f0800;
  line-height: 1.4;
}

.apply {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  position: relative;
  overflow: hidden;
}

.apply__inner-1st {
  max-width: 31.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 2.8125rem;
}

.apply__inner-2nd {
  max-width: 35rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 1.25rem;
}

.apply__method-wrapper.apply__method-wrapper--2nd {
  margin-top: 2.8125rem;
  border: 1px solid #9a0000;
  padding: 1.875rem;
}

.apply__method__2nd-heading {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #9a0000;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.apply__method-items.apply__method-items--1st {
  margin-top: 2.1875rem;
}

.apply__method-items.apply__method-items--2nd {
  margin-top: 1.25rem;
}

.apply__method-item + .apply__method-item {
  margin-top: 1.25rem;
}

.apply__method-item:not(:last-child)::after {
  content: "";
  display: block;
  background-image: url("../../assets/images/common/deco/deco-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24.75rem;
  height: 0.75rem;
  opacity: 0.65;
  mix-blend-mode: overlay;
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.apply__method-block {
  display: flex;
  gap: 1.875rem;
}

.apply__method-step {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #9a0000;
  line-height: 1;
  letter-spacing: -0.03em;
}

.apply__method-step span {
  display: block;
  font-size: 4rem;
  margin-top: -0.75rem;
}

.apply__method-step-2nd {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #9a0000;
  line-height: 1;
  letter-spacing: -0.03em;
}

.apply__method-step-2nd span {
  font-size: 2rem;
}

.apply__method-text {
  padding-top: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1f0800;
  line-height: 1.4285714286;
}

.apply__method-text.text-red-9a0000 {
  color: #9a0000;
}

.apply__method-text + .apply__method-text {
  padding-top: initial;
}

.apply__method-image02 {
  max-width: 14.1875rem;
  width: 100%;
  margin-top: 1.25rem;
}

.apply__method-image01 {
  margin-top: 1.25rem;
  width: min(100%, 18.75rem);
}

.apply__method-image03 {
  margin-top: -0.625rem;
  width: min(100%, 18.5625rem);
}

.apply__applicable-products-btn {
  margin-top: 1.25rem;
}

.apply__applicable-products-banner {
  max-width: 15.5625rem;
  width: 100%;
  margin-top: 1.375rem;
}

.apply__guide-list {
  width: min(100%, 25rem);
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
}

.apply__guide-item {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #9a0000;
  line-height: 1.4285714286;
}

.apply__guide-link-box {
  margin-top: 1.875rem;
}

.apply__about-application-btn {
  margin-top: 0.75rem;
  text-align: center;
}

.apply__faq-btn {
  margin-top: 1.25rem;
  text-align: center;
}

.bg-monster {
  display: none;
}
@media screen and (min-width: 768px) {
  .bg-monster {
    display: block;
    position: absolute;
    z-index: -8;
    mix-blend-mode: overlay;
  }
}

@media screen and (min-width: 768px) {
  .bg-monster-rathalos-01 {
    top: -6.7708333333vw;
    width: 119.7916666667vw;
    left: calc(50% + 1.875rem);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .bg-monster-rathalos-01 {
    top: -6.7708333333vw;
  }
}
@media screen and (min-width: 1920px) {
  .bg-monster-rathalos-01 {
    top: -8.125rem;
    width: 143.75rem;
  }
}

@media screen and (min-width: 768px) {
  .bg-monster-diablos {
    top: 78.125vw;
    width: 109.375vw;
    left: calc(50% + 15.625rem);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .bg-monster-diablos {
    top: 56.9791666667vw;
  }
}
@media screen and (min-width: 1920px) {
  .bg-monster-diablos {
    top: 68.375rem;
    width: 131.25rem;
  }
}

@media screen and (min-width: 768px) {
  .bg-monster-barioth {
    top: 156.25vw;
    width: 103.3854166667vw;
    left: calc(50% - 8.125rem);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .bg-monster-barioth {
    top: 109.0104166667vw;
  }
}
@media screen and (min-width: 1920px) {
  .bg-monster-barioth {
    top: 130.8125rem;
    width: 124.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .bg-monster-zinogre {
    top: 234.375vw;
    width: 101.3020833333vw;
    left: calc(50% + 6.5625rem);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .bg-monster-zinogre {
    top: 186.5104166667vw;
  }
}
@media screen and (min-width: 1920px) {
  .bg-monster-zinogre {
    top: 223.8125rem;
    width: 121.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .bg-monster-kushala-daora {
    top: 312.5vw;
    width: 106.5625vw;
    left: calc(50% - 8.9375rem);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .bg-monster-kushala-daora {
    top: 264.1145833333vw;
  }
}
@media screen and (min-width: 1920px) {
  .bg-monster-kushala-daora {
    top: 316.9375rem;
    width: 127.875rem;
  }
}

@media screen and (min-width: 768px) {
  .bg-monster-rathalos-02 {
    top: 390.625vw;
    width: 119.7916666667vw;
    left: calc(50% + 1.875rem);
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .bg-monster-rathalos-02 {
    top: 350.2083333333vw;
  }
}
@media screen and (min-width: 1920px) {
  .bg-monster-rathalos-02 {
    top: 420.25rem;
    width: 143.75rem;
  }
}

.bg-parallax {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.bg-parallax__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -10;
}

.bg-parallax__img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
}
.bg-parallax__img::before {
  background-image: url(../../assets/images/common/bg-parallax.png);
}

body.webp .bg-parallax__img::before {
  background-image: url(../../assets/images/common/bg-parallax.webp);
}

/* ボタン共通 */
.btn {
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
}

.btn:hover {
  filter: brightness(1.2);
  opacity: 1;
}

/* LINE ボタンの色 */
.btn-line {
  border: 2px solid #ffffff;
  background: linear-gradient(90deg, #00cc54 0%, #009b3f 100%);
}

/* LINE 四角ボタン */
.btn-line.btn-line-square {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.3;
  width: 100%;
  padding: 0.5625rem 0 0.5625rem 1.25rem;
}
@media screen and (min-width: 1440px) {
  .btn-line.btn-line-square {
    font-size: 1.25rem;
    max-width: 27.375rem;
    padding: 0.875rem 0 0.875rem 1.625rem;
  }
}

.btn-line.btn-line-square::before,
.btn-line.btn-line-square::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.75rem;
  height: 2.5rem;
}

.btn-line.btn-line-square::before {
  right: calc(50% + 5.125rem);
  background-image: url(../../assets/images/common/sns-icon-line-white.svg);
  width: 2.75rem;
  height: 2.5rem;
}
@media screen and (min-width: 1440px) {
  .btn-line.btn-line-square::before {
    right: calc(50% + 6.25rem);
  }
}

.btn-line.btn-line-square::after {
  left: calc(50% + 6.5625rem);
  background-image: url(../../assets/images/common/icon-triangle-white-right.svg);
  width: 1.3125rem;
  height: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .btn-line.btn-line-square::after {
    left: calc(50% + 7.8125rem);
  }
}

/* LINE 角丸ボタン */
.btn-line.btn-line-circle {
  position: relative;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.3;
  border-radius: 100vh;
}

/* LINE｜イントロダクション（MV下）セクション */
.btn-line.btn-line-circle.btn-line-circle-type-01 {
  font-size: 0.9375rem;
  max-width: 21.9375rem;
  width: 100%;
  padding: 0.625rem 0 0.625rem 0.9375rem;
}

/* LINE｜応募方法セクション */
.btn-line.btn-line-circle.btn-line-circle-type-02 {
  font-size: 0.8125rem;
  max-width: 14.8125rem;
  width: 100%;
  padding: 0.625rem 0;
}

/* LINE｜LINE友だち追加セクション */
.btn-line.btn-line-circle.btn-line-circle-type-03 {
  font-size: 1rem;
  max-width: 19rem;
  width: 100%;
  padding: 0.625rem 0;
}

.btn-line.btn-line-circle::before,
.btn-line.btn-line-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-line.btn-line-circle.btn-line-circle-type-01::before {
  right: calc(50% + 5.1875rem);
  background-image: url(../../assets/images/common/sns-icon-line-white.svg);
  width: 1.75rem;
  height: 1.625rem;
}

.btn-line.btn-line-circle.btn-line-circle-type-01::after {
  left: calc(50% + 5.9375rem);
  background-image: url(../../assets/images/common/icon-triangle-white-right.svg);
  width: 1rem;
  height: 1.125rem;
}

.btn-line.btn-line-circle.btn-line-circle-type-02::before {
  right: calc(50% + 4.1875rem);
  background-image: url(../../assets/images/common/sns-icon-line-white.svg);
  width: 1.75rem;
  height: 1.625rem;
}

.btn-line.btn-line-circle.btn-line-circle-type-02::after {
  left: calc(50% + 4.375rem);
  background-image: url(../../assets/images/common/icon-triangle-white-right.svg);
  width: 1rem;
  height: 1.125rem;
}

.btn-line.btn-line-circle.btn-line-circle-type-03::before {
  right: calc(50% + 5.1875rem);
  background-image: url(../../assets/images/common/sns-icon-line-white.svg);
  width: 1.75rem;
  height: 1.625rem;
}

.btn-line.btn-line-circle.btn-line-circle-type-03::after {
  left: calc(50% + 5.9375rem);
  background-image: url(../../assets/images/common/icon-triangle-white-right.svg);
  width: 1rem;
  height: 1.125rem;
}

/* iPhoneやiPadに適用されるフォントファミリー */
@supports (-webkit-touch-callout: none) {
  @media only screen and (min-width: 375px) and (-webkit-min-device-pixel-ratio: 2) {
    .btn-line.btn-line-square,
    .btn-line.btn-line-circle {
      font-family: "Zen Kaku Gothic Antique", sans-serif;
      font-weight: 700;
    }
  }
}
/* キャンペーン対象商品 */
.btn-white {
  position: relative;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #4f4200;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-grid;
  place-items: center;
}

.btn-white-type-01,
.btn-white-type-02 {
  font-size: 1rem;
  padding-left: 0.9375rem;
  background-image: url(../../assets/images/common/btn-bg-white-01.png);
  width: 16.96875rem;
  height: 3.21875rem;
}

.btn-white-type-03 {
  font-size: 1rem;
  padding-left: 0.9375rem;
  background-image: url(../../assets/images/common/btn-bg-white-02.png);
  width: 21.875rem;
  height: 3.25rem;
}

.btn-white-type-01::before,
.btn-white-type-02::before,
.btn-white-type-03::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-triangle-black-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.125rem;
  height: 0.95625rem;
}

.btn-white-type-01::before {
  right: 1.5625rem;
}

.btn-white-type-02::before {
  right: 1.5625rem;
}

.btn-white-type-03::before {
  right: 2.1875rem;
}

.btn-white-type-01-text,
.btn-white-type-02-text,
.btn-white-type-03-text {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #4f4200;
}

.btn-white-type-01-text {
  padding-right: 1.875rem;
}

.btn-white-type-02-text {
  padding-right: 1.875rem;
}

.btn-white-type-03-text {
  padding-right: 1.875rem;
}

/* 応募規約、よくあるご質問 */
.btn-black {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #4f4200;
  background-image: url(../../assets/images/common/btn-bg-black.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17rem;
  height: 3.25rem;
  display: inline-grid;
  place-items: center;
}

.btn-black::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-triangle-yellow-rught.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.0375rem;
  height: 0.9375rem;
}

.btn-black-text {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #e5b842;
  letter-spacing: -0.03em;
  padding-left: 0.375rem;
}

.content-area-bg {
  position: relative;
  overflow: hidden;
}

.content-area-bg::before {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/common/content-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -4;
}

body.webp .content-area-bg::before {
  background-image: url(../../assets/images/common/content-bg.webp);
}

.content-area-inner {
  max-width: 31.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.content-area {
  position: relative;
  width: 100%;
  padding: 0 0.625rem;
  box-shadow: 0px 0px 1.06875rem 0px #000000;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .content-area {
    max-width: 32.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .content-area {
    margin-left: 49.4791666667vw;
    margin-right: 23.4375vw;
  }
}

.content-area::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #9a0000;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.course__title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  line-height: 1.45;
  padding: 0.25rem 1rem;
}

.course__wrap:not(:first-child) {
  margin-top: 1.875rem;
}

.course__text {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1f0800;
  line-height: 1.4375;
}

.course__text-detail {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1f0800;
  line-height: 1.5;
}

.deco-line {
  position: relative;
  left: 2.0625rem;
  max-width: 10rem;
  width: 100%;
  height: 1px;
  background-color: #9e9b8a;
  border: none; /* hrタグの初期値解除*/
  overflow: visible; /* hrタグの初期値解除*/
  margin: 0; /* hrタグの初期値解除*/
}
@media screen and (min-width: 1440px) {
  .deco-line {
    left: 0;
    max-width: 12.6875rem;
  }
}

.deco-line::before,
.deco-line::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background-color: #9e9b8a;
}

.deco-line::before {
  left: -3px;
}

.deco-line::after {
  right: -3px;
}

.faq {
  padding-bottom: 4.5rem;
}

.faq__title {
  padding-top: 3.125rem;
}

.faq__heading {
  margin-top: 1.6875rem;
  font-size: 1.25rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #1f0800;
  line-height: 1.45;
  letter-spacing: -0.03em;
  text-align: center;
}

.faq__content {
  margin-top: 0.9375rem;
  padding-inline: 3.125rem;
}

.faq__text {
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #000000;
  line-height: 1.4666666667;
}

.faq__list {
  margin-top: 1.25rem;
}

.footer {
  background-color: #000000;
  padding-top: 3.4375rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 0.625rem;
  }
}

.footer__inner {
  padding-inline: 2.8125rem;
}

.footer__title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  text-align: center;
}

.footer__lead {
  margin-top: 1.5625rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  text-align: center;
}

.footer__campaign-box {
  margin-top: 1.375rem;
}

.footer__campaign-text {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
}

.footer__campaign-text a {
  color: #ffffff;
}

.footer__campaign-text + .footer__campaign-text {
  margin-top: 0.4375rem;
}

.footer__text-box {
  margin-top: 1.6875rem;
}

.footer__text {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  line-height: 1.4375;
}

.footer__sns-btn {
  margin-top: 2.75rem;
}

.footer__dydo-btn {
  margin-top: 3.125rem;
  text-align: center;
}

.footer__policy-box {
  margin-top: 1.875rem;
  text-align: center;
}

.footer__policy {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
}

.footer__policy a {
  display: inline-block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #ffffff;
}

.footer__policy a::after {
  content: "";
  display: inline-block;
  margin-left: 0.3125rem;
  background-image: url("../../assets/images/common/icon-link-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.6875rem;
  height: 0.6875rem;
}

.footer__policy + .footer__policy {
  margin-top: 0.9375rem;
}

.footer__copyright {
  display: block;
  text-align: center;
  margin-top: 3.6875rem;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  line-height: 1.4166666667;
}

.hamburger {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 100;
  cursor: pointer;
  background-image: url(../../assets/images/common/hamburger-open.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s;
}

.hamburger.is-active {
  background-image: url(../../assets/images/common/hamburger-close.svg);
}

.hamburger:hover {
  filter: brightness(1.3);
}

.header {
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .header__inner {
    position: relative;
  }
}

@media screen and (min-width: 1440px) {
  .header__drawer {
    display: none;
  }
}

.header__pc-nav {
  display: none;
}
@media screen and (min-width: 1440px) {
  .header__pc-nav {
    display: block;
  }
}

.header__logo {
  display: none;
}
@media screen and (min-width: 1440px) {
  .header__logo {
    display: block;
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 7.6875rem;
  }
}

.header__logo a {
  display: block;
  width: 100%;
}

.header__logo a:hover {
  filter: brightness(1.2);
}

.header__sp-nav-btn {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__sp-nav-btn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .header__pc-nav-qr-code {
    max-width: 12.5rem;
    width: 100%;
    margin: 1.25rem auto 0;
  }
}

@media screen and (min-width: 768px) {
  .header__pc-nav-qr-code-text {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    color: #009b3f;
    text-shadow: 0.0625rem 0.0625rem 0 #ffffff, -0.0625rem -0.0625rem 0 #ffffff, -0.0625rem 0.0625rem 0 #ffffff, 0.0625rem -0.0625rem 0 #ffffff, 0px 0.0625rem 0 #ffffff, 0.0625rem 0px 0 #ffffff, 0px -0.0625rem 0 #ffffff, -0.0625rem 0px 0 #ffffff, 0.125rem 0.125rem 0 #ffffff, -0.125rem -0.125rem 0 #ffffff, -0.125rem 0.125rem 0 #ffffff, 0.125rem -0.125rem 0 #ffffff, 0px 0.125rem 0 #ffffff, 0.125rem 0px 0 #ffffff, 0px -0.125rem 0 #ffffff, -0.125rem 0px 0 #ffffff, 0.0625rem 0.125rem 0 #ffffff, -0.0625rem -0.125rem 0 #ffffff, -0.0625rem 0.125rem 0 #ffffff, 0.0625rem -0.125rem 0 #ffffff, 0.125rem 0.0625rem 0 #ffffff, -0.125rem -0.0625rem 0 #ffffff, -0.125rem 0.0625rem 0 #ffffff, 0.125rem -0.0625rem 0 #ffffff;
    margin-top: 1.25rem;
    text-align: center;
  }
}

.line-friends {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.line-friends::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/top/line-friends/line-friends-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -4;
}

body.webp .line-friends::before {
  background-image: url(../../assets/images/top/line-friends/line-friends-bg.webp);
}

.line-friends__bg {
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
  position: relative;
  overflow: hidden;
}

.line-friends__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 49.375rem;
  height: 49.375rem;
  border-radius: 100vh;
  opacity: 0.4;
  background: radial-gradient(50% 50% at 50% 50%, #13a34e 0%, rgba(19, 163, 78, 0) 100%);
  mix-blend-mode: screen;
  filter: blur(30px);
  z-index: -3;
}

.line-friends__inner {
  padding-inline: 3.125rem;
}

.line-friends__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .line-friends__image {
    display: block;
    margin-top: 1.875rem;
    margin-inline: auto;
    width: min(100%, 18.75rem);
    height: auto;
  }
}

.line-friends__list {
  margin-top: 1.375rem;
}

.line-friends__item {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  line-height: 1.4375;
}

.line-friends__dydo-line {
  margin-top: 1.875rem;
  text-align: center;
}

.mv {
  position: relative;
  overflow: hidden;
}

.mv__bg {
  width: 100%;
}

.mv__logo {
  position: absolute;
  top: 2.8846153846vw;
  left: 2.8846153846vw;
  width: 9.8076923077vw;
}
@media screen and (min-width: 768px) {
  .mv__logo {
    width: 3.1875rem;
    top: 0.9375rem;
    left: 0.9375rem;
  }
}

.mv__rathalos {
  position: absolute;
  top: -32.1153846154vw;
  right: -53.0769230769vw;
  width: 94.6153846154vw;
}
@media screen and (min-width: 768px) {
  .mv__rathalos {
    top: -10.4375rem;
    right: -17.25rem;
    width: 30.75rem;
  }
}

.mv__campaign-title {
  position: absolute;
  top: 8.8461538462vw;
  left: 1.5384615385vw;
  width: 67.6923076923vw;
}
@media screen and (min-width: 768px) {
  .mv__campaign-title {
    top: 2.875rem;
    left: 0.5rem;
    width: 22rem;
  }
}

.mv__date {
  position: absolute;
  top: 36.9230769231vw;
  left: 3.8461538462vw;
  width: 62.5vw;
}
@media screen and (min-width: 768px) {
  .mv__date {
    top: 12rem;
    left: 1.25rem;
    width: 20.3125rem;
  }
}

.nav__campaign-title {
  max-width: 8.75rem;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 1440px) {
  .nav__campaign-title {
    max-width: 33.875rem;
  }
}

.nav__campaign-date {
  display: none;
}
@media screen and (min-width: 1440px) {
  .nav__campaign-date {
    display: block;
    max-width: 25.625rem;
    width: 100%;
    margin: 0.3125rem auto 0;
  }
}

.nav__items {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1440px) {
  .nav__items {
    width: -moz-max-content;
    width: max-content;
    margin: 1.0625rem auto 0;
  }
}

.nav__item a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.75rem 0 0.75rem 3.75rem;
}
@media screen and (min-width: 1440px) {
  .nav__item a {
    padding: 0.8125rem 0 0.8125rem 2.875rem;
  }
}

.nav__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.0625rem;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/icon-triangle-white-bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.0625rem;
  height: 0.9375rem;
}
@media screen and (min-width: 1440px) {
  .nav__item a::before {
    background-image: url(../../assets/images/common/icon-triangle-black-bottom.svg);
    width: 1.6875rem;
    height: 1.5625rem;
    top: 48%;
    left: 0;
  }
}

.nav__item-en {
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Reggae One", serif;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .nav__item-en {
    font-size: 1rem;
    color: #1f0800;
  }
}

.nav__item-jp {
  font-size: 1.25rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 1440px) {
  .nav__item-jp {
    font-size: 1.25rem;
    color: #1f0800;
  }
}

.nav__item a:hover {
  opacity: 0.6;
}

.pagetop-btn {
  position: fixed;
  width: 3.125rem;
  bottom: 6.25rem;
  right: 0.625rem;
  cursor: pointer;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .pagetop-btn {
    bottom: 1.875rem;
    right: 1.875rem;
  }
}

.pagetop-btn a {
  display: block;
  transition: all 0.3s;
}

.pagetop-btn a:hover {
  opacity: 0.6;
}

.pagetop-btn a img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1440px) {
  .pc-nav {
    position: absolute;
    right: calc(50% + 6.25rem);
    max-width: 33.875rem;
    width: 100%;
    height: 100dvh;
    overflow-y: scroll;
    padding-top: 6.125rem;
    padding-bottom: 3.125rem;
  }
}
@media screen and (min-width: 1920px) {
  .pc-nav {
    right: calc(50% + 13.125rem);
  }
}

.pc-nav {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

.pc-nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}

@media screen and (min-width: 1440px) {
  .pc-nav__items {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
  }
}

@media screen and (min-width: 1440px) {
  .pc-nav__item {
    display: grid;
    place-items: center;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .pc-nav__item a {
    display: block;
    width: 100%;
    transition: all 0.3s;
  }
}

.pc-nav__item a:hover {
  opacity: 1;
  filter: brightness(1.3);
  transform: scale(1.05);
}

.prize {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 12.875rem;
  width: 100%;
}

.prize::before {
  content: "";
  position: absolute;
  top: -6.25rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/top/prize/prize-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 101%;
  height: 102%;
  z-index: -2;
}

body.webp .prize::before {
  background-image: url(../../assets/images/top/prize/prize-bg.webp);
}

.prize__inner {
  max-width: 25.375rem;
  width: 100%;
  margin: auto;
}

.prize__course {
  position: relative;
  margin-top: 3rem;
  padding-bottom: 1.875rem;
}

.prize__course.prize__course-b {
  margin-top: 2.1875rem;
}

.prize__course::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.prize__course-a {
  border: 3px solid #9a0000;
}

.prize__course-b {
  border: 3px solid #00349a;
}

.prize__course-heading {
  position: relative;
}

.prize__course-heading-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.prize__course-heading-left-top {
  font-size: 2.25rem;
  font-weight: 400;
  font-family: "Reggae One", serif;
}

.prize__course-heading-left-botom {
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: "Reggae One", serif;
  letter-spacing: -0.03em;
}

.prize__course-heading-right {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Reggae One", serif;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-align: center;
  padding: 0.90625rem 0;
}

.prize__course-text.prize__course-text-a {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Reggae One", serif;
  color: #9a0000;
  text-align: center;
  margin-top: 1.5625rem;
}

.prize__course-text-large {
  font-size: 2rem;
}

.prize__course-text-img {
  position: relative;
  width: 100%;
  margin: 0.3125rem auto 0;
}

.prize__course-text-img.prize__course-text-img-a {
  max-width: 13.75rem;
}

.prize__course-text-img.prize__course-text-img-b {
  max-width: 19.9375rem;
}

.prize__course-text-img-a::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../../assets/images/top/prize/prize-course-text-img-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 25rem;
  height: 2.875rem;
  z-index: -1;
}

.prize__course-text-01 {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Reggae One", serif;
  color: #1f0800;
  text-align: center;
}

.prize__course-text-01-a {
  margin-top: 0.9375rem;
}

.prize__course-text-01-b {
  margin-top: 0.4375rem;
}

.prize__course-text-01-large {
  font-size: 2.5rem;
}

.prize__course-items {
  margin-top: 1.25rem;
}

.prize__course-item:nth-child(n+2) {
  margin-top: 1.875rem;
}

.prize__course-item-title {
  margin-top: 1.5625rem;
}

.prize__course-item-title-number {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Reggae One", serif;
  color: #9a0000;
  text-align: center;
}

.prize__course-item-title-img {
  max-width: 19.375rem;
  width: 100%;
  margin: 0.3125rem auto 0;
}

.prize__course-item-img {
  max-width: 17rem;
  width: 100%;
  margin: 0.5rem auto 0;
}

.prize__course-item-slide-img {
  max-width: 17.40625rem;
  width: 100%;
  margin: auto;
}

.prize__course-item-slide-img img {
  width: 100%;
}

.prize__course-item-period-01 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffff;
  max-width: 6.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100vh;
  padding: 0.3125rem;
  text-align: center;
}

.prize__course-item-period-01-a {
  margin-top: 1.5625rem;
}

.prize__course-item-period-01-b {
  margin-top: 1.875rem;
}

.prize__course-item-period-02 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 0.625rem;
  text-align: center;
}

.prize__course-notes {
  margin: 1.125rem auto 0;
  width: -moz-max-content;
  width: max-content;
}

.prize__course-notes-text {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #000000;
  line-height: 1.4285714286;
}

.prize__swiper {
  margin-top: 1.25rem;
}

.prize__airou-01 {
  position: absolute;
  bottom: 0.3125rem;
  right: calc(50% + 1.4375rem);
  width: 12.5rem;
}

.prize__airou-02 {
  position: absolute;
  bottom: -0.9375rem;
  right: calc(50% - 14.125rem);
  width: 16.5rem;
}

/* 景品応募期間終了アイコン表示 */
.prize__campaign-end {
  position: relative;
}

.prize__campaign-end-a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  width: 17rem;
  height: 17rem;
  opacity: 0.5;
  z-index: 1;
}

.prize__campaign-end.prize__campaign-end-a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background-image: url(../../assets/images/top/prize/prize-campaign-end-a.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19.125rem;
  height: 9.6875rem;
  z-index: 1;
}

.prize__campaign-end-b::before {
  content: "";
  position: absolute;
  bottom: 1.0625rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  width: 15rem;
  height: 10.3125rem;
  opacity: 0.5;
  z-index: 1;
}

.prize__campaign-end.prize__campaign-end-b::after {
  content: "";
  position: absolute;
  bottom: 1.4375rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../../assets/images/top/prize/prize-campaign-end-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15.1875rem;
  height: 9.58125rem;
  z-index: 1;
}

.section-title {
  max-width: 25.3125rem;
  width: 100%;
  margin: auto;
}

.sp-nav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 15.8125rem;
  height: 100dvh;
  overflow-y: scroll;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  padding: 3.125rem 0;
  border-left: 3px solid #a58f56;
  border-bottom: 3px solid #a58f56;
}

.sp-nav.is-active {
  display: block;
}

.sp-nav__wrapper {
  position: relative;
  display: block;
  padding: 0 2.0625rem;
}

.sns-btn__link {
  display: block;
  transition: all 0.3s;
}

.sns-btn__link:hover {
  opacity: 1;
  filter: brightness(1.3);
}

.sns-btn__share-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.sns-btn__share-text {
  width: min(100%, 11.875rem);
  margin-inline: auto;
}

.sns-btn__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1875rem;
}

.sns-btn__item {
  display: block;
  width: 3.125rem;
}

.sns-btn__item {
  width: 3.125rem;
}

.sns-btn__item:nth-child(n+2) {
  margin-left: 1.25rem;
}

/* 前へ次への矢印カスタマイズ 共通部分------------- */
.swiper-button-prev,
.swiper-button-next {
  transition: filter 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  filter: brightness(1.2);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../../assets/images/top/prize/slide-arrow-left.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../../assets/images/top/prize/slide-arrow-right.svg);
}

/* 前へ次への矢印カスタマイズ 共通部分 ここまで------------- */
/* 前へ次への矢印カスタマイズ 誘導バナースライド------------- */
.swiper-button-prev.swiper-button-prev-prize,
.swiper-button-next.swiper-button-next-prize {
  top: 62.5%;
  width: 3.75rem;
  height: 3.75rem;
}

.swiper-button-prev.swiper-button-prev-prize {
  left: 3rem;
}

.swiper-button-next.swiper-button-next-prize {
  right: 3rem;
}

.mt10 {
  margin-top: 0.625rem;
}

.mt15 {
  margin-top: 0.9375rem;
}

.mt20 {
  margin-top: 1.25rem;
}

.mt25 {
  margin-top: 1.5625rem;
}

.mt30 {
  margin-top: 1.875rem;
}/*# sourceMappingURL=style.css.map */