/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
	- fix for the content editable attribute will work properly.
- webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

body {
  color: #101010;
  font-size: min(2.9333333333vw, 20px);
  letter-spacing: 0;
  line-height: 1;
  background-color: #fff;
  overflow-x: clip;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 12px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.6s;
}

img {
  width: 100%;
  display: block;
}

body {
  font-family: noto-sans, sans-serif;
  font-weight: 400;
}

.l-wrap {
  display: flex;
  position: relative;
}
.l-wrap__left, .l-wrap__right {
  height: 100svh;
  position: sticky;
  top: 0;
  z-index: 10;
}
.l-wrap__main {
  margin-inline: -16vw;
  flex: 1;
}
@media screen and (min-width: 1025px) {
  .l-wrap__main {
    margin-inline: calc((100vw - 850px) / -2);
  }
}
.l-wrap__left {
  width: 16vw;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .l-wrap__left {
    width: calc((100vw - 850px) / 2);
  }
}
.l-wrap__right {
  width: 16vw;
  right: 0;
}
@media screen and (min-width: 1025px) {
  .l-wrap__right {
    width: calc((100vw - 850px) / 2);
  }
}
.l-wrap__nba {
  width: 12.8vw;
  position: absolute;
  top: 3.2vw;
  left: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .l-wrap__nba {
    width: 5.6666666667vw;
    top: 1.25vw;
    left: 1.25vw;
  }
}
.l-wrap__list {
  width: min(8vw, 50px);
  height: min(101.3333333333vw, 650px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: min(4.8vw, 30px);
  row-gap: 5px;
  color: #000;
  font-size: min(2.6666666667vw, 16px);
  font-weight: 700;
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 5.3333333333vw;
  left: 2.6666666667vw;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .l-wrap__list {
    width: 44px;
    height: 572px;
    column-gap: 70px;
    row-gap: 10px;
    font-size: 13px;
    left: 30px;
    bottom: 30px;
  }
}
.l-wrap__list li {
  transition: all 0.6s;
}
.l-wrap__title {
  color: #fff;
  position: absolute;
  right: 3.2vw;
  bottom: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .l-wrap__title {
    right: 2.5vw;
    bottom: 2vw;
  }
}
.l-wrap__titleImg {
  width: 39.2vw;
}
@media screen and (min-width: 1025px) {
  .l-wrap__titleImg {
    width: 15.3333333333vw;
  }
}
.l-wrap__titleTxt {
  margin-top: 1.3333333333vw;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 1025px) {
  .l-wrap__titleTxt {
    width: 15.8333333333vw;
    margin-top: 0.4166666667vw;
    font-size: 1.5vw;
  }
}
.l-wrap__ciao {
  width: min(8vw, 50px);
  position: absolute;
  right: 2.6666666667vw;
  bottom: 5.3333333333vw;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .l-wrap__ciao {
    width: 50px;
    bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .l-wrap__ciao a:hover {
    opacity: 0.6;
  }
}

.p-firstView {
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  z-index: -1;
}
.p-firstView__image {
  height: 100%;
}
.p-firstView__image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.p-firstView__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 8vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .p-firstView__title {
    width: 26.9166666667vw;
    top: 29.9850074963%;
    right: 9.5vw;
    left: unset;
    transform: unset;
  }
}
.p-firstView__nba {
  width: min(36vw, 220px);
}
@media screen and (min-width: 1025px) {
  .p-firstView__nba {
    width: 16.6666666667vw;
  }
}
.p-firstView span {
  width: min(12vw, 70px);
  height: 1px;
  margin-top: min(6.6666666667vw, 35px);
  display: block;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .p-firstView span {
    width: 5.4166666667vw;
    height: 2px;
    margin-top: 3.3333333333vw;
  }
}
.p-firstView__ciao {
  width: min(59.4666666667vw, 350px);
  margin-top: min(6.6666666667vw, 35px);
}
@media screen and (min-width: 1025px) {
  .p-firstView__ciao {
    width: 26.9166666667vw;
    margin-top: 3.3333333333vw;
  }
}
.p-firstView__season {
  margin-top: min(5.3333333333vw, 30px);
  color: #fff;
  font-size: min(5.3333333333vw, 30px);
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .p-firstView__season {
    font-size: 2.5vw;
    margin-top: 2.0833333333vw;
  }
}

.p-about {
  aspect-ratio: 1/1;
  margin-top: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  color: #121212;
  background-image: url(../images/about/bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .p-about {
    aspect-ratio: unset;
    padding: 17.3333333333vw 0;
    background-image: url(../images/about/bg_pc.jpg);
  }
}
.p-about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-about__logo {
    width: 504px;
    gap: 30px;
  }
}
.p-about__nba {
  width: 32.8vw;
}
@media screen and (min-width: 1025px) {
  .p-about__nba {
    width: 195px;
  }
}
.p-about span {
  width: 0.5333333333vw;
  aspect-ratio: 2/20;
  display: block;
  background-color: #000;
}
@media screen and (min-width: 1025px) {
  .p-about span {
    width: 3px;
    aspect-ratio: 3/30;
  }
}
.p-about__ciao {
  width: 43.2vw;
}
@media screen and (min-width: 1025px) {
  .p-about__ciao {
    width: 240px;
  }
}
.p-about__text {
  width: 67.4666666667vw;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  .p-about__text {
    width: 460px;
    margin-top: 40px;
    font-size: 14px;
  }
}

.p-contents {
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .p-contents {
    padding: calc((100vw - 850px) / 2);
  }
}
.p-contents__section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contents__section:not(:last-child) {
  padding-bottom: 26.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__section:not(:last-child) {
    padding-bottom: 150px;
  }
}
.p-contents__images {
  width: 68vw;
  margin-top: 2.6666666667vw;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__images {
    width: 100%;
    margin-top: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 20px;
    column-gap: unset;
  }
}
@media screen and (min-width: 1025px) {
  .p-contents__images li {
    width: 50%;
  }
}
.p-contents__credits {
  width: 68vw;
  margin-top: 5.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 6.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__credits {
    width: 100%;
    margin-top: 20px;
    flex-direction: row;
    gap: unset;
  }
}
@media screen and (min-width: 1025px) {
  .p-contents__credits > * {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .p-contents__credits > *:nth-child(2) {
    padding-left: 10px;
  }
}
.p-contents__label {
  font-weight: 700;
}
.p-contents__list {
  width: 68vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .p-contents__list li a:hover p,
  .p-contents__list li a:hover .p-contents__slide {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1025px) {
  .p-contents__list li a:hover .p-contents__buy {
    color: #000;
    background-color: #fff;
  }
}
.p-contents__list li a p {
  line-height: 1.7;
  transition: all 0.6s;
}
.p-contents__slide {
  width: 100%;
  transition: all 0.6s;
}
.p-contents__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-contents__buy {
  height: 4vw;
  padding: 0 3.4666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: min(2.6666666667vw, 18px);
  font-weight: 700;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 9999px;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-contents__buy {
    height: 23px;
    padding: 0 20px;
    font-size: 12px;
  }
}

@media screen and (min-width: 1025px) {
  #sec1 .p-contents__top,
  #sec3 .p-contents__top {
    width: 626px;
  }
}
#sec1 .p-contents__list,
#sec3 .p-contents__list {
  margin-top: 1.8666666667vw;
  gap: 4vw;
}
@media screen and (min-width: 1025px) {
  #sec1 .p-contents__list,
  #sec3 .p-contents__list {
    width: 366px;
    margin-top: 15px;
    gap: 20px;
  }
}
#sec1 .p-contents__text,
#sec3 .p-contents__text {
  gap: 4vw;
}
@media screen and (min-width: 1025px) {
  #sec1 .p-contents__text,
  #sec3 .p-contents__text {
    gap: 10px;
  }
}

#sec2 .p-contents__list {
  margin-top: 8vw;
  gap: 8vw;
}
@media screen and (min-width: 1025px) {
  #sec2 .p-contents__list {
    width: 574px;
    margin-top: 60px;
    gap: 50px;
  }
}
#sec2 .p-contents__text {
  margin-top: 2.6666666667vw;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  #sec2 .p-contents__text {
    margin-top: 10px;
    gap: unset;
  }
}

.p-footer {
  padding: 40vw 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.2vw;
  font-family: sofia-pro, sans-serif;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    padding: 150px 0 50px;
    font-size: 14px;
  }
}
.p-footer__logo {
  width: 41.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo {
    width: 215px;
  }
}
.p-footer__season {
  margin-top: 2.1333333333vw;
  font-size: 3.4666666667vw;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 1025px) {
  .p-footer__season {
    margin-top: 10px;
    font-size: 18px;
  }
}
.p-footer__link {
  margin-top: 6.4vw;
  display: flex;
  gap: 6.4vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__link {
    margin-top: 35px;
    gap: 30px;
  }
}
.p-footer__link li a {
  display: flex;
  align-items: flex-end;
  gap: 1.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__link li a {
    gap: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer__link li a:hover {
    opacity: 0.6;
  }
}
.p-footer__arrow {
  width: 2.1333333333vw;
  display: block;
}
@media screen and (min-width: 1025px) {
  .p-footer__arrow {
    width: 10px;
  }
}
.p-footer__copy {
  margin-top: 10.6666666667vw;
  display: block;
  font-size: 2.6666666667vw;
  letter-spacing: 0;
  font-family: nimbus-sans, sans-serif;
}
@media screen and (min-width: 1025px) {
  .p-footer__copy {
    margin-top: 55px;
    font-size: 12px;
  }
}

@media screen and (min-width: 1025px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden-sp {
    display: none !important;
  }
}/*# sourceMappingURL=app.css.map */