/***
    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;
  line-height: 1;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}

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

img {
  display: block;
}

body {
  font-family: yu-gothic-pr6n, sans-serif;
}

.l-loading {
  width: 100%;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.l-loading--delay {
  z-index: 500;
}
.l-loading__text {
  width: 100%;
}
.l-loading__logo {
  width: 40%;
}
@media screen and (min-width: 1025px) {
  .l-loading__logo {
    width: 20%;
  }
}

.l-header {
  width: 100%;
  height: 6svh;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  .l-header {
    height: 60px;
  }
}

.l-modalWrap {
  width: 100%;
  height: 100vh;
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.p-header {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-header a:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-header a:hover {
    opacity: 0.6;
  }
}
.p-header__title {
  display: block;
  position: relative;
}
.p-header__title > img {
  height: 2.5svh;
}
@media screen and (min-width: 1025px) {
  .p-header__title > img {
    width: 100px;
    height: auto;
  }
}
.p-header__title::before {
  content: "";
  height: 90%;
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow_back.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  left: -30%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
  .p-header__title::before {
    left: -30px;
  }
}

.p-firstView {
  width: 100%;
  height: 100svh;
  color: #fff;
  background-image: url("../images/firstView/sp.jpg");
  background-size: cover;
  background-position: top center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-firstView {
    background-image: url("../images/firstView/pc.jpg");
    background-position: center;
  }
}
.p-firstView > * {
  width: 100%;
  position: absolute;
}
.p-firstView__main {
  display: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6666666667vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1025px) {
  .p-firstView__main {
    gap: 2.0833333333vw;
    top: 55%;
  }
}
.p-firstView__logo {
  display: none;
  width: 40vw;
}
@media screen and (min-width: 1025px) {
  .p-firstView__logo {
    width: 19.4444444444vw;
  }
}
.p-firstView__season {
  display: none;
  font-size: 4.2666666667vw;
  text-align: center;
  top: 50%;
}
@media screen and (min-width: 1025px) {
  .p-firstView__season {
    font-size: 2.0833333333vw;
  }
}
.p-firstView__theme {
  display: none;
  font-size: 4.2666666667vw;
  text-align: center;
  top: 65%;
}
@media screen and (min-width: 1025px) {
  .p-firstView__theme {
    font-size: 1.9444444444vw;
    top: 80%;
  }
}

.p-about {
  padding: 21.3333333333vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .p-about {
    padding: 150px 0;
    gap: 30px;
  }
}
.p-about__theme {
  font-size: 4.2666666667vw;
  font-family: noto-serif, serif;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .p-about__theme {
    font-size: 24px;
  }
}

.p-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contents__section + .p-contents__section {
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__section + .p-contents__section {
    margin-top: 150px;
  }
}
.p-contents__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__logos {
    gap: 40px;
  }
}
.p-contents__logos + .p-contents__list {
  margin-top: 8vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__logos + .p-contents__list {
    margin-top: 60px;
  }
}
.p-contents__brand {
  width: 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__brand {
    width: 155px;
  }
}
.p-contents__insta {
  width: 5.8666666667vw;
  display: block;
}
@media screen and (min-width: 1025px) {
  .p-contents__insta {
    width: 40px;
  }
}
.p-contents__insta:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-contents__insta:hover {
    opacity: 0.6;
  }
}
.p-contents__list {
  width: 88vw;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4.8vw;
  row-gap: 8vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__list {
    width: 900px;
    column-gap: 40px;
    row-gap: 60px;
  }
}
.p-contents__list li {
  width: 41.6vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__list li {
    width: 430px;
  }
}
.p-contents__theme {
  width: 88vw;
  margin-top: 13.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-contents__theme {
    width: 500px;
    margin-top: 80px;
  }
}
.p-contents__staff {
  width: 88vw;
  margin-top: 5.3333333333vw;
  font-size: 2.1333333333vw;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .p-contents__staff {
    width: 900px;
    margin-top: 40px;
    font-size: 14px;
  }
}
.p-contents__staffList {
  margin-top: 4vw;
  display: flex;
  flex-direction: column;
  gap: 1.0666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__staffList {
    margin-top: 30px;
    gap: 8px;
  }
}

.p-footer {
  padding: 16vw 0 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    padding: 100px 0 50px;
  }
}
.p-footer__all {
  width: 66.6666666667vw;
  aspect-ratio: 250/40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 3.7333333333vw;
  border: 1px solid #000;
}
@media screen and (min-width: 1025px) {
  .p-footer__all {
    width: 400px;
    height: 70px;
    font-size: 18px;
  }
}
.p-footer__all:active {
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 1025px) {
  .p-footer__all:hover {
    color: #fff;
    background-color: #000;
  }
}
.p-footer__archive {
  margin-top: 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__archive {
    margin-top: 150px;
  }
}
.p-footer__archiveTitle {
  font-size: 3.2vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__archiveTitle {
    font-size: 18px;
  }
}
.p-footer__archiveList {
  margin-top: 5.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__archiveList {
    margin-top: 40px;
    gap: 10px;
  }
}
.p-footer__archiveList li {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__archiveList li {
    font-size: 12px;
  }
}
.p-footer__archiveList li a:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-footer__archiveList li a:hover {
    opacity: 0.6;
  }
}
.p-footer__logo {
  width: 21.3333333333vw;
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo {
    width: 120px;
    margin-top: 150px;
  }
}
.p-footer__logo:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo:hover {
    opacity: 0.6;
  }
}
.p-footer__copy {
  font-size: 2.6666666667vw;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__copy {
    margin-top: 100px;
    font-size: 12px;
  }
}

.p-modal {
  width: 100%;
  height: 100%;
  padding: calc(6svh + 8vw) 0 21.3333333333vw;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: scroll;
}
@media screen and (min-width: 1025px) {
  .p-modal {
    padding: 110px 0 100px;
  }
}
.p-modal__inner {
  width: 80vw;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-modal__inner {
    width: 500px;
  }
}
.p-modal__images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
@media screen and (min-width: 1025px) {
  .p-modal__images {
    gap: 50px;
  }
}
.p-modal__credit {
  margin-top: 13.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-modal__credit {
    margin-top: 80px;
    gap: 15px;
  }
}
.p-modal__credit li {
  height: 5.3333333333vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-modal__credit li {
    height: 24px;
  }
}
.p-modal__credit li a {
  width: 12vw;
  aspect-ratio: 45/20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}
@media screen and (min-width: 1025px) {
  .p-modal__credit li a {
    width: 70px;
    height: 24px;
  }
}
.p-modal__credit li a:active {
  color: #000;
  background-color: transparent;
}
@media screen and (min-width: 1025px) {
  .p-modal__credit li a:hover {
    color: #000;
    background-color: transparent;
  }
}
.p-modal__cross {
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  position: fixed;
  bottom: 5vw;
  right: 2vw;
  transition: all 0.6s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .p-modal__cross {
    width: 80px;
    height: 80px;
    right: 2vw;
    bottom: 2vw;
  }
}
.p-modal__cross:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-modal__cross:hover {
    opacity: 0.6;
  }
}
.p-modal__cross::before, .p-modal__cross::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}
.p-modal__cross::before {
  transform: rotate(-45deg);
}
.p-modal__cross::after {
  transform: rotate(45deg);
}

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