@charset "UTF-8";

/* ====================================
	common style
 ==================================== */

[v-cloak] {
  display: none;
}

.scroll-prevent {
  overflow: hidden;
}

/* ヒーローセクション */
.hero__container {
  --triangle-height: 14px;
  background: var(--hero-section-gradient);
  position: relative;
}

.hero__inner {
  margin: -9rem 0 0;
}

.hero__logo {
  inline-size: 82%;
  max-inline-size: 400px;
  margin: 0 auto;
  overflow: visible; 
}

.hero__logo img {
  filter: drop-shadow(0 3px 20px rgba(249, 98, 176, 0.50));
  will-change: filter;
}

.hero__main-visual img {
  block-size: 100%;
  object-fit: cover;
}

.release__container {
  margin: 5rem 0 0;
}

.release__text {
  text-align: center;
  font: 400 3.4rem var(--font-sicselif);
  color: var(--color-rose);

  .small {
    display: block;
    font-size: 2.2rem;
  }
}

.release__icon {
  position: absolute;
  right: 5%;
  top: 0;
  transform: translateY(-50%);
  inline-size: 235px;
  aspect-ratio: 1 / 1;
}

/* セクション個別設定 */
.special .section-title-wrap {
  padding: calc(var(--font-size) + 3rem) 0 0;
  /* margin: 6rem 0 0; */
}

.bonus .button-container{
  padding: 0 0 6rem;
}

/* ABOUTセクション */
.product__container {
  --border-radius: 8px;
  --border-width: 3px;
  margin: 8.8rem 0 0;
  padding: 6rem 7%;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 76px 0px rgba(248, 201, 240, 0.3);

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: var(--border-width);
    background: var(--gradient-pink-to-cyan);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  small {
    display: block;
    font: 600 1.2rem / 1.67 var(--font-sicuveiw);
    margin: 0.5em 0 0;
  }
}

.product__index {
  background: var(--gradient-pink-to-sky);
  padding: 0.55em 1em;
  text-align: center;
  inline-size: fit-content;
  min-inline-size: 220px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  font: 800 1.6rem var(--font-sicuveiw);
  color: #fff;

  &::before,
  &::after {
    content: '';
    display: block;
    inline-size: 8px;
    block-size: 8px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  &::before {
    left: 2.4rem;
  }

  &::after {
    right: 2.4rem;
  }
}

.product__title {
  display: block;
  inline-size: fit-content;
  font: 400 3rem var(--font-sicselif);
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: var(--gradient-pink-to-indigo);
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
  margin: 0 auto;
}

.product__image {
  overflow: hidden;
  border-radius: 16px;
  margin-top: 4rem;
}

.product__table {
  margin-top: 3rem;

  tbody {

    th,
    td {
      --tr-padding: 0.8rem;
      font: 600 1.2rem / 1.8 var(--font-sicuveiw);
      border-top: 1px solid var(--color-rose);
      padding: var(--tr-padding) 1em;
    }

    th {
      inline-size: 25%;
      position: relative;
      text-align: center;

      &::before {
        content: '';
        display: block;
        inline-size: 1px;
        block-size: calc(100% - calc(var(--tr-padding) * 2));
        background: var(--color-rose);
        position: absolute;
        right: 0;
        top: var(--tr-padding);
      }
    }

    tr:last-child th,
    td {
      border-bottom: 1px solid var(--color-rose);
    }
  }
}

.bundle__title {
  inline-size: fit-content;
  text-align: center;
  min-inline-size: 200px;
  margin: 10vw auto 0;
  padding: 1rem 13vw;
  font: 400 calc(100vw/25) var(--font-sicselif);
  position: relative;
  color: var(--color-rose);

  &::before,
  &::after {
    content: '';
    display: block;
    inline-size: 10vw;
    block-size: 13vw;
    background: url('./images/icon-deco.png') no-repeat center/contain;
    position: absolute;
    top: 2vw;
  }

  &::before {
    left: 0;
  }

  &::after {
    right: 0;
    transform: rotateY(180deg);
  }
}

.bundle__container {
  background: var(--color-pink-50);
  border-radius: 16px;
  margin: 1rem 0 0;
  padding: 3rem 5%;
}

.bundle__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4%;
}

.bundle__inner {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.bundle__item {
  inline-size: 48%;
}

.bundle__image {
  padding: 0.8rem 1.6rem;
}

.bundle__index {
  background: var(--color-rose);
  color: #fff;
  font: 800 1.1rem var(--font-sicuveiw);
  text-align: center;
  padding: 0.35em 0.5em;
}

.bundle__sub-title {
  font: 800 1.5rem var(--font-sicuveiw);
  color: var(--color-rose);
  text-align: center;
  margin: 0.5em 0 0;
}

.bundle__comment {
  inline-size: 115%;
  margin: 2.4rem -8% 0;
}

/* LINEUPセクション */
.lineup__list {
  display: flex;
  flex-direction: column;
  gap: 9rem 0;
  margin: 6rem auto 0;
}

.lineup__item {
  position: relative;
  z-index: 0;
  margin: clamp(10.2rem, 0.0592rem + 27.04vw, 20.8rem) 0 0;

  &::before {
    content: '';
    display: block;
    margin-inline: calc(50% - 50vw);
    position: absolute;
    top: 0;
    z-index: -1;
    inline-size: 100vw;
    block-size: 100%;
    background-blend-mode: soft-light;
    opacity: 0.6;
  }
}

.lineup__list>li:first-child .lineup__item::before {
  background: url('./images/img-lineup01_bg.jpg') no-repeat center/cover, #ffdbec;
}

.lineup__list>li:nth-child(2) .lineup__item::before {
  background: url('./images/img-lineup02_bg.jpg') no-repeat center/cover, #ffdbec;
}

.lineup__list>li:nth-child(3) .lineup__item::before {
  background: url('./images/img-lineup03_bg.jpg') no-repeat center/cover, #ffdbec;
}

.lineup__list>li:nth-child(4) .lineup__item::before {
  background: url('./images/img-lineup04_bg.jpg') no-repeat center/cover, #ffdbec;
}

.lineup__list>li:nth-child(5) .lineup__item::before {
  background: url('./images/img-lineup05_bg.jpg') no-repeat center/cover, #ffdbec;
}

.lineup__product {
  padding: clamp(15rem, 4.4768rem + 28.06vw, 26rem) 0 6.5rem;
}

.lineup__image {
  inline-size: 85%;
  margin: 0 auto;

  img {
    box-shadow: -16px 32px 0px 0px rgba(98, 105, 249, 0.1);
  }
}

.lineup__title {
  font: 400 2.2rem / 1.6 var(--font-sicselif);
  color: var(--color-rose);
  text-wrap: wrap;
}

.lineup__text {
  font: 600 1.4rem / 2.1 var(--font-sicuveiw);
  margin: 1.6rem 0 0;
}

.lineup__table {
  border-collapse: separate;
  border-spacing: 0 5px;
  padding: 10px 0 10px;
  margin: 1.6rem 0 0;
  border-top: 1px solid var(--color-pink-100);
  border-bottom: 1px solid var(--color-pink-100);

  th,
  td {
    font: 600 1.2rem / 1.5 var(--font-sicuveiw);
    padding: 0.25em 0.5em;
  }

  th {
    background: rgba(249, 98, 176, 0.3);
    inline-size: 25%;
    text-align: center;
  }

  td {
    inline-size: 75%;
  }
}

/* BONUSセクション */
.bonus .border {
  border-top-color: #c49ddf;
  margin: 4rem 0 0;
  padding: 4rem 0 0;
}

.bonus__container {
  --border-radius: 8px;
  --border-width: 3px;
  margin: 6rem auto 0;
  padding: 3.2rem 7%;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: var(--border-width);
    background: var(--gradient-pink-to-indigo);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
}

.bonus__title {
  font: 400 2.4rem var(--font-sicselif);
  color: var(--color-rose);
  position: relative;
  padding: 0.2em 0 0.2em 1.8rem;
  border-left: 6px solid var(--color-rose);

  .small {
    display: block;
    font-size: 1.4rem;
  }
}

.bonus__image {
  max-inline-size: 380px;
  margin: 4rem auto 0;
}

.bonus__text {
  font: 600 1.4rem / 1.7 var(--font-sicuveiw);
  margin: 2.4rem 0 0;

  small {
    display: block;
    font-size: 1.2rem;
  }
}

.soundtrack__title {
  font: 800 1.4rem var(--font-sicuveiw);
}

.soundtrack__list {
  counter-reset: track;
  margin-top: 3rem;

  li {
    counter-increment: track;
    font: 600 1.4rem / 1.6 var(--font-sicuveiw);
    background: #fff;
    padding: 1.8rem 1.6rem 1.2rem;
    position: relative;

    .game {
      display: block;
      font-size: 1.1rem;
      margin: 0.6em 0 0;
    }
  }

  li::before {
    content: counter(track, decimal-leading-zero);
    display: block;
    font: 800 2rem var(--font-sicuveiw);
    color: var(--color-gray);
    position: absolute;
    left: 1.6rem;
    top: 0;
    transform: translateY(-50%);
  }

  li:not(:first-child) {
    margin: 1.8rem 0 0;
  }

  li:nth-child(6n+1) .game {
    color: var(--color-rose);
  }

  li:nth-child(6n+2) .game {
    color: var(--color-indigo);
  }

  li:nth-child(6n+3) .game {
    color: var(--color-blue);
  }

  li:nth-child(6n+4) .game {
    color: var(--color-emerald);
  }

  li:nth-child(6n+5) .game {
    color: var(--color-green);
  }

  li:nth-child(6n+6) .game {
    color: var(--color-orange);
  }
}

/* SPECIALセクション */
.special__image {
  max-inline-size: 960px;
  margin: 6rem auto 0;
}

/* EXCLUSIVEセクション */
.exclusive__list {
  margin-top: 6rem;
}

.exclusive__item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 1.6rem 10%;
}

.exclusive__title {
  font: 800 1.8rem / 1.8 var(--font-sicuveiw);
  color: var(--color-rose);
  text-align: center;
}

.exclusive__sub-title {
  font: 800 1.2rem / 1.5 var(--font-sicuveiw);
  text-align: center;
  padding: 0.6em;
  margin-top: 0.6em;
  border-top: 1px dotted var(--color-rose);
  border-bottom: 1px dotted var(--color-rose);
}

.exclusive__image {
  margin-top: 1.6rem;
}

/* ====================================
	nonDesktop style
 ==================================== */

@media screen and (width <1024px) {

  .release__event a {
    display: block;
    font: 800 1.6rem var(--font-sicuveiw);
    color: #fff;
    background: var(--color-rose);
    text-decoration: none;
    margin: 4rem 0 var(--triangle-height);
    padding: 1.6rem 5%;
    text-align: center;
    position: relative;

    .text-gradient {
      color: transparent;
      -webkit-text-fill-color: transparent;
      background: var(--gradient-pink-to-cyan);
      background-clip: text;
      -webkit-background-clip: text;
    }

    &::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      border-style: solid;
      border-width: var(--triangle-height) 18px 0 18px;
      border-color: var(--color-rose) transparent transparent;
      translate: -50% 100%;
    }
  }

  /* LINEUPセクション */
  .lineup__image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ====================================
	Mobile style
 ==================================== */

@media screen and (width <768px) {

  /* ABOUTセクション */
  .about__container {
    max-inline-size: 500px;
    margin: 6rem auto 0;
  }

  /* LINEUPセクション */
  .lineup__item::before {
    left: 0;
    right: 0;
  }

  /* BONUSセクション */
  .bonus__image {
    max-inline-size: 215px;
    margin: 2.4rem auto 0;
  }

  /* EXCLUSIVEセクション */
  .exclusive__list>li:not(:first-child) {
    margin-top: 2.4rem;
  }

}

/* ====================================
	Desktop style
 ==================================== */

@media screen and (width >=768px) {

  /* セクション設定 */
  .about .section-title-wrap {
    --padding-top: 15rem;
  }

  .special .section-title-wrap {
    margin-top: 22rem;
  }

  /* ABOUTセクション */
  .product__container {
    border-radius: 10px;
    margin-top: -2rem;
    padding: 10rem 6.2%;
  }

  .about__container {
    margin: 15rem 0 0;
  }

  .product__index {
    padding: 1rem 2rem;
    font-size: 3rem;
    min-inline-size: 400px;

    &::before,
    &::after {
      display: block;
      inline-size: 11px;
      block-size: 11px;
    }

    &::before {
      left: 2.4rem;
    }

    &::after {
      right: 2.4rem;
    }
  }

  .product__title {
    font-size: 5.6rem;
  }

  .product__image {
    margin-top: 8rem;
  }

  .product__table {
    margin-top: 5rem;

    tbody {

      th,
      td {
        --tr-padding: 1.6rem;
        font-size: 1.8rem;
      }

      th {
        inline-size: 15%;
      }
    }
  }

  .bundle__title {
    margin: 8rem auto 0;
    padding: 1rem 74px;
    font-size: clamp(2.1rem, -0.5664rem + 3.47vw, 3.6rem);

    &::before,
    &::after {
      inline-size: 74px;
      block-size: 99px;
      top: 0;
      --translateY: translateY(-28%);
    }

    &::before {
      transform: var(--translateY);
    }

    &::after {
      transform: rotateY(180deg) var(--translateY);
    }
  }

  .bundle__container {
    margin-top: 3rem;
    padding: 4.8rem 15.8%;
  }

  /* LINEUPセクション */
  .lineup__title {
    font-size: 2.2rem;
  }

  .lineup__text {
    font-size: 1.6rem;
  }

  .lineup__table {
    border-spacing: 0 8px;
    padding: 2px 0 2px;
    margin-top: 3.2rem;

    th,
    td {
      font-size: 1.4rem;
      padding: 0.18em 0.5em;
    }

    th {
      inline-size: 15%;
    }

    td {
      inline-size: 85%;
    }
  }

  /* BONUSセクション */
  .bonus__container {
    --border-radius: 16px;
    --border-width: 6px;
    margin-top: 15rem;
    padding: 9.6rem 7%;
  }

  .bonus__title {
    grid-area: title;
    font-size: 4rem;
    padding: 0 0 0 1.8rem;
    border-left-width: 7px;

    .small {
      font-size: 2rem;
    }
  }

  .bonus .border {
    margin-top: 5.6rem;
    padding-top: 5.6rem;
  }

  .soundtrack__list {
    margin-top: 3rem;

    li {
      font-size: 1.6rem;
      padding: 1rem 2.4rem 1rem 9.5rem;

      .game {
        font-size: 1.6rem;
        margin-top: 0.2em;
      }
    }

    li::before {
      font-size: 3.2rem;
      left: 2.4rem;
      top: 50%;
      transform: translateY(-50%);
    }

  }

  .soundtrack__title {
    font-size: 1.8rem;
  }

  /* SPECIALセクション */
  .special__image {
    margin-top: 15rem;
  }

  /* EXCLUSIVEセクション */
  .exclusive__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 3.75%;
    margin-top: 15rem;
  }

  .exclusive__item {
    padding: 2.4rem 8.5%;
  }

  .exclusive__title {
    font-size: 2rem;
    line-height: 1.6;
  }

  .exclusive__sub-title {
    font-size: 1.6rem;
    padding: 0.5em;
    margin-top: 1em;
  }
}

/* ====================================
	Tablet style
 ==================================== */

@media screen and (768px <=width <1024px) {

  .hero__inner {
    margin-top: -18rem;
  }

  .hero__logo {
    inline-size: 50%;
    max-inline-size: 500px;
  }

  .release__container {
    margin-top: 6rem;
  }

  .release__text {
    font-size: clamp(5rem, -1rem + 7.81vw, 7rem);

    .small {
      font-size: clamp(3rem, 3.91vw, 4rem);
    }
  }

  .release__event a {
    font-size: 2.8rem;
    margin-top: 7rem;
    padding: 2.5rem 5%;
  }

  /* ABOUTセクション */
  .bundle__image {
    padding: 0.8rem 1.6rem;
  }

  .bundle__index {
    font-size: 1.4rem;
    padding: 0.35em 0.5em;
  }

  .bundle__sub-title {
    font-size: 2.6rem;
    margin: 0.5em 0 0;
  }

  .bonus__text {
    margin-top: 4rem;
  }

  .bundle__comment {
    inline-size: 126%;
    margin: 5.6rem -11.7% 0;
  }

  .bundle__container {
    padding: 4.8rem 10.8%;
  }

  /* LINEUPセクション */
  .lineup .button-container {
    max-inline-size: 400px;
  }

  .lineup__list {
    gap: 9.6rem 0;
    margin-top: 15rem;
    max-inline-size: 700px;
  }

  .lineup__item {
    margin: clamp(23.5rem, 19rem + 5.86vw, 25rem) 0 0;
  }

  .lineup__product {
    padding: clamp(28rem, 22rem + 7.81vw, 30rem) 0 10rem;
  }

  .lineup__image {
    inline-size: 100%;
  }
}

/* ====================================
	NonMobile style
 ==================================== */

@media screen and (width >=1024px) {

  /* ヒーローセクション */
  .hero__container {
    block-size: 100svh;
    overflow: hidden;
    position: relative;
  }

  .hero__main-visual {
    block-size: 100%;

    img {
      block-size: inherit;
      object-fit: cover;
    }
  }

  .hero__logo {
    position: absolute;
    left: 50%;
    top: 49svh;
    transform: translateX(-50%);
    aspect-ratio: 1 / 0.27;
    inline-size: 50%;
    max-inline-size: 850px;
  }
 .hero__logo img {
    filter: drop-shadow(0 4px 23px rgba(249, 98, 176, 0.90));
  }
  .release__container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0 1.5%;
  }

  .release__inner {
    display: grid;
    place-items: center;
    max-inline-size: 1200px;
    min-block-size: 140px;
    margin: 0 auto;
    position: relative;
  }

  .release__text {
    font-size: 4.6rem;

    .small {
      display: inline-block;
      font-size: 4rem;
    }
  }

  .release__icon {
    position: absolute;
    right: -10px;
    top: 0;
    transform: translateY(-50%);
    inline-size: 235px;
    aspect-ratio: 1 / 1;
    transition: transform 0.1s ease;
  }

  .release__icon:has(:hover) {
    transform: translateY(calc(-50% - 5px));
  }

  /* ABOUTセクション */
  .bundle__container {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    padding: 4.8rem 4.5% 4.8rem 7%;
  }

  .bundle__contents {
    inline-size: 57%;
    display: flex;
    gap: 0 3%;
    justify-content: space-between;
  }

  .bundle__item {
    inline-size: 48.5%;
  }

  .bundle__index {
    font-size: 1.4rem;
    padding: 0.4em 0.5em;
  }

  .bundle__image {
    padding: 2.4rem 12%;
  }

  .bundle__sub-title {
    font-size: 2.6rem;
    margin-top: 0.2em;
  }

  .bundle__comment {
    flex: 1 0;
    margin: 0;
  }

  .product__container small {
    font-size: 1.4rem;
  }

  /* LINEUPセクション */
  .lineup {
    .button-container {
      margin-top: 6rem;
    }

    .round-button a {
      font-size: 2.2rem;
    }
  }

  .lineup__list {
    gap: 12rem 0;
    margin-top: 15rem;
  }

  .lineup__item {
    --margin-top: 55px;
    display: flex;
    gap: 0 4%;
    margin-top: var(--margin-top);

    &::before {
      min-block-size: 700px;
    }
  }

  .lineup__image {
    inline-size: 52%;
    position: relative;

    img {
      position: absolute;
      top: calc(var(--margin-top) * -1);
      box-shadow: -32px 96px 0px 0px rgba(98, 105, 249, 0.1);
    }
  }

  .lineup__list>li:nth-child(odd) {
    .lineup__item::before {
      margin-inline: 0 calc(50% - 50vw);
      left: 110px;
    }
  }

  .lineup__list>li:nth-child(even) {
    .lineup__item {
      flex-direction: row-reverse;

      &::before {
        margin-inline: calc(50% - 50vw) 0;
        right: 110px;
      }
    }

    .lineup__item img {
      box-shadow: 32px 96px 0px 0px rgba(98, 105, 249, 0.1);
    }
  }

  .lineup__product {
    flex: 1 0;
    padding: 8rem 0 9rem;
  }

  .lineup__title {
    font-size: 3rem;
  }

  /* BONUSセクション */
  .bonus__header {
    display: grid;
    grid-template-columns: 1fr 0.615fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "title image"
      "text image";
    gap: 0 4%;
  }

  .bonus__image {
    grid-area: image;
  }

  .bonus__text {
    grid-area: text;
    font-size: 1.6rem;
    margin-top: 4rem;

    small {
      font-size: 1.4rem;
    }
  }

  /* EXCLUSIVEセクション */
  .exclusive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}