@charset "UTF-8";
/* =========================
Sass helpers（このファイル単体で動くように）
========================= */
/* =========================
Reset
========================= */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, blockquote, pre) {
  margin: 0;
}

:where(ul, ol) {
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

ul,
ol {
  margin: 0;
}

main {
  display: block;
}

figure {
  margin: 0;
}

/* =========================
Base
========================= */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray-darken1: #353535;
  --color-gray-darken2: #444;
  --color-gray-light: #aaaaaa;
  --color-red: #e00000;
  --color-red-darken2: #a50101;
  --color-blue: #2258af;
  --color-blue-darken1: #002f7a;
  --font-family: "Zen Old Mincho", serif;
  --font-english: "Cormorant Garamond", serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background-color: var(--color-black);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100svh;
  inset: 0;
  background-color: var(--color-black);
  z-index: 3000;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1s ease, visibility 1s ease;
}

body.is-loaded .loading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .loading {
    transition: none;
  }
}
.contents {
  background-image: url(../img/mv_left.png), url(../img/mv_right.png);
  background-attachment: fixed;
  background-position: center left, center right;
  background-repeat: no-repeat, no-repeat;
  background-size: 42% auto, 42% auto;
}

/* =========================
utility（表示切替）
========================= */
.sp-only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.tab-only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media print, screen and (min-width: 1024px) {
  .tab-only {
    display: none;
  }
}

.tab-pc-only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab-pc-only {
    display: block;
  }
}

.pc-only {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}

/* =========================
Common
========================= */
.inner {
  padding-left: 16px;
  padding-right: 16px;
}

.heading {
  color: var(--color-white);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 2%;
  text-align: center;
  text-shadow: 1.42px 1.42px rgba(165, 1, 1, 0.5019607843);
}
@media print, screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
  }
}

.image-scroll {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.image-scroll__content {
  display: flex;
  flex-shrink: 0;
  animation: scroll 24s linear infinite;
}
.image-scroll__item {
  position: relative;
  flex: 0 0 auto;
}
.image-scroll__item img {
  display: block;
  width: auto;
  height: 150px;
  position: relative;
}
.image-scroll__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-red-darken2);
  opacity: 0.5;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 2セット分のうち「1セット分」動かす */
    transform: translateX(-100%);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal__content {
  position: relative;
  width: 95%;
  max-width: 375px;
  max-height: 90svh;
  overflow: auto;
}
@media print, screen and (min-width: 768px) {
  .modal__content {
    max-width: 567px;
  }
}
.--wide .modal__content {
  max-width: 800px;
  overflow: visible;
}
.--introduction .modal__content {
  padding: 40px 32px;
  background-image: url(../img/bg_noise.png);
  background-repeat: repeat;
  background-size: 47px auto;
  background-color: var(--color-black);
}
.--guide .modal__content {
  padding: 40px 32px;
  background-image: url(../img/bg_noise.png);
  background-repeat: repeat;
  background-size: 47px auto;
  background-color: var(--color-black);
}
@media print, screen and (min-width: 768px) {
  .--guide .modal__content {
    background-image: none;
    background-color: transparent;
  }
}
.--guide .modal__content {
  max-width: 385px;
}
@media print, screen and (min-width: 768px) {
  .--guide .modal__content {
    max-width: 1000px;
  }
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  background-image: url(../img/icon_close.png);
  background-size: contain;
  background-position: center;
}
@media print, screen and (min-width: 768px) {
  .modal__close {
    width: 32px;
    height: 32px;
  }
}
.--wide .modal__close {
  top: -35px;
  right: 6px;
}
@media print, screen and (min-width: 768px) {
  .--wide .modal__close {
    top: -50px;
    right: 0;
    width: 32px;
    height: 32px;
  }
}
.--about .modal__close {
  top: -30px;
  right: 6px;
}
.--introduction .modal__close, .--guide .modal__close {
  top: 16px;
  right: 16px;
}
.--introduction .modal__body {
  margin-top: 30px;
}
.--introduction .modal__foot {
  margin-top: 30px;
}
.modal__heading {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .modal__heading {
    font-size: 28px;
  }
}
.modal__close-button {
  width: 100%;
  max-width: 18.875rem;
  margin-inline: auto;
  padding: 0.875rem 0.625rem;
  cursor: pointer;
  color: var(--color-black);
  font-family: var(--font-family);
  border: 2px solid currentColor;
  font-size: 1rem;
  font-weight: 600;
}
.--introduction .modal__close-button, .--guide .modal__close-button {
  max-width: 131px;
}
.--introduction .modal__close-button img, .--guide .modal__close-button img {
  max-width: 16px;
  margin-top: 2px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .modal-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.js-slider {
  padding-bottom: 3%;
}
@media print, screen and (min-width: 768px) {
  .js-slider {
    padding-bottom: 5%;
  }
}
.js-slider .splide__track {
  padding-top: 5%;
  padding-bottom: 20px;
}
.js-slider .splide__slide {
  margin-left: 5px;
}
.js-slider .splide__slide video {
  display: block;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .js-slider .splide__slide video {
    max-width: 95%;
  }
}
.js-slider:not(.js-slider--special) .splide__slide {
  cursor: pointer;
}
.js-slider .splide__pagination {
  bottom: 0;
}
.js-slider .splide__pagination li {
  display: flex;
  align-items: center;
}
.js-slider .splide__pagination__page {
  width: 5px;
  height: 5px;
  border-radius: 0;
  background-color: #494949;
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .js-slider .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}
.js-slider .splide__pagination__page.is-active {
  width: 6px;
  height: 6px;
  border: 1px solid var(--color-black);
  background-color: var(--color-red);
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .js-slider .splide__pagination__page.is-active {
    width: 10px;
    height: 10px;
  }
}
.js-slider:not(.js-slider--special) .splide__slide {
  transform: scale(0.86);
  transform-origin: center;
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.js-slider:not(.js-slider--special) .splide__slide.is-active {
  width: 280px;
  transform: scale(1.15);
  opacity: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.js-slider--special .splide__track {
  padding-top: 15px;
  padding-bottom: 10px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 6px 16px 8px;
  border: 1px solid var(--color-gray-darken2);
  background: var(--color-gray-darken2);
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.5019607843);
  color: var(--color-white);
  font-size: 16px;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .button {
    gap: 16px;
    padding: 10px 16px 12px;
  }
}
.button::before {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background-image: url(../img/icon_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease margin-right, 0.3s ease width;
}
@media print, screen and (min-width: 768px) {
  .button::before {
    width: 16px;
    height: 16px;
  }
}
.button:hover {
  background: #252525;
  border: 1px solid var(--color-red-darken2);
  box-shadow: none;
}
.button:hover::before {
  width: 10px;
  margin-right: -2px;
}
@media print, screen and (min-width: 768px) {
  .button:hover::before {
    width: 16px;
    margin-right: -4px;
  }
}
.button.--none::before {
  display: none;
}
.button.--under::before {
  transform: rotate(90deg);
}
.button.--right {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 22px;
  font-size: 16px;
  line-height: 1.3;
}
@media print, screen and (min-width: 768px) {
  .button.--right {
    padding: 16px 24px;
    font-size: 24px;
  }
}
.button.--right::before {
  display: none;
}
.button.--right::after {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  margin-left: auto;
  background-image: url(../img/icon_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
@media print, screen and (min-width: 768px) {
  .button.--right::after {
    width: 16px;
    height: 16px;
  }
}
.button.--right:hover {
  border: 1px solid var(--color-gray-darken2);
}

.borderline {
  margin-bottom: -1px;
}
.borderline img {
  width: 100%;
  height: auto;
}

.check-modal__content {
  width: 100%;
  max-width: 310px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .check-modal__content {
    max-width: 560px;
  }
}
.check-modal__bg {
  width: 100%;
  margin-top: 28px;
  padding: 40px 16px;
  background-color: #aaa;
}
.check-modal__body a {
  color: var(--color-red-darken2);
  text-decoration: underline;
}
.check-modal__body a:hover {
  text-decoration: none;
}
.check-modal__foot {
  margin-top: 30px;
}
.check-modal__close {
  top: -22px;
}
@media print, screen and (min-width: 768px) {
  .check-modal__close {
    top: 0px;
  }
}
.check-modal__heading {
  font-size: 18px;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .check-modal__heading {
    font-size: 28px;
  }
}
.check-modal__text {
  font-size: 16px;
}
.check-modal input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin: 0 14px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #7e7e7e;
  background-color: #9f9f9f;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='11' viewBox='0 0 21 16'%3E%3Cpolyline points='1,8 8,14.5 20,1.5' fill='none' stroke='%237E7E7E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.check-modal input[type=checkbox]:checked {
  border-color: var(--color-white);
  background-color: var(--color-red-darken2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='11' viewBox='0 0 21 16'%3E%3Cpolyline points='1,8 8,14.5 20,1.5' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.check-modal input[type=checkbox]:focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 2px;
}
.check-modal__text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}
@media print, screen and (min-width: 768px) {
  .check-modal__text {
    font-size: 24px;
  }
}
.check-modal__text span {
  font-weight: 400;
}
.check-modal__text label {
  cursor: pointer;
}
.check-modal__links {
  max-width: 224px;
  margin-inline: auto;
  font-weight: 900;
}

.js-buy-link.is-disabled {
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.js-buy-link {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.2s;
}

/* =========================
Animation 
========================= */
.js-fadein {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-fadein.is-animation {
  opacity: 1;
  transform: translateY(0);
}

.js-borderline {
  display: block;
  clip-path: polygon(0 0, 0 0, 0 20%, 0 20%, 0 40%, 0 40%, 0 60%, 0 60%, 0 80%, 0 80%, 0 100%, 0 100%);
}

.js-borderline.is-revealed {
  animation: borderlineReveal 1.2s linear forwards;
}

@keyframes borderlineReveal {
  0% {
    clip-path: polygon(0 0, 0 0, 0 20%, 0 20%, 0 40%, 0 40%, 0 60%, 0 60%, 0 80%, 0 80%, 0 100%, 0 100%);
  }
  20% {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%, 0 40%, 0 40%, 0 60%, 0 60%, 0 80%, 0 80%, 0 100%, 0 100%);
  }
  40% {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 20%, 100% 40%, 0 40%, 0 60%, 0 60%, 0 80%, 0 80%, 0 100%, 0 100%);
  }
  60% {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 20%, 100% 40%, 100% 40%, 100% 60%, 0 60%, 0 80%, 0 80%, 0 100%, 0 100%);
  }
  80% {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 20%, 100% 40%, 100% 40%, 100% 60%, 100% 60%, 100% 80%, 0 80%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 20%, 100% 40%, 100% 40%, 100% 60%, 100% 60%, 100% 80%, 100% 80%, 100% 100%, 0 100%);
  }
}
/* =========================
Header
========================= */
.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.header__container {
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding: 16px 12px;
  gap: 16px;
  max-width: 1240px;
}
.header__humberger {
  margin-left: auto;
}
.header__nav-area {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.header {
  /* JSで .is-active を navigation側につける想定 */
}
.header__nav-area.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* =========================
Hamburger
========================= */
.humberger {
  position: relative;
  width: 20px;
  height: 14px;
  z-index: 1100;
}
@media print, screen and (min-width: 1024px) {
  .humberger {
    display: none;
  }
}
.humberger__line {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: 0.25s ease;
}
.humberger__line::before, .humberger__line::after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 0.25s ease;
}
.humberger__line::before {
  top: -6px;
}
.humberger__line::after {
  top: 6px;
}
.humberger.is-active .humberger__line {
  background-color: transparent;
}
.humberger.is-active .humberger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.humberger.is-active .humberger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================
Global navigation
========================= */
.global-navigation {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-black);
  transition: background-color 0.3s ease;
}
.global-navigation__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.global-navigation__link {
  display: block;
  color: #fff;
  font-family: var(--font-english);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.5s ease;
}
.global-navigation__link:hover {
  color: var(--color-red);
}
.global-navigation__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 43px;
  max-width: 224px;
  margin-inline: auto;
}
.global-navigation__sns {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}
.global-navigation__sns li {
  max-width: 32px;
  cursor: pointer;
}

/* =========================
MV
========================= */
.mv {
  position: relative;
}
.mv__logo {
  position: absolute;
  top: 50px;
  right: 14px;
  width: 60px;
}
@media print, screen and (min-width: 768px) {
  .mv__logo {
    top: 18px;
    right: 14px;
    width: 70px;
  }
}

.js-mv {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.js-mv.is-animation {
  opacity: 1;
  transform: translateY(0);
}

/* PC用3カラム */
.pc-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media print, screen and (min-width: 768px) {
  .pc-layout {
    grid-template-columns: minmax(auto, 1fr) minmax(375px, 620px) minmax(auto, 1fr);
  }
}

.pc-left,
.pc-right {
  max-height: 100vh;
}

.pc-right {
  display: none;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .pc-right {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-self: start;
  }
}

.pc-center {
  width: 100%;
  background-color: var(--color-black);
}
@media print, screen and (min-width: 768px) {
  .pc-center {
    box-shadow: 0px 0px 80px 0px rgba(199, 0, 10, 0.7490196078);
  }
}

@media print, screen and (min-width: 1024px) {
  .pc-center .sp-area {
    height: 100%;
  }
}
.pc-center .sp-area::-webkit-scrollbar {
  display: none;
}

.mv__lead--center {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.pc-nav {
  margin-bottom: 28px;
}

.pc-navList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pc-navLink {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 24px;
  transition: color 0.5s ease;
}
.pc-navLink:hover {
  color: var(--color-red);
}

.pc-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pc-button img {
  max-width: 224px;
}

/* =========================
INTRODUCTION
========================= */
.introduction__bg {
  background-image: url(../img/introduction_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.introduction__heading img {
  width: 100%;
}
.introduction__lead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: -55px;
  padding-left: 30px;
}
@media print, screen and (min-width: 768px) {
  .introduction__lead {
    margin-top: -2%;
    padding-left: 7%;
  }
}
.introduction__lead img {
  width: auto;
}
.introduction__lead img + img {
  margin-top: 4px;
}
.introduction__lead img:nth-of-type(1) {
  margin-left: -22px;
  height: 42px;
}
@media print, screen and (min-width: 768px) {
  .introduction__lead img:nth-of-type(1) {
    margin-left: -34px;
    height: 68px;
  }
}
.introduction__lead img:nth-of-type(2) {
  height: 41px;
}
@media print, screen and (min-width: 768px) {
  .introduction__lead img:nth-of-type(2) {
    height: 68px;
  }
}
.introduction__lead img:nth-of-type(3) {
  height: 38px;
}
@media print, screen and (min-width: 768px) {
  .introduction__lead img:nth-of-type(3) {
    height: 64px;
  }
}
.introduction__lead img:nth-of-type(4) {
  height: 43px;
}
@media print, screen and (min-width: 768px) {
  .introduction__lead img:nth-of-type(4) {
    height: 70px;
  }
}
.introduction__movie-wrap {
  position: relative;
  max-width: 300px;
  margin-top: 10px;
  margin-inline: auto;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .introduction__movie-wrap {
    margin-top: 40px;
    max-width: 82%;
  }
}
.introduction__movie-wrap img {
  position: absolute;
  left: 0;
  bottom: 8%;
  max-width: 40%;
}
.introduction__movie-wrap::before {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -4px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #400000;
  pointer-events: none;
}
.introduction__movie-pic {
  position: relative;
  max-width: 100%;
  border: 3px solid #333;
}
.introduction__video {
  display: flex;
  max-height: 80vh;
}
.introduction__video iframe,
.introduction__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.introduction__textbox {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 32px;
  padding-left: 24px;
  padding-right: 12px;
}
@media print, screen and (min-width: 768px) {
  .introduction__textbox {
    margin-top: 46px;
  }
}
.introduction__en {
  max-width: 42px;
}
@media print, screen and (min-width: 768px) {
  .introduction__en {
    max-width: 12%;
  }
}
.introduction__text {
  max-width: 270px;
}
@media print, screen and (min-width: 768px) {
  .introduction__text {
    max-width: 78%;
  }
}
.introduction__borderline {
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .introduction__borderline {
    margin-top: 100px;
  }
}
.introduction__link {
  display: flex;
  justify-content: flex-end;
  width: 87%;
  color: var(--color-white);
  font-size: 16px;
  font-family: var(--font-family);
  letter-spacing: 0;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .introduction__link {
    width: 95%;
    gap: 10px;
    font-size: 22px;
  }
}
@media print, screen and (min-width: 768px) {
  .introduction__link img {
    width: 14px;
  }
}
.introduction__modal {
  overflow: auto;
  transform: none;
  top: 0;
  left: 0;
}
.introduction__modal-title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  gap: 4px;
}
@media print, screen and (min-width: 768px) {
  .introduction__modal-title {
    font-size: 28px;
  }
}
.introduction__modal-text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 768px) {
  .introduction__modal-text {
    font-size: 22px;
  }
}
.introduction__modal-text + .introduction__modal-text {
  margin-top: 22px;
}

.js-text-copy {
  opacity: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-text-copy.is-animation {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.js-text-copy:nth-of-type(2) {
  transition-delay: 0.4s;
}
.js-text-copy:nth-of-type(3) {
  transition-delay: 0.8s;
}
.js-text-copy:nth-of-type(4) {
  transition-delay: 1.2s;
}

/* =========================
FEATURES
========================= */
.features {
  padding-top: 5px;
  background-image: url(../img/bg_noise.png);
  background-repeat: repeat;
  background-size: 47px auto;
  background-color: var(--color-black);
}
.features__body {
  margin-top: -20px;
  padding-bottom: 20px;
}
.features__bg {
  background-image: url(../img/bg_noise.png), url(../img/bg_dots.png);
  background-repeat: repeat-x, repeat;
  background-size: 47px auto, 100% auto;
  background-position: top left, center;
}
.features__heading {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .features__borderline {
    margin-top: 30px;
  }
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features-list__item:nth-child(1) .features-list__title {
  background-image: url(../img/features-list_subtitle_01_bg.png);
}
.features-list__item:nth-child(2) .features-list__title {
  background-image: url(../img/features-list_subtitle_02_bg.png);
}
.features-list__item:nth-child(3) .features-list__title {
  background-image: url(../img/features-list_subtitle_03_bg.png);
}
.features-list__title {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}
.features-list .js-features-list-title {
  opacity: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.features-list .js-features-list-title.is-animation {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.features-list .js-features-list-title--rtl {
  opacity: 1;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.features-list .js-features-list-title--rtl.is-animation {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.features-list__video {
  display: flex;
  max-width: 310px;
  margin-top: 10px;
  margin-inline: auto;
  border: 2px solid var(--color-gray-darken1);
}
@media print, screen and (min-width: 768px) {
  .features-list__video {
    max-width: 85%;
  }
}
.features-list__video iframe,
.features-list__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.features-list__text {
  max-width: 310px;
  margin-top: 16px;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .features-list__text {
    max-width: 85%;
    font-size: 24px;
  }
}
.features-list__content {
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .features-list__content {
    margin-top: 50px;
  }
}
.features-list__lead {
  max-width: 370px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .features-list__lead {
    max-width: 92%;
  }
}
.library-record__body {
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .library-record__body {
    margin-top: 24px;
  }
}
.library-record__foot {
  margin-top: 18px;
}
.library-record__text {
  color: var(--color-white);
}
@media print, screen and (min-width: 768px) {
  .library-record__text {
    font-size: 24px;
  }
}
.library-record__content {
  position: relative;
  padding: 12px 14px 22px;
  background-image: url(../img/library-record_content_bg.png);
  background-size: calc(100% - 4px) 100%;
  background-repeat: no-repeat;
  background-position: left top;
}
@media print, screen and (min-width: 768px) {
  .library-record__content {
    padding: 20px 28px 40px;
  }
}
.library-record__content::before {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
}
.library-record__title img {
  width: 100%;
}
.library-record__meta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .library-record__meta {
    margin-top: 20px;
  }
}
.library-record__meta-pic {
  max-width: 60px;
}
@media print, screen and (min-width: 768px) {
  .library-record__meta-pic {
    max-width: 100px;
  }
}
.library-record__meta-textbox {
  flex: auto;
}
.library-record__meta-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 2%;
}
@media print, screen and (min-width: 768px) {
  .library-record__meta-title {
    font-size: 30px;
  }
}
.library-record__meta-text {
  margin-top: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--color-gray-light);
}
@media print, screen and (min-width: 768px) {
  .library-record__meta-text {
    font-size: 20px;
  }
}
.library-record__table {
  margin-top: 16px;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}
@media print, screen and (min-width: 768px) {
  .library-record__table {
    margin-top: 26px;
  }
}
.library-record__table thead {
  border-bottom: 1px solid var(--color-gray-light);
}
.library-record__table thead td {
  padding: 4px;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 2%;
}
@media print, screen and (min-width: 768px) {
  .library-record__table thead td {
    padding: 6px;
    font-size: 17px;
  }
}
.library-record__table tbody td {
  padding: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 2%;
}
@media print, screen and (min-width: 768px) {
  .library-record__table tbody td {
    padding: 6px;
    font-size: 20px;
  }
}
.library-record__table tr + tr {
  border-top: 1px solid var(--color-gray-light);
}
.library-record ruby {
  line-height: 1;
}
@supports (-webkit-touch-callout: none) {
  .library-record .story__text rt {
    margin-bottom: -0.5em;
  }
}

/* =========================
CHAPTER0
========================= */
.chapter0 {
  background-image: url(../img/bg_noise.png);
  background-repeat: repeat;
  background-size: 47px auto;
  background-color: var(--color-black);
}
@media print, screen and (min-width: 768px) {
  .chapter0 {
    background-image: url(../img/chapter0_bg_pc.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
  }
}
.chapter0__head {
  padding-top: 48px;
  padding-bottom: 72px;
}
@media print, screen and (min-width: 768px) {
  .chapter0__head {
    padding-top: 68px;
    padding-bottom: 116px;
  }
}
.chapter0__body {
  padding-top: 54px;
  background-image: url(../img/chapter0_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  color: var(--color-white);
  font-weight: 700;
  font-size: 21.44px;
  line-height: 1.6;
  letter-spacing: 2%;
}
@media print, screen and (min-width: 768px) {
  .chapter0__body {
    background-image: none;
  }
}
.chapter0__title {
  max-width: 272px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .chapter0__title {
    max-width: 70%;
  }
}
.chapter0__lead {
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
  font-size: 21.44px;
  line-height: 1.6;
  letter-spacing: 2%;
}
@media print, screen and (min-width: 768px) {
  .chapter0__lead {
    font-size: 36px;
  }
}
.chapter0__lead strong {
  font-weight: 700;
  font-size: 25.01px;
}
@media print, screen and (min-width: 768px) {
  .chapter0__lead strong {
    font-size: 42px;
  }
}
.chapter0__subtitle {
  margin-top: 35px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {
  .chapter0__subtitle {
    font-size: 30px;
    line-height: 1.4;
  }
}
.chapter0__subtitle strong {
  font-size: 21px;
}
@media print, screen and (min-width: 768px) {
  .chapter0__subtitle strong {
    font-size: 36px;
  }
}
.chapter0__logo {
  max-width: 84px;
  margin-top: 32px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .chapter0__logo {
    max-width: 22%;
  }
}
.chapter0__logo img {
  width: 100%;
}
.chapter0__button {
  max-width: 224px;
  margin-top: 36px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .chapter0__button {
    margin-top: 68px;
    max-width: 60%;
  }
}
.chapter0__borderline {
  margin-top: 120px;
}
@media print, screen and (min-width: 768px) {
  .chapter0__borderline {
    margin-top: 180px;
  }
}

/* =========================
SPECIAL
========================= */
.special {
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url(../img/bg_noise.png);
  background-repeat: repeat;
  background-size: 47px auto;
}
@media print, screen and (min-width: 768px) {
  .special__body {
    margin-top: 10px;
  }
}
.special__heading {
  max-width: 198px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .special__heading {
    max-width: 330px;
  }
}
.special__heading img {
  width: 100%;
}
.special__button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .special__button-wrap {
    gap: 24px;
    margin-top: 40px;
  }
}
.special__button {
  max-width: 180px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .special__button {
    max-width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 24px;
  }
}

/* =========================
HOWTO
========================= */
.howto {
  padding-top: 50px;
  background-image: url(../img/bg_noise.png);
  background-repeat: repeat;
  background-size: 47px auto;
}
@media print, screen and (min-width: 768px) {
  .howto {
    padding-top: 100px;
  }
}
.howto__foot {
  margin-top: 16px;
}
.howto__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  margin-inline: auto;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .howto__heading {
    max-width: 95%;
  }
}
.howto__heading img {
  width: 100%;
}
.howto__heading-text {
  position: relative;
  top: -20px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 2%;
  text-shadow: 1px 1px 0 rgba(165, 1, 1, 0.5019607843);
}
@media print, screen and (min-width: 768px) {
  .howto__heading-text {
    top: -28px;
    font-size: 30px;
  }
}
.howto__text {
  margin-top: 33px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .howto__text {
    margin-top: 45px;
    font-size: 24px;
  }
}
.howto__table {
  max-width: 90%;
  margin-inline: auto;
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .howto__table {
    font-size: 18px;
  }
}
.howto__table tr + tr {
  border-top: 1px solid var(--color-gray-darken1);
}
.howto__table th {
  display: flex;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--color-red);
  vertical-align: middle;
  text-align: left;
  word-break: keep-all;
}
@media print, screen and (min-width: 768px) {
  .howto__table th {
    font-size: 24px;
  }
}
.howto__table th img {
  max-width: 49px;
  margin-right: 7px;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .howto__table th img {
    width: 100%;
    max-width: 82px;
    margin-right: 25px;
  }
}
.howto__table td {
  padding: 8px 0 8px 24px;
  color: var(--color-white);
}
@media print, screen and (min-width: 768px) {
  .howto__table td {
    padding: 0px 0 8px 24px;
    font-size: 24px;
  }
}
.howto__accordion {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.howto__accordion summary {
  max-width: 130px;
  margin-inline: auto;
  cursor: pointer;
}
.howto__accordion .howto__accordion-label-open {
  display: inline;
}
.howto__accordion .howto__accordion-label-close {
  display: none;
}
.howto__accordion .howto__accordion-summary.button.--under::before {
  transition: transform 0.25s ease;
}
.howto__accordion[open] .howto__accordion-summary {
  order: 2;
  margin-top: 16px;
}
.howto__accordion[open] .howto__accordion-content {
  order: 1;
}
.howto__accordion[open] .howto__accordion-label-open {
  display: none;
}
.howto__accordion[open] .howto__accordion-label-close {
  display: inline;
}
.howto__accordion[open] .howto__accordion-summary.button.--under::before {
  transform: rotate(-90deg);
}
.howto__accordion-summary {
  font-size: 16px;
}
.howto__borderline {
  margin-top: 120px;
}
@media print, screen and (min-width: 768px) {
  .howto__borderline {
    margin-top: 80px;
  }
}
.howto__button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media print, screen and (min-width: 768px) {
  .howto__button-wrap {
    gap: 24px;
    margin-top: 30px;
  }
}
.howto__button {
  font-size: 16px;
  max-width: 240px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .howto__button {
    max-width: 434px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 24px;
  }
}

.howto-guide__title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.howto-guide__list {
  margin-top: 27px;
  display: grid;
  gap: 24px;
}
@media print, screen and (min-width: 768px) {
  .howto-guide__list {
    display: flex;
  }
}
.howto-guide__item {
  padding: 24px 22px;
  background-color: #252525;
}
@media print, screen and (min-width: 768px) {
  .howto-guide__item {
    flex: 1;
  }
}
.howto-guide__item-number {
  color: var(--color-red);
  font-weight: 700;
  font-size: 32px;
}
.howto-guide__item-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .howto-guide__item-head {
    flex-direction: column;
  }
}
.howto-guide__item-icon {
  max-width: 120px;
  margin-top: 6px;
  margin-inline: auto;
}
.howto-guide__item-icon img {
  width: 100%;
}
.howto-guide__item-text {
  margin-top: 8px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0%;
}
.howto-guide__item-text small {
  display: inline-block;
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .howto-guide__pic {
    margin-top: 40px;
  }
}
.howto-guide__button-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
/* =========================
PURCHASE
========================= */
.purchase {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--color-blue);
}
@media print, screen and (min-width: 768px) {
  .purchase {
    padding-top: 44px;
  }
}
.purchase__body {
  margin-top: 36px;
}
@media print, screen and (min-width: 768px) {
  .purchase__body {
    margin-top: 32px;
  }
}
.purchase__date {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.purchase__group {
  display: flex;
  gap: 8px;
}
@media print, screen and (min-width: 768px) {
  .purchase__group {
    gap: 12px;
  }
}
.purchase__date-title {
  display: flex;
  align-items: center;
  padding: 4px 10px 6px;
  background-color: #252525;
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  width: 30%;
}
@media print, screen and (min-width: 768px) {
  .purchase__date-title {
    width: 33%;
    font-size: 22px;
  }
}
.purchase__date-text {
  padding-top: 3px;
  color: var(--color-white);
  font-size: 16px;
  width: 70%;
}
@media print, screen and (min-width: 768px) {
  .purchase__date-text {
    font-size: 24px;
  }
}
.purchase__date-text small {
  display: inline-block;
  font-size: 12px;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .purchase__date-text small {
    margin-top: 8px;
    font-size: 18px;
  }
}
.purchase__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(59, 45, 45, 0.78);
  text-align: center;
  width: 70%;
}
.purchase__cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.purchase__image {
  margin-top: 16px;
  opacity: 0.9;
}
.purchase__image img {
  display: block;
  width: 100%;
  height: auto;
}
.purchase__kind {
  margin-top: 26px;
}
@media print, screen and (min-width: 768px) {
  .purchase__kind {
    margin-top: 40px;
  }
}
.purchase__kind-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 98%;
  margin-inline: auto;
}
.purchase__kind-tab {
  position: relative;
  bottom: -8px;
  transition: bottom 0.3s ease;
}
.purchase__kind-tab:has(.is-active) {
  bottom: 0px;
}
.purchase__plan {
  position: relative;
  margin-top: -2px;
  padding: 8px 8px 12px;
  background-color: var(--color-white);
}
.purchase__plan--instant.is-current {
  border-top: 4px solid var(--color-red-darken2);
}
.purchase__plan--package.is-current {
  border-top: 4px solid var(--color-black);
}
.purchase__price {
  margin-top: 14px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .purchase__price {
    font-size: 28px;
  }
}
.purchase__price-tax {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  .purchase__price-tax {
    font-size: 18px;
  }
}
.purchase__store-heading {
  margin-top: 22px;
}
.purchase__store-heading, .purchase__online-heading {
  display: flex;
  align-items: center;
  max-width: 97%;
  margin-inline: auto;
}
.purchase__store-heading::before, .purchase__store-heading::after, .purchase__online-heading::before, .purchase__online-heading::after {
  content: "";
  display: block;
  flex: 1;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
}
.purchase__store-heading::before, .purchase__online-heading::before {
  margin-right: 8px;
}
.purchase__store-heading::after, .purchase__online-heading::after {
  margin-left: 8px;
}
.purchase__store-lead {
  margin-top: 6px;
  font-size: 13px;
  text-align: center;
}
.purchase__store-list {
  margin-top: 20px;
  max-width: 96%;
  margin-inline: auto;
}
.purchase__store-item + .purchase__store-item {
  margin-top: 14px;
}
.purchase__store-item:has(.--primary) {
  margin-top: 20px;
}
.purchase__store-name {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #252525;
}
@media print, screen and (min-width: 768px) {
  .purchase__store-name {
    font-size: 28px;
  }
}
.purchase__store-name a {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #252525;
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
  .purchase__store-name a {
    font-size: 28px;
  }
}
.purchase__store-name a:hover {
  text-decoration: none;
}
.purchase__store-name img {
  margin-top: 6px;
}
@media print, screen and (min-width: 768px) {
  .purchase__store-name img {
    width: 18px;
  }
}
.purchase__store-name.--primary {
  color: var(--color-red-darken2);
}
.purchase__store-name.--primary a {
  color: var(--color-red-darken2);
}
.purchase__store-name.--primary img {
  margin-top: 2px;
}
.purchase__store-note {
  font-size: 10px;
}
@media print, screen and (min-width: 768px) {
  .purchase__store-note {
    font-size: 18px;
  }
}
.purchase__store-text {
  margin-top: 12px;
  max-width: 97%;
  margin-inline: auto;
  font-weight: 400;
  font-size: 13px;
}
@media print, screen and (min-width: 768px) {
  .purchase__store-text {
    font-size: 18px;
  }
}
.purchase__online-heading {
  margin-top: 30px;
}
.purchase__online-links {
  margin-top: 16px;
}
.purchase__online-link {
  display: block;
  max-width: 97%;
  margin-inline: auto;
}
.purchase__online-link + .purchase__online-link {
  margin-top: 7px;
}
.purchase__online-text {
  max-width: 97%;
  margin-top: 6px;
  margin-inline: auto;
  font-size: 13px;
}
@media print, screen and (min-width: 768px) {
  .purchase__online-text {
    font-size: 18px;
  }
}
.purchase__online-text + .purchase__online-link {
  margin-top: 12px;
}
.purchase__slider {
  padding-bottom: 6px;
}
.purchase__slider .splide__pagination__page.is-active {
  border: none;
}
.purchase__slider .splide__pagination__page {
  background-color: #aaa;
}

/* =========================
Bonus
========================= */
.bonus {
  padding-top: 20px;
  padding-bottom: 24px;
  background-color: var(--color-blue);
}
@media print, screen and (min-width: 768px) {
  .bonus {
    padding-top: 70px;
    padding-bottom: 24px;
  }
}
.bonus__body {
  margin-top: 16px;
}
.bonus__foot {
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .bonus__foot {
    margin-top: 67px;
  }
}
.bonus__heading {
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .bonus__heading {
    font-size: 28px;
  }
}
.bonus__link {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .bonus__link {
    font-size: 24px;
  }
}
.bonus__link img {
  margin-top: 10px;
  max-width: 310px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .bonus__link img {
    max-width: 514px;
    margin-top: 16px;
  }
}

/* =========================
Notice
========================= */
.notice {
  padding-top: 20px;
  background-color: var(--color-blue);
}
.notice__accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media print, screen and (min-width: 768px) {
  .notice__accordion {
    gap: 24px;
  }
}
.notice__about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.notice__borderline {
  margin-top: 30px;
}

.accordion {
  padding: 16px;
  color: var(--color-white);
}
.accordion__panel[open] .accordion__link.button.--right::after {
  transform: rotate(-90deg);
}
.accordion__container {
  padding: 12px 12px 20px;
  background: var(--color-black-20, rgba(0, 0, 0, 0.2));
}
.accordion__inner {
  padding-left: 8px;
  padding-right: 8px;
}
.accordion__title {
  padding: 4px 8px;
  background-color: var(--color-blue-darken1);
  font-size: 15px;
}
@media print, screen and (min-width: 768px) {
  .accordion__title {
    font-size: 22px;
  }
}
.accordion__inner + .accordion__title {
  margin-top: 10px;
}
.accordion__list + .accordion__title {
  margin-top: 32px;
}
.accordion__text + .accordion__title {
  margin-top: 20px;
}
.accordion__list {
  margin-top: 10px;
}
.accordion__list li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .accordion__list li {
    font-size: 22px;
  }
}
.accordion__list li small {
  display: block;
  margin-top: 4px;
  margin-left: -1em;
  font-size: 13px;
  text-indent: 0;
}
@media print, screen and (min-width: 768px) {
  .accordion__list li small {
    font-size: 20px;
  }
}
.accordion__list li::before {
  content: "・";
}
.accordion__list li + li {
  margin-top: 18px;
}
.accordion table tbody {
  border-top: 1px solid var(--color-white);
}
.accordion table tr + tr {
  border-top: 1px solid var(--color-white);
}
.accordion table tr td {
  padding-top: 6px;
  padding-bottom: 6px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  vertical-align: top;
}
@media print, screen and (min-width: 768px) {
  .accordion table tr td {
    font-size: 22px;
  }
}
.accordion table tr td small {
  font-size: 11px;
}
@media print, screen and (min-width: 768px) {
  .accordion table tr td small {
    font-size: 20px;
  }
}
.accordion table tr td + td {
  padding-left: 10px;
}
.accordion__text {
  font-size: 13px;
}
@media print, screen and (min-width: 768px) {
  .accordion__text {
    font-size: 20px;
  }
}
.accordion__inner + .accordion__text {
  margin-top: 24px;
}
.accordion__title + .accordion__text {
  margin-top: 12px;
}
.accordion a {
  color: #ffd15e;
  text-decoration: underline;
}
.accordion a:hover {
  text-decoration: none;
}

/* Q&A */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qa-list__question {
  padding-left: 1.5em;
  color: #aaa;
  font-size: 13px;
  font-weight: 700;
  text-indent: -1.5em;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .qa-list__question {
    font-size: 22px;
  }
}
.qa-list__question::before {
  content: "Q.";
  margin-right: 6px;
}
.qa-list__answer {
  margin-top: 5px;
  padding-left: 1.25em;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  text-indent: -1.25em;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .qa-list__answer {
    font-size: 22px;
  }
}
.qa-list__answer::before {
  content: "A.";
  margin-right: 6px;
}

/* ABOUT */
.about__link {
  max-width: 310px;
}
@media print, screen and (min-width: 768px) {
  .about__link {
    max-width: 85%;
  }
}
.about__link:hover {
  opacity: 0.8;
}
.about__modal {
  margin-top: 14px;
}
.about__modal-content {
  padding: 32px 18px;
  background-image: url(../img/about_bg.png);
}
.about__modal-video {
  display: flex;
  margin-top: 16px;
}
.about__modal-video iframe,
.about__modal-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.about__modal-text {
  margin-top: 20px;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .about__modal-text {
    font-size: 22px;
  }
}
.about__modal-text p + p {
  margin-top: 20px;
}
.about__modal-button {
  max-width: 148px;
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .about__modal-button {
    font-size: 20px;
  }
}
.about__modal-foot {
  margin-top: 30px;
}

/* =========================
Footer
========================= */
.footer {
  padding-top: 32px;
  padding-bottom: 32px;
  background-image: url(../img/bg_noise.png);
  background-repeat: repeat;
  background-size: 47px auto;
  background-color: var(--color-black);
}
@media print, screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}
.footer__inner {
  padding-inline: 20px;
}
.footer__body {
  margin-top: 36px;
}
@media print, screen and (min-width: 768px) {
  .footer__body {
    margin-top: 60px;
  }
}
.footer__foot {
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .footer__foot {
    margin-top: 42px;
  }
}
.footer__logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.footer__logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  width: 120px;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .footer__logo img {
    width: 198px;
  }
}
.footer__button {
  max-width: 160px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .footer__button {
    max-width: 240px;
    font-size: 22px;
  }
}
.footer__copyright {
  color: var(--color-white);
  font-size: 10px;
  letter-spacing: 10%;
  text-align: center;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 14px;
  }
}
.footer__text {
  margin-top: 16px;
  color: var(--color-white);
  font-size: 10px;
  letter-spacing: 10%;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footer__text {
    margin-top: 28px;
    font-size: 12px;
  }
}

/* =========================
Follow button（追従）
========================= */
.follow-button {
  display: none;
  transform: translateY(100%);
  transition: transform 0.6s ease;
}
@media print, screen and (min-width: 768px) {
  .follow-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: block;
    transform: translateY(0%);
  }
}
.follow-button.is-fixed {
  position: fixed;
  right: 14px;
  bottom: 115px;
  display: flex;
  flex-direction: column;
}
.follow-button.is-visible {
  transform: translateY(0);
}
.follow-button__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.follow-button__link li {
  width: 32px;
  cursor: pointer;
}
.follow-button__link li img {
  display: block;
}

/* =========================
CTA
========================= */
.cta {
  gap: 6px;
  width: 100%;
  padding: 12px 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  visibility: hidden;
}
@media print, screen and (min-width: 768px) {
  .cta {
    display: none;
  }
}
.cta.is-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  visibility: visible;
}
.cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cta__link {
  max-width: 290px;
}/*# sourceMappingURL=style.css.map */