@charset "UTF-8";
/* =========================
base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #06071a;
  margin: 0;
  padding-bottom: 5rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #ffffff;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  display: block;
  border: 0;
}

a {
  color: #fff23f;
}
a:hover, a:focus {
  color: rgb(159, 148.234375, 0);
}

/* =========================
variable
========================= */
:root {
  --content-width: 900px;
}

/* =========================
background fixed
========================= */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #06071a url(../images/bg.jpg) center/cover no-repeat;
  transform: translateZ(0);
}

/* =========================
header
========================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 53px;
  background-color: rgba(6, 7, 26, 0.9);
  padding: 0.625rem;
  z-index: 1000;
}
.l-header-inner {
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-header {
  width: 100%;
}

@media (min-width: 768px) {
  .l-header {
    height: 58px;
  }
  .logo-header {
    width: auto;
    height: 38px;
  }
}
@media (min-width: 1024px) {
  .l-header {
    height: 67px;
  }
  .logo-header {
    height: 47px;
  }
}
/* =========================
main
========================= */
main {
  padding-top: 53px;
}

@media (min-width: 768px) {
  main {
    padding-top: 58px;
  }
}
@media (min-width: 1024px) {
  main {
    padding-top: 67px;
  }
}
/* =========================
layout
========================= */
.inner {
  max-width: var(--content-width);
  margin: auto;
  padding: 0 20px;
}
.inner p {
  margin: 0 auto 1em;
}

@media (min-width: 1024px) {
  .inner {
    padding: 0;
  }
}
.section {
  padding-block: 3.75rem;
}
@media (min-width: 768px) {
  .section {
    padding-block: 5rem;
  }
}
.section {
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}
.movie-player {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  margin: auto;
}

.movie-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================
hero
========================= */
.p-hero {
  background-color: #ffffff;
  margin-bottom: 2rem;
  padding: 0.625rem;
  text-align: center;
  color: #06071a;
}
.p-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.p-hero-jk {
  width: 100%;
}
.p-hero-title {
  width: 100%;
}
.p-hero-title p {
  margin: 0 auto 0.5em;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .p-hero-jk {
    width: calc(60% - 0.3125rem);
  }
  .p-hero-title {
    width: calc(40% - 0.3125rem);
  }
}
h1 {
  width: 75%;
  margin: 0 auto 1.875rem;
}

/* =========================
section
========================= */
h2 {
  margin: 1.5rem auto;
  font-size: 1.8em;
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-weight: 600;
}

.p-product {
  padding-block: 3.75rem;
}
@media (min-width: 768px) {
  .p-product {
    padding-block: 5rem;
  }
}
.p-product {
  padding: 2rem 0;
}
.p-product-spec {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.p-product-tracklist {
  width: 100%;
  border: 1px solid #ffffff;
  margin: 0 auto;
  padding-bottom: 1.875rem;
}
.p-product-tracklist p {
  margin: 0;
}
.p-product-tracklist ol {
  margin: 0 auto 2em;
}
.p-product-tracklist-part {
  margin: 0 auto 0.25em !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875em;
}
.p-product-tracklist-part::before {
  content: "◯";
  padding-right: 0.25em;
}
.p-product .p-hl-track-list {
  font-size: 1.5em;
}

@media (min-width: 1024px) {
  .p-product {
    padding: 2rem 0;
  }
  .p-product-tracklist {
    margin: 2.5rem auto;
  }
}
.p-bundle__hl {
  position: relative;
}
.p-bundle__hl-text {
  display: inline-block;
  position: relative;
}

.p-bundle__limited {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  margin-left: clamp(4px, 1vw, 12px);
}

@media (min-width: 768px) {
  .p-bundle__limited {
    top: 52%;
    width: 100px;
    height: 100px;
  }
  .p-bundle__limited img {
    width: 100%;
    height: auto;
  }
}
.fade-up {
  transform: scale(0.6);
  opacity: 0;
}

.fade-up.is-active {
  animation: boom 0.65s cubic-bezier(0.22, 1.5, 0.4, 1) forwards;
}

@keyframes boom {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  55% {
    transform: scale(1.4);
    opacity: 1;
  }
  75% {
    transform: scale(0.95);
  }
  85% {
    transform: scale(1);
  }
  92% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (min-width: 767px) {
  .p-benefit .u-note {
    text-align: center;
  }
}
.p-ot-body {
  width: 50%;
  max-width: 300px;
  margin: 36px auto;
}

/* =========================
footer
========================= */
.l-footer {
  padding: 2.875rem 0;
}

.l-footer__copyright {
  padding: 3em 0;
  text-align: center;
  font-size: 0.875em;
  line-height: 1.75;
}

/* =========================
component
========================= */
.c-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 1rem 2rem;
  background: #fff23f;
  border-radius: 6px;
  color: rgb(14.9625, 17.45625, 64.8375);
  text-align: center;
  text-decoration: none;
  font-size: 1.4em;
  line-height: 1;
  font-family: "M PLUS 2", sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 0 rgb(190.8, 177.88125, 0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.c-cta-button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.35em solid transparent;
  border-bottom: 0.35em solid transparent;
  border-left: 0.6em solid currentColor;
  margin-top: 0.1em;
  margin-right: -0.5em;
  transition: transform 0.15s ease;
}
.c-cta-button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(238.5, 222.3515625, 0);
}
.c-cta-button:hover::after {
  transform: translateX(2px);
}
.c-cta-button:active {
  transform: translateY(4px);
  box-shadow: none;
}

@media (max-width: 767px) {
  .c-cta-button {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
  }
}
@media (min-width: 768px) {
  .c-cta-button {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 0.5625rem 1.25rem 0.5625rem 1rem;
    z-index: 1000;
    gap: 0.3em;
    font-size: 1em;
  }
}
@media (min-width: 1024px) {
  .c-cta-button {
    z-index: 1000;
    padding: 0.625rem 2rem;
    gap: 0.7em;
    font-size: 1.3em;
  }
}
.c-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 0;
  align-items: start;
}

.c-dl dt {
  position: relative;
  padding-right: 1em;
}

.c-dl dt::after {
  content: "：";
  position: absolute;
  right: 0;
}

.c-dl dd {
  margin: 0;
}

.c-dl dd.-number {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.c-list {
  padding-left: 1.5em;
}

.c-list li {
  padding-left: 0em;
}

.c-en-list {
  list-style: none;
  counter-reset: en;
  padding-left: 0;
  font-size: 0.875em;
}

.c-en-list li {
  counter-increment: en;
  position: relative;
  padding-left: 3em;
}

.c-en-list li::before {
  content: "En-" counter(en) ".";
  position: absolute;
  left: 0;
  width: 4em;
}

.c-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 1.875rem;
  padding: 0;
}
@media (min-width: 768px) {
  .c-card-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .c-card-list {
    gap: 1.5rem;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px 0;
  background: #ffffff;
  color: #06071a;
}

.c-card__title {
  height: 4.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px;
  padding: 0 10px;
  text-align: center;
  font-size: 0.875em;
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}

.c-card__image {
  aspect-ratio: 1/1;
  background: rgba(6, 7, 26, 0.2);
  margin-bottom: 6px;
  padding: 0;
  text-align: center;
}

.c-card__text {
  padding: 0 10px;
}

.c-card__benefit-item {
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.25em !important;
  text-align: center;
  line-height: 1.3;
  font-size: 0.8em;
  font-weight: 600;
  font-feature-settings: "palt";
}

.c-card__title-inner, .c-card__benefit-item-inner {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-card__title-inner {
  font-size: 1em;
}

@media (min-width: 768px) {
  .c-card__title-inner {
    font-size: 1.2em;
  }
}
.c-card__benefit-item-size {
  font-size: 0.875em;
  text-align: center;
  line-height: 1.25;
}

.c-card__button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  margin: auto 8px 2px;
  padding: 0 5px !important;
  text-align: center;
  background-color: rgb(14.9625, 17.45625, 64.8375);
  box-shadow: 0 4px 0 rgb(127.5, 127.5, 127.5);
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.2;
}
.c-card__button:hover {
  box-shadow: none;
  transform: translateY(3px);
  color: #cccccc;
}

.c-card__button.c-card__button-low {
  min-height: 40px;
}

.c-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100vw;
  max-width: 900px;
}

.c-link__wrapper-sns {
  width: 100%;
}

.c-link__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  margin: 0 auto;
  list-style: none;
}

.c-link__sns li {
  flex: 0 0 auto;
}

.c-link__sns a {
  display: block;
  width: 40px;
  height: 40px;
}

.c-link__sns img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.c-link__sns a:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.c-link__official-site {
  width: 100%;
  text-align: center;
}

.c-link__official-site a {
  display: inline-block;
  margin: auto;
  color: #ffffff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .c-link {
    justify-content: center;
    gap: 0;
    width: 80%;
    margin: auto;
  }
  .c-link__wrapper-sns {
    width: 60%;
  }
  .c-link__official-site {
    width: 35%;
  }
}
/* =========================
utility
========================= */
.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-left {
  text-align: left;
}

.u-text-lg {
  font-size: 1.25em;
}

.u-text-xl {
  font-size: 1.5em;
}

.u-text-sm {
  font-size: 0.875em;
}

.u-text-xs {
  font-size: 0.75em;
}

.u-small {
  font-size: 0.94em;
}

.u-note {
  margin-left: 1em !important;
  font-size: 0.75em;
  line-height: 1.2;
  text-indent: -1em;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-ls-tight {
  letter-spacing: -0.02em;
}

.u-ls-tighter {
  letter-spacing: -0.04em;
}

.u-ls-tightest {
  letter-spacing: -0.06em;
}

.u-ls-tightest-hard {
  letter-spacing: -0.08em;
}

.u-palt {
  font-feature-settings: "palt";
}

.u-narrow {
  width: 100%;
  display: inline-block;
  transform: scaleX(0.85);
  transform-origin: center;
  white-space: normal;
}

.u-text-long {
  font-size: 0.96em;
  letter-spacing: -0.06em;
}

@media (min-width: 767px) {
  .u-text-long {
    font-size: 1em;
  }
}
.u-lh-12 {
  line-height: 1.2;
}

.u-mt-025 {
  margin-top: 0.25em !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-025 {
  margin-bottom: 0.25em !important;
}

.u-mb-05 {
  margin-bottom: 0.5em !important;
}

.u-mb-20 {
  margin-bottom: 1.25rem !important;
}

.u-mb-30 {
  margin-bottom: 1.875rem !important;
}

.u-mb-50 {
  margin-bottom: 3.125rem !important;
}

.u-hidden {
  display: none;
}

.u-xs-only {
  display: none;
}
@media (max-width: 390px) {
  .u-xs-only {
    display: block;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.u-br-tb {
  display: none;
}
@media (max-width: 768px) {
  .u-br-tb {
    display: inline;
  }
}

.u-fit-content {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.u-display-inline {
  display: inline;
}/*# sourceMappingURL=style.css.map */