/***
    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: #262626;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1;
  background-color: #DDE49C;
  overflow-x: clip;
  position: relative;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 1.1111111111vw;
  }
  body::before {
    content: "";
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
  }
}

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

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

[v-cloak] {
  display: none;
}

body {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}

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

@media screen and (min-width: 1025px) {
  .l-main {
    width: 32.9861111111vw;
    background-color: #DDE49C;
    position: absolute;
    top: 0;
    right: 8.3333333333vw;
  }
}
.l-main__all {
  padding: 10.6666666667vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .l-main__all {
    padding: 3.8194444444vw 0;
  }
}
.l-main__allLink {
  width: 73.3333333333vw;
  aspect-ratio: 550/90;
}
@media screen and (min-width: 1025px) {
  .l-main__allLink {
    width: 24.1666666667vw;
  }
}
.l-main__allLink > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.7333333333vw;
  background-color: #DDE49C;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l-main__allLink > a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1025px) {
  .l-main__allLink > a {
    font-size: 1.25vw;
  }
}
.l-main__allLink > a .arrow {
  width: 4vw;
  position: absolute;
  right: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .l-main__allLink > a .arrow {
    width: 1.3888888889vw;
    right: 1.0416666667vw;
  }
}

.p-firstView {
  padding-top: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-firstView {
    width: 47.5vw;
    padding-top: 0;
    position: fixed;
    top: 2.4305555556vw;
    left: 8.3333333333vw;
  }
}
.p-firstView__top {
  width: 92vw;
}
@media screen and (min-width: 1025px) {
  .p-firstView__top {
    width: 47.5vw;
  }
}
.p-firstView__logo {
  width: 47.4666666667vw;
  margin-top: 6.4vw;
}
@media screen and (min-width: 1025px) {
  .p-firstView__logo {
    width: 18.6111111111vw;
    margin-top: 2.0833333333vw;
  }
}
.p-firstView__season {
  margin-top: 2.6666666667vw;
  padding-left: 1.3333333333vw;
  font-size: 4.5333333333vw;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 1025px) {
  .p-firstView__season {
    margin-top: 1.0416666667vw;
    padding-left: 0;
    font-size: 1.8055555556vw;
  }
}

body {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
}

.p-section {
  padding: 13.3333333333vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-section {
    padding: 4.5138888889vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .p-section:first-child {
    padding-top: 5.5555555556vw;
  }
}
.p-section__title {
  width: 100%;
  padding-left: 6.6666666667vw;
  font-size: 4.5333333333vw;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 1025px) {
  .p-section__title {
    padding-left: 2.0833333333vw;
    font-size: 1.3888888889vw;
  }
}
.p-section__top {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section__top {
    margin-top: 2.4305555556vw;
  }
}
.p-section__text {
  font-size: 3.6vw;
  line-height: 1.75;
}
@media screen and (min-width: 1025px) {
  .p-section__text {
    font-size: 1.1805555556vw;
  }
}
.p-section__photos {
  width: 100%;
}
.p-section__credit {
  width: 64.8vw;
}
@media screen and (min-width: 1025px) {
  .p-section__credit {
    width: 21.3888888889vw;
  }
}
@media screen and (min-width: 1025px) {
  .p-section__credit:hover .p-section__check {
    color: #fff;
    background-color: #262626;
  }
}
.p-section__credit .text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section__credit .text {
    gap: 0.3472222222vw;
  }
}
.p-section__credit .item {
  padding-top: 0.5333333333vw;
  font-family: itc-galliard, serif;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .p-section__credit .item {
    padding-top: 0.1388888889vw;
  }
}
.p-section__credit .price {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-section__credit .price {
    font-size: 1.1111111111vw;
  }
}
.p-section__check {
  width: 30.4vw;
  aspect-ratio: 114/29;
  margin-top: 2.6666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #262626;
  font-size: 3.7333333333vw;
  background-color: #fff;
  border: 1px solid #262626;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-section__check {
    width: 10.0694444444vw;
    margin-top: 1.0416666667vw;
    padding-bottom: 0.2083333333vw;
    font-size: 1.25vw;
  }
}

.p-section--1 .p-section__top {
  width: 100vw;
}
@media screen and (min-width: 1025px) {
  .p-section--1 .p-section__top {
    width: 100%;
  }
}
.p-section--1 .p-section__text {
  width: 86.6666666667vw;
  margin-top: 5.0666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section--1 .p-section__text {
    width: 28.8194444444vw;
    margin-top: 2.2222222222vw;
  }
}
.p-section--1 .p-section__looks {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section--1 .p-section__looks {
    width: 100%;
    margin-top: 1.0416666667vw;
  }
}
.p-section--1 .p-section__looks .imageWrap {
  width: 100vw;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-section--1 .p-section__looks .imageWrap {
    width: 100%;
  }
}
.p-section--1 .p-section__looks .imageWrap .fadeSlide {
  width: 80vw;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .p-section--1 .p-section__looks .imageWrap .fadeSlide {
    width: 26.3888888889vw;
  }
}
.p-section--1 .p-section__looks .imageWrap .bg {
  width: 58.6666666667vw;
  position: absolute;
  top: 0;
  right: 3.4666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section--1 .p-section__looks .imageWrap .bg {
    width: 19.3055555556vw;
    right: 1.1805555556vw;
  }
}
.p-section--1 .p-section__credit {
  margin-top: 5.8666666667vw;
  margin-left: 6.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section--1 .p-section__credit {
    margin-top: 1.7361111111vw;
    margin-left: 1.9444444444vw;
  }
}

.p-section--2 {
  background-color: #D6CEE9;
}
.p-section--2 .p-section__text {
  width: 86.6666666667vw;
  margin-top: 2.6666666667vw;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__text {
    width: 28.8194444444vw;
    margin-top: 1.3888888889vw;
  }
}
.p-section--2 .p-section__photos {
  aspect-ratio: 750/4092;
  position: relative;
}
.p-section--2 .p-section__photos .photo {
  position: absolute;
  z-index: 2;
}
.p-section--2 .p-section__photos .photo:nth-child(1) {
  width: 36%;
  bottom: 63.880742913%;
  left: 12%;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__photos .photo:nth-child(1) {
    width: 11.9444444444vw;
  }
}
.p-section--2 .p-section__photos .photo:nth-child(2) {
  width: 57.6%;
  right: 4.2666666667%;
  bottom: 47.6539589443%;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__photos .photo:nth-child(2) {
    width: 19.0277777778vw;
  }
}
.p-section--2 .p-section__photos .photo:nth-child(3) {
  width: 36%;
  right: 0;
  bottom: 26.6862170088%;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__photos .photo:nth-child(3) {
    width: 11.8055555556vw;
  }
}
.p-section--2 .p-section__photos .photo:nth-child(4) {
  width: 39.8666666667%;
  bottom: 20.1857282502%;
  left: 4%;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__photos .photo:nth-child(4) {
    width: 13.1944444444vw;
  }
}
.p-section--2 .p-section__photos .photo:nth-child(5) {
  width: 62.2666666667%;
  bottom: 0;
  left: 18.6666666667%;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__photos .photo:nth-child(5) {
    width: 20.5555555556vw;
  }
}
.p-section--2 .p-section__photos .logo {
  width: 14.9333333333vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__photos .logo {
    width: 5vw;
    transform: translateX(270%);
  }
}
.p-section--2 .p-section__looks {
  width: 100%;
  margin-top: 12.2666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__looks {
    margin-top: 4.0277777778vw;
  }
}
.p-section--2 .p-section__looks .swipeSlide + .swipeSlide {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__looks .swipeSlide + .swipeSlide {
    margin-top: 4.1666666667vw;
  }
}
.p-section--2 .p-section__looks .swipeSlide .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__looks .swipeSlide .swiper-slide {
    gap: 1.25vw;
  }
}
.p-section--2 .p-section__looks .swipeSlide .swiper-slide > .imageWrap {
  aspect-ratio: 520/624;
  position: relative;
}
.p-section--2 .p-section__looks .swipeSlide .swiper-slide > .imageWrap:active .hover, .p-section--2 .p-section__looks .swipeSlide .swiper-slide > .imageWrap:hover .hover {
  opacity: 1;
}
.p-section--2 .p-section__looks .swipeSlide .swiper-slide > .imageWrap .thumb {
  width: 100%;
  height: 100%;
  position: absolute;
}
.p-section--2 .p-section__looks .swipeSlide .swiper-slide > .imageWrap .hover {
  opacity: 0;
  transition: all 0.6s;
}
.p-section--2 .p-section__looks .swipeSlide .swiper-slide > .imageWrap .color {
  color: #000;
  font-size: 2.9333333333vw;
  font-weight: 400;
  position: absolute;
  top: 4.8vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .p-section--2 .p-section__looks .swipeSlide .swiper-slide > .imageWrap .color {
    font-size: 0.9722222222vw;
    top: 1.7361111111vw;
  }
}

.p-section--3 {
  background-color: #E8DFD5;
  position: relative;
}
.p-section--3 > * {
  z-index: 1;
}
.p-section--3::before {
  content: "";
  width: 50%;
  height: 90%;
  background-color: #FFFF96;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .p-section--3::before {
    height: 92%;
  }
}
.p-section--3 .p-section__top {
  width: 100%;
  display: flex;
  gap: 3.7333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__top {
    gap: 1.25vw;
  }
}
.p-section--3 .p-section__topImage {
  width: 50vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__topImage {
    width: 50%;
  }
}
.p-section--3 .p-section__text {
  width: 39.4666666667vw;
  padding-top: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__text {
    width: 13.0555555556vw;
    padding-top: 1.3888888889vw;
  }
}
.p-section--3 .p-section__photos {
  margin-top: 20vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos {
    margin-top: 9.4444444444vw;
  }
}
.p-section--3 .p-section__photos > li .imageWrap {
  width: 100%;
  position: relative;
}
.p-section--3 .p-section__photos > li .imageWrap > * {
  position: absolute;
}
.p-section--3 .p-section__photos > li .imageWrap .shadow {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-section--3 .p-section__photos > li .imageWrap .photo {
  z-index: 2;
}
.p-section--3 .p-section__photos > li .fadeSlide {
  margin: 0;
}
.p-section--3 .p-section__photos > li:nth-child(1) .imageWrap {
  aspect-ratio: 750/851;
}
.p-section--3 .p-section__photos > li:nth-child(1) .imageWrap .photo {
  width: 69.8666666667vw;
  top: 9.0666666667vw;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(1) .imageWrap .photo {
    width: 23.2638888889vw;
    top: 2.7777777778vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(1) .p-section__looks {
  width: 86.4vw;
  margin-top: 2.9333333333vw;
  margin-left: 8.8vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(1) .p-section__looks {
    width: 28.4722222222vw;
    margin-top: 1.0416666667vw;
    margin-left: 3.0555555556vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(1) .p-section__looks .fadeSlide {
  margin-right: 0;
  margin-left: auto;
}
.p-section--3 .p-section__photos > li:nth-child(2) {
  margin-top: 16vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(2) {
    margin-top: 4.8611111111vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(2) .imageWrap {
  aspect-ratio: 750/1000;
}
.p-section--3 .p-section__photos > li:nth-child(2) .imageWrap .photo {
  width: 86.1333333333vw;
  top: 3.2vw;
  right: 0;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(2) .imageWrap .photo {
    width: 28.4722222222vw;
    top: 1.0416666667vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(2) .p-section__looks {
  width: 69.0666666667vw;
  margin-top: -21.3333333333vw;
  margin-left: 4.8vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(2) .p-section__looks {
    width: 23.0555555556vw;
    margin-top: -6.9444444444vw;
    margin-left: 1.6666666667vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(2) .p-section__credit {
  margin-right: 0;
  margin-left: auto;
}
.p-section--3 .p-section__photos > li:nth-child(3) {
  margin-top: 15.2vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(3) {
    margin-top: 5.2083333333vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(3) .imageWrap {
  aspect-ratio: 750/918;
}
.p-section--3 .p-section__photos > li:nth-child(3) .imageWrap .photo {
  width: 76.2666666667vw;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(3) .imageWrap .photo {
    width: 25vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(3) .p-section__looks {
  width: 86.4vw;
  margin-left: 8.8vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__photos > li:nth-child(3) .p-section__looks {
    width: 28.4722222222vw;
    margin-left: 3.0555555556vw;
  }
}
.p-section--3 .p-section__photos > li:nth-child(3) .p-section__looks .fadeSlide {
  margin-right: 0;
  margin-left: auto;
}
.p-section--3 .p-section__looks .fadeSlide {
  width: 66.4vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__looks .fadeSlide {
    width: 22.0833333333vw;
  }
}
.p-section--3 .p-section__credit {
  margin-top: 4vw;
}
@media screen and (min-width: 1025px) {
  .p-section--3 .p-section__credit {
    margin-top: 1.9444444444vw;
  }
}

.p-footer {
  aspect-ratio: 750/500;
  padding-top: 28.8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../images/footer/bg.jpg);
  background-size: contain;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    padding-top: 9.3055555556vw;
  }
}
.p-footer__logo {
  width: 37.6vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo {
    width: 10.6944444444vw;
  }
}
.p-footer__text {
  margin-top: 2.6666666667vw;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 1025px) {
  .p-footer__text {
    margin-top: 0.8333333333vw;
  }
}
.p-footer__link {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__link {
    margin-top: 2.4305555556vw;
  }
}
.p-footer__link > a {
  font-size: 3.4666666667vw;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .p-footer__link > a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer__link > a {
    font-size: 1.1805555556vw;
  }
}

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