/***
    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: 2.9333333333vw;
  letter-spacing: 0.1em;
  line-height: 1;
  background-color: #fff;
  overflow-x: clip;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 14px;
  }
}

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

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

body {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 600;
}

.l-bottom {
  position: relative;
  z-index: 900;
}
.l-bottom::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 1025px) {
  .l-wrap {
    display: flex;
    position: relative;
  }
}

.p-firstView {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 1025px) {
  .p-firstView {
    display: flex;
  }
}
.p-firstView__title {
  color: #fff;
  font-size: 13.0666666667vw;
  line-height: 1.4;
  letter-spacing: 0;
  position: absolute;
  top: 1.3333333333vw;
  left: 4.2666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-firstView__title {
    font-size: 8.0555555556vw;
    top: 0.8333333333vw;
    left: 2.9861111111vw;
  }
}
.p-firstView__title span {
  margin-top: 4.8vw;
  display: block;
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-firstView__title span {
    margin-top: 3.125vw;
    font-size: 3.125vw;
  }
}

.p-menu {
  padding: 25.3333333333vw 0 14.6666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-menu {
    width: 400px;
    height: 100svh;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
  }
  .p-menu.fixed {
    position: fixed;
    top: 0;
  }
}
.p-menu__title {
  font-size: 9.6vw;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .p-menu__title {
    font-size: 60px;
  }
}
.p-menu__title span {
  margin-top: 1.3333333333vw;
  display: block;
  font-size: 3.7333333333vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .p-menu__title span {
    margin-top: 5px;
    font-size: 23px;
  }
}
.p-menu__list {
  width: 73.0666666667vw;
  margin-top: 13.3333333333vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .p-menu__list {
    width: 294px;
    margin-top: 40px;
    gap: 14px;
  }
}
.p-menu__list li {
  width: 34.9333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-menu__list li {
    width: 140px;
  }
}
@media screen and (min-width: 1025px) {
  .p-menu__list li a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 1025px) {
  .p-contents {
    width: calc(100vw - 400px);
    margin: 0 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-contents__bg {
  width: 100%;
  height: 157.3333333333vw;
  position: relative;
  clip-path: inset(0);
}
@media screen and (min-width: 1025px) {
  .p-contents__bg {
    width: 100vw;
    height: 100svh;
    margin-left: -400px;
    z-index: 100;
  }
}
.p-contents__bg img {
  height: 100%;
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
}
.p-contents__section {
  padding: 20vw 0;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (min-width: 1025px) {
  .p-contents__section {
    width: 520px;
    padding: 150px 0;
  }
}
.p-contents__top {
  width: 100%;
  position: relative;
}
.p-contents__title {
  font-size: 13.3333333333vw;
  letter-spacing: 0.05em;
  position: absolute;
  z-index: 10;
  overflow-x: clip;
}
@media screen and (min-width: 1025px) {
  .p-contents__title {
    font-size: 70px;
  }
}
.p-contents__title.ver {
  writing-mode: vertical-lr;
}
.p-contents__slide {
  width: 90.9333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__slide {
    width: 473px;
  }
}
.p-contents__square {
  width: 73.0666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__square {
    width: 380px;
  }
}
.p-contents__image {
  width: 73.0666666667vw;
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__image {
    width: 380px;
    margin-top: 120px;
  }
}
.p-contents__gif {
  width: 89.6vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__gif {
    width: 466px;
  }
}
.p-contents__credit a {
  display: flex;
  justify-content: space-between;
  line-height: 1.4;
}
.p-contents__credit a:hover .p-contents__buy {
  color: #000;
  background-color: #fff;
}
.p-contents__credit a:hover .p-contents__buy span {
  background-image: url(../images/main/arrow-bl.png);
}
.p-contents__buy {
  width: 11.2vw;
  height: 3.2vw;
  padding: 0 0.8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 2.6666666667vw;
  line-height: 1;
  background-color: #000;
  border: 1px solid #000;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-contents__buy {
    width: 58px;
    height: 18px;
    padding: 0 5px;
    font-size: 13px;
  }
}
.p-contents__buy > span {
  width: 1.8666666667vw;
  aspect-ratio: 1/1;
  display: block;
  background-image: url(../images/main/arrow-wh.png);
  background-size: contain;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-contents__buy > span {
    width: 10px;
  }
}

#sec1 .p-contents__top {
  height: 141.8666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 1025px) {
  #sec1 .p-contents__top {
    height: 740px;
  }
}
#sec1 .p-contents__title {
  top: 0;
  left: -1.0666666667vw;
}
@media screen and (min-width: 1025px) {
  #sec1 .p-contents__title {
    left: -5px;
  }
}
#sec1 .p-contents__credit {
  width: 73.0666666667vw;
  margin-top: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #sec1 .p-contents__credit {
    width: 380px;
    margin-top: 25px;
    padding: 0;
  }
}
#sec1 .p-contents__credit a {
  align-items: center;
}

#sec2 .p-contents__top {
  height: 141.8666666667vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (min-width: 1025px) {
  #sec2 .p-contents__top {
    height: 737px;
  }
}
#sec2 .p-contents__title {
  top: 0;
  right: 0;
}
#sec2 .p-contents__slide {
  margin: 0;
}
#sec2 .p-contents__image {
  margin-right: 0;
  margin-left: auto;
}
#sec2 .p-contents__credit {
  width: 73.0666666667vw;
  margin: 5.3333333333vw 0 0 auto;
  padding-right: 5.3333333333vw;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  #sec2 .p-contents__credit {
    width: 380px;
    margin-top: 25px;
    padding: 0;
  }
}
#sec2 .p-contents__credit a {
  align-items: center;
}

#sec3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#sec3 .p-contents__top {
  height: 109.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  #sec3 .p-contents__top {
    height: 562px;
  }
}
#sec3 .p-contents__title:nth-child(1) {
  bottom: 0;
  left: 5.8666666667vw;
}
@media screen and (min-width: 1025px) {
  #sec3 .p-contents__title:nth-child(1) {
    left: 28px;
  }
}
#sec3 .p-contents__title:nth-child(2) {
  bottom: 0;
  left: 17.8666666667vw;
}
@media screen and (min-width: 1025px) {
  #sec3 .p-contents__title:nth-child(2) {
    left: 90px;
  }
}
#sec3 .p-contents__gif {
  margin-top: 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  #sec3 .p-contents__gif {
    margin-top: 110px;
  }
}
#sec3 .p-contents__credit {
  width: 89.6vw;
  margin-top: 8vw;
}
@media screen and (min-width: 1025px) {
  #sec3 .p-contents__credit {
    width: 466px;
    margin-top: 36px;
  }
}
#sec3 .p-contents__credit a {
  align-items: flex-end;
}

#sec4 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#sec4 .p-contents__top {
  height: 132vw;
  padding-top: 31.4666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  #sec4 .p-contents__top {
    height: 690px;
    padding-top: 168px;
  }
}
#sec4 .p-contents__title:nth-child(1) {
  top: 0;
  left: 6.9333333333vw;
}
@media screen and (min-width: 1025px) {
  #sec4 .p-contents__title:nth-child(1) {
    left: 40px;
  }
}
#sec4 .p-contents__title:nth-child(2) {
  height: auto;
  top: 2.6666666667vw;
  right: 4.2666666667vw;
}
@media screen and (min-width: 1025px) {
  #sec4 .p-contents__title:nth-child(2) {
    top: 12px;
    right: 22px;
  }
}
#sec4 .p-contents__gif {
  margin-top: 8vw;
}
@media screen and (min-width: 1025px) {
  #sec4 .p-contents__gif {
    margin-top: 35px;
  }
}
#sec4 .p-contents__credit {
  width: 89.6vw;
  margin-top: 8vw;
}
@media screen and (min-width: 1025px) {
  #sec4 .p-contents__credit {
    width: 466px;
    margin-top: 36px;
  }
}
#sec4 .p-contents__credit a {
  align-items: flex-end;
}

.p-item {
  padding: 20vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-item {
    padding: 150px 0 100px;
  }
}
.p-item__title {
  font-size: 5.3333333333vw;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .p-item__title {
    font-size: 30px;
  }
}
.p-item__list {
  width: 96.2666666667vw;
  margin-top: 13.3333333333vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2.6666666667vw 0.8vw;
  font-size: 2.6666666667vw;
  line-height: 1.2;
}
@media screen and (min-width: 1025px) {
  .p-item__list {
    width: 650px;
    margin-top: 75px;
    gap: 40px 6px;
    font-size: 12px;
  }
}
.p-item__list li {
  width: 23.4666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-item__list li {
    width: 158px;
  }
}
@media screen and (min-width: 1025px) {
  .p-item__list li a:hover {
    opacity: 0.6;
  }
}
.p-item__image {
  width: 100%;
  aspect-ratio: 88/109;
}
.p-item__image > img {
  height: 100%;
  object-fit: cover;
}
.p-item__text {
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-item__text {
    margin-top: 13px;
  }
}
.p-item__text > *:nth-child(1) {
  word-break: break-all;
}
.p-item__text.off > *:nth-child(2) {
  text-decoration: line-through;
}
.p-item__text.off > *:nth-child(4) {
  color: #f00;
}

.p-footer {
  padding: 12vw 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    padding: 100px 0 50px;
  }
}
.p-footer__insta {
  width: 68.8vw;
  aspect-ratio: 258/52;
  font-size: 4.2666666667vw;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .p-footer__insta {
    width: 348px;
    aspect-ratio: 348/76;
    font-size: 23px;
  }
}
.p-footer__insta a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.4666666667vw;
  border: 1px solid #000;
}
@media screen and (min-width: 1025px) {
  .p-footer__insta a {
    gap: 40px;
  }
}
.p-footer__insta a:hover {
  color: #fff;
  background-color: #000;
}
.p-footer__insta a:hover span {
  background-color: #fff;
}
.p-footer__insta a:hover span::before {
  background-image: url(../images/main/arrow-bl.png);
}
.p-footer__insta a > span {
  width: 4.2666666667vw;
  aspect-ratio: 1/1;
  display: block;
  background-color: #000;
  border-radius: 9999px;
  position: relative;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-footer__insta a > span {
    width: 28px;
  }
}
.p-footer__insta a > span::before {
  content: "";
  width: 2.1333333333vw;
  aspect-ratio: 1/1;
  background-image: url(../images/main/arrow-wh.png);
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-footer__insta a > span::before {
    width: 12px;
  }
}
.p-footer__logo {
  width: 42vw;
  margin-top: 12vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo {
    width: 215px;
    margin-top: 47px;
  }
}
.p-footer__season {
  margin-top: 2.1333333333vw;
  font-size: 3.4666666667vw;
  font-family: sofia-pro, sans-serif;
  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;
  font-size: 3.2vw;
  font-family: sofia-pro, sans-serif;
}
@media screen and (min-width: 1025px) {
  .p-footer__link {
    margin-top: 35px;
    gap: 30px;
    font-size: 14px;
  }
}
.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 */