@charset "UTF-8";
/* 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;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: noto;
  font-weight: 400;
  color: black;
  line-height: 1.5;
  position: relative;
}

body::before {
  background-image: url(../images/bg-pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  body::before {
    background-image: url(../images/bg-sp.png);
  }
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  opacity: 1;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.l-cards {
  margin-top: -7.875rem;
}

.l-cvr {
  position: fixed;
  right: 0;
  bottom: 1.875rem;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  z-index: 850;
}
@media screen and (max-width: 767px) {
  .l-cvr {
    bottom: 0;
    left: 0;
    right: auto;
  }
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.l-inner {
  max-width: 1280px;
  width: 100%;
  padding-inline: 40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 600px;
    padding-inline: 30px;
  }
}

.l-opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.c-cvr {
  display: flex;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 1.5625rem;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  align-items: center;
  aspect-ratio: 360/103;
  max-width: 15rem;
  width: 100%;
  height: auto;
  background-image: url(../images/cvr-bg.png);
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  padding-left: 0.75rem;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-cvr {
    align-items: flex-end;
    aspect-ratio: auto;
    max-width: 100%;
    background-image: url(../images/cvr-bg_sp.png);
    border: 1px solid #ffffff;
    font-size: 2rem;
    letter-spacing: 0.14em;
    line-height: 1;
    padding-bottom: 1.4375rem;
    padding-left: 0;
    height: 5rem;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
.c-cvr span {
  position: relative;
  top: 0.15625rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-cvr span {
    top: initial;
    font-size: 1.5rem;
  }
}

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

@media (any-hover: hover) {
  .c-cvr.is-visible:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
.p-all-wrapper {
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.p-card-modal {
  backdrop-filter: blur(0.25rem);
  background-color: rgba(255, 255, 255, 0.9);
  height: 100vh;
  height: 100dvh;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  padding-block: 1.25rem;
  overflow-y: scroll;
  scrollbar-width: none;
}
.p-card-modal::-webkit-scrollbar {
  display: none;
}
@media screen and (max-height: 500px) {
  .p-card-modal {
    align-items: flex-start;
  }
}

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

.p-card-modal__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  position: relative;
  gap: 3.125rem;
  padding-left: 6.25%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-card-modal__inner {
    padding-left: 0;
    width: 85.5072463768%;
    max-width: 22.125rem;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 1.875rem;
  }
}
@media screen and (max-height: 500px) {
  .p-card-modal__inner {
    transform: scale(0.8);
    justify-content: center;
  }
}

.p-card-modal__close {
  color: #D5B164;
  cursor: pointer;
  font-family: "Kaisei Opti", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  padding: 1.25rem 0.625rem 0.625rem;
  background-color: #ffffff;
  border: 1px solid #D5B164;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-card-modal__close {
    margin-top: 0;
    width: 3.75rem;
    padding: 1.25rem 0.625rem 0.75rem;
    margin-left: auto;
  }
}

@media (any-hover: hover) {
  .p-card-modal__close:hover {
    opacity: 0.8;
  }
}
.p-card-modal__close-line {
  background-color: #D5B164;
  display: block;
  height: 0.125rem;
  border-radius: 999px;
  position: relative;
  transition: width 0.5s, top 0.5s, left 0.5s, transform 0.5s, opacity 0.3s;
  width: 100%;
}

.p-card-modal__close-line:nth-of-type(1) {
  left: 0;
  top: 2px;
  transform: rotate(30deg);
  width: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-card-modal__close-line:nth-of-type(1) {
    width: 2rem;
  }
}

.p-card-modal__close-line:nth-of-type(2) {
  left: 0;
  top: 0;
  transform: rotate(-30deg);
  width: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-card-modal__close-line:nth-of-type(2) {
    width: 2rem;
  }
}

.p-card-modal__close-text {
  margin-top: 0.875rem;
  font-size: 1.25rem;
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-card-modal__close-text {
    margin-top: 0.375rem;
    font-size: max(14.72px, 1rem);
  }
}

.p-card-modal__img-wrap {
  max-width: 501px;
  min-width: 300px;
  max-height: 700px;
  width: 26.09375%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-card-modal__img-wrap {
    width: 100%;
    min-width: auto;
    max-width: 22.125rem;
    max-height: 30.875rem;
  }
}
.is-horizontal .p-card-modal__img-wrap {
  max-width: 700px;
  max-height: 700px;
  width: 36.4583333333%;
}
@media screen and (max-width: 767px) {
  .is-horizontal .p-card-modal__img-wrap {
    max-width: 30.875rem;
    max-height: 22.125rem;
  }
}

.p-card-modal__img {
  max-width: 100%;
  min-width: 300px;
  max-height: 100%;
  width: 100%;
  aspect-ratio: 501/700;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-card-modal__img {
    aspect-ratio: 354/494;
  }
}
@media screen and (max-height: 600px) {
  .p-card-modal__img {
    aspect-ratio: 354/494;
    max-width: 18.75rem;
  }
}
.is-horizontal .p-card-modal__img {
  aspect-ratio: 700/501;
  min-width: 400px;
}
@media screen and (max-width: 767px) {
  .is-horizontal .p-card-modal__img {
    aspect-ratio: 494/354;
    min-width: 18.75rem;
  }
}
@media screen and (max-height: 600px) {
  .is-horizontal .p-card-modal__img {
    aspect-ratio: 494/354;
    min-width: 300px;
  }
}

.p-cards {
  overflow: hidden;
  padding-top: 6.25rem;
}

.p-cards__inner {
  width: 100%;
  position: relative;
  padding-bottom: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-cards__inner {
    padding-bottom: 0;
  }
}

.p-cards__inner::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52.0833333333%;
  max-width: 62.5rem;
  aspect-ratio: 1/1;
  height: auto;
  background-image: url(../images/slider-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* 回転アニメーション */
  animation-name: rolling;
  animation-duration: 120s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .p-cards__inner::before {
    top: 47%;
    width: 134.0579710145%;
  }
}

@keyframes rolling {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-1turn);
  }
}
.p-cards__title {
  position: relative;
  max-width: 72.25rem;
  aspect-ratio: 1156/132;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cards__title {
    max-width: 23.25rem;
    aspect-ratio: 372/105;
  }
}

.p-cards__title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/card-title-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-cards__title::before {
    background-image: url(../images/card-title-bg-sp.png);
  }
}

.p-cards__title img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 65.875rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-cards__title img {
    max-width: 17rem;
    aspect-ratio: 272/57;
  }
}

.p-cards-swiper {
  position: relative;
  margin: 5.3125rem auto 0;
  max-width: 75.625rem;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .p-cards-swiper {
    margin: 1.875rem auto 0;
    max-width: 100%;
    width: 100%;
  }
}

.p-cards-swiper .swiper {
  max-width: 61.875rem;
  margin: 0 auto;
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper {
    padding-bottom: 1.25rem;
  }
}

.p-cards-swiper .swiper-slide {
  transform: scale(0.67);
  transition: all 0.5s;
  position: relative;
}
@media (any-hover: hover) {
  .p-cards-swiper .swiper-slide:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}

.p-cards-swiper .swiper-slide:before {
  content: "";
  position: absolute;
  bottom: 0.9375rem;
  right: 0.9375rem;
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 0.3125rem;
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper-slide:before {
    width: 1.9375rem;
    height: 1.9375rem;
    bottom: 0.4375rem;
    right: 0.4375rem;
  }
}

.p-cards-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 1.9375rem;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  -webkit-mask-image: url(../images/plus-icon.svg);
          mask-image: url(../images/plus-icon.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: #b19050;
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper-slide::after {
    bottom: 0.75rem;
    right: 0.75rem;
    max-width: 1.3125rem;
  }
}

.p-cards-swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.p-cards-swiper .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 322/450;
  width: 100%;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper-slide img {
    aspect-ratio: 180/257;
    border-radius: 0.5625rem;
  }
}

.p-cards-swiper .swiper-pagination {
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper-pagination {
    bottom: 0;
  }
}

.p-cards-swiper .swiper-pagination-bullet {
  background: transparent;
  width: 1.875rem;
  height: 1.875rem;
  margin: 0 0.9375rem;
  opacity: 1;
  position: relative;
  transition: all 0.5s;
  vertical-align: middle;
}

.p-cards-swiper .swiper-pagination-bullet::before {
  background-image: url(../images/pagenation-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
}

.p-cards-swiper .swiper-pagination-bullet-active {
  height: 1.875rem;
  width: 1.875rem;
}

.p-cards-swiper .swiper-pagination-bullet-active::before {
  background-image: url(../images/pagenation-icon-active.svg);
}

.p-cards-swiper .swiper-button-prev,
.p-cards-swiper .swiper-button-next {
  background-image: url(../images/arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 6.1875rem;
  width: 6.1875rem;
  top: 37%;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper-button-prev,
  .p-cards-swiper .swiper-button-next {
    height: 3.625rem;
    width: 3.625rem;
    top: 36%;
  }
}

.p-cards-swiper .swiper-button-prev:hover,
.p-cards-swiper .swiper-button-next:hover {
  opacity: 0.8;
}

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

.p-cards-swiper .swiper-button-prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper-button-prev {
    left: 21.2560386473%;
  }
}

.p-cards-swiper .swiper-button-next {
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-cards-swiper .swiper-button-next {
    right: 21.2560386473%;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.4375rem;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.25rem;
  }
}

.p-cards__name {
  background-image: url(../images/card-text-box.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0.75rem auto 0;
  max-width: 47.125rem;
  aspect-ratio: 754/181;
  padding: 3rem 1.1458333333% 3rem 1.1458333333%;
  position: relative;
  width: 100%;
  color: #0f0b7d;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-cards__name {
    margin: -0.125rem auto 0;
    background-image: url(../images/card-text-box-sp.png);
    font-size: max(12.88px, 0.875rem);
    max-width: 31.25rem;
    width: 92.7536231884%;
    aspect-ratio: 354/132;
    padding: 2.5rem 2.125rem 2.5rem 2.125rem;
  }
}

.p-cards__name::before {
  background-image: url(../images/cards-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 1.125rem;
  flex-shrink: 0;
  height: 1.25rem;
  margin-right: 0.375rem;
  top: 0.1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cards__name::before {
    top: 0.1em;
    margin-right: 0.75rem;
  }
}

.p-cardlist {
  padding-top: 7.5rem;
  background: url(../images/card-list-bg.png) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-cardlist {
    padding-top: 1.875rem;
  }
}

.p-cardlist::before {
  content: "";
  position: absolute;
  bottom: 4.375rem;
  left: 1.25rem;
  width: 15.625rem;
  height: 15.625rem;
  background-image: url(../images/cardlist-bg-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-cardlist::before {
    bottom: 3.5rem;
    left: 0.3125rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-cardlist::after {
  content: "";
  position: absolute;
  bottom: 4.375rem;
  right: 1.25rem;
  width: 15.625rem;
  height: 15.625rem;
  background-image: url(../images/cardlist-bg-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-cardlist::after {
    bottom: 3.5rem;
    right: 0.3125rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-cardlist__inner.l-inner {
  max-width: 92.5rem;
  width: 100%;
  padding-inline: 40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-cardlist__inner.l-inner {
    max-width: 600px;
    padding-inline: 30px;
  }
}

.p-cardlist__title {
  margin-inline: auto;
  max-width: 42.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-cardlist__title {
    max-width: 18.9375rem;
  }
}

.p-cardlist__title img:nth-of-type(2) {
  margin: 1.5625rem auto 0;
  width: 13.875rem;
}

.p-cardlist__title img:nth-of-type(3) {
  margin: 1.5625rem auto 0;
  width: 16.5625rem;
}

.p-cardlist__lead {
  text-align: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-cardlist__lead {
    margin-top: 1.75rem;
  }
}

.p-cardlist__lead-text {
  color: #0f0b7d;
  text-align: center;
  font-family: "Shippori Mincho";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-cardlist__lead-text {
    font-size: max(14.72px, 1rem);
  }
}

.p-cardlist__lead-text::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 0.625rem);
  height: 0.625rem;
  background: #FFF6BA;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-cardlist__lead-text::after {
    bottom: 0.0625rem;
    height: 0.4375rem;
  }
}

.p-cardlist__lead-text:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cardlist__lead-text:not(:first-child) {
    margin-top: 0.125rem;
  }
}

.p-cardlist__tabs {
  margin-top: 4.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3.125rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-cardlist__tabs {
    margin-top: 1.875rem;
    gap: 0.8125rem;
    justify-content: flex-start;
    align-items: center;
    max-width: 355px;
    margin-inline: auto;
  }
}

.p-cardlist__tab {
  max-width: 18.75rem;
  width: 100%;
  min-height: 4.375rem;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
  border: 2px solid #747474;
}
@media screen and (max-width: 767px) {
  .p-cardlist__tab {
    max-width: 10.6875rem;
    width: calc(50% - 0.40625rem);
    font-size: 1.125rem;
    min-height: 2.5rem;
    border-radius: 1.25rem;
  }
}
@media screen and (max-width: 413px) {
  .p-cardlist__tab {
    font-size: 1rem;
  }
}
.p-cardlist__tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 12px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.p-cardlist__tab span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.p-cardlist__tab.is-active {
  border-color: #b19050;
}

.p-cardlist__tab--cute::before {
  background-image: url("../images/tab-cute-bg-close01.png");
}
.p-cardlist__tab--cute.is-active::before {
  animation: fade 0.5s ease-in;
  background-image: url("../images/tab-cute-bg.png");
}
.p-cardlist__tab--cute span::before {
  content: "";
  position: relative;
  display: inline-block;
  max-width: 2rem;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../images/cute-icon.png) no-repeat center center/cover;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-cardlist__tab--cute span::before {
    max-width: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-cardlist__tab--cute:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.p-cardlist__tab--cool::before {
  background-image: url("../images/tab-cool-bg-close.png");
}
.p-cardlist__tab--cool.is-active::before {
  animation: fade 0.5s ease-in;
  background-image: url("../images/tab-cool-bg.png");
}
.p-cardlist__tab--cool span::before {
  content: "";
  position: relative;
  display: inline-block;
  max-width: 2rem;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../images/cool-icon.png) no-repeat center center/cover;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-cardlist__tab--cool span::before {
    max-width: 1rem;
  }
}
@media (any-hover: hover) {
  .p-cardlist__tab--cool:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.p-cardlist__tab--passion::before {
  background-image: url("../images/tab-passion-bg-close.png");
}
.p-cardlist__tab--passion.is-active::before {
  animation: fade 0.5s ease-in;
  background-image: url("../images/tab-passion-bg.png");
}
.p-cardlist__tab--passion span::before {
  content: "";
  position: relative;
  display: inline-block;
  max-width: 2rem;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../images/passion-icon.png) no-repeat center center/cover;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-cardlist__tab--passion span::before {
    max-width: 1rem;
  }
}
@media (any-hover: hover) {
  .p-cardlist__tab--passion:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.p-cardlist__content {
  margin-top: 4.5rem;
  max-width: 87.5rem;
  width: 100%;
  margin-inline: auto;
  background-color: #b19552;
  border: 2px solid #b19050;
  position: relative;
  max-height: 56.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-cardlist__content {
    margin-top: 1.875rem;
    max-height: 36.375rem;
  }
}

.p-cardlist__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-50% - 1px));
  background-image: url(../images/star-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.59375rem;
  height: 1.59375rem;
  z-index: 1;
}

.p-cardlist__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(50% + 1px));
  background-image: url(../images/star-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.59375rem;
  height: 1.59375rem;
  z-index: 1;
}

.p-cardlist__panel {
  background-color: #ffffff;
  border-radius: 3.75rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: none;
  display: flex;
  flex-direction: column;
  max-height: 55.9375rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-cardlist__panel {
    border-radius: 1.875rem;
  }
}
.p-cardlist__panel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.p-cardlist__panel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(calc(-50% - 1px), -50%);
  background-image: url(../images/star-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.59375rem;
  height: 1.59375rem;
  z-index: 1;
}

.p-cardlist__panel::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(calc(50% + 1px), -50%);
  background-image: url(../images/star-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.59375rem;
  height: 1.59375rem;
  z-index: 1;
}

.p-cardlist__list {
  padding: 7.1428571429% 7%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 4.1666666667%;
       column-gap: 4.1666666667%;
  row-gap: 3.125rem;
  position: relative;
  animation: none;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .p-cardlist__list {
    padding: 1.125rem 0.9375rem;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    row-gap: 1.25rem;
  }
}
.p-cardlist__list.is-active {
  animation: fade-in 0.5s ease-in;
}
.p-cardlist__list::-webkit-scrollbar {
  display: none;
}

.p-cardlist__item {
  transition: all 0.3s ease;
  position: relative;
}
@media (any-hover: hover) {
  .p-cardlist__item:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}

.p-cardlist__item::before {
  content: "";
  position: absolute;
  bottom: 0.3125rem;
  right: 0.3125rem;
  width: 1.9375rem;
  height: 1.9375rem;
  border-radius: 0.3125rem;
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 767px) {
  .p-cardlist__item::before {
    bottom: 0.25rem;
    right: 0.25rem;
    width: 1.1875rem;
    height: 1.1875rem;
    border-radius: 0.1875rem;
  }
}

.p-cardlist__item::after {
  content: "";
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  max-width: 1.3125rem;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  background-color: #F50473;
  -webkit-mask-image: url(../images/plus-icon.svg);
          mask-image: url(../images/plus-icon.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cardlist__item::after {
    bottom: 0.4375rem;
    right: 0.375rem;
    max-width: 0.8125rem;
  }
}

.p-cardlist__panel.p-cardlist__panel--cool .p-cardlist__item::after {
  background-color: #0069FE;
}

.p-cardlist__panel.p-cardlist__panel--passion .p-cardlist__item::after {
  background-color: #FF9E02;
}

.p-cardlist__img {
  border-radius: 0.4375rem;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-cardlist__img {
    max-width: 6.25rem;
  }
}

.p-cardlist__img.p-cardlist__img--horizontal {
  max-width: 17.4375rem;
}
@media screen and (max-width: 767px) {
  .p-cardlist__img.p-cardlist__img--horizontal {
    max-width: 8.75rem;
  }
}

.p-cardlist__img img {
  border-radius: 0.4375rem;
  width: 100%;
  aspect-ratio: 200/279;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-cardlist__img img {
    aspect-ratio: 100/140;
  }
}

.p-cardlist__img.p-cardlist__img--horizontal img {
  aspect-ratio: 279/200;
}
@media screen and (max-width: 767px) {
  .p-cardlist__img.p-cardlist__img--horizontal img {
    aspect-ratio: 140/100;
  }
}

.p-cardlist__btn-inner {
  margin-top: 6.125rem;
  max-width: 1280px;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cardlist__btn-inner {
    margin-top: 2.25rem;
    max-width: 600px;
    padding-inline: 1.125rem;
  }
}

.p-cardlist__btn {
  background: url(../images/card-list-btn.png) no-repeat center center/cover;
  max-width: 40.375rem;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 646/188;
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cardlist__btn {
    background: url(../images/card-list-btn-sp.png) no-repeat center center/cover;
    max-width: 23.625rem;
    aspect-ratio: 378/121;
  }
}

.p-cardlist__btn-link {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.625rem;
  font-size: 3rem;
  font-weight: 400;
  font-family: "Kaisei Opti", serif;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-cardlist__btn-link {
    font-size: max(29.44px, 2rem);
  }
}

.p-cardlist__btn-link::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.5625rem;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../images/link-icon.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cardlist__btn-link::after {
    width: 1.1875rem;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-cvr-modal {
  backdrop-filter: blur(0.25rem);
  background-color: rgba(255, 255, 255, 0.9);
  height: 100vh;
  height: 100dvh;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  padding-block: 1.25rem;
  overflow-y: scroll;
  scrollbar-width: none;
}
.p-cvr-modal::-webkit-scrollbar {
  display: none;
}
@media screen and (max-height: 500px) {
  .p-cvr-modal {
    align-items: flex-start;
  }
}

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

.p-cvr-modal__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__inner {
    max-width: 353px;
    width: 85.2657004831%;
  }
}
@media screen and (max-height: 500px) {
  .p-cvr-modal__inner {
    transform: scale(0.8);
    justify-content: flex-start;
  }
}

.p-cvr-modal__close {
  color: #D5B164;
  cursor: pointer;
  font-family: "Kaisei Opti", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  padding: 1.25rem 0.625rem 0.625rem;
  margin-left: auto;
  background-color: #ffffff;
  border: 1px solid #D5B164;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__close {
    margin-top: 0;
    width: 3.75rem;
    padding: 1.25rem 0.625rem 0.75rem;
  }
}

@media (any-hover: hover) {
  .p-cvr-modal__close:hover {
    opacity: 0.8;
  }
}
.p-cvr-modal__close-line {
  background-color: #D5B164;
  display: block;
  height: 0.125rem;
  border-radius: 999px;
  position: relative;
  transition: width 0.5s, top 0.5s, left 0.5s, transform 0.5s, opacity 0.3s;
  width: 100%;
}

.p-cvr-modal__close-line:nth-of-type(1) {
  left: 0;
  top: 2px;
  transform: rotate(30deg);
  width: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__close-line:nth-of-type(1) {
    width: 2rem;
  }
}

.p-cvr-modal__close-line:nth-of-type(2) {
  left: 0;
  top: 0;
  transform: rotate(-30deg);
  width: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__close-line:nth-of-type(2) {
    width: 2rem;
  }
}

.p-cvr-modal__close-text {
  margin-top: 0.875rem;
  font-size: 1.25rem;
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__close-text {
    margin-top: 0.375rem;
    font-size: max(14.72px, 1rem);
  }
}

.p-cvr-modal__text {
  margin-top: 3.125rem;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  padding: 0.25rem 0.125rem;
  background-color: #0f0b7d;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__text {
    margin-top: 2.1875rem;
    font-size: 0.8125rem;
    padding: 0.25rem 0.125rem;
  }
}
@media screen and (max-width: 413px) {
  .p-cvr-modal__text {
    font-size: max(10.12px, 0.6875rem);
  }
}

.p-cvr-modal__btn-wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__btn-wrap {
    margin-top: 2.1875rem;
  }
}

.p-cvr-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  aspect-ratio: 500/100;
  max-width: 31.25rem;
  width: 100%;
  height: auto;
  background-image: url(../images/cvr-bg-modal.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__btn {
    font-size: 1.4375rem;
    aspect-ratio: 353/70;
    max-width: 22.0625rem;
    gap: 0.0625rem;
  }
}

.p-cvr-modal__btn::after {
  margin-top: 1rem;
  content: "";
  position: relative;
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  -webkit-mask-image: url(../images/link-icon.svg);
          mask-image: url(../images/link-icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__btn::after {
    margin-top: 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-cvr-modal__note-wrap {
  margin-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__note-wrap {
    margin-top: 2.1875rem;
  }
}

.p-cvr-modal__note {
  color: #0f0b7d;
  display: inline-block;
  font-size: max(12.88px, 0.875rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-cvr-modal__note {
    font-size: max(11.04px, 0.75rem);
    padding-inline: 0;
    font-weight: 500;
    padding-left: 1em;
    text-indent: -1em;
  }
}

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

.p-deck {
  padding-top: 7.375rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-deck {
    padding-top: 3.25rem;
  }
}

.p-deck::before {
  content: "";
  position: fixed;
  bottom: -20%;
  left: -25%;
  width: 60.0520833333%;
  aspect-ratio: 1153/1039;
  height: auto;
  background-image: url(../images/deck-bg-shadow-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-deck::before {
    bottom: 0%;
    left: -34%;
    width: 113%;
  }
}

.p-deck::after {
  content: "";
  position: fixed;
  top: -40%;
  right: -12%;
  width: 76.3020833333%;
  aspect-ratio: 1465/1321;
  height: auto;
  background-image: url(../images/deck-bg-shadow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-deck::after {
    top: -12%;
    right: -36%;
    width: 150%;
  }
}

.p-deck__inner.l-inner {
  max-width: 81.5rem;
  width: 100%;
  padding-inline: 40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-deck__inner.l-inner {
    max-width: 600px;
    padding-inline: 30px;
  }
}

.p-deck__title {
  margin-inline: auto;
  max-width: 52.875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-deck__title {
    max-width: 22.625rem;
  }
}

.p-deck__feature {
  display: block;
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-deck__feature {
    margin-top: 3.75rem;
  }
}

@media (any-hover: hover) {
  .p-deck__feature:hover {
    cursor: pointer;
    opacity: 1;
  }
  .p-deck__feature:hover .p-deck__name::before {
    opacity: 1;
  }
  .p-deck__feature:hover .p-deck__img {
    transform: translateY(-50%) rotate(0);
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-deck__feature:hover .p-deck__img {
    transform: translate(-50%, -50%) rotate(0);
  }
}
@media (any-hover: hover) {
  .p-deck__feature:hover .p-deck__name-text {
    color: #b19050;
  }
}
.p-deck__label {
  color: #ffffff;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0.625rem;
  background-color: #b19050;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-deck__label {
    font-size: max(11.04px, 0.75rem);
    padding: 0.1875rem 0.3125rem;
  }
}

.p-deck__main-wrap {
  padding: 0.625rem;
  border: 2px solid #b19050;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-deck__main-wrap {
    padding: 0.1875rem;
    margin-top: -0.9375rem;
    border: 1px solid #b19050;
    max-width: 20.625rem;
  }
}

.p-deck__main {
  position: relative;
  width: 100%;
}

.p-deck__name {
  background: url(../images/deck-title-bg.png) no-repeat center center/cover;
  max-width: 76.5rem;
  border: 3px solid #b19050;
  aspect-ratio: 1200/205;
  width: 100%;
  padding: 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-deck__name {
    padding: 0.625rem 0.625rem;
    background: url(../images/deck-title-bg-sp.png) no-repeat center center/cover;
    max-width: 20.125rem;
    aspect-ratio: 322/74;
    border: 2px solid #b19050;
  }
}
.p-deck__name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/deck-title-bg-blue.png) no-repeat center center/cover;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-deck__name::before {
    background: url(../images/deck-name-blue-sp.png) no-repeat center center/cover;
  }
}

.p-deck__name::after {
  content: "";
  position: absolute;
  bottom: 0.4375rem;
  right: 0.4375rem;
  width: 2.0625rem;
  height: 2.0625rem;
  -webkit-mask-image: url(../images/link-icon.svg);
          mask-image: url(../images/link-icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-color: #ffffff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-deck__name::after {
    display: none;
  }
}

.p-deck__name-text {
  margin-top: 1.125rem;
  color: #0f0b7d;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  position: relative;
  width: 44.8125rem;
  transition: color 0.5s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-deck__name-text {
    margin-top: 0.4375rem;
    font-size: 1.25rem;
    width: 9.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-deck__name-text-item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.25rem;
  }
}

.p-deck__name-text-item::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-deck__name-text-item::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 0.625rem;
    height: 0.625rem;
    -webkit-mask-image: url(../images/link-icon.svg);
            mask-image: url(../images/link-icon.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center center;
            mask-position: center center;
    background-color: #B19552;
  }
}

.p-deck__name-text::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.875rem;
  background: url(../images/deck-line-top.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-deck__name-text::before {
    top: -0.8125rem;
    background: url(../images/deck-line-top-sp.png) no-repeat center center/contain;
  }
}

.p-deck__name-text::after {
  content: "";
  position: absolute;
  bottom: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.875rem;
  background: url(../images/deck-line-bottom.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-deck__name-text::after {
    bottom: -0.8125rem;
    background: url(../images/deck-line-bottom-sp.png) no-repeat center center/contain;
  }
}

.p-deck__img {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(10% - 6px);
  transform: translateY(-50%) rotate(9deg);
  border-radius: 0.5625rem;
  border: 1px solid #b19050;
  box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.25);
  max-width: 201px;
  width: 16.8341708543%;
  transition: transform 0.5s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-deck__img {
    width: 22.3602484472%;
    max-width: 4.5rem;
    aspect-ratio: 72/100;
    top: 50%;
    right: calc(50% - 226px);
    transform: translate(-50%, -50%) rotate(6deg);
    border-radius: 0.25rem;
  }
}
@media screen and (max-width: 413px) {
  .p-deck__img {
    right: -19%;
  }
}

.p-deck__img img {
  width: 100%;
  aspect-ratio: 201/281;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-deck__img img {
    border-radius: 0.25rem;
  }
}

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

.p-deck__sub-label {
  color: #ffffff;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0.625rem;
  background-color: #b19050;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-deck__sub-label {
    font-size: max(11.04px, 0.75rem);
    padding: 0.1875rem 0.3125rem;
  }
}

.p-deck__link-group {
  margin-top: 3.625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-deck__link-group {
    margin-top: 1.875rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    max-width: 20.625rem;
    width: 93.2203389831%;
  }
}

.p-deck__link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 1px solid #b19050;
}
@media screen and (max-width: 767px) {
  .p-deck__link-item {
    padding: 0.1875rem;
  }
}

@media (any-hover: hover) {
  .p-deck__link-item:hover {
    cursor: pointer;
    opacity: 1;
  }
  .p-deck__link-item:hover .p-deck__link::before {
    opacity: 1;
  }
  .p-deck__link-item:hover .p-deck__link-text {
    color: #b19050;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-deck__link-item:hover .p-deck__link--cute .p-deck__link-text-item::after,
  .p-deck__link-item:hover .p-deck__link--cool .p-deck__link-text-item::after,
  .p-deck__link-item:hover .p-deck__link--passion .p-deck__link-text-item::after {
    background-color: #b19050;
  }
}
.p-deck__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 379/94;
  height: 100%;
  position: relative;
  border: 2px solid #b19050;
}
@media screen and (max-width: 767px) {
  .p-deck__link {
    max-width: 20.5rem;
    aspect-ratio: 322/74;
  }
}
.p-deck__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/deck-name-blue.png) no-repeat center center/cover;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-deck__link::before {
    background: url(../images/deck-name-blue-sp.png) no-repeat center center/cover;
  }
}

.p-deck__link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  width: 1.125rem;
  height: 1.1875rem;
  background: url(../images/link-icon.svg) no-repeat center center/contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-deck__link::after {
    display: none;
  }
}

.p-deck__link-text {
  margin-top: 0.75rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.1em;
  padding-bottom: 1.0625rem;
  position: relative;
  transition: color 0.5s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-deck__link-text {
    margin-top: 0.5rem;
    font-size: 1.25rem;
  }
}

.p-deck__link-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 16.125rem;
  width: 220%;
  height: 0.75rem;
  background: url(../images/deck-name-line.png) no-repeat center center/cover;
}
@media screen and (max-width: 413px) {
  .p-deck__link-text::after {
    max-width: 11rem;
  }
}

@media screen and (max-width: 767px) {
  .p-deck__link-text-item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
  }
}

.p-deck__link-text-item::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-deck__link-text-item::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 0.625rem;
    height: 0.625rem;
    -webkit-mask-image: url(../images/link-icon.svg);
            mask-image: url(../images/link-icon.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center center;
            mask-position: center center;
    background-color: #B19552;
  }
}

.p-deck__link--cute {
  background: url(../images/deck-name-cute.png) no-repeat center center/cover;
  color: #f50473;
}
@media screen and (max-width: 767px) {
  .p-deck__link--cute {
    background: url(../images/deck-title-bg-sp.png) no-repeat center center/cover;
  }
}
.p-deck__link--cute .p-deck__link-text-item::after {
  transition: background-color 0.5s;
  background-color: #f50473;
}

.p-deck__link--cool {
  background: url(../images/deck-name-cool.png) no-repeat center center/cover;
  color: #0069fe;
}
@media screen and (max-width: 767px) {
  .p-deck__link--cool {
    background: url(../images/deck-title-bg-sp.png) no-repeat center center/cover;
  }
}
.p-deck__link--cool .p-deck__link-text-item::after {
  transition: background-color 0.5s;
  background-color: #0069fe;
}

.p-deck__link--passion {
  background: url(../images/deck-name-passion.png) no-repeat center center/cover;
  color: #ff9e02;
}
@media screen and (max-width: 767px) {
  .p-deck__link--passion {
    background: url(../images/deck-title-bg-sp.png) no-repeat center center/cover;
  }
}
.p-deck__link--passion .p-deck__link-text-item::after {
  transition: background-color 0.5s;
  background-color: #ff9e02;
}

.p-deck__list {
  margin-top: 7.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 4.347826087%;
       column-gap: 4.347826087%;
  row-gap: 3.125rem;
  max-width: 71.875rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-deck__list {
    margin-top: 3.25rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8125rem;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .p-deck__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 15.625rem;
    width: 70.6214689266%;
  }
}
.p-deck__card {
  overflow: hidden;
}

@media (any-hover: hover) {
  .p-deck__card:hover {
    opacity: 1;
  }
  .p-deck__card:hover .p-deck__card-img {
    transform: translate(-50%, -50%) scale(1.2) rotate(3deg);
  }
}
.p-deck__card-item {
  background: url(../images/deck-bg.png) no-repeat center center/cover;
  max-width: 250px;
  width: 100%;
  aspect-ratio: 250/250;
  height: auto;
  width: 100%;
  position: relative;
}

.p-deck__card-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 230px;
  width: 100%;
  aspect-ratio: 230/230;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: transform 0.5s;
}
@media screen and (max-width: 767px) {
  .p-deck__card-img {
    max-width: 13.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-deck__card-img.p-deck__card-img--twinkle {
    max-width: 15.625rem;
  }
}

.p-deck__card-img img {
  width: 100%;
  aspect-ratio: 230/230;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-deck__card-text {
  margin-top: 1.375rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(13.8px, 0.9375rem);
  font-weight: 700;
  line-height: 151%;
}
@media screen and (max-width: 767px) {
  .p-deck__card-text {
    margin-top: 0.625rem;
    font-size: max(12.88px, 0.875rem);
  }
}

.p-detail {
  padding-top: 7.375rem;
  padding-bottom: 7.375rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-detail {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.p-detail::before {
  content: "";
  position: fixed;
  bottom: -60%;
  right: -15%;
  width: 72.96875%;
  aspect-ratio: 1401/1262;
  height: auto;
  background-image: url(../images/detail-bg-shadow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-detail::before {
    display: none;
  }
}

.p-detail__inner.l-inner {
  max-width: 1280px;
  width: 100%;
  padding-inline: 40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-detail__inner.l-inner {
    max-width: 600px;
    padding-inline: 1.25rem;
  }
}

.p-detail__title {
  max-width: 26.75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-detail__title {
    max-width: 12.5rem;
  }
}

.p-detail__content {
  margin-top: 4.25rem;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
  border: 1px solid #ffffff;
  background: rgba(0, 0, 0, 0.3);
  padding: 4.75rem 4.6875rem 4.6875rem 4.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-detail__content {
    margin-top: 2rem;
    border: none;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
}

.p-detail__content::before {
  content: "";
  position: absolute;
  top: 1.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 53.3333333333%;
  aspect-ratio: 640/662;
  height: auto;
  background-image: url(../images/detail-back-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-detail__content::before {
    background-image: url(../images/detail-back-img-sp.png);
    aspect-ratio: 346/357;
    width: 92.513368984%;
    top: 5rem;
  }
}

.p-detail__box {
  position: relative;
  z-index: 1;
}

.p-detail__label {
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.625rem;
  background: linear-gradient(91deg, #78bbe8 0.1%, #005693 100.1%);
  padding: 0.125rem 0.8125rem 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-detail__label {
    font-size: max(11.04px, 0.75rem);
    padding: 0.0625rem 0.25rem;
    width: 100%;
  }
}

.p-detail__main {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16.380952381%;
  margin-inline: auto;
  max-width: 525px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-detail__main {
    margin-top: 1.5rem;
    max-width: 302px;
    gap: 1.625rem;
  }
}

.p-detail__img {
  max-width: 183px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-detail__img {
    max-width: 6.4375rem;
  }
}
@media screen and (max-width: 413px) {
  .p-detail__img {
    max-width: 5.3125rem;
  }
}

.p-detail__img img {
  width: 100%;
  aspect-ratio: 183/300;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-detail__img img {
    aspect-ratio: 103/169;
  }
}

.p-detail__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-detail__info {
    padding-top: 0;
  }
}

.p-detail__item-release {
  color: #0f0b7d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 0.3125rem 0.9375rem 0.3125rem 0.9375rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-detail__item-release {
    font-size: max(12.88px, 0.875rem);
    padding: 0.3125rem 0.3125rem;
    width: 100%;
  }
}

.p-detail__item-label {
  margin-top: 1.875rem;
  display: block;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  background-color: #0f0b7d;
  padding: 0.625rem 0.625rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-detail__item-label {
    margin-top: 0.875rem;
    font-size: max(12.88px, 0.875rem);
    padding: 0.3125rem 0.3125rem;
  }
}

.p-detail__item-label.p-detail__item-label--02 {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-detail__item-label.p-detail__item-label--02 {
    margin-top: 0.625rem;
  }
}

.p-detail__item-price {
  margin-top: 0.875rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-detail__item-price {
    margin-top: 0.4375rem;
    font-size: max(12.88px, 0.875rem);
    letter-spacing: -0.025em;
  }
}
@media screen and (max-width: 413px) {
  .p-detail__item-price {
    font-size: max(11.04px, 0.75rem);
  }
}

.p-detail__item-price-unit {
  display: block;
  font-size: max(12.88px, 0.875rem);
  margin-left: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-detail__item-price-unit {
    font-size: max(10.12px, 0.6875rem);
    margin-left: 0.0625rem;
  }
}

.p-detail__desc {
  margin-top: 1.875rem;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 44.875rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-detail__desc {
    background-color: #ffffff;
    margin-top: 1.25rem;
    padding: 0.5625rem 0.625rem;
  }
}

.p-detail__text-item {
  display: block;
  color: #0f0b7d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .p-detail__text-item {
    font-size: max(12.88px, 0.875rem);
  }
}

.p-detail__text-item:not(:first-child) {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-detail__text-item:not(:first-child) {
    margin-top: 1.125rem;
  }
}

.p-detail__text-item.p-detail__text-item--palt {
  font-feature-settings: "palt";
}

.p-footer {
  padding-bottom: 4.6875rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-bottom: 6.25rem;
  }
}

.p-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 37.5625rem;
  height: 31.3020833333vw;
  min-height: 550px;
  background-image: url(../images/footer-bg-shadow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-footer::before {
    bottom: 4.375rem;
    min-height: 440px;
  }
}
@media (max-width: 600px) {
  .p-footer::before {
    background-image: url(../images/footer-bg-shadow-sp.png);
    height: 68.3574879227vw;
    min-height: 270px;
  }
}

.p-footer__banner {
  max-width: 68.875rem;
  width: 100%;
  margin-inline: auto;
}
.p-footer__banner img {
  width: 100%;
  aspect-ratio: 1102/620;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-footer__sns-link {
  display: block;
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.68px;
  padding: 2.6875rem 2.5rem;
  max-width: 37.5rem;
  width: 100%;
  margin-inline: auto;
  border: 1px solid #ffffff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: #000000;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-link {
    font-size: 1.25rem;
    padding: 1.375rem 0.625rem;
    gap: 1rem;
  }
}

.p-footer__sns-link::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 2.3125rem;
  height: 2.125rem;
  -webkit-mask-image: url(../images/x-icon.svg);
          mask-image: url(../images/x-icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-color: #ffffff;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-link::after {
    width: 1.6875rem;
    height: 1.5625rem;
  }
}

@media (any-hover: hover) {
  .p-footer__sns-link:hover {
    opacity: 1;
    background-color: #ffffff;
    color: #000000;
  }
  .p-footer__sns-link:hover::after {
    background-color: #000000;
  }
}
.p-footer__copyright {
  margin-top: 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 8.5rem;
  }
}

.p-footer__copy-text {
  display: block;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14.72px, 1rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-footer__copy-text {
    font-size: max(11.04px, 0.75rem);
  }
}

.p-footer__policy-group {
  margin-top: 0.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__policy-group {
    margin-top: 0.3125rem;
  }
}

.p-footer__policy-link {
  display: inline-flex;
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 1.25rem 1.25rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__policy-link {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem 0.75rem;
  }
}

.p-footer__policy-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.125rem;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-footer__policy-link-text {
    padding-bottom: 0.1875rem;
  }
}

.p-footer__policy-link-text::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.8125rem;
  height: 0.8125rem;
  background: url(../images/link-icon.svg) no-repeat center center/cover;
}

.p-footer__logo {
  margin-top: 0.5rem;
}

.p-footer__logo-link {
  margin-inline: auto;
  display: block;
  max-width: 243px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-link {
    max-width: 11.4375rem;
  }
}

.p-footer__logo-link img {
  width: 100%;
  aspect-ratio: 243/120;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-link img {
    aspect-ratio: 183/90;
  }
}

.p-header__drawer-logo {
  position: fixed;
  top: 0.3125rem;
  left: 0.3125rem;
  z-index: 999;
  max-width: 249px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-logo {
    max-width: 7.6875rem;
  }
}

.p-header__drawer-logo img {
  width: 100%;
  aspect-ratio: 249/131;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-logo img {
    aspect-ratio: 123/65;
  }
}

.p-header__drawer {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-image: url(../images/drawer-bg-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow-y: scroll;
  padding: 76px 1.875rem 6.5rem;
  scrollbar-width: none;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    background-image: url(../images/drawer-bg-image-sp.png);
    padding: 6rem 0 4.25rem;
  }
}

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

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

.p-header__drawer-img {
  max-width: 431px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-img {
    max-width: 15.8125rem;
  }
}

.p-header__drawer-img img {
  width: 100%;
  aspect-ratio: 431/160;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-img img {
    aspect-ratio: 253/100;
  }
}

.p-header__drawer-nav {
  margin-top: 1.25rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  transition-delay: 0.1s;
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-nav {
    margin-top: 0.625rem;
  }
}

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

.p-header__drawer-item {
  text-align: center;
}

.p-header__drawer-link {
  display: block;
  padding-block: 1.875rem;
  position: relative;
  max-width: 469px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-link {
    padding-block: 1.375rem;
    max-width: 385px;
  }
}
.p-header__drawer-link img {
  width: 100%;
  aspect-ratio: 469/61;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__drawer-item:first-of-type .p-header__drawer-link {
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-item:first-of-type .p-header__drawer-link {
    max-width: 440px;
  }
}

.p-header__drawer-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  -webkit-mask-image: url(../images/star-icon.svg);
          mask-image: url(../images/star-icon.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #b19050;
  display: block;
  width: 1.0625rem;
  height: 1.25rem;
}

.p-header__drawer-item:last-of-type a.p-header__drawer-link::before {
  display: none;
}

.p-header__drawer-copyright {
  margin-top: 6rem;
  color: #0f0b7d;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(14.72px, 1rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-copyright {
    margin-top: 2.875rem;
    font-size: max(11.04px, 0.75rem);
  }
}

.p-header__hamburger {
  background-image: url(../images/hamburger-close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  cursor: pointer;
  width: 11.0625rem;
  height: 11.0625rem;
  margin: 0;
  border: none;
  outline: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 6.25rem;
    height: 6.25rem;
  }
}

@media (any-hover: hover) {
  .p-header__hamburger:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
.p-header__hamburger.is-open {
  background-image: url(../images/hamburger-open.png);
}

.p-header__hamburger-line-wrap {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 2.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-line-wrap {
    margin-top: 0;
    width: 1.8125rem;
  }
}

.p-header__hamburger-line {
  background-color: #D5B164;
  display: block;
  height: 0.125rem;
  border-radius: 999px;
  position: relative;
  transition: transform 0.5s, opacity 0.5s;
  width: 100%;
}

.p-header__hamburger-line + .p-header__hamburger-line {
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-line + .p-header__hamburger-line {
    margin-top: 0.3125rem;
  }
}

.p-header__hamburger-line:nth-of-type(2) {
  position: relative;
  width: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-line:nth-of-type(2) {
    width: 1.5625rem;
  }
}

.p-header__hamburger-line:nth-of-type(2)::before {
  background-image: url(../images/star-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  position: absolute;
  left: -0.8125rem;
  top: -0.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-line:nth-of-type(2)::before {
    left: -0.5rem;
    top: -0.1875rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-header__hamburger.is-open .p-header__hamburger-line-wrap {
  align-items: center;
  padding-right: 0.3125rem;
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(1) {
  left: 0.1875rem;
  top: 0.625rem;
  transform: rotate(30deg);
  width: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(1) {
    width: 2rem;
  }
}

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

.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(2)::before {
  opacity: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(3) {
  left: 0.1875rem;
  top: -0.75rem;
  transform: rotate(-30deg);
  width: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open .p-header__hamburger-line:nth-of-type(3) {
    width: 2rem;
    top: -0.25rem;
  }
}

.p-header__hamburger-text {
  font-size: 1.25rem;
  color: #D5B164;
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-text {
    margin-top: 0.1875rem;
    font-size: max(14.72px, 1rem);
  }
}

.p-header__logo {
  max-width: 12.625rem;
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 24.3961352657%;
  }
}

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

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

.p-idol__title {
  width: 100%;
  margin-inline: auto;
  max-width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-idol__title {
    max-width: 22.4375rem;
  }
}

.p-idol__groups {
  margin-top: 3.625rem;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
  padding: 4.625rem 8.46875rem 4.625rem;
  background-color: #ffffff;
  border: 2px solid #b19050;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-idol__groups {
    margin-top: 1.875rem;
    padding: 1.75rem 1.625rem 1.75rem;
  }
}

.p-idol__groups::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 83.3333333333%;
  height: 92.7489177489%;
  background-image: url(../images/idol-list-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-idol__groups::before {
    width: 283.333333%;
  }
}

.p-idol__group {
  position: relative;
  z-index: 1;
}

.p-idol__group:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-idol__group:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-idol__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-idol__list {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 0.9375rem;
         column-gap: 0.9375rem;
    row-gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-idol__list {
    margin-top: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    row-gap: 0.9375rem;
  }
}

.p-idol__group-title {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-idol__group-title {
    font-size: 1.25rem;
    font-weight: 700;
    padding-block: 0.125rem;
  }
}

.p-idol__group--cute .p-idol__group-title {
  background-image: url(../images/idol-cute-bg.png);
}
@media screen and (max-width: 767px) {
  .p-idol__group--cute .p-idol__group-title {
    background-image: url(../images/idol-cute-bg-sp.png);
  }
}

.p-idol__group--cool .p-idol__group-title {
  background-image: url(../images/idol-cool-bg.png);
}
@media screen and (max-width: 767px) {
  .p-idol__group--cool .p-idol__group-title {
    background-image: url(../images/idol-cool-bg-sp.png);
  }
}

.p-idol__group--passion .p-idol__group-title {
  background-image: url(../images/idol-passion-bg.png);
}
@media screen and (max-width: 767px) {
  .p-idol__group--passion .p-idol__group-title {
    background-image: url(../images/idol-passion-bg-sp.png);
  }
}

.p-idol__group-title span {
  display: inline-block;
  transform: rotate(5deg);
}

.p-idol__name {
  color: #0f0b7d;
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  padding-left: 1.4375rem;
  position: relative;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-idol__name {
    font-size: max(14.72px, 1rem);
    padding-left: 1.25rem;
  }
}

.p-idol__name-text.p-idol__name-text--ls10 {
  letter-spacing: -0.1em;
}
.p-idol__name-text.p-idol__name-text--ls25 {
  letter-spacing: -0.25em;
}
@media screen and (max-width: 413px) {
  .p-idol__name-text.p-idol__name-text--ls25 {
    font-size: 0.8125rem;
  }
}

.p-idol__name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-idol__name::before {
    width: 1rem;
    height: 1rem;
  }
}

.p-idol__group--cute .p-idol__name::before {
  background-image: url(../images/idol-cute-icon.png);
}

.p-idol__group--cool .p-idol__name::before {
  background-image: url(../images/idol-cool-icon.png);
}

.p-idol__group--passion .p-idol__name::before {
  background-image: url(../images/idol-passion-icon.png);
}

.p-message {
  padding-top: 6.25rem;
  padding-bottom: 9.5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-top: 1.875rem;
    padding-bottom: 4.25rem;
  }
}

.p-message::before {
  content: "";
  position: absolute;
  top: -3.75rem;
  left: -0.375rem;
  width: 55.5208333333%;
  aspect-ratio: 1066/562;
  height: auto;
  background-image: url(../images/message-bg-left.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-message::before {
    top: -2.125rem;
    left: -0.5rem;
    width: 73.9130434783%;
    aspect-ratio: 306/161;
  }
}

.p-message::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -0.5rem;
  width: 55.5208333333%;
  aspect-ratio: 1066/562;
  height: auto;
  background-image: url(../images/message-bg-right.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-message::after {
    bottom: -0.75rem;
    right: -0.5rem;
    width: 73.9130434783%;
    aspect-ratio: 306/161;
  }
}

.p-message__inner.l-inner {
  max-width: 84.9375rem;
  width: 100%;
  padding-inline: 40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-message__inner.l-inner {
    max-width: 600px;
    padding-inline: 0;
  }
}

.p-message__text {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 79.9375rem;
  aspect-ratio: 103/65;
  height: auto;
  background-image: url(../images/letter.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    aspect-ratio: 385/244;
  }
}

.p-message__text img {
  width: 61.4542611415%;
  aspect-ratio: 786/204;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .p-message__text img {
    margin-top: 0;
  }
}

.p-mv {
  position: relative;
  z-index: 1;
}

.p-mv__inner {
  padding-top: 0.9375rem;
  padding-inline: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-top: 0.1875rem;
    padding-inline: 0.4375rem;
    height: 100%;
  }
}

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

.p-mv__img img {
  width: 100%;
  aspect-ratio: 1885/1230;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__img img {
    aspect-ratio: auto;
    height: 100%;
  }
}

.p-mv__text-img {
  position: absolute;
  max-width: 48.875rem;
  width: 40.7291666667%;
  top: 7.5520833333vw;
  left: 5.1041666667vw;
}
@media screen and (max-width: 767px) {
  .p-mv__text-img {
    top: 9.6618357488vw;
    left: 50%;
    transform: translateX(-50%);
    width: 85.0241545894%;
    max-width: 22rem;
  }
}

.p-mv__text-img img {
  width: 100%;
  aspect-ratio: 705/357;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-mv__text-img img {
    aspect-ratio: 354/140;
  }
}

.p-mv__bottom-img.p-mv__bottom-img--card {
  position: absolute;
  max-width: 40.625rem;
  width: 33.8541666667%;
  top: 28.8020833333vw;
  left: 7.34375vw;
}
@media screen and (max-width: 767px) {
  .p-mv__bottom-img.p-mv__bottom-img--card {
    display: none;
  }
}

.p-mv__bottom-img.p-mv__bottom-img--card img {
  width: 100%;
  aspect-ratio: 608/578;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__bottom-img.p-mv__bottom-img--text {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-mv__bottom-img.p-mv__bottom-img--text {
    display: block;
    position: absolute;
    bottom: 7.729468599vw;
    left: 50%;
    transform: translateX(-50%);
    width: 85.5072463768%;
    max-width: 22.125rem;
  }
}

.p-mv__bottom-img.p-mv__bottom-img--text img {
  width: 100%;
  aspect-ratio: 354/107;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-opening {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.p-opening__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  z-index: 1;
}

.p-opening__text {
  position: relative;
  z-index: 2;
  font-size: min(clamp(1.625rem, 1.424vw + 1.291rem, 3rem), 48px);
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  background-image: linear-gradient(91deg, #78bbe8 0.1%, #005693 100.1%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
  opacity: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-opening__text {
    letter-spacing: -0.05em;
  }
}

.js-mv {
  opacity: 0;
  visibility: hidden;
}

.js-mv-img,
.js-mv-text-img {
  display: block;
}

.js-mv-img img,
.js-mv-text-img img {
  display: block;
  width: 100%;
}

.p-rarity {
  margin-top: -16px;
  background-color: #E9EAF3;
  padding-top: 7.375rem;
  padding-bottom: 7rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-rarity {
    padding-top: 4rem;
    padding-bottom: 4.375rem;
  }
}

.p-rarity::before {
  content: "";
  position: absolute;
  top: 2.3125rem;
  left: 1.25rem;
  width: 15.625rem;
  height: 15.625rem;
  background-image: url(../images/rarity-bg-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-rarity::before {
    top: 1.25rem;
    left: 0.3125rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-rarity::after {
  content: "";
  position: absolute;
  top: 2.3125rem;
  right: 1.25rem;
  width: 15.625rem;
  height: 15.625rem;
  background-image: url(../images/rarity-bg-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-rarity::after {
    top: 1.25rem;
    right: 0.3125rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-rarity__bg-img {
  position: relative;
}

.p-rarity__bg-img::before {
  content: "";
  position: absolute;
  bottom: 4.375rem;
  left: 1.25rem;
  width: 15.625rem;
  height: 15.625rem;
  background-image: url(../images/cardlist-bg-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-rarity__bg-img::before {
    bottom: 3.5rem;
    left: 0.3125rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-rarity__bg-img::after {
  content: "";
  position: absolute;
  bottom: 4.375rem;
  right: 1.25rem;
  width: 15.625rem;
  height: 15.625rem;
  background-image: url(../images/cardlist-bg-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-rarity__bg-img::after {
    bottom: 3.5rem;
    right: 0.3125rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-rarity__bg {
  position: absolute;
  top: 11rem;
  right: -0.625rem;
  width: 59.125rem;
  height: 63.125rem;
  background-image: url(../images/rarity-bg-castle.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-rarity__bg {
    top: 3.125rem;
    right: -5.5rem;
    width: 23.25rem;
    height: 24.3125rem;
  }
}

.p-rarity__inner.l-inner {
  position: relative;
  z-index: 1;
  max-width: 1410px;
  width: 100%;
  padding-inline: 40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-rarity__inner.l-inner {
    max-width: 600px;
    padding-inline: 30px;
  }
}

.p-rarity__title {
  width: 100%;
  margin-inline: auto;
  max-width: 64rem;
}
@media screen and (max-width: 767px) {
  .p-rarity__title {
    max-width: 15.625rem;
  }
}

.p-rarity__list {
  margin-top: 3.625rem;
  max-width: 83.125rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8.2706766917%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-rarity__list {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
    row-gap: 2rem;
  }
}

.p-rarity__item .p-rarity__img {
  margin-top: 1.875rem;
  border-radius: 0.875rem;
  padding: 0.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-rarity__item .p-rarity__img {
    margin-top: 0.5rem;
  }
}
.p-rarity__item .p-rarity__img img {
  border-radius: 0.625rem;
  width: 100%;
  aspect-ratio: 250/356;
  height: auto;
  display: block;
}
.p-rarity__item.p-rarity__item--normal .p-rarity__img {
  background: #65472d;
}
.p-rarity__item.p-rarity__item--map .p-rarity__img {
  background: linear-gradient(91deg, #78bbe8 0.1%, #005693 100.1%);
}
.p-rarity__item.p-rarity__item--sp .p-rarity__img {
  background: linear-gradient(91deg, #A6C5CD 0.1%, #8F9FAC 100.1%);
}
.p-rarity__item.p-rarity__item--ssp .p-rarity__img {
  background: linear-gradient(91deg, #D5AD3D 0.1%, #B19050 100.1%);
}

.p-rarity__label {
  max-width: 194px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-rarity__label {
    max-width: 7.75rem;
  }
}

.p-rarity__label img {
  width: 100%;
  aspect-ratio: 194/117;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-rarity__count {
  margin-top: 1.75rem;
  color: #ffffff;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.0625rem 0.3125rem 0.1875rem 0.3125rem;
  max-width: 11rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-rarity__count {
    margin-top: 0.4375rem;
    max-width: 7.125rem;
    font-size: 1.5rem;
    padding: 0rem 0.3125rem 0.125rem 0.3125rem;
  }
}
.p-rarity__count.p-rarity__count--normal {
  background-color: #65472d;
}
.p-rarity__count.p-rarity__count--map {
  background: linear-gradient(91deg, #78bbe8 0.1%, #005693 100.1%);
}
.p-rarity__count.p-rarity__count--sp {
  background: linear-gradient(91deg, #A6C5CD 0.1%, #8F9FAC 100.1%);
}
.p-rarity__count.p-rarity__count--ssp {
  background: linear-gradient(91deg, #D5AD3D 0.1%, #B19050 100.1%);
}

.p-rarity__count-unit {
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-rarity__count-unit {
    font-size: 1.25rem;
  }
}

.p-cards__slide-text {
  margin-top: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-cards__slide-text {
    margin-top: 3rem;
  }
}

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

.p-rarity .p-cards__slide-text {
  margin-top: 6.375rem;
}
@media screen and (max-width: 767px) {
  .p-rarity .p-cards__slide-text {
    margin-top: 3.75rem;
  }
}

.p-slide {
  width: 100%;
  height: 47px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #B19552;
}

.p-cardlist .p-slide,
.p-rarity .p-slide {
  border-top: 1px solid #B19552;
}

.p-slide::before {
  content: "";
  position: absolute;
  bottom: -1px;
  background-image: url(../images/common/roll-img-bg.png);
  background-size: contain;
  background-repeat: repeat;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 1919px) {
  .p-slide::before {
    background-size: cover;
  }
}
@media screen and (max-width: 1439px) {
  .p-slide::before {
    background-size: cover;
  }
}

.p-cardlist .p-slide::before,
.p-rarity .p-slide::before {
  background-image: url(../images/common/roll-img-bg-bottom.png);
  bottom: -1px;
}

.p-slide__img {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.p-slide__items {
  margin-top: -13px;
  display: flex;
  align-items: center;
  animation: scroll-left 45s infinite linear 0.5s both;
  height: 17px;
}
@media screen and (max-width: 767px) {
  .p-slide__items {
    animation: scroll-left 60s infinite linear 0.5s both;
  }
}

.p-cardlist .p-slide__items,
.p-rarity .p-slide__items {
  margin-top: 16px;
}

.p-slide__item {
  height: 100%;
  margin-left: 0.3125rem;
}

.p-slide__item01 {
  width: 7.09375rem;
}

.p-slide__item02 {
  width: 16.5625rem;
}

.p-slide__item img {
  width: 100%;
  height: 100%;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 413px) {
  .is-sm {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
