/***
    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;
  line-height: 1;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 0.8333333333vw;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.6s;
}
a:active {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  display: block;
}

.p-firstView .splide {
  height: 100%;
}
.p-firstView .splide * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@font-face {
  font-family: delicious;
  src: url(../assets/fonts/DeliciousHandrawn-Regular.ttf);
}
@font-face {
  font-family: ugly;
  src: url(../assets/fonts/MyUglyHandwriting-Regular.otf);
}
@media screen and (min-width: 768px) {
  .l-container {
    width: clamp(668px, 69.4444444444vw, 1000px);
    margin: 0 auto;
    padding: 6.9444444444vw 0 12.5vw;
  }
}

.p-firstView {
  height: 72svh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-firstView {
    height: 77.7777777778svh;
  }
}
.p-firstView__slides {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-firstView__slides {
    display: flex;
  }
}
.p-firstView__logo {
  width: 20%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 5.3vw;
  right: 5.3vw;
}
@media screen and (min-width: 768px) {
  .p-firstView__logo {
    width: 7.57%;
    min-width: 100px;
    top: 2.78vw;
    right: 2.78vw;
  }
}
.p-firstView__title {
  width: 71%;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-firstView__title {
    width: 35.3%;
    bottom: -8%;
  }
}
.p-firstView__title span {
  color: #F5EB3A;
  font-size: 4.5333333333vw;
  letter-spacing: 1em;
}
@media screen and (min-width: 768px) {
  .p-firstView__title span {
    font-size: 2.2222222222vw;
  }
}
.p-firstView__ciao {
  color: #F5EB3A;
  font-size: 6.6666666667vw;
  font-family: delicious;
  position: absolute;
  top: 45.76vw;
  left: 7.12vw;
  transform: rotate(-10deg);
}
@media screen and (min-width: 768px) {
  .p-firstView__ciao {
    font-size: 2.9513888889vw;
    top: unset;
    bottom: 22%;
    left: 31.8vw;
  }
}

.p-about {
  padding: 20vw 0 28vw;
  background-image: url(../assets/images/about/bg.jpg);
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 8.8194444444vw 0 8.1944444444vw;
  }
}
.p-about::before, .p-about::after {
  content: "";
  width: 1vw;
  max-width: 8px;
  height: 100%;
  background-color: #FAFAF0;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-about::before, .p-about::after {
    width: 6px;
  }
}
.p-about::before {
  left: 5.6vw;
}
@media screen and (min-width: 768px) {
  .p-about::before {
    left: 4.1666666667vw;
  }
}
.p-about::after {
  right: 5.6vw;
}
@media screen and (min-width: 768px) {
  .p-about::after {
    right: 4.1666666667vw;
  }
}
.p-about__loop {
  width: 100%;
  height: 95.73vw;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-about__loop {
    width: min(51.7361111111vw, 745px);
    height: unset;
    aspect-ratio: 1/0.65;
    margin: 0 auto;
  }
}
.p-about__loopBox {
  width: 298.6vw;
  height: 100%;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-about__loopBox {
    width: 100%;
  }
}
.p-about__menu {
  width: 149.3vw;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-about__menu {
    width: 100%;
    height: 100%;
  }
}
.p-about__menu li {
  position: absolute;
}
.p-about__menu li:nth-child(1) {
  width: 39.47vw;
  top: 1.1vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-about__menu li:nth-child(1) {
    width: 26.3087248322%;
    top: 1.6736401674%;
  }
}
.p-about__menu li:nth-child(2) {
  width: 45.3vw;
  left: 26.93vw;
  bottom: 2.67vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-about__menu li:nth-child(2) {
    width: 29.5302013423%;
    bottom: 3.3472803347%;
    left: 18.1208053691%;
  }
}
.p-about__menu li:nth-child(3) {
  width: 27.2vw;
  top: 0;
  left: 62.67vw;
}
@media screen and (min-width: 768px) {
  .p-about__menu li:nth-child(3) {
    width: 18.1208053691%;
    left: 41.8791946309%;
  }
}
.p-about__menu li:nth-child(4) {
  width: 29.6vw;
  top: 11.73vw;
  right: 28.27vw;
}
@media screen and (min-width: 768px) {
  .p-about__menu li:nth-child(4) {
    width: 19.5973154362%;
    top: unset;
    bottom: 0;
    right: 19.4630872483%;
  }
}
.p-about__menu li:nth-child(5) {
  width: 28vw;
  top: 4vw;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-about__menu li:nth-child(5) {
    width: 18.7919463087%;
    top: 4.6025104603%;
  }
}
.p-about__desc {
  margin-top: 8.96vw;
}
@media screen and (min-width: 768px) {
  .p-about__desc {
    width: min(54.5833333333vw, 786px);
    margin: 5.5555555556vw auto 0;
  }
}
.p-about__text {
  margin-top: 10.6666666667vw;
  color: #FAFAF0;
  font-family: m-plus-1p, sans-serif;
  text-align: center;
  line-height: 2.6;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-section {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
}
.p-section + .p-section {
  margin-top: min(53.3333333333vw, 250px);
}
@media screen and (min-width: 768px) {
  .p-section + .p-section {
    margin-top: 0;
    padding-top: min(10.4166666667vw, 150px);
  }
}
.p-section:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.p-section__fixed {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-section__fixed {
    width: 50%;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
  }
}
.p-section__imageBox {
  position: relative;
}
.p-section__title {
  width: 28%;
  aspect-ratio: 1/0.472;
  position: absolute;
  transform: rotate(6.4deg);
}
.p-section__title > img {
  width: 100%;
  height: 100%;
}
.p-section__scrolled {
  padding-top: 5.3333333333vw;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-section__scrolled {
    width: 40%;
    overflow-x: inherit;
  }
}
.p-section__credit {
  width: 58%;
  margin: 0 6.6666666667vw 0 auto;
}
@media screen and (min-width: 768px) {
  .p-section__credit {
    width: 65%;
    margin-right: 6.75%;
  }
}
.p-section__credit li + li {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .p-section__credit li + li {
    margin-top: 10%;
  }
}
.p-section__credit li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-section__credit li span {
  position: relative;
}
.p-section__credit li span::before {
  content: "";
  width: 4.8vw;
  aspect-ratio: 1/1;
  background-color: #94DF24;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-section__credit li span::before {
    width: 90%;
  }
}
.p-section__rand {
  width: 100%;
  position: relative;
}
.p-section__rand > * {
  position: absolute;
}

.section-1 .p-section__title {
  top: -2%;
  left: 15vw;
}
@media screen and (min-width: 768px) {
  .section-1 .p-section__title {
    top: -3%;
    left: 15%;
  }
}
.section-1 .p-section__rand {
  aspect-ratio: 1/2.456;
}
@media screen and (min-width: 768px) {
  .section-1 .p-section__rand {
    aspect-ratio: 1/2.835;
  }
}
.section-1 .p-section__rand img:nth-child(1) {
  width: 84.7%;
  bottom: 157vw;
  left: 6.9vw;
}
@media screen and (min-width: 768px) {
  .section-1 .p-section__rand img:nth-child(1) {
    width: 83.75%;
    top: 2.7%;
    left: 7.25%;
    bottom: unset;
  }
}
.section-1 .p-section__rand img:nth-child(2) {
  width: 47.2%;
  bottom: 66.7vw;
  left: 3.6vw;
}
@media screen and (min-width: 768px) {
  .section-1 .p-section__rand img:nth-child(2) {
    width: 47.2%;
    bottom: 26.1%;
    left: 3.63%;
  }
}
.section-1 .p-section__rand img:nth-child(3) {
  width: 45%;
  right: 3.6vw;
  bottom: 55.2vw;
}
@media screen and (min-width: 768px) {
  .section-1 .p-section__rand img:nth-child(3) {
    width: 45.5%;
    right: 3.25%;
    bottom: 21.4%;
  }
}
.section-1 .p-section__rand img:nth-child(4) {
  bottom: 0;
}
.section-1 .p-section__rand img:nth-child(5) {
  width: 25%;
  right: 7.52vw;
  bottom: 132vw;
}
@media screen and (min-width: 768px) {
  .section-1 .p-section__rand img:nth-child(5) {
    right: 7.5%;
    bottom: 51.5%;
  }
}
.section-1 .p-section__rand img:nth-child(6) {
  width: 77.5%;
  bottom: 109vw;
  left: 8.1%;
}
@media screen and (min-width: 768px) {
  .section-1 .p-section__rand img:nth-child(6) {
    width: 77.6%;
    bottom: 42.6%;
    left: 8.1%;
  }
}

.section-2 .p-section__title {
  top: -4.8%;
  left: 7.65vw;
}
@media screen and (min-width: 768px) {
  .section-2 .p-section__title {
    top: -5.2%;
    left: 8%;
  }
}
.section-2 .p-section__rand {
  aspect-ratio: 1/2.648;
}
@media screen and (min-width: 768px) {
  .section-2 .p-section__rand {
    aspect-ratio: 1/2.733;
  }
}
.section-2 .p-section__rand > img:nth-child(1) {
  width: 86.5%;
  right: 7.9vw;
  bottom: 149vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .section-2 .p-section__rand > img:nth-child(1) {
    top: 5%;
    bottom: unset;
    left: 5.5%;
  }
}
.section-2 .p-section__rand > img:nth-child(2) {
  width: 94.1%;
  bottom: 76vw;
  left: 2.67vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .section-2 .p-section__rand > img:nth-child(2) {
    width: 94.5%;
    top: 33%;
    left: 2.75%;
  }
}
.section-2 .p-section__rand > img:nth-child(3) {
  width: 71.5%;
  right: 48vw;
  top: -44vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .section-2 .p-section__rand > img:nth-child(3) {
    width: 50%;
    right: 43.6%;
    bottom: unset;
    top: -16%;
  }
}
.section-2 .p-section__logo {
  width: 47.6%;
  height: 12.4vw;
  right: 3.2vw;
  bottom: 135.7vw;
}
@media screen and (min-width: 768px) {
  .section-2 .p-section__logo {
    height: unset;
    right: 3%;
    bottom: 50%;
  }
}
.section-2 .p-section__icon {
  width: 69.5%;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-3 .p-section__title {
  top: -2.2%;
  right: 18vw;
}
@media screen and (min-width: 768px) {
  .section-3 .p-section__title {
    top: -2.6%;
    right: 17.5%;
  }
}
.section-3 .p-section__rand {
  aspect-ratio: 1/2.85;
}
@media screen and (min-width: 768px) {
  .section-3 .p-section__rand {
    aspect-ratio: 1/2.863;
  }
}
.section-3 .p-section__rand > img:nth-child(1) {
  top: 9.84vw;
}
@media screen and (min-width: 768px) {
  .section-3 .p-section__rand > img:nth-child(1) {
    top: 3.8%;
  }
}
.section-3 .p-section__rand > img:nth-child(2) {
  bottom: 0;
}
.section-3 .p-section__frame--1, .section-3 .p-section__frame--2 {
  width: 50%;
}
.section-3 .p-section__frame--1 {
  bottom: 121vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .section-3 .p-section__frame--1 {
    top: 29.6%;
    bottom: unset;
  }
}
.section-3 .p-section__frame--2 {
  right: 0;
  bottom: 110vw;
}
@media screen and (min-width: 768px) {
  .section-3 .p-section__frame--2 {
    top: 33.6%;
    bottom: unset;
  }
}

.section-4 .p-section__title {
  top: -1.5%;
  left: 15vw;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__title {
    top: -2%;
    left: 14%;
  }
}
.section-4 .p-section__rand {
  aspect-ratio: 1/3.075;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__rand {
    aspect-ratio: 1/3.228;
  }
}
.section-4 .p-section__rand img:nth-child(1) {
  width: 25.3%;
  left: 5.9vw;
  bottom: 246vw;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__rand img:nth-child(1) {
    width: 26.3%;
    top: -0.6%;
    left: 5.25%;
    bottom: unset;
  }
}
.section-4 .p-section__rand img:nth-child(2) {
  width: 37%;
  left: 31.5vw;
  bottom: 222vw;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__rand img:nth-child(2) {
    width: 37%;
    top: 11%;
    bottom: unset;
    left: 32%;
  }
}
.section-4 .p-section__rand img:nth-child(3) {
  width: 60.2%;
  left: 51.2vw;
  bottom: 181vw;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__rand img:nth-child(3) {
    width: 59.5%;
    top: 22.4%;
    left: 51.7%;
  }
}
.section-4 .p-section__rand img:nth-child(4) {
  width: 72%;
  bottom: 256vw;
  left: 33.6vw;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__rand img:nth-child(4) {
    top: 6%;
    bottom: unset;
    left: 33.5%;
  }
}
.section-4 .p-section__rand img:nth-child(5) {
  width: 97.9%;
  bottom: 48.5vw;
  left: 3.6vw;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__rand img:nth-child(5) {
    width: 97.5%;
    right: 0;
    bottom: 15.2%;
    left: unset;
  }
}
.section-4 .p-section__rand img:nth-child(6) {
  width: 51.1vw;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .section-4 .p-section__rand img:nth-child(6) {
    width: 51.1%;
  }
}

.section-5 .p-section__title {
  top: -1.8%;
  right: 6.67vw;
}
@media screen and (min-width: 768px) {
  .section-5 .p-section__title {
    top: -2%;
    right: 7%;
  }
}
.section-5 .p-section__photo {
  width: 76.1%;
  margin: 14.4vw auto 0;
}
@media screen and (min-width: 768px) {
  .section-5 .p-section__photo {
    width: 76.5%;
    margin-top: 17%;
  }
}
.section-5 .p-section__bottom {
  margin-top: 17.2vw;
}
@media screen and (min-width: 768px) {
  .section-5 .p-section__bottom {
    margin-top: 20%;
  }
}

.p-footer {
  padding: 18.3733333333vw 0;
  color: #fff;
  font-size: 3.2vw;
  font-weight: 400;
  letter-spacing: 0.04em;
  background-image: url(../assets/images/about/bg.jpg);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 6.0416666667vw 0 3.6805555556vw;
    font-size: 0.8333333333vw;
  }
}
.p-footer__inner {
  width: 77.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    width: 77.9861111111vw;
    margin: 0 4.5138888889vw 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-footer__left {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__left {
    width: 55.7%;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__left > img {
    width: 96.8%;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__left > span {
    color: #F5EB3A;
    letter-spacing: 1em;
    font-size: 2.6388888889vw;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__ciao {
    color: #F5EB3A;
    font-size: 3.4722222222vw;
    font-family: delicious;
    position: absolute;
    top: -50%;
    left: -10%;
    transform: rotate(-10deg);
  }
}
@media screen and (min-width: 768px) {
  .p-footer__right {
    width: 20.8333333333vw;
  }
}
.p-footer__all {
  aspect-ratio: 1/0.145;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 6.7733333333vw;
  font-family: delicious;
  background-color: #F5EB3A;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__all {
    font-size: 1.7638888889vw;
  }
}
.p-footer__allArrow {
  width: 13.5%;
  position: absolute;
  top: 50%;
  right: 17%;
  transform: translateY(-50%);
}
.p-footer__list {
  margin-top: 18.0266666667vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    margin-top: 4.0694444444vw;
  }
}
.p-footer__list li + li {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .p-footer__list li + li {
    margin-top: 1.3888888889vw;
  }
}
.p-footer__light {
  font-weight: 300;
}
.p-footer__logo {
  margin-top: 9.52vw;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-top: 2.5vw;
  }
}
.p-footer__season {
  margin-top: 2%;
  font-size: 3.7333333333vw;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 768px) {
  .p-footer__season {
    font-size: 1.0416666667vw;
  }
}
.p-footer__linkList {
  margin-top: 6.4vw;
  display: flex;
  gap: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-footer__linkList {
    margin-top: 1.6666666667vw;
    gap: 1.6666666667vw;
  }
}
.p-footer__link {
  display: flex;
  align-items: center;
  gap: 1.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    gap: 0.3819444444vw;
  }
}
.p-footer__arrow {
  width: 2.0533333333vw;
}
@media screen and (min-width: 768px) {
  .p-footer__arrow {
    width: 0.5347222222vw;
  }
}
.p-footer__copyImage {
  margin-top: 9.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-footer__copyImage {
    margin-top: 2.3611111111vw;
  }
}
.p-footer__copy {
  margin-top: 4.8vw;
  display: inline-block;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    margin-top: 1.25vw;
    font-size: 10px;
  }
}

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