@charset "UTF-8";

/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/*-------------------------------
inner
-------------------------------*/
/*-------------------------------
余白
-------------------------------*/
/*-------------------------------
フォント
-------------------------------*/
/*-------------------------------
ベースフォントサイズ
-------------------------------*/
/*-------------------------------
Color
-------------------------------*/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}

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

@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}

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

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #2f0808;
  font-size: 1.6rem;
  background-color: #fff;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

.lp-container {
  overflow: clip;
  position: relative;
}

.lp-container::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url(../images/common/main-bg.avif) center/cover no-repeat;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: opacity 0.3s;
}

button {
  color: inherit;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

.u-mv-intro-bg {
  width: 384rem;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .u-mv-intro-bg {
    width: 82.8rem;
  }
}

.u-mv-intro-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/common/mv-intro-bg.png) top/cover no-repeat;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .u-mv-intro-bg::before {
    background: url(../images/common/mv-intro-bg_sp.png) top/cover no-repeat;
  }
}

.l-cvr {
  position: fixed;
  bottom: 3rem;
  right: 0;
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

@media screen and (max-width: 767px) {
  .l-cvr {
    bottom: 0;
    left: 0;
    right: auto;
  }
}

.l-cvr.is-visible {
  opacity: 1;
  visibility: visible;
}

.l-hamburger {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

@media screen and (max-width: 767px) {
  .l-hamburger {
    top: 1.6rem;
    right: 1.6rem;
  }
}

.l-hamburger.is-visible {
  opacity: 1;
  visibility: visible;
}

/*-------------------------------
l-header
-------------------------------*/
.l-header {
  position: absolute;
  top: 2.5rem;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .l-header {
    top: 0;
  }
}

/*-------------------------------
l-inner
-------------------------------*/
.l-inner {
  margin: 0 auto;
  max-width: 1411px;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}

/*-------------------------------
c-cvr
-------------------------------*/
.c-cvr {
  padding: 1.5rem 2.2rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  background: url(../images/common/cvr-btn-bg.png) center/cover no-repeat;
  border: 1px solid #cfa962;
  border-right: none;
}

@media screen and (max-width: 767px) {
  .c-cvr {
    padding-block: 1.1rem;
    width: 100%;
    background: url(../images/common/cvr-btn-bg_sp.png) center/cover no-repeat;
    border: 1px solid #cfa962;
  }
}

.c-cvr span {
  padding: 2.2rem 3rem;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #fff;
  display: flex;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-cvr span {
    padding: 1.5rem 4.8rem;
    font-size: 2rem;
  }
}

.c-cvr span::before,
.c-cvr span::after {
  content: "";
  width: 100%;
  height: 3rem;
  position: absolute;
  left: 0;
  background: url(../images/common/cvr-deco.avif) center/contain no-repeat;
}

.c-cvr span::before {
  top: 0;
  transform: rotate(180deg);
}

.c-cvr span::after {
  bottom: 0;
}

@media (any-hover: hover) {
  .c-cvr.is-visible:hover {
    opacity: 0.8;
    cursor: pointer;
  }
}

/*-------------------------------
c-eclipse-btn
-------------------------------*/
.c-eclipse-btn a {
  padding-block: 4.2rem;
  width: 52.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 6rem;
  outline: 1px solid #d4b987;
  outline-offset: -0.8rem;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .c-eclipse-btn a {
    padding-block: 2rem;
    width: 38.2rem;
    outline-offset: -0.4rem;
  }
}

.c-eclipse-btn span {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  z-index: 20;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .c-eclipse-btn span {
    font-size: 2rem;
    gap: 1.2rem;
  }
}

.c-eclipse-btn.-cream a {
  background-color: #ede4d6;
  color: #bf373c;
}

.c-eclipse-btn.-cream span::after {
  background-color: #bf373c;
}

.c-eclipse-btn.-black a {
  background-color: #111;
  color: #f7eedc;
}

.c-eclipse-btn.-black a::before {
  opacity: 0.35;
}

.c-eclipse-btn.-black span::after,
.c-eclipse-btn.-red span::after {
  background-color: #f7eedc;
}

.c-eclipse-btn.-red a {
  background-color: #bf373c;
  color: #f7eedc;
}

.c-eclipse-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  border-radius: 6rem;
  background: url(../images/common/btn-pattern.avif) center/cover no-repeat;
  mix-blend-mode: soft-light;
  transition: 0.3s ease-out;
}

.c-eclipse-btn span::after {
  content: "";
  width: 2.1rem;
  height: 1.9rem;
  transition: 0.3s ease-out;
  -webkit-mask-image: url(../images/common/icon-external-link.svg);
  mask-image: url(../images/common/icon-external-link.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

@media screen and (max-width: 767px) {
  .c-eclipse-btn span::after {
    width: 1.3rem;
    height: 1.3rem;
  }
}

@media (any-hover: hover) {
  .c-eclipse-btn a:hover {
    opacity: 1;
  }

  .c-eclipse-btn.-cream a:hover {
    background-color: #bf373c;
  }

  .c-eclipse-btn.-cream a:hover span {
    color: #ede4d6;
  }

  .c-eclipse-btn.-cream a:hover span::after {
    background-color: #ede4d6;
  }
}

@media (any-hover: hover) {
  .c-eclipse-btn.-black a:hover {
    background-color: #f7eedc;
  }

  .c-eclipse-btn.-black a:hover::before {
    opacity: 1;
  }

  .c-eclipse-btn.-black a:hover span {
    color: #111;
  }

  .c-eclipse-btn.-black a:hover span::after {
    background-color: #111;
  }
}

@media (any-hover: hover) {
  .c-eclipse-btn.-red a:hover {
    background-color: #f7eedc;
  }

  .c-eclipse-btn.-red a:hover::before {
    opacity: 1;
  }

  .c-eclipse-btn.-red a:hover span {
    color: #bf373c;
  }

  .c-eclipse-btn.-red a:hover span::after {
    background-color: #bf373c;
  }
}

/*-------------------------------
c-fade-up
-------------------------------*/
.c-fade-up {
  opacity: 0;
  transform: translateY(3.125rem);
  transition: 0.5s ease-in-out;
}

.c-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------
c-modal
-------------------------------*/
.c-modal {
  padding-block: 2rem;
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  overflow-y: scroll;
  scrollbar-width: none;
}

.c-modal::-webkit-scrollbar {
  display: none;
}

@media screen and (max-height: 500px) {
  .c-modal {
    align-items: flex-start;
  }
}

.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.c-modal__close {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 4.5rem;
  right: 4.5rem;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .c-modal__close {
    width: 4.5rem;
    height: 4.5rem;
    top: 2.4rem;
    right: 2.4rem;
  }
}

@media (any-hover: hover) {
  .c-modal__close:hover {
    opacity: 0.8;
  }
}

.c-modal__close-line {
  width: 6.4rem;
  height: 0.2rem;
  display: block;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .c-modal__close-line {
    width: 2.9rem;
    height: 0.1rem;
  }
}

.c-modal__close-line:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(21deg);
}

.c-modal__close-line:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-21deg);
}

.c-modal__inner {
  margin: auto;
  width: 100%;
  position: relative;
}

/*-------------------------------
c-slide-in
-------------------------------*/
.c-slide-in-top {
  position: relative;
  z-index: 10;
  clip-path: inset(0 100% 0 0);
}

.c-slide-in-top.active {
  animation: slide-in-top 0.7s 0.3s ease-in-out forwards;
}

.c-slide-in-back {
  position: absolute;
  top: 0;
  left: 0;
  color: #bbb;
  opacity: 0;
}

.c-slide-in-back.active {
  animation: slide-in-back 0.9s ease-in-out forwards;
}

@keyframes slide-in-top {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slide-in-back {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  80% {
    clip-path: inset(0 0 0 0);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*-------------------------------
c-square-btn
-------------------------------*/
.c-square-btn a,
.c-square-btn button {
  padding-block: 2.6rem;
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  border: 2px solid #cfa962;
  background-color: #cfa962;
  border-radius: 0.3rem;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {

  .c-square-btn a,
  .c-square-btn button {
    padding-block: 1.3rem;
    font-size: 2rem;
    letter-spacing: -0.09em;
  }
}

.c-square-btn.-link a::after,
.c-square-btn.-link button::after {
  content: "";
  width: 2.1rem;
  height: 1.9rem;
  -webkit-mask-image: url(../images/common/icon-external-link.svg);
  mask-image: url(../images/common/icon-external-link.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
}

@media screen and (max-width: 767px) {

  .c-square-btn.-link a::after,
  .c-square-btn.-link button::after {
    width: 1.3rem;
    height: 1.3rem;
  }
}

.c-square-btn.-illustrator a::after,
.c-square-btn.-illustrator button::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/common/common-detail-icon.svg) center/contain no-repeat;
}

@media screen and (max-width: 767px) {

  .c-square-btn.-illustrator a::after,
  .c-square-btn.-illustrator button::after {
    width: 2rem;
    height: 2rem;
  }
}

@media (any-hover: hover) {
  .c-square-btn button:hover {
    opacity: 0.8;
  }
}

/*-------------------------------
c-swiper
-------------------------------*/
.c-swiper .swiper {
  padding-bottom: 0.5rem;
}

.c-swiper .swiper-wrapper {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-swiper .swiper-wrapper {
    display: flex;
  }
}

.c-swiper .swiper-button-wrap {
  margin-inline: auto;
  margin-top: 1.6rem;
  padding: 0.6rem;
  width: 24rem;
  display: flex;
  justify-content: space-between;
}

.c-swiper .swiper-button-prev,
.c-swiper .swiper-button-next {
  all: unset;
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  position: relative;
  z-index: 20;
  background-color: #fff;
  cursor: pointer;
}

.c-swiper .swiper-button-prev {
  transform: rotate(45deg);
}

.c-swiper .swiper-button-next {
  transform: rotate(-135deg);
}

.c-swiper .swiper-button-prev::after,
.c-swiper .swiper-button-next::after {
  all: unset;
  content: "";
  width: 1.6rem;
  height: 1.2rem;
  position: absolute;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-mask-image: url(../images/common/slider-arrow.svg);
  mask-image: url(../images/common/slider-arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #111;
}

.c-swiper .swiper-button-prev::after {
  top: 55%;
  left: 45%;
}

.c-swiper .swiper-button-next::after {
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.c-swiper .swiper-pagination {
  bottom: 1.4rem;
}

.c-swiper .swiper-pagination .swiper-pagination-bullet {
  margin-inline: 0.65rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #a0a0a0;
  opacity: 1;
  border-radius: 0;
  transform: rotate(45deg);
}

.c-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #111;
}

/*-------------------------------
p-booster-modal
-------------------------------*/
@media screen and (max-width: 767px) {
  .p-booster-modal__inner {
    padding-block: 7.3rem 0.2rem;
  }
}

.p-booster-modal__content {
  margin-inline: auto;
  padding: 6.4rem 8rem;
  width: 80%;
  max-width: 1104px;
  background-color: #fff;
  border: 2px solid #cfa962;
}

@media screen and (max-width: 767px) {
  .p-booster-modal__content {
    padding: 3.2rem 2.4rem;
    width: 100%;
    max-width: 38.2rem;
  }
}

.p-booster-modal__container {
  margin-inline: auto;
  width: 100%;
  max-width: 94rem;
  height: calc(100dvh - 18.6rem);
  max-height: 68.6rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow-y: scroll;
  scrollbar-color: #cfa962 transparent;
}

@media screen and (max-width: 767px) {
  .p-booster-modal__container {
    max-width: 94rem;
    height: calc(100dvh - 18.6rem);
    max-height: 68.6rem;
  }
}

.p-booster-modal__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}

.p-booster-modal__heading span {
  display: block;
}

.p-booster-modal__heading-sub {
  margin-inline: auto;
  padding: 0.5rem 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-booster-modal__heading-sub {
    padding: 0.6rem 1.2rem;
    font-size: 1.4rem;
  }
}

.-td .p-booster-modal__heading-sub {
  background: url(../images/common/trial-title-bg.avif) center/cover no-repeat;
}

.-bp .p-booster-modal__heading-sub {
  background: url(../images/common/booster-title-bg.avif) center/cover no-repeat;
}

.p-booster-modal__heading-main {
  margin-top: 0.3rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-booster-modal__heading-main {
    margin-top: 0.5rem;
    font-size: 2.4rem;
  }
}

.p-booster-modal__img {
  margin-top: 1.8rem;
  height: 30rem;
}

@media screen and (max-width: 767px) {
  .p-booster-modal__img {
    margin-top: 2.1rem;
    height: 24rem;
  }
}

.p-booster-modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-booster-modal__text {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-booster-modal__text {
    margin-top: 2.4rem;
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-campaign-modal
-------------------------------*/
@media screen and (max-width: 767px) {
  .p-campaign-modal__inner {
    padding-block: 7.3rem 0.2rem;
  }
}

.p-campaign-modal__content {
  margin-inline: auto;
  padding: 6.4rem 8rem;
  width: 80%;
  max-width: 1104px;
  background-color: #fff;
  border: 2px solid #cfa962;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__content {
    padding: 3.2rem 2.4rem;
    width: 100%;
    max-width: 38.2rem;
  }
}

.p-campaign-modal__container {
  margin-inline: auto;
  width: 100%;
  max-width: 94rem;
  height: calc(100dvh - 18.6rem);
  max-height: 68.6rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow-y: scroll;
  scrollbar-color: #cfa962 transparent;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__container {
    max-width: 94rem;
    height: calc(100dvh - 18.6rem);
    max-height: 68.6rem;
  }
}

.p-campaign-modal__data {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__data {
    font-size: 1.4rem;
    font-weight: 700;
  }
}

.p-campaign-modal__title {
  margin-top: 1.6rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__title {
    margin-top: 0.8rem;
    font-size: 2.4rem;
  }
}

.p-campaign-modal__text-wrap {
  margin-top: 5.6rem;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__text-wrap {
    margin-top: 3.2rem;
  }
}

.p-campaign-modal__heading {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__heading {
    font-size: 2rem;
  }
}

.p-campaign-modal__heading::before {
  content: "◆";
  width: 3.2rem;
  height: 3.2rem;
  color: #cfa962;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__heading::before {
    width: 2rem;
    height: 2rem;
  }
}

.p-campaign-modal__text {
  margin-top: 3.2rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  white-space: pre-wrap;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__text {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
}

.p-campaign-modal__link {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__link {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
}

.p-campaign-modal__link a {
  color: #c84632;
  text-decoration: underline;
}

.p-campaign-modal__img {
  margin-top: 5.6rem;
  width: 54rem;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__img {
    margin-top: 3.2rem;
    width: 100%;
  }
}

.p-campaign-modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 540/304;
}

@media screen and (max-width: 767px) {
  .p-campaign-modal__img img {
    aspect-ratio: 334/188;
  }
}

/*-------------------------------
p-campaign
-------------------------------*/
.p-campaign {
  margin-top: 13.6rem;
}

@media screen and (max-width: 767px) {
  .p-campaign {
    margin-top: 6.2rem;
  }
}

.p-campaign__title {
  margin-inline: auto;
  width: 100%;
  max-width: 41.2rem;
}

@media screen and (max-width: 767px) {
  .p-campaign__title {
    max-width: 24.9rem;
  }
}

.p-campaign__title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 412/119;
}

@media screen and (max-width: 767px) {
  .p-campaign__title img {
    aspect-ratio: 244/71;
  }
}

.p-campaign__swiper {
  margin-top: 6.4rem;
}

@media screen and (max-width: 767px) {
  .p-campaign__swiper {
    margin-top: 3.2rem;
  }
}

.p-campaign__list.c-swiper .swiper-wrapper {
  align-items: stretch;
}

.p-campaign__list.c-swiper .-no-swiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.p-campaign__list.c-swiper .swiper-slide {
  width: 49.9rem;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .p-campaign__list.c-swiper .swiper-slide {
    width: 30rem;
  }
}

@media (any-hover: hover) {
  .p-campaign__list.c-swiper .swiper-slide:hover {
    opacity: 0.8;
  }
}

.p-campaign__list.c-swiper .swiper-button-wrap {
  margin-top: 4.3rem;
}

@media screen and (max-width: 767px) {
  .p-campaign__list.c-swiper .swiper-button-wrap {
    margin-top: 2.3rem;
  }
}

.p-campaign__list.c-swiper .-no-swiper .swiper-button-wrap {
  display: none;
}

.p-campaign__list.c-swiper .swiper-button-prev,
.p-campaign__list.c-swiper .swiper-button-next {
  background: url(../images/campaign/campaign-arrow.svg) center/contain no-repeat;
}

.p-campaign__list.c-swiper .swiper-button-prev::after,
.p-campaign__list.c-swiper .swiper-button-next::after {
  display: none;
}

.p-campaign__list.c-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cfa962;
}

.p-campaign__item {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.p-campaign__item-img {
  width: 100%;
  border: 1px solid #cfa962;
  box-sizing: border-box;
}

.p-campaign__item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 499/254;
}

.p-campaign__item-body {
  padding: 1.6rem 2.4rem 2.4rem;
  background-color: #2f0808;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .p-campaign__item-body {
    padding: 1.2rem;
  }
}

.p-campaign__item-date {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: #cfa962;
}

@media screen and (max-width: 767px) {
  .p-campaign__item-date {
    font-size: 1.4rem;
  }
}

.p-campaign__item-title {
  margin-top: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.29;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-campaign__item-title {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

/*-------------------------------
p-card-modal
-------------------------------*/
@media screen and (max-width: 767px) {
  .p-card-modal__inner {
    padding-block: 7.3rem 0.2rem;
  }
}

.p-card-modal__content {
  margin-inline: auto;
  padding: 12.5rem 8rem;
  width: 80%;
  max-width: 635px;
  background-color: #fff;
  border: 2px solid #cfa962;
}

@media screen and (max-width: 767px) {
  .p-card-modal__content {
    padding: 9.5rem 2rem;
    width: 100%;
    max-width: 38.2rem;
  }
}

.p-card-modal__container {
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  scrollbar-color: #cfa962 transparent;
}

.p-card-modal__img {
  width: 31rem;
}

@media screen and (max-width: 767px) {
  .p-card-modal__img {
    width: 24.4rem;
  }
}

.is-horizontal .p-card-modal__img {
  width: 43.3rem;
}

@media screen and (max-width: 767px) {
  .is-horizontal .p-card-modal__img {
    width: 34.2rem;
  }
}

.p-card-modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 310/433;
}

.is-horizontal .p-card-modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 433/310;
}

.p-card-modal__text {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  line-height: 1;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-card-modal__text {
    margin-top: 3.2rem;
    gap: 1rem;
  }
}

.p-card-modal__title {
  font-size: 2.4rem;
  position: relative;
  white-space: pre-wrap;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-card-modal__title {
    font-size: 1.6rem;
  }
}

.p-card-modal__title::before,
.p-card-modal__title::after {
  content: "";
  width: 1.5rem;
  height: 1.6rem;
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  background: url(../images/common/emblem.svg) center/contain no-repeat;
}

@media screen and (max-width: 767px) {

  .p-card-modal__title::before,
  .p-card-modal__title::after {
    width: 1.1rem;
    height: 1.2rem;
  }
}

.p-card-modal__title::before {
  left: -2rem;
}

@media screen and (max-width: 767px) {
  .p-card-modal__title::before {
    left: -1.6rem;
  }
}

.p-card-modal__title::after {
  right: -2rem;
}

@media screen and (max-width: 767px) {
  .p-card-modal__title::after {
    right: -1.6rem;
  }
}

.p-card-modal__illustrator,
.p-card-modal__includ {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {

  .p-card-modal__illustrator,
  .p-card-modal__includ {
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-cardlist
-------------------------------*/
.p-cardlist {
  margin-top: 15rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-cardlist {
    margin-top: 5.3rem;
  }
}

.p-cardlist::before {
  content: "";
  width: 228.6rem;
  height: 98.9rem;
  position: absolute;
  top: 30rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: url(../images/cardlist/fan-deco.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-cardlist::before {
    width: 126.3rem;
    height: 54.6rem;
    bottom: auto;
    top: 35rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cardlist__inner.l-inner {
    padding-inline: 1.6rem;
    max-width: 500px;
  }
}

.p-cardlist__title {
  margin-inline: auto;
  width: 70.2rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__title {
    width: 35.8rem;
  }
}

.p-cardlist__title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 702/85;
}

@media screen and (max-width: 767px) {
  .p-cardlist__title img {
    aspect-ratio: 355/52;
  }
}

.p-cardlist__lead {
  margin-top: 0.8rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-cardlist__lead {
    margin-top: 0.4rem;
    font-size: 1.6rem;
  }
}

.p-cardlist__content {
  margin-top: 6.4rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__content {
    margin-top: 3.1rem;
  }
}

.p-cardlist__tab-list {
  display: grid;
  grid-template-columns: repeat(4, 24.2rem);
  justify-content: center;
  gap: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__tab-list {
    grid-template-columns: repeat(2, 18.3rem);
    gap: 1.6rem;
  }
}

.p-cardlist__tab-item {
  width: 24.2rem;
  border-radius: 0.4rem;
  opacity: 0.4;
  transition: opacity 0.3s ease, border 0.3s ease;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .p-cardlist__tab-item {
    width: 18.3rem;
  }
}

.p-cardlist__tab-item img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 242/67;
  border-radius: 0.4rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__tab-item img {
    aspect-ratio: 183/51;
  }
}

.p-cardlist__tab-item.is-active {
  opacity: 1;
}

.p-cardlist__tab-item.is-active::after {
  content: "";
  width: calc(100% + 0.8rem);
  height: calc(100% + 0.8rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #cfa962;
  border-radius: 0.7rem;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-cardlist__tab-item.is-active::after {
    width: calc(100% + 0.5rem);
    height: calc(100% + 0.5rem);
    border-radius: 0.5rem;
  }
}

@media (any-hover: hover) {
  .p-cardlist__tab-item:hover {
    opacity: 1;
  }
}

/*-------------------------------
.p-cardlist__list
-------------------------------*/
.p-cardlist__list {
  margin-top: 8rem;
  margin-inline: auto;
  max-width: 110rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3.2rem 4.8rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-cardlist__list {
    margin-top: 4.8rem;
    gap: 1.6rem 0.8rem;
  }
}

.p-cardlist__list.is-hidden {
  opacity: 0;
}

.p-cardlist__item {
  width: 17.9rem;
  position: relative;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .p-cardlist__item {
    width: 12rem;
  }
}

.p-cardlist__item img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 179/250;
}

.p-cardlist__item.-horizon {
  width: 25rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__item.-horizon {
    width: 16.8rem;
  }
}

.p-cardlist__item.-horizon img {
  aspect-ratio: 250/179;
}

@media (any-hover: hover) {
  .p-cardlist__item:hover {
    opacity: 0.8;
  }
}

.p-cardlist__item::before {
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: url(../images/common/card-detail-icon.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-cardlist__item::before {
    width: 3.2rem;
    height: 3.2rem;
    bottom: 0.4rem;
    right: 0.4rem;
  }
}

.p-cardlist__item.-bp::after,
.p-cardlist__item.-td::after {
  width: 8.9rem;
  height: 3rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 0 1rem 0 1rem;
}

@media screen and (max-width: 767px) {

  .p-cardlist__item.-bp::after,
  .p-cardlist__item.-td::after {
    width: 6.2rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
}

.p-cardlist__item.-bp::after {
  content: "BP収録";
  background-color: #1e1e1e;
}

.p-cardlist__item.-td::after {
  content: "TD収録";
  background-color: #b73237;
}

.p-cardlist__item.-unreleased {
  display: none;
}

.p-cardlist__item.-unreleased {
  pointer-events: none;
}

.p-cardlist__item.-unreleased::before {
  display: none;
}

.p-cardlist__illustrator {
  margin-top: 8rem;
  margin-inline: auto;
  width: 100%;
  max-width: 52.6rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__illustrator {
    margin-top: 4.8rem;
    max-width: 38.2rem;
  }
}

.p-cardlist__illustrator.c-square-btn a {
  padding-block: 2.4rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__illustrator.c-square-btn a {
    padding-block: 1.3rem;
  }
}

.p-cardlist__btn-list {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
}

@media screen and (max-width: 767px) {
  .p-cardlist__btn-list {
    margin-top: 4.8rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}

/*-------------------------------
p-cardloop
-------------------------------*/
.p-cardloop {
  margin-top: 12rem;
  margin-inline: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .p-cardloop {
    margin-top: 6.5rem;
  }
}

.p-cardloop__track {
  display: flex;
  animation: cardloop 60s linear infinite;
}

.p-cardloop__item {
  margin-left: 2.4rem;
  width: 17.9rem;
  flex-shrink: 0;
  perspective: 60rem;
}

@media screen and (max-width: 767px) {
  .p-cardloop__item {
    margin-left: 0.8rem;
    width: 9.7rem;
    perspective: 30rem;
  }
}

.p-cardloop__card {
  width: 100%;
  aspect-ratio: 179/250;
  position: relative;
  transform-style: preserve-3d;
}

.p-cardloop__card.is-flipping {
  animation: cardflip 1.3s linear;
}

.p-cardloop__front,
.p-cardloop__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.p-cardloop__front img,
.p-cardloop__back img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 179/250;
}

.p-cardloop__back {
  transform: rotateY(180deg);
}

@keyframes cardloop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(var(--loop-width));
  }
}

@keyframes cardflip {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(-360deg);
  }
}

/*-------------------------------
p-charm
-------------------------------*/
.p-charm {
  padding-top: 14rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-charm {
    padding-top: 5.9rem;
  }
}

.p-charm::before,
.p-charm::after {
  content: "";
  position: absolute;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {

  .p-charm::before,
  .p-charm::after {
    display: none;
  }
}

.p-charm::before {
  width: 67.6rem;
  height: 102.6rem;
  top: 9rem;
  left: calc(50% - 74rem);
  background: url(../images/charm/charm-deco-left.avif) center/contain no-repeat;
}

.p-charm::after {
  width: 67.6rem;
  height: 78.7rem;
  top: 57rem;
  left: calc(50% + 86rem);
  background: url(../images/charm/charm-deco-right.avif) center/contain no-repeat;
}

.p-charm__inner.l-inner {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-charm__inner.l-inner {
    padding-inline: 1.4rem;
    max-width: 50rem;
  }
}

.p-charm__title {
  margin-inline: auto;
  width: 100%;
  max-width: 79rem;
}

.p-charm__title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 790/169;
}

.p-charm__list {
  margin-top: 8rem;
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-charm__list {
    margin-top: 2.6rem;
    flex-direction: column;
    gap: 0;
  }
}

@media (min-width: 768px) {
  .p-charm__item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
}

@media (min-width: 768px) {
  .p-charm__item.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-charm__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-charm__item:nth-child(2) {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-charm__item:nth-child(3) {
    margin-top: 1.4rem;
  }
}

.p-charm__item-body {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-charm__item-body {
    display: none;
  }
}

.p-charm__item-bg {
  width: 33.3rem;
}

.p-charm__item:nth-child(even) .p-charm__item-bg {
  transform: rotate(180deg);
}

.p-charm__item-bg img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 333/333;
}

.p-charm__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-charm__item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.-type-01 .p-charm__item-img {
  width: 26.8rem;
}

.-type-01 .p-charm__item-img img {
  aspect-ratio: 268/350;
}

.-type-02 .p-charm__item-img {
  width: 32.9rem;
}

.-type-02 .p-charm__item-img img {
  aspect-ratio: 334/322;
}

.-type-03 .p-charm__item-img {
  width: 36rem;
}

.-type-03 .p-charm__item-img img {
  aspect-ratio: 356/245;
}

.p-charm__item-title {
  margin-top: 1.6rem;
  width: 34.7rem;
}

@media screen and (max-width: 767px) {
  .p-charm__item-title {
    margin-top: 0;
    width: 45rem;
    transition: 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(1.6px);
  }
}

.p-charm__item-title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 347/48;
}

@media screen and (max-width: 767px) {
  .p-charm__item-title img {
    aspect-ratio: 443/64;
  }
}

@media screen and (max-width: 767px) {
  .-type-01 .p-charm__item-title {
    margin-left: -6.2rem;
    clip-path: inset(0 100% 0 0);
  }
}

@media screen and (max-width: 767px) {
  .-type-02 .p-charm__item-title {
    margin-right: -6rem;
    clip-path: inset(0 0 0 100%);
  }
}

@media screen and (max-width: 767px) {
  .-type-03 .p-charm__item-title {
    margin-left: -6.9rem;
    clip-path: inset(0 100% 0 0);
  }
}

@media screen and (max-width: 767px) {
  .-type-01 .p-charm__item-title.is-active {
    margin-left: -6.2rem;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }
}

@media screen and (max-width: 767px) {
  .-type-02 .p-charm__item-title.is-active {
    margin-right: -6rem;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }
}

@media screen and (max-width: 767px) {
  .-type-03 .p-charm__item-title.is-active {
    margin-left: -6.9rem;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }
}

/*-------------------------------
p-combo-modal
-------------------------------*/
@media screen and (max-width: 767px) {
  .p-combo-modal__inner {
    padding-block: 7.3rem 0.2rem;
  }
}

.p-combo-modal__content {
  margin-inline: auto;
  padding: 5.4rem;
  width: 80%;
  max-width: 1104px;
  background-color: #fff;
  border: 2px solid #cfa962;
}

@media screen and (max-width: 767px) {
  .p-combo-modal__content {
    padding: 2.2rem 2rem;
    width: 100%;
    max-width: 38.2rem;
  }
}

.p-combo-modal__container {
  margin-inline: auto;
  width: 100%;
  max-width: 99.1rem;
  height: calc(100dvh - 18.6rem);
  max-height: 68.6rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  overflow-y: scroll;
  scrollbar-color: #cfa962 transparent;
}

@media screen and (max-width: 767px) {
  .p-combo-modal__container {
    max-width: 94rem;
    height: calc(100dvh - 18.6rem);
    max-height: 68.6rem;
    flex-direction: column;
  }
}

.p-combo-modal__img-wrap {
  width: 43.3rem;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p-combo-modal__img-wrap {
    width: 100%;
  }
}

.p-combo-modal__img {
  margin-inline: auto;
  width: 31rem;
}

@media screen and (max-width: 767px) {
  .p-combo-modal__img {
    width: 24.4rem;
  }
}

.p-combo-modal__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 310/433;
}

.is-horizontal .p-combo-modal__img {
  width: 43.3rem;
}

@media screen and (max-width: 767px) {
  .is-horizontal .p-combo-modal__img {
    width: 100%;
  }
}

.is-horizontal .p-combo-modal__img img {
  aspect-ratio: 433/310;
}

.p-combo-modal__body {
  flex-grow: 1;
}

.p-combo-modal__name {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: pre-wrap;
}

@media screen and (max-width: 767px) {
  .p-combo-modal__name {
    font-size: 1.6rem;
    justify-content: center;
  }
}

.p-combo-modal__name::before,
.p-combo-modal__name::after {
  content: "";
  margin-top: 0.3rem;
  width: 1.5rem;
  height: 1.6rem;
  background: url(../images/common/emblem.svg) center/contain no-repeat;
}

@media screen and (max-width: 767px) {

  .p-combo-modal__name::before,
  .p-combo-modal__name::after {
    width: 1.1rem;
    height: 1.2rem;
  }
}

.p-combo-modal__illustrator,
.p-combo-modal__includ {
  margin-top: 2.4rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

@media screen and (max-width: 767px) {

  .p-combo-modal__illustrator,
  .p-combo-modal__includ {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    text-align: center;
  }
}

.p-combo-modal__text {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-combo-modal__text {
    margin-top: 1.4rem;
    font-size: 1.4rem;
  }
}

.p-combo-modal__btn {
  margin-top: 2.4rem;
}

@media screen and (max-width: 767px) {
  .p-combo-modal__btn {
    margin-top: 1.6rem;
  }
}

.-no-link .p-combo-modal__btn {
  display: none;
}

/*-------------------------------
p-combo
-------------------------------*/
.p-combo {
  margin-top: 12rem;
  padding-top: 15rem;
  padding-bottom: 16rem;
  position: relative;
  z-index: 0;
  background: url(../images/combo/combo-bg.avif) top center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .p-combo {
    margin-top: 6rem;
    padding-top: 6rem;
    padding-bottom: 6.4rem;
    background: url(../images/combo/combo-bg_sp.avif) top center/cover no-repeat;
  }
}

.p-combo::before,
.p-combo::after {
  content: "";
  mix-blend-mode: overlay;
  position: absolute;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), top 1.4s cubic-bezier(0.16, 1, 0.3, 1), bottom 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media screen and (max-width: 767px) {

  .p-combo::before,
  .p-combo::after {
    display: none;
  }
}

.p-combo::before {
  width: 116.2rem;
  height: 122.3rem;
  left: calc(50% + 80rem);
  transform: translateX(-50%) translateY(var(--combo-before-y, 0px));
  background: url(../images/combo/combo-character01.avif) center/contain no-repeat;
}

.p-combo::after {
  width: 116.2rem;
  height: 122.3rem;
  left: calc(50% - 75rem);
  transform: translateX(-50%) translateY(var(--combo-after-y, 0px));
  background: url(../images/combo/combo-character02.avif) center/contain no-repeat;
}

.p-combo.is-reimu::before {
  top: 30.8rem;
  opacity: 1;
}

.p-combo.is-marisa::after {
  bottom: 24.4rem;
  opacity: 1;
}

.p-combo__inner.l-inner {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-combo__inner.l-inner {
    padding-inline: 16px;
    max-width: 50rem;
  }
}

.p-combo__title {
  margin-inline: auto;
  width: 100%;
  max-width: 130rem;
}

@media screen and (max-width: 767px) {
  .p-combo__title {
    margin-inline: calc(50% - 50vw);
    width: auto;
  }
}

.p-combo__title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1241/154;
}

@media screen and (max-width: 767px) {
  .p-combo__title img {
    margin-inline: auto;
    max-width: 41.4rem;
  }
}

.p-combo__content {
  margin-top: 9.6rem;
  margin-inline: auto;
  max-width: 1100px;
}

@media screen and (max-width: 767px) {
  .p-combo__content {
    margin-top: 3.2rem;
  }
}

/*-------------------------------
p-combo__top
-------------------------------*/
.p-combo__top {
  position: relative;
}

.p-combo__box {
  padding-block: 5.6rem 6.7rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-combo__box {
    margin-inline: calc(50% - 50vw);
    padding-block: 5.3rem 3.5rem;
  }
}

.p-combo__box-bg {
  margin-left: calc(50% - 50vw);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  overflow-y: clip;
}

@media screen and (max-width: 767px) {
  .p-combo__box-bg {
    margin-left: 0;
  }
}

.p-combo__box-bg img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center right;
  object-position: center right;
  aspect-ratio: 1522/572;
}

@media screen and (max-width: 767px) {
  .p-combo__box-bg img {
    -o-object-position: center;
    object-position: center;
    aspect-ratio: 414/693;
  }
}

.p-combo__box-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 4.8rem;
}

@media screen and (max-width: 767px) {
  .p-combo__box-inner {
    margin-inline: auto;
    max-width: 41.4rem;
    flex-direction: column;
  }
}

.p-combo__box-img {
  width: 32.2rem;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s ease-out;
}

@media screen and (max-width: 767px) {
  .p-combo__box-img {
    width: 27.4rem;
  }
}

.p-combo__box-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 322/450;
}

@media screen and (max-width: 767px) {
  .p-combo__box-img img {
    aspect-ratio: 274/382;
  }
}

.p-combo__box-img::after {
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  z-index: 50;
  background: url(../images/common/card-detail-icon.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-combo__box-img::after {
    width: 3.2rem;
    height: 3.2rem;
    bottom: 0.4rem;
    right: 0.4rem;
  }
}

@media (any-hover: hover) {
  .p-combo__box-img:hover {
    opacity: 0.8;
  }
}

.p-combo__box-img-deco {
  position: relative;
}

.p-combo__box-img-deco::before,
.p-combo__box-img-deco::after {
  content: "";
  position: absolute;
  z-index: 10;
}

.p-combo__box-img-deco::before {
  width: 22.9rem;
  height: 13.6rem;
  top: -5.2rem;
  right: -10.2rem;
  background: url(../images/combo/combo-top-deco01.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-combo__box-img-deco::before {
    width: 19.1rem;
    height: 11.4rem;
    top: -2.1rem;
    right: -7rem;
  }
}

.p-combo__box-img-deco::after {
  width: 24.4rem;
  height: 18.6rem;
  bottom: -5.2rem;
  left: -10.2rem;
  background: url(../images/combo/combo-top-deco02.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-combo__box-img-deco::after {
    width: 19.1rem;
    height: 14.7rem;
    bottom: -3.3rem;
    left: -7rem;
  }
}

.p-combo__body {
  width: 100%;
  max-width: 52.8rem;
}

@media screen and (max-width: 767px) {
  .p-combo__body {
    padding-inline: 1.6rem;
    max-width: 100%;
  }
}

.p-combo__body-title {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-combo__body-title {
    width: 32.8rem;
  }
}

.p-combo__body-title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-combo__text {
  margin-top: 1.9rem;
  padding: 1rem 2.3rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  border: 2px solid #cfa962;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-combo__text {
    margin-top: 2rem;
    padding: 0.6rem 1.6rem;
    font-size: 1.4rem;
  }
}

.p-combo__card {
  margin-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .p-combo__card {
    margin-top: 2.6rem;
    margin-inline: calc(50% - 50vw);
  }
}

.p-combo__card-title {
  margin-inline: auto;
  width: 40rem;
}

@media screen and (max-width: 767px) {
  .p-combo__card-title {
    width: 25.1rem;
  }
}

.p-combo__card-title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 404/32;
}

.p-combo__card-list {
  margin-top: 3.7rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-combo__card-list {
    margin-top: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-combo__card-list.c-swiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
  }
}

.p-combo__card-list.c-swiper .-no-swiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.p-combo__card-list.c-swiper .swiper-slide {
  max-width: 17.9rem;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s ease-out;
}

.p-combo__card-list.c-swiper .swiper-slide img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 179/250;
}

@media screen and (min-width: 768px) {
  .p-combo__card-list.c-swiper .swiper-slide.-horizon {
    width: 25rem;
    max-width: 25rem;
  }
}

.p-combo__card-list.c-swiper .swiper-slide.-horizon img {
  aspect-ratio: 250/179;
}

@media screen and (max-width: 767px) {
  .p-combo__card-list.c-swiper .swiper-slide.-horizon {
    width: 25rem;
    max-width: 25rem;
  }
}

.p-combo__card-list.c-swiper .swiper-slide::after {
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: url(../images/common/card-detail-icon.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-combo__card-list.c-swiper .swiper-slide::after {
    width: 3.2rem;
    height: 3.2rem;
    bottom: 0.4rem;
    right: 0.4rem;
  }
}

.p-combo__card-list.c-swiper .swiper-slide.-unreleased {
  display: none;
}

@media (any-hover: hover) {
  .p-combo__card-list.c-swiper .swiper-slide:hover {
    opacity: 0.8;
  }
}

.p-combo__card-list.c-swiper .-no-swiper .swiper-button-wrap {
  display: none;
}

.p-combo__card-list.c-swiper .swiper-button-prev,
.p-combo__card-list.c-swiper .swiper-button-next {
  display: none;
}

@media screen and (max-width: 767px) {

  .p-combo__card-list.c-swiper .swiper-button-prev,
  .p-combo__card-list.c-swiper .swiper-button-next {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-combo__card-list.c-swiper .swiper-button-next {
    transform: rotate(45deg);
  }
}

.p-combo__card-list.c-swiper .swiper-button-prev::after,
.p-combo__card-list.c-swiper .swiper-button-next::after {
  width: 1.6rem;
  height: 1.2rem;
  position: absolute;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-combo__top .swiper-button-prev::after,
.p-combo__top .swiper-button-next::after {
  background-color: #bf2f1f;
}

.p-combo__card-list.c-swiper .swiper-button-prev::after {
  top: 55%;
  left: 45%;
}

.p-combo__card-list.c-swiper .swiper-button-next::after {
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.p-combo__card-list.c-swiper .swiper-pagination {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-combo__card-list.c-swiper .swiper-pagination {
    display: block;
  }
}

.p-combo__top .p-combo__card-list.c-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #bf2f1f;
}

.p-combo__btn.c-square-btn {
  margin-top: 1.6rem;
  margin-inline: auto;
  max-width: 52.6rem;
}

@media screen and (max-width: 767px) {
  .p-combo__btn.c-square-btn {
    margin-top: 1.9rem;
  }
}

.p-combo__btn.c-square-btn a {
  padding-block: 2.4rem;
}

@media screen and (max-width: 767px) {
  .p-combo__btn.c-square-btn a {
    padding-block: 1.3rem;
  }
}

.p-combo-line {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-combo-line {
    margin-inline: auto;
    margin-top: 6.4rem;
    width: 21.1rem;
    display: block;
  }
}

.p-combo-line img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 211/16;
}

/*-------------------------------
p-combo__bottom
-------------------------------*/
.p-combo__bottom {
  margin-top: 15.2rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-combo__bottom {
    margin-top: 6.4rem;
  }
}

.p-combo__bottom .p-combo__box {
  margin-left: -1.2rem;
}

@media screen and (max-width: 767px) {
  .p-combo__bottom .p-combo__box {
    margin-inline: calc(50% - 50vw);
    padding-block: 5.3rem 3.5rem;
  }
}

.p-combo__bottom .p-combo__box-bg {
  margin-left: initial;
  margin-right: calc(50% - 50vw - 1.5rem);
}

@media screen and (max-width: 767px) {
  .p-combo__bottom .p-combo__box-bg {
    margin-right: 0;
  }
}

.p-combo__bottom .p-combo__box-inner {
  padding-left: 1.5rem;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-combo__bottom .p-combo__box-inner {
    padding-left: 0;
    flex-direction: column;
  }
}

.p-combo__bottom .p-combo__box-img-deco::before {
  width: 22.8rem;
  height: 13.4rem;
  top: -5.2rem;
  left: -10.2rem;
  background: url(../images/combo/combo-bottom-deco01.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-combo__bottom .p-combo__box-img-deco::before {
    width: 19.1rem;
    height: 11.1rem;
    top: -2.1rem;
    left: -7rem;
  }
}

.p-combo__bottom .p-combo__box-img-deco::after {
  width: 22.8rem;
  height: 13.4rem;
  bottom: -5.2rem;
  left: initial;
  right: -10.2rem;
  background: url(../images/combo/combo-bottom-deco02.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-combo__bottom .p-combo__box-img-deco::after {
    width: 19.1rem;
    height: 11.1rem;
    bottom: -3rem;
    right: -7rem;
    transform: scaleX(-1);
  }
}

.p-combo__bottom .p-combo__body-title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*-------------------------------
p-cvr-modal
-------------------------------*/
.p-cvr-modal__inner {
  padding: 4rem;
}

@media screen and (max-width: 767px) {
  .p-cvr-modal__inner {
    padding-inline: 1.6rem;
  }
}

.p-cvr-modal__content {
  margin-inline: auto;
  padding: 4rem;
  width: 80%;
  max-width: 1104px;
  background-color: #fff;
  border: 2px solid #cfa962;
}

@media screen and (max-width: 767px) {
  .p-cvr-modal__content {
    padding: 4.8rem 1.6rem;
    width: 100%;
    max-width: 38.2rem;
  }
}

.p-cvr-modal__container {
  margin-inline: auto;
  width: 100%;
  max-width: 62rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.p-cvr-modal__text {
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #cfa962;
}

@media screen and (max-width: 767px) {
  .p-cvr-modal__text {
    padding: 0.6rem 2.4rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.p-cvr-modal__btn {
  margin-top: 2.4rem;
  width: 100%;
  max-width: 50rem;
}

.p-cvr-modal__btn a {
  margin-inline: auto;
  padding-block: 3.3rem;
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: url(../images/common/cvr-modal-btn-bg.avif) center/cover no-repeat;
  border-radius: 5rem;
  border: 1px solid #c59d48;
}

@media screen and (max-width: 767px) {
  .p-cvr-modal__btn a {
    padding-block: 1.9rem;
    font-size: 2rem;
    max-width: 34.3rem;
    gap: 1rem;
  }
}

.p-cvr-modal__btn a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  background-color: #fff;
  -webkit-mask-image: url(../images/common/icon-external-link.svg);
  mask-image: url(../images/common/icon-external-link.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media screen and (max-width: 767px) {
  .p-cvr-modal__btn a::after {
    width: 1.3rem;
    height: 1.3rem;
  }
}

.p-cvr-modal__note-wrap {
  margin-top: 2.4rem;
}

.p-cvr-modal__note {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #111;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .p-cvr-modal__note {
    font-size: 1.4rem;
    font-weight: 500;
    padding-left: 1em;
    text-indent: -1em;
  }
}

/*-------------------------------
p-detail
-------------------------------*/
.p-detail {
  margin-top: 15.1rem;
  padding-bottom: 26.5rem;
}

@media screen and (max-width: 767px) {
  .p-detail {
    margin-top: 6.4rem;
    padding-bottom: 29.3rem;
  }
}

.p-detail__inner.l-inner {
  max-width: 1126px;
}

@media screen and (max-width: 767px) {
  .p-detail__inner.l-inner {
    padding-inline: 16px;
    max-width: 432px;
  }
}

.p-detail__title {
  margin-inline: auto;
  width: 32.3rem;
}

@media screen and (max-width: 767px) {
  .p-detail__title {
    width: 23.9rem;
  }
}

.p-detail__title img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 323/119;
}

@media screen and (max-width: 767px) {
  .p-detail__title img {
    aspect-ratio: 239/71;
  }
}

.p-detail__content {
  margin-top: 6.4rem;
}

@media screen and (max-width: 767px) {
  .p-detail__content {
    margin-top: 3.2rem;
  }
}

.p-detail__item+.p-detail__item {
  margin-top: 9.6rem;
}

@media screen and (max-width: 767px) {
  .p-detail__item+.p-detail__item {
    margin-top: 6.4rem;
  }
}

.p-detail__item-top {
  display: flex;
  gap: 4rem;
}

@media screen and (max-width: 767px) {
  .p-detail__item-top {
    align-items: center;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-detail__item-img {
  width: 100%;
  max-width: 38.240917782%;
}

@media screen and (max-width: 767px) {
  .p-detail__item-img {
    max-width: 100%;
  }
}

.p-detail__item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 400/400;
}

.p-detail__item-body {
  width: 100%;
  max-width: 60.8030592734%;
}

@media screen and (max-width: 767px) {
  .p-detail__item-body {
    max-width: 100%;
  }
}

.p-detail__item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-detail__item-title {
    font-size: 2.4rem;
  }
}

.p-detail__item-badge {
  margin-top: 2.5rem;
  padding: 0.4rem 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  color: #fff;
  background-color: #cfa962;
  border-radius: 8.6rem;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-detail__item-badge {
    margin-top: 0;
    padding: 0.4rem 1.6rem;
    margin-top: 2rem;
  }
}

.p-detail__item-group {
  margin-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .p-detail__item-group {
    margin-top: 1.6rem;
  }
}

.p-detail__item-read {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-detail__item-read {
    font-size: 1.6rem;
  }
}

.p-detail__item-row {
  margin-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .p-detail__item-row {
    margin-top: 1.6rem;
  }
}

.p-detail__item-row-label {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-detail__item-row-label {
    font-size: 1.6rem;
  }
}

.p-detail__item-row-label span {
  color: #cfa962;
}

.p-detail__item-row-value {
  margin-top: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-detail__item-row-value {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
}

.p-detail__item-row-value li {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1.2rem;
}

@media screen and (max-width: 767px) {
  .p-detail__item-row-value li {
    padding-left: 0.6rem;
  }
}

.p-detail__item-btn.c-square-btn {
  margin-top: 4.8rem;
  margin-inline: auto;
  max-width: 52.6rem;
}

@media screen and (max-width: 767px) {
  .p-detail__item-btn.c-square-btn {
    margin-top: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-detail__item-btn.c-square-btn a {
    -moz-tab-size: 2.4rem;
    -o-tab-size: 2.4rem;
    tab-size: 2.4rem;
  }
}

.p-detail__item-btn.c-square-btn button::after {
  display: none;
}

.p-detail__item-btn.c-square-btn span {
  padding-right: 3.1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-detail__item-btn.c-square-btn span {
    padding-right: 1rem;
  }
}

.p-detail__item-btn span::before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 53%;
  left: 70%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url(../images/intro/intro-bracket.svg);
  mask-image: url(../images/intro/intro-bracket.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: 0.2s ease-out;
}

@media screen and (max-width: 767px) {
  .p-detail__item-btn span::before {
    width: 2.1rem;
    height: 2.1rem;
  }
}

@media (any-hover: hover) {
  .p-detail__item-btn.c-square-btn button:hover {
    opacity: 1;
  }

  .p-detail__item-btn:hover span::before {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.p-detail__item-btn span::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 53%;
  left: 70%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url(../images/common/plus-btn.svg);
  mask-image: url(../images/common/plus-btn.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-detail__item-btn span::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}

/*-------------------------------
p-footer
-------------------------------*/
.p-footer {
  margin-top: -11rem;
  padding-block: 16rem 3.2rem;
  background: url(../images/common/footer-bg.avif) top center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: -4.1rem;
    padding-block: 6.8rem 11.5rem;
    background: url(../images/common/footer-bg_sp.avif) top center/cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__inner.l-inner {
    padding-inline: 16px;
  }
}

.p-footer__content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.p-footer__logo {
  width: 30.4rem;
}

.p-footer__logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 304/160;
}

.p-footer__x-link {
  margin-top: 3.2rem;
  width: 59.4rem;
}

@media screen and (max-width: 767px) {
  .p-footer__x-link {
    margin-top: 2.6rem;
    width: 100%;
    max-width: 40rem;
  }
}

.p-footer__x-link img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 594/90;
}

@media screen and (max-width: 767px) {
  .p-footer__x-link img {
    aspect-ratio: 382/64;
  }
}

.p-footer__policy {
  margin-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .p-footer__policy {
    margin-top: 2.5rem;
  }
}

.p-footer__policy a {
  padding-block: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid #2f0808;
}

.p-footer__policy a::after {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  -webkit-mask-image: url(../images/common/icon-external-link.svg);
  mask-image: url(../images/common/icon-external-link.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #2f0808;
}

.p-footer__copyright {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 1.4rem;
  }
}

.p-footer__illustrator {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-footer__illustrator {
    font-size: 1.4rem;
  }
}

/*-------------------------------
p-header__drawer
-------------------------------*/
.p-header__drawer {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  overflow-y: scroll;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.p-header__drawer-inner {
  margin-left: auto;
  padding: 0.8rem;
  width: 100%;
  max-width: 70rem;
  height: 100%;
  border: 2px solid #cfa962;
  background: url(../images/header/drawer-bg.avif) center/cover no-repeat;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-inner {
    padding: 0.4rem;
    max-width: 50rem;
  }
}

.p-header__drawer-content {
  padding-block: 11.3rem;
  padding-inline: 3rem;
  height: 100%;
  border: 1px solid #cfa962;
  overflow-x: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-content {
    padding: 9.8rem 1.2rem;
  }
}

.p-header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-img {
  margin-inline: auto;
  width: 100%;
  max-width: 42.1rem;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-img {
    max-width: 38.2rem;
  }
}

.p-header__drawer-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 421/234;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-img img {
    aspect-ratio: 253/100;
  }
}

@media (any-hover: hover) {
  .p-header__drawer-img:hover {
    opacity: 0.8;
  }
}

.p-header__drawer-nav {
  margin-top: 3.2rem;
  transform: translateX(20px);
  opacity: 0;
  transition: 0.5s ease-out;
  transition-delay: 0.1s;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-nav {
    margin-top: 2.4rem;
    padding-inline: 0.9rem;
    min-inline-size: 0.9rem;
  }
}

.p-header__drawer-nav.is-open {
  transform: translateY(0);
  opacity: 1;
}

.p-header__drawer-item a {
  padding-block: 1.6rem;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 1.2rem;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-item a {
    padding-block: 0.8rem;
    row-gap: 0.8rem;
  }
}

.drawer-word-group {
  display: flex;
  margin-left: -0.1rem;
  /* グループ同士の枠線を重ねる */
}

.drawer-word-group:first-child {
  margin-left: 0;
  /* 行の最初のグループは重ねない */
}

/* 3. 1文字(span)ごとの設定 */
.p-header__drawer-item span {
  padding-block: 0.1rem 0.5rem;
  width: 4.4rem;
  font-family: "Shippori Mincho", serif;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 700;
  border: 0.1rem solid #cfa962;
  margin-left: -0.1rem;
  /* 文字同士の枠線を重ねる */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.2s ease-out;
}

.drawer-word-group span:first-child {
  margin-left: 0;
  /* グループ内の最初の文字は重ねない（グループ自体で重ねているため） */
}

.p-header__drawer-item span {
  padding-block: 0.1rem 0.5rem;
  width: 4.4rem;
  font-family: "Shippori Mincho", serif;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 700;
  border: 0.1rem solid #cfa962;
  margin-left: -0.1rem;
  /* 追加：枠線を重ねて1本線に見せる */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.2s ease-out;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-item span {
    padding-block: 0.2rem 0.4rem;
    width: 2.8rem;
    font-size: 2rem;
  }
}



@media (any-hover: hover) {
  .p-header__drawer-item a:hover span {
    color: #b9965f;
  }
}

.p-header__drawer-btn {
  margin-top: 3.2rem;
  width: 100%;
  max-width: 419px;
}

.p-header__drawer-btn img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 419/80;
}

/*-------------------------------
p-header__drawer 四隅装飾
-------------------------------*/
.p-header__drawer-top-deco,
.p-header__drawer-bottom-deco {
  width: 100%;
  height: 4rem;
  position: absolute;
  left: 0;
}

.p-header__drawer-top-deco {
  top: 0;
}

.p-header__drawer-bottom-deco {
  bottom: 0;
}

.p-header__drawer-top-deco::before,
.p-header__drawer-top-deco::after,
.p-header__drawer-bottom-deco::before,
.p-header__drawer-bottom-deco::after {
  content: "";
  width: 4rem;
  height: 4rem;
  position: absolute;
  background: url(../images/header/drawer-deco.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {

  .p-header__drawer-top-deco::before,
  .p-header__drawer-top-deco::after,
  .p-header__drawer-bottom-deco::before,
  .p-header__drawer-bottom-deco::after {
    width: 3rem;
    height: 3rem;
  }
}

:root {
  --drawer-deco-position: 0.2rem;
}

@media screen and (max-width: 767px) {
  :root {
    --drawer-deco-position: -0.1rem;
  }
}

.p-header__drawer-top-deco::before {
  top: var(--drawer-deco-position);
  left: var(--drawer-deco-position);
}

.p-header__drawer-top-deco::after {
  top: var(--drawer-deco-position);
  right: var(--drawer-deco-position);
  transform: rotate(90deg);
}

.p-header__drawer-bottom-deco::before {
  bottom: var(--drawer-deco-position);
  left: var(--drawer-deco-position);
  transform: rotate(270deg);
}

.p-header__drawer-bottom-deco::after {
  bottom: var(--drawer-deco-position);
  right: var(--drawer-deco-position);
  transform: rotate(180deg);
}

/*-------------------------------
p-header__hamburger
-------------------------------*/
.p-header__hamburger {
  margin: 0;
  padding: 0;
  width: 14.1rem;
  height: 14.1rem;
  background: url(../images/header/hamburger-frame.avif) center/contain no-repeat;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 6.1rem;
    height: 6.1rem;
  }
}

.p-header__hamburger-inner {
  height: 1.4rem;
  position: relative;
  transition: transform 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger-inner {
    height: 0.7rem;
  }
}

@media (any-hover: hover) {
  .p-header__hamburger:hover {
    cursor: pointer;
    transform: rotate(90deg);
  }

  .p-header__hamburger:hover .p-header__hamburger-inner {
    transform: rotate(-90deg);
  }
}

.p-header__hamburger-line {
  width: 6.4rem;
  height: 0.2rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background-color: #fff;
  border-radius: 999px;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger-line {
    width: 2.9rem;
  }
}

.p-header__hamburger-line:nth-of-type(1) {
  top: 0;
}

.p-header__hamburger-line:nth-of-type(2) {
  bottom: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(13deg);
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

/*-------------------------------
p-header
-------------------------------*/
.p-header {
  padding-inline: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-header {
    padding-inline: 0;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 22.7rem;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 13.4rem;
  }
}

.p-header__logo img {
  width: 100%;
  aspect-ratio: 227/120;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-header__logo img {
    aspect-ratio: 134/70;
  }
}

/*-------------------------------
p-illustrator-modal
-------------------------------*/
@media screen and (max-width: 767px) {
  .p-illustrator-modal__inner {
    padding-block: 7.3rem 0.2rem;
  }
}

.p-illustrator-modal__content {
  margin-inline: auto;
  padding: 6.4rem 8rem;
  width: 80%;
  max-width: 1104px;
  background-color: #fff;
  border: 2px solid #cfa962;
}

@media screen and (max-width: 767px) {
  .p-illustrator-modal__content {
    padding: 3.2rem 2.4rem;
    width: 100%;
    max-width: 38.2rem;
  }
}

.p-illustrator-modal__container {
  margin-inline: auto;
  width: 100%;
  max-width: 94rem;
  height: calc(100dvh - 18.6rem);
  max-height: 68.6rem;
  overflow-y: scroll;
  scrollbar-color: #cfa962 transparent;
}

@media screen and (max-width: 767px) {
  .p-illustrator-modal__container {
    max-width: 94rem;
    height: calc(100dvh - 18.6rem);
    max-height: 68.6rem;
  }
}

.p-illustrator-modal__list-group+.p-illustrator-modal__list-group {
  margin-top: 6.4rem;
}

@media screen and (max-width: 767px) {
  .p-illustrator-modal__list-group+.p-illustrator-modal__list-group {
    margin-top: 4.8rem;
  }
}

.p-illustrator-modal__list-title {
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-illustrator-modal__list-title {
    padding: 0.8rem;
    font-size: 2rem;
  }
}

.-booster .p-illustrator-modal__list-title {
  background-color: #383636;
}

.-trial .p-illustrator-modal__list-title {
  background-color: #bf373c;
}

.p-illustrator-modal__list {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 2.4rem;
}

@media screen and (max-width: 767px) {
  .p-illustrator-modal__list {
    margin-top: 2.4rem;
    grid-template-columns: repeat(auto-fill, minmax(12.8rem, 1fr));
    gap: 1.6rem;
  }
}

.p-illustrator-modal__item {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media screen and (max-width: 767px) {
  .p-illustrator-modal__item {
    font-size: 1.4rem;
    gap: 0.4rem;
  }
}

.p-illustrator-modal__item::before {
  content: "◆";
  color: #cfa962;
}

/*-------------------------------
p-intro
-------------------------------*/
.p-intro {
  padding-top: 5rem;
  padding-bottom: 22rem;
}

@media screen and (max-width: 767px) {
  .p-intro {
    padding-top: 5rem;
    padding-bottom: 6.4rem;
  }
}

/*-------------------------------
p-intro__top
-------------------------------*/
.p-intro__top {
  position: relative;
}

.p-intro__top::before,
.p-intro__top::after {
  content: "";
  width: 86.2rem;
  height: 68.5rem;
  position: absolute;
  z-index: -1;
  background: url(../images/intro/intro-deco01.avif) center/contain no-repeat;
  mix-blend-mode: color-burn;
  opacity: 0.2;
}

@media screen and (max-width: 767px) {

  .p-intro__top::before,
  .p-intro__top::after {
    width: 36.8rem;
    height: 29.3rem;
    opacity: 0.3;
  }
}

.p-intro__top::before {
  top: 8rem;
  left: -44rem;
}

@media screen and (max-width: 767px) {
  .p-intro__top::before {
    display: none;
  }
}

.p-intro__top::after {
  top: 76.7rem;
  right: -50.8rem;
  transform: scaleX(-1);
}

@media screen and (max-width: 767px) {
  .p-intro__top::after {
    top: 7.5rem;
    right: 13.6rem;
  }
}

.p-intro__list {
  display: flex;
  flex-direction: column;
  gap: 13rem;
}

@media screen and (max-width: 767px) {
  .p-intro__list {
    gap: 5.9rem;
  }
}

/*-------------------------------
.p-intro__item 共通スタイル
-------------------------------*/
.p-intro__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-intro__item-text {
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p-intro__item-text {
    position: relative;
    z-index: 10;
  }
}

.p-intro__item-text img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-intro__item-right {
  position: relative;
}

.p-intro__item-right::after {
  content: "";
  width: 78.1rem;
  height: 54.9rem;
  position: absolute;
  top: 50%;
  transition: 0.5s ease-out;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

@media screen and (max-width: 767px) {
  .p-intro__item-right::after {
    width: 32rem;
    height: 22.5rem;
  }
}

.p-intro__item-right.is-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.p-intro__item-bg {
  width: 67.9rem;
}

@media screen and (max-width: 767px) {
  .p-intro__item-bg {
    width: 27.8rem;
  }
}

.p-intro__item-bg img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 679/679;
}

.p-intro__item-img {
  position: absolute;
  top: 50%;
  z-index: 10;
}

.p-intro__item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*-------------------------------
.p-intro__item.-type-01
-------------------------------*/
.p-intro__item.-type-01 {
  padding-left: 21.4rem;
  gap: 8.5rem;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-01 {
    padding-left: 0;
    padding-right: 2.6rem;
    gap: 0;
  }
}

.p-intro__item.-type-01 .p-intro__item-text {
  width: 25.2rem;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-01 .p-intro__item-text {
    margin-right: -1.9rem;
    width: 5.6rem;
  }
}

.p-intro__item.-type-01 .p-intro__item-text img {
  aspect-ratio: 252/588;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-01 .p-intro__item-text img {
    aspect-ratio: 54/240;
  }
}

.p-intro__item.-type-01 .p-intro__item-right::after {
  left: 51.9%;
  background: url(../images/intro/intro-flower01.avif) center/cover no-repeat;
}

.p-intro__item.-type-01 .p-intro__item-img {
  width: 52.1rem;
  left: 52.3%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-01 .p-intro__item-img {
    width: 21.4rem;
    left: 52.2%;
  }
}

.p-intro__item.-type-01 .p-intro__item-img img {
  aspect-ratio: 521/805;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-01 .p-intro__item-img img {
    aspect-ratio: 188/305;
  }
}

/*-------------------------------
.p-intro__item.-type-02
-------------------------------*/
.p-intro__item.-type-02 {
  padding-right: 5.3rem;
  gap: 4.8rem;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-02 {
    padding-left: 2.2rem;
    padding-right: 0;
    gap: 0;
  }
}

.p-intro__item.-type-02 .p-intro__item-text {
  width: 42rem;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-02 .p-intro__item-text {
    margin-left: -4rem;
    width: 12rem;
  }
}

.p-intro__item.-type-02 .p-intro__item-text img {
  aspect-ratio: 420/612;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-02 .p-intro__item-text img {
    aspect-ratio: 118/240;
  }
}

.p-intro__item.-type-02 .p-intro__item-right::after {
  left: 50%;
  background: url(../images/intro/intro-flower02.avif) center/cover no-repeat;
}

.p-intro__item.-type-02 .p-intro__item-img {
  width: 41.8rem;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-02 .p-intro__item-img {
    width: 17.2rem;
  }
}

.p-intro__item.-type-02 .p-intro__item-img img {
  aspect-ratio: 418/560;
}

@media screen and (max-width: 767px) {
  .p-intro__item.-type-02 .p-intro__item-img img {
    aspect-ratio: 147/205;
  }
}

/*-------------------------------
p-intro__swiper
-------------------------------*/
.p-intro__swiper.c-swiper {
  margin-top: 6.4rem;
  margin-inline: auto;
  width: 100%;
  max-width: 78.6rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-intro__swiper.c-swiper {
    margin-top: 6.5rem;
    max-width: 40rem;
  }
}

.p-intro__swiper.c-swiper .swiper {
  position: relative;
  z-index: 100;
}

.p-intro__swiper.c-swiper .swiper-slide {
  margin-inline: 2.4rem;
  max-width: 23rem;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s ease-out;
}

@media screen and (max-width: 767px) {
  .p-intro__swiper.c-swiper .swiper-slide {
    margin-inline: 0.8rem;
    max-width: 12rem;
  }
}

.p-intro__swiper.c-swiper .swiper-slide img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 230/320;
}

.p-intro__swiper.c-swiper .swiper-slide::after {
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: url(../images/common/card-detail-icon.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-intro__swiper.c-swiper .swiper-slide::after {
    width: 3.2rem;
    height: 3.2rem;
    bottom: 0.4rem;
    right: 0.4rem;
  }
}

@media (any-hover: hover) {
  .p-intro__swiper.c-swiper .swiper-slide:hover {
    opacity: 0.8;
  }
}

.p-intro__swiper.c-swiper .swiper-button-wrap {
  width: 105.6rem;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-intro__swiper.c-swiper .swiper-button-wrap {
    width: 37rem;
    bottom: -5.5rem;
    transform: translate(-50%, 0);
  }
}

.p-intro__swiper.c-swiper .swiper-button-prev,
.p-intro__swiper.c-swiper .swiper-button-next {
  width: 6.8rem;
  height: 6.8rem;
  background: url(../images/campaign/campaign-arrow.svg) center/contain no-repeat;
}

@media screen and (max-width: 767px) {

  .p-intro__swiper.c-swiper .swiper-button-prev,
  .p-intro__swiper.c-swiper .swiper-button-next {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.p-intro__swiper.c-swiper .swiper-button-prev::after,
.p-intro__swiper.c-swiper .swiper-button-next::after {
  display: none;
}

.p-intro__swiper .swiper-button-prev::after,
.p-intro__swiper .swiper-button-next::after {
  background-color: #cfa962;
}

.p-intro__swiper.c-swiper .swiper-pagination {
  bottom: -5.6rem;
}

@media screen and (max-width: 767px) {
  .p-intro__swiper.c-swiper .swiper-pagination {
    width: 70%;
    bottom: -4.6rem;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}

@media screen and (max-width: 767px) {
  .p-intro__swiper.c-swiper .swiper-pagination .swiper-pagination-bullet {
    margin-inline: 0.6rem;
  }
}

.p-intro__swiper.c-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cfa962;
}

/*-------------------------------
p-intro__bottom
-------------------------------*/
.p-intro__bottom {
  margin-top: 21rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom {
    margin-top: 12.6rem;
  }
}

.p-intro__bottom::before {
  content: "";
  width: 54.9rem;
  height: 39rem;
  position: absolute;
  top: 23.7rem;
  left: -23.7rem;
  z-index: -1;
  background: url(../images/intro/intro-deco02.avif) center/contain no-repeat;
  mix-blend-mode: color-burn;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom::before {
    width: 23.5rem;
    height: 16.6rem;
    top: 11.6rem;
    left: 12.8rem;
  }
}

.p-intro__bottom-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.7rem;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-list {
    gap: 1.4rem;
  }
}

/*-------------------------------
.p-intro__bottom-item
-------------------------------*/
.p-intro__bottom-item {
  width: 100%;
  max-width: 50.4rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item {
    max-width: 18.3rem;
  }
}

.p-intro__bottom-item-wrap {
  padding: 0.8rem;
  height: 100%;
  border: 2px solid #cfa962;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-wrap {
    padding: 0.2rem;
    border: 1px solid #cfa962;
  }
}

.p-intro__bottom-item.-trial .p-intro__bottom-item-wrap {
  background-image: url(../images/intro/intro-check-red.avif);
  background-repeat: repeat;
}

.p-intro__bottom-item.-booster .p-intro__bottom-item-wrap {
  background-image: url(../images/intro/intro-check-black.avif);
  background-repeat: repeat;
}

.p-intro__bottom-item-body {
  padding-block: 2.3rem 6.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  border: 1px solid #cfa962;
  background-color: #f3ede2;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-body {
    padding-block: 1.6rem 1.4rem;
  }
}

.-trial .p-intro__bottom-item-heading {
  width: 32rem;
}

@media screen and (max-width: 767px) {
  .-trial .p-intro__bottom-item-heading {
    width: 12.8rem;
  }
}

.-trial .p-intro__bottom-item-heading img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 320/72;
}

@media screen and (max-width: 767px) {
  .-trial .p-intro__bottom-item-heading img {
    aspect-ratio: 128/37;
  }
}

.-booster .p-intro__bottom-item-heading {
  width: 41.6rem;
}

@media screen and (max-width: 767px) {
  .-booster .p-intro__bottom-item-heading {
    width: 16.4rem;
  }
}

.-booster .p-intro__bottom-item-heading img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 416/72;
}

@media screen and (max-width: 767px) {
  .-booster .p-intro__bottom-item-heading img {
    aspect-ratio: 164/37;
  }
}

.p-intro__bottom-item-img {
  margin-top: 2.4rem;
  width: 30rem;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-img {
    margin-top: 0.8rem;
    width: 12.8rem;
    height: 10rem;
  }
}

.p-intro__bottom-item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*-------------------------------
ダミー画像時の設定
-------------------------------*/
.p-intro__bottom-item.-trial .p-intro__bottom-item-img {
  width: 30rem;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item.-trial .p-intro__bottom-item-img {
    width: 12.8rem;
  }
}

.p-intro__bottom-item.-booster .p-intro__bottom-item-img {
  width: 15.8rem;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item.-booster .p-intro__bottom-item-img {
    width: 5.1rem;
  }
}

.p-intro__bottom-item.-trial .p-intro__bottom-item-img img {
  aspect-ratio: 300/300;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item.-trial .p-intro__bottom-item-img img {
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 128/100;
  }
}

.p-intro__bottom-item.-booster .p-intro__bottom-item-img img {
  aspect-ratio: 158/300;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item.-booster .p-intro__bottom-item-img img {
    aspect-ratio: 51/100;
  }
}

/*-------------------------------
.p-intro__bottom-item-btn
-------------------------------*/
.p-intro__bottom-item-btn {
  width: 24rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-btn {
    margin-top: 1rem;
    width: 18.3rem;
    position: relative;
  }
}

.p-intro__bottom-item-btn button {
  padding-block: 1.8rem;
  width: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  background-color: #fff;
  border-radius: 5rem 0 0 5rem;
  border: 2px solid #cfa962;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-btn button {
    padding-block: 1rem;
    font-size: 1.6rem;
    border-radius: 5rem;
  }
}

.p-intro__bottom-item-btn span {
  padding-right: 3.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-btn span {
    padding-right: 1rem;
  }
}

.p-intro__bottom-item-btn span::before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  left: 77%;
  transform: translate(-50%, -50%);
  background: url(../images/intro/intro-bracket.svg) center/contain no-repeat;
  transition: 0.2s ease-out;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-btn span::before {
    width: 2.1rem;
    height: 2.1rem;
  }
}

@media (any-hover: hover) {
  .p-intro__bottom-item-btn:hover span::before {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.p-intro__bottom-item-btn span::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 77%;
  transform: translate(-50%, -50%);
  background: url(../images/common/plus-btn.svg) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-intro__bottom-item-btn span::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}

/*-------------------------------
.p-intro__bottom-item 四隅装飾
-------------------------------*/
.p-intro__bottom-item-top-deco,
.p-intro__bottom-item-bottom-deco {
  width: 100%;
  height: 4rem;
  position: absolute;
  left: 0;
}

.p-intro__bottom-item-top-deco {
  top: 0;
}

.p-intro__bottom-item-bottom-deco {
  bottom: 0;
}

.p-intro__bottom-item-top-deco::before,
.p-intro__bottom-item-top-deco::after,
.p-intro__bottom-item-bottom-deco::before,
.p-intro__bottom-item-bottom-deco::after {
  content: "";
  width: 4rem;
  height: 4rem;
  position: absolute;
  background: url(../images/header/drawer-deco.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {

  .p-intro__bottom-item-top-deco::before,
  .p-intro__bottom-item-top-deco::after,
  .p-intro__bottom-item-bottom-deco::before,
  .p-intro__bottom-item-bottom-deco::after {
    width: 1.3rem;
    height: 1.3rem;
  }
}

:root {
  --intro-deco-position: -0.8rem;
}

@media screen and (max-width: 767px) {
  :root {
    --intro-deco-position: -0.3rem;
  }
}

.p-intro__bottom-item-top-deco::before {
  top: var(--intro-deco-position);
  left: var(--intro-deco-position);
}

.p-intro__bottom-item-top-deco::after {
  top: var(--intro-deco-position);
  right: var(--intro-deco-position);
  transform: rotate(90deg);
}

.p-intro__bottom-item-bottom-deco::before {
  bottom: var(--intro-deco-position);
  left: var(--intro-deco-position);
  transform: rotate(270deg);
}

.p-intro__bottom-item-bottom-deco::after {
  bottom: var(--intro-deco-position);
  right: var(--intro-deco-position);
  transform: rotate(180deg);
}

/*-------------------------------
parallax設定
-------------------------------*/
.p-intro__top::before {
  transform: translateY(var(--intro-top-before-y, 0px));
}

.p-intro__top::after {
  transform: scaleX(-1) translateY(var(--intro-top-after-y, 0px));
}

.p-intro__bottom::before {
  transform: translateY(var(--intro-bottom-before-y, 0px));
}

/*-------------------------------
p-movie-modal
-------------------------------*/
@media screen and (max-width: 767px) {
  .p-movie-modal__inner {
    padding-block: 7.3rem 0.2rem;
  }
}

.p-movie-modal__content {
  margin-inline: auto;
  width: 80%;
  max-width: 130rem;
}

@media screen and (max-width: 767px) {
  .p-movie-modal__content {
    width: 100%;
    max-width: 38.2rem;
  }
}

.p-movie-modal__content iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/*-------------------------------
p-mv
-------------------------------*/
.p-mv {
  padding-top: 103.5rem;
  width: 100%;
  position: relative;
  overflow: clip;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 60.8rem;
  }
}

.p-mv__bg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .p-mv__bg {
    width: 82.8rem;
  }
}

.p-mv__bg img {
  width: 384rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

/*-------------------------------
p-mv__deco-group
-------------------------------*/
.p-mv__symbol {
  width: 163rem;
  height: 163rem;
  position: absolute;
  top: -93.1rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  opacity: 0;
  will-change: transform, opacity;
}

@media screen and (max-width: 767px) {
  .p-mv__symbol {
    width: 60.8rem;
    height: 60.8rem;
    top: -23.7rem;
  }
}

.p-mv__symbol img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1630/1630;
}

.p-mv__haze {
  position: absolute;
  transform: translateX(-50%);
  opacity: 0;
  will-change: transform, opacity;
}

.p-mv__haze img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-mv__haze.-type-01 {
  width: 43.4rem;
  top: 3.3rem;
  left: 34.3%;
  z-index: 15;
}

@media screen and (max-width: 767px) {
  .p-mv__haze.-type-01 {
    width: 17.3rem;
    top: 8rem;
    left: 30.8%;
  }
}

.p-mv__haze.-type-01 img {
  aspect-ratio: 434/190;
}

.p-mv__haze.-type-02 {
  width: 36rem;
  top: 1.5rem;
  left: 68.5%;
}

@media screen and (max-width: 767px) {
  .p-mv__haze.-type-02 {
    display: none;
  }
}

.p-mv__haze.-type-02 img {
  aspect-ratio: 360/116;
}

.p-mv__haze.-type-03 {
  width: 45.5rem;
  top: 39.3rem;
  left: 65.9%;
  z-index: 15;
}

@media screen and (max-width: 767px) {
  .p-mv__haze.-type-03 {
    width: 18.1rem;
    top: 25.4rem;
    left: 71.1%;
  }
}

.p-mv__haze.-type-03 img {
  aspect-ratio: 455/169;
}

.p-mv__haze.-type-04 {
  width: 67.6rem;
  top: 36.6rem;
  left: 28.2%;
  z-index: 15;
}

@media screen and (max-width: 767px) {
  .p-mv__haze.-type-04 {
    width: 26.9rem;
    top: 20rem;
    left: 21.3%;
  }
}

.p-mv__haze.-type-04 img {
  aspect-ratio: 675/221;
}

.p-mv__haze.-type-05 {
  width: 39.9rem;
  top: 23.5rem;
  left: 75.5%;
  z-index: 15;
}

@media screen and (max-width: 767px) {
  .p-mv__haze.-type-05 {
    width: 15.9rem;
    top: 9.5rem;
    left: 72.8%;
  }
}

.p-mv__haze.-type-05 img {
  aspect-ratio: 399/116;
}

/*-------------------------------
p-mv__character-group
-------------------------------*/
.p-mv__character {
  position: absolute;
  transform: translateX(-50%);
}

.p-mv__character img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-mv__character.-flan {
  width: 97.7rem;
  top: -33.2rem;
  left: 59.8%;
  z-index: 20;
  opacity: 0;
  transform: translateX(-50%) translateY(8rem);
}

@media screen and (max-width: 767px) {
  .p-mv__character.-flan {
    width: 38.7rem;
    top: -13.7rem;
    left: 62.9%;
    transform: translateX(-50%) translateY(4rem);
  }
}

.p-mv__character.-flan img {
  aspect-ratio: 977/1230;
}

.p-mv__character.-koishi {
  width: 49.2rem;
  top: -2.8rem;
  left: 36.8%;
  z-index: 20;
  opacity: 0;
  transform: translateX(-50%) translateY(8rem);
}

@media screen and (max-width: 767px) {
  .p-mv__character.-koishi {
    width: 20.9rem;
    top: 6.5rem;
    left: 32.7%;
    z-index: 25;
    transform: translateX(-50%) translateY(4rem);
  }
}

.p-mv__character.-koishi img {
  aspect-ratio: 492/662;
}

.p-mv__character.-marisa {
  width: 53.8rem;
  top: 5.2rem;
  left: 54.1%;
  z-index: 24;
  opacity: 0;
  transform: translateX(-50%) translateY(8rem);
}

@media screen and (max-width: 767px) {
  .p-mv__character.-marisa {
    width: 22.8rem;
    top: 5.8rem;
    left: 55.7%;
    transform: translateX(-50%) translateY(4rem);
  }
}

.p-mv__character.-marisa img {
  aspect-ratio: 538/848;
}

.p-mv__character.-reimu {
  width: 62.1rem;
  top: 6.1rem;
  left: 46.3%;
  z-index: 23;
  opacity: 0;
  transform: translateX(-50%) translateY(8rem);
}

@media screen and (max-width: 767px) {
  .p-mv__character.-reimu {
    width: 26.4rem;
    top: -1.4rem;
    left: 48.5%;
    transform: translateX(-50%) translateY(4rem);
  }
}

.p-mv__character.-reimu img {
  aspect-ratio: 621/964;
}

/*-------------------------------
その他
-------------------------------*/
.p-mv__logo {
  width: 86.2rem;
  position: absolute;
  top: 48rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}

@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 38.7rem;
    top: 31.3rem;
    left: 50.4%;
  }
}

.p-mv__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 862/455;
}

@media screen and (max-width: 767px) {
  .p-mv__logo img {
    aspect-ratio: 387/247;
  }
}

.p-mv__pack01 {
  width: 18.3rem;
  position: absolute;
  top: 64rem;
  left: 50%;
  transform: translateX(-369%) rotate(-9deg);
  z-index: 28;
  filter: drop-shadow(0 0 3rem #fff);
  /* 変更 */
}

@media screen and (max-width: 767px) {
  .p-mv__pack01 {
    width: 6.2rem;
    top: 39.8rem;
    left: 50%;
    transform: translateX(-305%) rotate(-9deg);
    filter: drop-shadow(0 0 1rem #fff);
    /* 変更 */
  }
}

.p-mv__pack01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 183/300;
}

.p-mv__pack02 {
  width: 12.7rem;
  position: absolute;
  top: 69rem;
  left: 50%;
  transform: translateX(385%) rotate(9deg);
  z-index: 28;
  filter: drop-shadow(0 0 3rem #fff);
  /* 変更 */
}

@media screen and (max-width: 767px) {
  .p-mv__pack02 {
    width: 4.3rem;
    top: 40.6rem;
    left: 50%;
    transform: translateX(330%) rotate(9deg);
    filter: drop-shadow(0 0 1rem #fff);
    /* 変更 */
  }
}

.p-mv__pack02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 127/250;
}

/*-------------------------------
p-mv__btn-list
-------------------------------*/
.p-mv__btn-list {
  display: flex;
  justify-content: center;
  gap: 4.8rem;
}

@media screen and (max-width: 767px) {
  .p-mv__btn-list {
    align-items: center;
    flex-direction: column;
    gap: 2.4rem;
  }
}

/*-------------------------------
p-mv.is-active(アニメーション)
-------------------------------*/
.is-loaded .p-mv__symbol {
  animation: mv-symbol 1.2s 0.3s ease forwards;
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__symbol {
    animation: mv-symbol-sp 1.2s 0.3s ease forwards;
  }
}

@keyframes mv-symbol {
  0% {
    transform: translate(-50%, -120px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes mv-symbol-sp {
  0% {
    transform: translate(-50%, -80px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.is-loaded .p-mv__haze.-type-01 {
  animation: mv-haze-right 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__haze.-type-01 {
    animation: mv-haze-right-sp 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

.is-loaded .p-mv__haze.-type-02 {
  animation: mv-haze-left 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-loaded .p-mv__haze.-type-03 {
  animation: mv-haze-left 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__haze.-type-03 {
    animation: mv-haze-left-sp 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

.is-loaded .p-mv__haze.-type-04 {
  animation: mv-haze-right 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__haze.-type-04 {
    animation: mv-haze-right-sp 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

.is-loaded .p-mv__haze.-type-05 {
  animation: mv-haze-left 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__haze.-type-05 {
    animation: mv-haze-left-sp 2.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes mv-haze-right {
  0% {
    transform: translateX(calc(-50% + 120px));
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

@keyframes mv-haze-right-sp {
  0% {
    transform: translateX(calc(-50% + 60px));
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

@keyframes mv-haze-left {
  0% {
    transform: translateX(calc(-50% - 120px));
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

@keyframes mv-haze-left-sp {
  0% {
    transform: translateX(calc(-50% - 60px));
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

/*-------------------------------
haze常時揺れアニメーション
-------------------------------*/
.p-mv__haze.-type-01.is-floating,
.p-mv__haze.-type-04.is-floating {
  animation: haze-float-left 3s ease-in-out infinite;
}

.p-mv__haze.-type-02.is-floating,
.p-mv__haze.-type-03.is-floating,
.p-mv__haze.-type-05.is-floating {
  animation: haze-float-right 3s ease-in-out infinite;
}

@keyframes haze-float-left {

  0%,
  100% {
    transform: translateX(-50%);
    opacity: 1;
  }

  50% {
    transform: translateX(calc(-50% - 4rem));
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  @keyframes haze-float-left {

    0%,
    100% {
      transform: translateX(-50%);
      opacity: 1;
    }

    50% {
      transform: translateX(calc(-50% - 2rem));
      opacity: 1;
    }
  }
}

@keyframes haze-float-right {

  0%,
  100% {
    transform: translateX(-50%);
    opacity: 1;
  }

  50% {
    transform: translateX(calc(-50% + 4rem));
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  @keyframes haze-float-right {

    0%,
    100% {
      transform: translateX(-50%);
      opacity: 1;
    }

    50% {
      transform: translateX(calc(-50% + 2rem));
      opacity: 1;
    }
  }
}

/*-------------------------------
characterアニメーション
-------------------------------*/
.is-loaded .p-mv__character {
  animation-name: mv-character;
  animation-duration: 0.6s;
  transition-timing-function: ease;
  animation-fill-mode: forwards;
  --animation-delay-1: 0.4s;
  --animation-delay-2: 0.55s;
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__character {
    animation-name: mv-character-sp;
  }
}

.is-loaded .p-mv__character.-flan {
  animation-delay: var(--animation-delay-1);
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__character.-flan {
    animation-delay: var(--animation-delay-1);
  }
}

.is-loaded .p-mv__character.-koishi {
  animation-delay: var(--animation-delay-1);
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__character.-koishi {
    animation-delay: var(--animation-delay-2);
  }
}

.is-loaded .p-mv__character.-marisa {
  animation-delay: var(--animation-delay-2);
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__character.-marisa {
    animation-delay: var(--animation-delay-2);
  }
}

.is-loaded .p-mv__character.-reimu {
  animation-delay: var(--animation-delay-2);
}

@media screen and (max-width: 767px) {
  .is-loaded .p-mv__character.-reimu {
    animation-delay: var(--animation-delay-1);
  }
}

@keyframes mv-character {
  0% {
    transform: translateX(-50%) translateY(8rem);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes mv-character-sp {
  0% {
    transform: translateX(-50%) translateY(4rem);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/*-------------------------------
logoアニメーション
-------------------------------*/
.p-mv__logo,
.p-mv__pack01,
.p-mv__pack02 {
  opacity: 0;
}

.is-loaded .p-mv__logo,
.is-loaded .p-mv__pack01,
.is-loaded .p-mv__pack02 {
  animation: mv-logo-group 0.6s 0.7s ease forwards;
}

@media screen and (max-width: 767px) {

  .is-loaded .p-mv__logo,
  .is-loaded .p-mv__pack01,
  .is-loaded .p-mv__pack02 {
    animation: mv-logo-group-sp 0.6s 0.7s ease forwards;
  }
}

@keyframes mv-logo-group {
  0% {
    margin-top: 8rem;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes mv-logo-group-sp {
  0% {
    margin-top: 4rem;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/*-------------------------------
btnリストアニメーション
-------------------------------*/
.p-mv__btn-list {
  opacity: 0;
}

.is-loaded .p-mv__btn-list {
  animation: mv-btn-list 0.6s 0.85s ease forwards;
}

@keyframes mv-btn-list {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*-------------------------------
p-opening
-------------------------------*/
.p-opening {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  overflow: clip;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-out, visibility 1s ease-out;
}

.is-loaded .p-opening {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-opening__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}

.p-opening__bg::before {
  content: "";
  width: 80rem;
  height: 80rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/common/opening-bg-symbol.avif) center/contain no-repeat;
  animation: opening-spin 36s linear infinite;
}

@media screen and (max-width: 767px) {
  .p-opening__bg::before {
    width: 48rem;
    height: 48rem;
  }
}

@keyframes opening-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.p-opening__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-opening__text {
  width: 24.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: opening-text 1s linear infinite;
}

@media screen and (max-width: 767px) {
  .p-opening__text {
    width: 14.9rem;
  }
}

@keyframes opening-text {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

.p-opening__text img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 248/67;
}

@media screen and (max-width: 767px) {
  .p-opening__text img {
    aspect-ratio: 149/49;
  }
}

/*-------------------------------
p-page-top
-------------------------------*/
.p-page-top {
  position: absolute;
  bottom: 15.4rem;
  right: 2.5rem;
  z-index: 800;
  animation: page-top-animation 1.4s ease-out infinite;
}

@media screen and (max-width: 767px) {
  .p-page-top {
    bottom: 56rem;
    right: 50%;
    transform: translateX(50%);
  }
}

.p-page-top button {
  width: 17.6rem;
  transition: transform 0.2s ease-out;
}

@media screen and (max-width: 767px) {
  .p-page-top button {
    width: 19rem;
  }
}

@media (any-hover: hover) {
  .p-page-top button:hover {
    opacity: 1;
    transform: translateY(-10px);
  }
}

.p-page-top img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 100/100;
}

@keyframes page-top-animation {
  0% {
    transform: translateY(0);
  }

  9% {
    transform: translateY(-10px);
  }

  18% {
    transform: translateY(0);
  }

  27% {
    transform: translateY(-10px);
  }

  36% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  @keyframes page-top-animation {
    0% {
      transform: translateX(50%) translateY(0);
    }

    9% {
      transform: translateX(50%) translateY(-10px);
    }

    18% {
      transform: translateX(50%) translateY(0);
    }

    27% {
      transform: translateX(50%) translateY(-10px);
    }

    36% {
      transform: translateX(50%) translateY(0);
    }

    100% {
      transform: translateX(50%) translateY(0);
    }
  }
}

/*-------------------------------
p-tutorial
-------------------------------*/
.p-tutorial {
  position: relative;
  padding: 2.4rem;
  overflow: clip;
}

@media screen and (max-width: 767px) {
  .p-tutorial {
    padding: 0.8rem;
  }
}

/*-------------------------------
p-tutorial 背景
-------------------------------*/
.p-tutorial__bg-bezel {
  padding: 2.4rem;
  background-color: #b9965f;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-tutorial__bg-bezel::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/bg-pattern.avif);
  background-size: 69.5rem;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

@media screen and (max-width: 767px) {
  .p-tutorial__bg-bezel::before {
    background-size: 77.5rem;
  }
}

.p-tutorial__bg {
  padding-block: 10rem 15.6rem;
  position: relative;
  background-color: #ede4d6;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .p-tutorial__bg {
    padding-block: 4rem 23.8rem;
  }
}

.p-tutorial__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/tutorial/tutorial-bg-deco.avif) center/cover no-repeat;
  mix-blend-mode: overlay;
  opacity: 0.15;
}

/*-------------------------------
p-tutorial 内側
-------------------------------*/
.p-tutorial__inner.l-inner {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-tutorial__inner.l-inner {
    padding: 0;
  }
}

.p-tutorial__title01 {
  margin-inline: auto;
  max-width: 64.6rem;
}

@media screen and (max-width: 767px) {
  .p-tutorial__title01 {
    max-width: 33.3rem;
  }
}

.p-tutorial__title01 img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 646/184;
}

@media screen and (max-width: 767px) {
  .p-tutorial__title01 img {
    aspect-ratio: 324/90;
  }
}

.p-tutorial__content {
  margin-top: 6.2rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-tutorial__content {
    margin-top: 2.9rem;
    width: 45.3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-tutorial__reimu,
.p-tutorial__marisa {
  position: absolute;
  z-index: 30;
}

@media screen and (max-width: 767px) {

  .p-tutorial__reimu,
  .p-tutorial__marisa {
    transition: transform 0.5s ease-out;
  }
}

.p-tutorial__reimu {
  width: 27.7rem;
  height: 36rem;
  top: 16rem;
  right: 8.3rem;
  background: url(../images/tutorial/tutorial-reimu.avif) center/contain no-repeat;
}

@media screen and (max-width: 1400px) {
  .p-tutorial__reimu {
    right: 3%;
  }
}

@media screen and (max-width: 767px) {
  .p-tutorial__reimu {
    width: 17.3rem;
    height: 22.5rem;
    top: initial;
    bottom: -19rem;
    right: 4.2rem;
    transform: translateX(240%);
  }
}

.p-tutorial__marisa {
  width: 28.7rem;
  height: 34.9rem;
  top: 86.1rem;
  left: 8.5rem;
  background: url(../images/tutorial/tutorial-marisa.avif) center/contain no-repeat;
}

@media screen and (max-width: 1400px) {
  .p-tutorial__marisa {
    left: 3%;
  }
}

@media screen and (max-width: 767px) {
  .p-tutorial__marisa {
    width: 17.9rem;
    height: 21.8rem;
    top: initial;
    bottom: -18.6rem;
    left: 4.3rem;
    transform: translateX(-240%);
  }
}

@media screen and (max-width: 767px) {

  .p-tutorial__reimu.is-active,
  .p-tutorial__marisa.is-active {
    transform: translateX(0);
  }
}

.p-tutorial__content-list {
  margin-inline: auto;
  width: 100%;
  max-width: 90rem;
}

.p-tutorial__content-item+.p-tutorial__content-item {
  margin-top: 1.6rem;
}

/* .p-tutorial__content-item:nth-child(2)::before {
  content: "";
  width: 52.1rem;
  height: 37.9rem;
  position: absolute;
  top: 34.6%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/tutorial/tutorial-dummy.avif) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-tutorial__content-item:nth-child(2)::before {
    width: 42rem;
    height: 35rem;
    top: 29.7%;
  }
} */

.p-tutorial__title02 {
  margin-top: 6.4rem;
  margin-inline: auto;
  max-width: 99rem;
}

@media screen and (max-width: 767px) {
  .p-tutorial__title02 {
    margin-top: 4.8rem;
    max-width: 36.1rem;
  }
}

.p-tutorial__movie {
  margin-top: 6.9rem;
}

@media screen and (max-width: 767px) {
  .p-tutorial__movie {
    margin-top: 3.6rem;
  }
}

.p-tutorial__movie-thumbnail {
  margin-inline: auto;
  max-width: 96.8rem;
  cursor: pointer;
  border: 4px solid #cfa962;
  outline-offset: 8px;
  outline: 1px solid #cfa962;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-tutorial__movie-thumbnail {
    max-width: 36.2rem;
    border: 2px solid #cfa962;
    outline-offset: 2px;
  }
}

.p-tutorial__movie-thumbnail img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 968/548;
}

.p-tutorial__movie-thumbnail::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.58);
}

.p-tutorial__movie-thumbnail::after {
  content: "";
  width: 11.8rem;
  height: 11.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/common/movie-btn.avif) center/contain no-repeat;
  transition: 0.2s ease-out;
}

@media screen and (max-width: 767px) {
  .p-tutorial__movie-thumbnail::after {
    width: 10rem;
    height: 10rem;
  }
}

@media (any-hover: hover) {
  .p-tutorial__movie-thumbnail:hover::after {
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.p-tutorial__lets {
  margin-top: 16rem;
  margin-inline: auto;
  max-width: 85rem;
}

@media screen and (max-width: 767px) {
  .p-tutorial__lets {
    margin-top: 5.1rem;
    width: 42.5rem;
  }
}

.p-tutorial__lets img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 723/209;
}

@media screen and (max-width: 767px) {
  .p-tutorial__lets img {
    aspect-ratio: 425/121;
  }
}

/*-------------------------------
.p-tutorial__movie 四隅装飾
-------------------------------*/
.p-tutorial__movie-top-deco,
.p-tutorial__movie-bottom-deco {
  width: 100%;
  height: 4rem;
  position: absolute;
  z-index: 10;
  left: 0;
}

.p-tutorial__movie-top-deco {
  top: 0;
}

.p-tutorial__movie-bottom-deco {
  bottom: 0;
}

.p-tutorial__movie-top-deco::before,
.p-tutorial__movie-top-deco::after,
.p-tutorial__movie-bottom-deco::before,
.p-tutorial__movie-bottom-deco::after {
  content: "";
  width: 4rem;
  height: 4rem;
  position: absolute;
  background: url(../images/header/drawer-deco.avif) center/contain no-repeat;
}

@media screen and (max-width: 767px) {

  .p-tutorial__movie-top-deco::before,
  .p-tutorial__movie-top-deco::after,
  .p-tutorial__movie-bottom-deco::before,
  .p-tutorial__movie-bottom-deco::after {
    width: 3rem;
    height: 3rem;
  }
}

:root {
  --tutorial-deco-position: -0.8rem;
}

@media screen and (max-width: 767px) {
  :root {
    --tutorial-deco-position: -0.6rem;
  }
}

.p-tutorial__movie-top-deco::before {
  top: var(--tutorial-deco-position);
  left: var(--tutorial-deco-position);
}

.p-tutorial__movie-top-deco::after {
  top: var(--tutorial-deco-position);
  right: var(--tutorial-deco-position);
  transform: rotate(90deg);
}

.p-tutorial__movie-bottom-deco::before {
  bottom: var(--tutorial-deco-position);
  left: var(--tutorial-deco-position);
  transform: rotate(270deg);
}

.p-tutorial__movie-bottom-deco::after {
  bottom: var(--tutorial-deco-position);
  right: var(--tutorial-deco-position);
  transform: rotate(180deg);
}

/*-------------------------------
p-tutorial アニメーション
-------------------------------*/
.p-tutorial__title01,
.p-tutorial__content-item,
.p-tutorial__title02,
.p-tutorial__lets {
  opacity: 0;
  transform: scale(0.6);
  transition: 0.3s ease;
}

.p-tutorial__title01.is-active,
.p-tutorial__content-item.is-active,
.p-tutorial__title02.is-active,
.p-tutorial__lets.is-active {
  opacity: 1;
  transform: scale(1);
}

/*-------------------------------
u-pc
-------------------------------*/
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

/*-------------------------------
u-sp
-------------------------------*/
.u-sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: inline-block !important;
  }
}

/*# sourceMappingURL=style.css.map */