/***
    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: #000;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  background-color: #efefef;
  overflow-x: hidden;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 1.1111111111vw;
  }
}

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

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

body {
  font-family: roboto, sans-serif;
}

@media screen and (min-width: 1025px) {
  .l-wrap__left {
    width: calc(100vw - 100svh);
    position: fixed;
  }
}
@media screen and (min-width: 1025px) {
  .l-wrap__main {
    height: 100svh;
    aspect-ratio: 1/1;
    position: absolute;
    right: 0;
  }
}

.l-modalWrap {
  width: 100%;
  height: 100%;
  display: none;
  color: #000;
  background-color: #efefef;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  overflow-y: scroll;
}
.l-modalWrap__cross {
  width: 13.3333333333vw;
  aspect-ratio: 1/1;
  position: fixed;
  right: 1.5vw;
  bottom: 3vw;
  z-index: 100;
  transition: all 0.6s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .l-modalWrap__cross {
    width: 80px;
    right: 1.3888888889vw;
    bottom: 2.7777777778vw;
  }
}
.l-modalWrap__cross:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .l-modalWrap__cross:hover {
    opacity: 0.6;
  }
}
.l-modalWrap__cross::before, .l-modalWrap__cross::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}
.l-modalWrap__cross::before {
  transform: rotate(-45deg);
}
.l-modalWrap__cross::after {
  transform: rotate(45deg);
}

.c-modal {
  width: 100%;
  padding: 8vw 0 18.6666666667vw;
  display: none;
}
@media screen and (min-width: 1025px) {
  .c-modal {
    height: 100%;
    position: relative;
    padding: 0;
  }
}
.c-modal__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vw;
  position: fixed;
  top: 13.3333333333vw;
  left: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .c-modal__logo {
    width: 13.8888888889vw;
    gap: 1.3888888889vw;
    top: 5.2083333333vw;
    left: 0;
  }
}
.c-modal__wooah {
  width: 1.7361111111vw;
}
.c-modal__cross {
  width: 1.3888888889vw;
  aspect-ratio: 1/1;
  position: relative;
}
.c-modal__cross::before, .c-modal__cross::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}
.c-modal__cross::before {
  transform: rotate(-45deg);
}
.c-modal__cross::after {
  transform: rotate(45deg);
}
.c-modal__kangol {
  width: 3.4722222222vw;
}
.c-modal__inner {
  width: 89.3333333333vw;
  margin-inline: auto;
  padding: 2.6666666667vw;
  border: 1px solid #fff;
}
@media screen and (min-width: 1025px) {
  .c-modal__inner {
    width: 79.1666666667vw;
    min-height: calc(100svh - 10.4166666667vw);
    margin: 0;
    padding: 1.3888888889vw;
    border-width: 2px;
    position: absolute;
    top: 5.2083333333vw;
    left: 13.8888888889vw;
    bottom: 5.2083333333vw;
  }
}
.c-modal__inner > * {
  width: 100%;
  height: 100%;
  padding: 13.3333333333vw 0;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .c-modal__inner > * {
    padding: 0;
    display: flex;
  }
}
@media screen and (min-width: 1025px) {
  .c-modal__wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.c-modal__credit {
  width: 69.3333333333vw;
  margin: 8vw auto 0;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .c-modal__credit {
    width: 24.3055555556vw;
    margin: 0;
    margin-top: 3.4722222222vw;
    gap: 0.6944444444vw;
  }
}
.c-modal__credit li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .c-modal__credit li a {
    gap: 0.6944444444vw;
  }
}
.c-modal__credit li a:active .c-modal__buy {
  color: #000;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .c-modal__credit li a:hover .c-modal__buy {
    color: #000;
    background-color: #fff;
  }
}
.c-modal__buy {
  width: 10.6666666667vw;
  aspect-ratio: 40/20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .c-modal__buy {
    width: 5.5555555556vw;
    aspect-ratio: 80/30;
  }
}

.p-firstView {
  width: 100%;
  height: 100svh;
  background-color: #fff;
  position: relative;
}
.p-firstView::before, .p-firstView::after {
  content: "";
  background-color: #FFE5E9;
  position: absolute;
}
.p-firstView::before {
  width: 100%;
  aspect-ratio: 375/140;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 100%);
  top: 0;
}
@media screen and (min-width: 1025px) {
  .p-firstView::before {
    aspect-ratio: 500/200;
  }
}
.p-firstView::after {
  width: 100%;
  aspect-ratio: 375/88;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 20% 100%);
  right: 0;
  bottom: 0;
  z-index: 20;
}
@media screen and (min-width: 1025px) {
  .p-firstView::after {
    aspect-ratio: 500/120;
  }
}
.p-firstView__main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.p-firstView__main > img {
  width: 100%;
  height: 100%;
  max-height: 90%;
  object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .p-firstView__main > img {
    max-height: 80%;
  }
}
.p-firstView__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 10.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}
@media screen and (min-width: 1025px) {
  .p-firstView__logos {
    gap: 1.0416666667vw;
    top: 3.4722222222vw;
  }
}
.p-firstView__wooah {
  width: min(53.3333333333vw, 350px);
}
@media screen and (min-width: 1025px) {
  .p-firstView__wooah {
    width: 18.0555555556vw;
  }
}
.p-firstView__cross {
  width: min(8vw, 50px);
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-firstView__cross {
    width: 2.0833333333vw;
  }
}
.p-firstView__cross::before, .p-firstView__cross::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
}
.p-firstView__cross::before {
  transform: rotate(-45deg);
}
.p-firstView__cross::after {
  transform: rotate(45deg);
}
.p-firstView__kangol {
  width: min(16vw, 100px);
}
@media screen and (min-width: 1025px) {
  .p-firstView__kangol {
    width: 4.1666666667vw;
  }
}
.p-firstView__ciao {
  width: min(26.6666666667vw, 150px);
  position: absolute;
  right: 2.6666666667vw;
  bottom: 2.6666666667vw;
  z-index: 30;
}
@media screen and (min-width: 1025px) {
  .p-firstView__ciao {
    width: 9.0277777778vw;
    right: 1.3888888889vw;
    bottom: 1.3888888889vw;
  }
}

body {
  font-family: roboto, sans-serif;
}

@media screen and (min-width: 1025px) {
  .p-contents__list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .p-contents__list::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-contents__list li {
  padding: 4vw;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 1025px) {
  .p-contents__list li {
    width: 50%;
    padding: 2.7777777778vw;
    border-width: 2px;
  }
}
.p-contents__image {
  padding: 1.3333333333vw;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .p-contents__image {
    padding: 0.6944444444vw;
    border-width: 2px;
  }
}
.p-contents__image > img {
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-contents__image:hover > img {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .p-contents__image:hover > img {
    transform: scale(1.1);
  }
}
.p-contents__button {
  width: 24vw;
  aspect-ratio: 90/22;
  padding-left: 5.3333333333vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background-color: #000;
  position: absolute;
  right: 8.5333333333vw;
  bottom: 8.5333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__button {
    width: 6.9444444444vw;
    aspect-ratio: 100/24;
    padding-left: 1.7361111111vw;
    right: 1.7361111111vw;
    bottom: 1.7361111111vw;
  }
}
.p-contents__button span {
  font-size: 3.7333333333vw;
  font-family: pf-reminder, sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .p-contents__button span {
    font-size: 1.1111111111vw;
  }
}
.p-contents__button::after {
  content: ">>";
  position: absolute;
  animation: arrowFade 1s ease-in-out infinite;
}
@media screen and (min-width: 1025px) {
  .p-contents__button::after {
    font-size: 0.9722222222vw;
  }
}

.p-footer {
  padding: 21.3333333333vw 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    padding: 6.9444444444vw 0 2.0833333333vw;
    font-size: 1.1111111111vw;
  }
}
.p-footer__logo {
  width: 53.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo {
    width: 20.8333333333vw;
  }
}
.p-footer__link {
  margin-top: 2.6666666667vw;
  display: flex;
  justify-content: center;
  gap: 5.3333333333vw;
  font-family: sofia-pro, sans-serif;
}
@media screen and (min-width: 1025px) {
  .p-footer__link {
    margin-top: 1.3888888889vw;
    gap: 2.0833333333vw;
  }
}
.p-footer__link li a {
  display: flex;
  align-items: center;
  gap: 1.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__link li a {
    gap: 0.6944444444vw;
  }
}
.p-footer__link li a:active {
  opacity: 0.6;
}
@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: 0.8333333333vw;
  }
}
.p-footer__kangol, .p-footer__copy {
  display: block;
}
.p-footer__kangol {
  width: 56vw;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__kangol {
    width: 17.3611111111vw;
    margin-top: 5.5555555556vw;
  }
}
.p-footer__copy {
  margin-top: 5.3333333333vw;
  font-size: 2.6666666667vw;
  font-family: nimbus-sans, sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1025px) {
  .p-footer__copy {
    margin-top: 1.3888888889vw;
    font-size: 0.8333333333vw;
  }
}

.p-sports {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-sports {
    padding: 0 4.8611111111vw 0 6.9444444444vw;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-sports__slide {
  width: 66.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-sports__slide {
    width: 35.4166666667vw;
    margin: 0;
  }
}
.p-sports__images {
  width: 74.6666666667vw;
  margin-top: 13.3333333333vw;
  display: flex;
  gap: 0.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-sports__images {
    width: 21.8055555556vw;
    height: 100%;
    margin-top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 0.6944444444vw;
  }
}
.p-sports__images li {
  display: flex;
  flex-direction: column;
  gap: 0.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-sports__images li {
    width: 21.8055555556vw;
    flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  .p-sports__images li > img {
    width: 10.5555555556vw;
  }
}

.p-school {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-school {
    padding: 0 4.8611111111vw 0 5.5555555556vw;
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-school__slide {
  width: 64vw;
}
@media screen and (min-width: 1025px) {
  .p-school__slide {
    width: 29.8611111111vw;
    margin: 0;
  }
}
.p-school__image {
  width: 69.3333333333vw;
  margin-top: 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-school__image {
    width: 29.8611111111vw;
    margin-top: 0;
  }
}
.p-school__image > img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}

.p-bulletcore {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .p-bulletcore {
    height: 100%;
    padding: 0 4.8611111111vw;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.p-bulletcore__image {
  width: 80vw;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-bulletcore__image {
    width: 33.3333333333vw;
    margin: 0;
  }
}
.p-bulletcore__images {
  width: 81.3333333333vw;
  aspect-ratio: 305/246;
  margin-top: 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-bulletcore__images {
    width: 33.3333333333vw;
    aspect-ratio: 480/520;
    margin-top: 0;
  }
}
.p-bulletcore__gif {
  width: 45.3333333333vw;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .p-bulletcore__gif {
    width: 24.3055555556vw;
  }
}
.p-bulletcore__shadow {
  width: 48vw;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .p-bulletcore__shadow {
    width: 22.4305555556vw;
  }
}

.p-street {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .p-street {
    padding: 0 4.8611111111vw 0 4.8611111111vw;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.p-street__slide {
  width: 66.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-street__slide {
    width: 18.9583333333vw;
    height: fit-content;
    margin: 0;
  }
}
.p-street__wrap {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-street__wrap {
    width: 38.1944444444vw;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.p-street__images {
  width: 69.3333333333vw;
  display: flex;
  gap: 0.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-street__images {
    width: 32.6388888889vw;
  }
}
.p-street__image {
  width: 66.6666666667vw;
  margin: 5.3333333333vw 0 0 auto;
}
@media screen and (min-width: 1025px) {
  .p-street__image {
    width: 29.1666666667vw;
    margin-top: 1.0416666667vw;
  }
}
@media screen and (min-width: 1025px) {
  .p-street .c-modal__credit {
    margin-top: 2.0833333333vw;
  }
}

@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 */