/* ===============================================
  * COMMON *
=============================================== */

:root {
  --spacer-xxs: 1.5rem;
  --spacer-xs: 2rem;
  --spacer-s: 1.8rem;
  --spacer-m: 4rem;
  --spacer-l: 5rem;
  --spacer-xl: 6rem;

  --padding-horizontal: 5.2%;

  --transition-duration: 1.5s;
}


@media (min-width: 769px) {
  :root {
    --spacer-xxs: 3rem;
    --spacer-xs: 4rem;
    --spacer-s: 3rem;
    --spacer-m: 8rem;
    --spacer-l: 10rem;
    --spacer-xl: 12rem;

    --padding-horizontal: min(4.54%, 5rem);
  }
}


/*
 * Structure
 */

.main-area.lp,
.main-area.lp * {
  box-sizing: border-box;
}

.main-area.lp {
  margin: 0;
  background-color: var(--color-bg-main);
}

.main-area__inner {
  padding-bottom: var(--spacer-xl);

  letter-spacing: .08em;
  text-align: center;
}

.main-area__inner::before {
  content: "";

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  aspect-ratio: 375/541;
  background-image: url(/Page/LP/2023/0821_limited/assets/imgs/bg-mobile.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.sec-style {
  position: relative;

  width: min(100%, 110rem);
  margin: auto;
}


@media (min-width: 769px) {
  .sp-only{
    display: none;
  }

  .main-area__inner {
    padding-top: 3.2rem;
  }

  .main-area__inner::before {
    background-image: url(/Page/LP/2023/0821_limited/assets/imgs/bg-desktop.png);
  }
}




/*
 * Text
 */

.c-text--h1 {
  color: #fff;
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  text-align: left;
}

.c-text--h1-sub {
  font-size: .5em;
  letter-spacing: 0.07em;
}

.c-text--heading-h2 {
  font-family: var(--font-jp);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.c-text--paragraph {
  font-family: var(--font-jp);
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.08em;
  word-break: keep-all;

  overflow-wrap: break-word;
}

.c-text--itemInfo{
  font-size: 1.4rem;
}

.c-text--date {
  font-family: var(--font-en);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.c-text--item-h2 {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: var(--font-en);
  font-size: 3.5rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.c-text--item-h2-sub {
  font-size: .57em;
  line-height: 1;
}

.c-text--product-name {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.c-text--product-price {
  position: relative;

  display: inline-block;

  font-family: var(--font-en);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.c-text--product-price::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 1px;
  background-color: #000;
}

.c-text--product-price-tax {
  font-size: .875em;
}

.c-text--product-price-tax::before {
  content: "\0020";
}

.c-text--product-description {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.js-fadeIn[class^="c-text"] {
  transition-property: opacity, transform;

  transform: translateY(1ch);
}

.js-fadeIn.js-show[class^="c-text"] {
  transform: translateY(0);
}


@media (min-width: 769px) {
  .c-text--h1 {
    font-size: 7.1rem;
  }

  .c-text--heading-h2 {
    font-size: 3.2rem;
  }

  .c-text--paragraph {
    font-size: 1.6rem;
  }

  .c-text--date {
    font-size: 2.5rem;
  }

  .c-text--item-h2 {
    font-size: 4rem;
  }

  .c-text--product-name {
    font-size: 2rem;
    line-height: 1.5;
  }

  .c-text--product-price {
    font-size: 1.8rem;
  }

  .c-text--product-price-tax {
    font-size: 1.6rem;
  }

  .c-text--product-description {
    font-size: 1.5rem;
  }
}








/* ===============================================
  * MV *
=============================================== */

.mv-container {
  position: relative;

  width: 100%;
  aspect-ratio: 375 / 273;

  background-image: url(/Page/LP/2023/0821_limited/assets/imgs/mv.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}

.mv-container .c-text--h1 {
  letter-spacing: 0.08em;
  
  --position-right: 3.3rem;
  --position-bottom: 1.5rem;

  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;

  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  gap: .3rem;
  grid-template-areas:
    "sub border"
    "main main";

  pointer-events: none;
}

.mv-container .c-text--h1::before {
  content: "";

  align-self: center;
  grid-area: border;

  height: 1px;
  background-color: #fff;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-duration) ease;
  transition-delay: calc(var(--transition-duration) * .8);
}

.mv-container .c-text--h1.js-show::before {
  transform: scaleX(.97);
}

.mv-container .c-text--h1-main {
  grid-area: main;
}

.mv-container .c-text--h1-sub {
  grid-area: sub;
}


.heading-container {
  margin: var(--spacer-m) auto;
  padding: 0 var(--padding-horizontal);
}

.heading-container .c-text--paragraph {
  margin: var(--spacer-s) 0;
}


@media (min-width: 769px) {
  .mv-container{
    border-radius: 2.4rem;
  }

  .mv-container .c-text--h1 {
    right: 5rem;
    bottom: 4rem;
  
    column-gap: 1.5rem;
    row-gap: 1.2rem;
  }


  .heading-container {
    padding: 0 25%;
  }
}








/* ===============================================
  * item - n *
=============================================== */

.sec-style[data-section^="item-"] {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: var(--spacer-l);

  margin-bottom: var(--spacer-xl);
}

.sec-style[data-section^="item-"]::before,
.sec-style[data-section^="item-"]::after {
  content: "";

  width: 100%;
  height: 1.5rem;
  background-image: url(/Page/LP/2023/0821_limited/assets/imgs/border-mobile.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


.sec-style[data-section^="item-"] .c-text--item-h2 {
  margin-bottom: 1.3rem;
}

.sec-style[data-section^="item-"] .c-text--paragraph {
  margin-bottom: 3rem;
}


.sec-style[data-section^="item-"] .item-information__image-container {
  position: relative;

  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 12rem);
  gap: 2.5rem;

  margin-bottom: 3.9rem;
}

.sec-style[data-section^="item-"] .item-information__image-container:hover {
  opacity: var(--hover-opacity) !important;
  transition-duration: .3s !important;
}

.sec-style[data-section^="item-"] .item-information__image-container.js-fadeIn {
  opacity: 1;
}

.sec-style[data-section^="item-"] .item-information__image-container::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 90%;
  aspect-ratio: 1;
  margin: auto;
  background-image: url(/Page/LP/2023/0821_limited/assets/imgs/item-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  pointer-events: none;
}

.sec-style[data-section^="item-"] .js-fadeIn.item-information__image-container::before {
  opacity: 0;
  transition: opacity var(--transition-duration) ease;
}

.sec-style[data-section^="item-"] .js-fadeIn.js-show.item-information__image-container::before {
  opacity: 1;
}

.sec-style[data-section^="item-"] .item-information__image-wrapper {
  position: relative;

  aspect-ratio: 120 / 148;
}


.sec-style[data-section^="item-"] .c-text--product-name {
  margin-bottom: 1.2rem;
}

.sec-style[data-section^="item-"] .c-text--product-price {
  margin-bottom: 3.5rem;
  padding-bottom: 2px;
}


@media (min-width: 769px) {
  .sec-style[data-section^="item-"] {
    margin-bottom: 8rem;
    padding: 0 var(--padding-horizontal);
  }

  .sec-style[data-section^="item-"]::before,
  .sec-style[data-section^="item-"]::after {
    background-image: url(/Page/LP/2023/0821_limited/assets/imgs/border-desktop.svg);
  }


  .sec-style[data-section^="item-"] .c-text--item-h2 {
    margin-bottom: 1rem;
  }

  .sec-style[data-section^="item-"] .c-text--paragraph {
    margin-bottom: 2.8rem;
  }


  .sec-style[data-section^="item-"] .item-information__image-container {
    grid-template-columns: repeat(2, 20%);
    gap: 4rem;

    margin-bottom: 4.5rem;
  }

  .sec-style[data-section^="item-"] .item-information__image-container::before {
    width: 60%;
  }


  .sec-style[data-section^="item-"] .c-text--product-name {
    margin-bottom: 1.6rem;
  }

  .sec-style[data-section^="item-"] .c-text--product-price {
    margin-bottom: 3.2rem;
  }
}








/* ===============================================
  * ITEM - 1 *
=============================================== */
