@charset "UTF-8";
/***
    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.6;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 14px;
  }
}

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

img {
  display: block;
}

body {
  font-family: noto-sans, sans-serif;
  font-weight: 400;
}

.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-firstView {
  width: 100%;
  height: 100svh;
  background-size: cover;
  background-position: top center;
}

.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;
  align-items: center;
  justify-content: 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: 100%;
  color: #fff;
  position: relative;
}
.p-firstView__text {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .p-firstView__text {
    gap: 10px;
    top: 45%;
  }
}
.p-firstView__title {
  width: min(80vw, 700px);
}
@media screen and (min-width: 1025px) {
  .p-firstView__title {
    width: 45.1388888889vw;
  }
}
.p-firstView__season {
  font-size: min(5.3333333333vw, 35px);
  font-family: Yu Gothic UI Semiligh, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1025px) {
  .p-firstView__season {
    font-size: 2.7777777778vw;
  }
}

.p-about {
  padding: 13.3333333333vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.3333333333vw;
  font-family: Yu Gothic UI Semiligh, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .p-about {
    padding: 100px 0;
    gap: 40px;
  }
}
.p-about__title {
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .p-about__title {
    font-size: 24px;
  }
}
.p-about__text {
  line-height: 2;
}
.p-about__info {
  font-weight: bold;
}

.p-contents {
  border-top: 0.5px solid #000;
  border-bottom: 0.5px solid #000;
}
.p-contents__list {
  display: flex;
  flex-wrap: wrap;
}
.p-contents__list li {
  width: 50%;
  padding: 2.6666666667vw;
  border: 0.5px solid #000;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .p-contents__list li {
    width: 25%;
    padding: 1.3888888889vw;
  }
}
.p-contents__plus {
  width: 4vw;
  aspect-ratio: 1/1;
  position: absolute;
  right: 5.3333333333vw;
  bottom: 5.3333333333vw;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .p-contents__plus {
    width: 2.7777777778vw;
    right: 2.7777777778vw;
    bottom: 2.7777777778vw;
  }
}
.p-contents__plus::before, .p-contents__plus::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.p-contents__plus::after {
  transform: rotate(-90deg);
}

.p-footer {
  width: 85.3333333333vw;
  margin-inline: auto;
  padding: 13.3333333333vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    width: 400px;
    padding: 100px 0;
  }
}
.p-footer__all {
  width: 100%;
  aspect-ratio: 1/0.15625;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4.2666666667vw;
  font-family: Yu Gothic UI Semiligh, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  border: 1px solid #000;
}
@media screen and (min-width: 1025px) {
  .p-footer__all {
    font-size: 20px;
  }
}
.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__logos {
  width: 100%;
  margin-top: 26.6666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: center;
  gap: 8vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logos {
    margin-top: 100px;
    gap: 50px;
  }
}
.p-footer__insta {
  width: 6.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__insta {
    width: 40px;
  }
}
.p-footer__insta:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-footer__insta:hover {
    opacity: 0.6;
  }
}
.p-footer__logo {
  width: 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo {
    width: 120px;
  }
}
.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: 8vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__copy {
    margin-top: 50px;
    font-size: 12px;
  }
}

.p-modal {
  width: 100%;
  height: 100%;
  padding: calc(6svh + 5.3333333333vw) 0 calc(6svh + 13.3333333333vw);
  font-family: noto-sans, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  overflow: scroll;
  display: none;
}
@media screen and (min-width: 1025px) {
  .p-modal {
    padding: 0;
  }
}
.p-modal__inner {
  width: 80vw;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-modal__inner {
    width: min(80%, 1000px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-modal__images {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .p-modal__images {
    width: 40%;
  }
}
.p-modal__textBox {
  width: 100%;
  margin-top: 8vw;
}
@media screen and (min-width: 1025px) {
  .p-modal__textBox {
    width: 40%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
.p-modal__num {
  width: 100%;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-modal__num {
    font-size: 18px;
  }
}
.p-modal__text {
  width: 100%;
  margin-top: 5.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-modal__text {
    margin-top: 20px;
    gap: 10px;
  }
}
.p-modal__title {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-modal__title {
    font-size: 16px;
  }
}
.p-modal__credit {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-modal__credit {
    gap: 10px;
  }
}
.p-modal__credit li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-modal__credit li a {
  width: 16vw;
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
}
@media screen and (min-width: 1025px) {
  .p-modal__credit li a {
    width: 100px;
  }
}
.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__navi {
  width: 80%;
  margin-top: 13.3333333333vw;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-modal__navi {
    margin-top: 50px;
    position: absolute;
    bottom: 0;
  }
}
.p-modal__navi > * {
  cursor: pointer;
  transition: all 0.6s;
}
.p-modal__navi > *:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-modal__navi > *:hover {
    opacity: 0.6;
  }
}
.p-modal__close {
  font-size: 3.7333333333vw;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .p-modal__close {
    font-size: 16px;
  }
}
.p-modal__cross {
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  position: fixed;
  bottom: 5vw;
  right: 0;
  transition: all 0.6s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .p-modal__cross {
    width: 80px;
    height: 80px;
    top: 70px;
    right: 2vw;
    bottom: unset;
  }
}
.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 */