/***
    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: #383838;
  font-size: 3.2vw;
  letter-spacing: 0.08em;
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 16px;
  }
}

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

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

body {
  font-family: myriad-pro, sans-serif;
}

@media screen and (min-width: 751px) {
  .l-creditWrap {
    width: 600px;
    margin: 20svh auto 0;
  }
}

.l-staff {
  width: 70.4%;
  margin: 32vw auto 0;
}
@media screen and (min-width: 751px) {
  .l-staff {
    width: 432px;
    margin-top: 200px;
  }
}

.l-all {
  width: 70.4%;
  height: 13.3333333333vw;
  margin: 13.3333333333vw auto 0;
}
@media screen and (min-width: 751px) {
  .l-all {
    width: 400px;
    height: 70px;
    margin-top: 80px;
  }
}
.l-all__button {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 4.2666666667vw;
  letter-spacing: 0.2em;
  background-color: #FFC900;
  border: 1px solid #FFC900;
}
@media screen and (min-width: 751px) {
  .l-all__button {
    font-size: 20px;
  }
}
.l-all__button:active {
  color: #FFC900;
  background-color: #fff;
  opacity: 1;
}
@media screen and (min-width: 751px) {
  .l-all__button:hover {
    color: #FFC900;
    background-color: #fff;
    opacity: 1;
  }
}

.l-toTop {
  width: 2.5%;
  position: fixed;
  bottom: 2%;
  right: 3%;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .l-toTop {
    width: 1%;
  }
}

@media screen and (min-width: 751px) {
  .p-firstView {
    height: 80svh;
    display: flex;
  }
}
.p-firstView__slide {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-firstView__slide {
    width: 50%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 751px) {
  .p-firstView__slide * {
    height: 100% !important;
    object-fit: cover;
  }
}
.p-firstView__text {
  padding: 21.3333333333vw 0;
  text-align: center;
  letter-spacing: 0.2em;
  background: radial-gradient(rgba(255, 204, 14, 0.2), #fff);
}
@media screen and (min-width: 751px) {
  .p-firstView__text {
    width: 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(rgba(255, 204, 14, 0.3), #fff);
  }
}
.p-firstView__sub {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 751px) {
  .p-firstView__sub {
    font-size: 1.1111111111vw;
  }
}
.p-firstView__main {
  margin-top: 1vw;
  font-size: 8vw;
  font-weight: 600;
}
@media screen and (min-width: 751px) {
  .p-firstView__main {
    margin-top: 0.6944444444vw;
    font-size: 3.4722222222vw;
  }
}
.p-firstView__desc {
  margin-top: 8vw;
  font-family: noto-sans, sans-serif;
  line-height: 2;
}
@media screen and (min-width: 751px) {
  .p-firstView__desc {
    margin-top: 3.4722222222vw;
    font-size: 0.9722222222vw;
  }
}

.p-section > * + * {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 751px) {
  .p-section > * + * {
    margin-top: 80px;
  }
}
.p-section + .p-section {
  margin-top: 32vw;
}
@media screen and (min-width: 751px) {
  .p-section + .p-section {
    margin-top: 200px;
  }
}
.p-section__slide {
  width: 85.6%;
  margin-right: auto;
  margin-left: auto;
}
.p-section__flex {
  display: flex;
}
.p-section__flex > img {
  width: 50%;
}
.p-section__rand {
  position: relative;
}
.p-section__rand > img {
  width: 54.6666666667%;
  position: absolute;
}
.p-section__triple {
  aspect-ratio: 1/1.335;
  position: relative;
}
.p-section__triple > img {
  width: 50%;
  position: absolute;
}
.p-section__triple > img:nth-child(1) {
  top: 0;
  left: 7.2%;
}
.p-section__triple > img:nth-child(2) {
  top: 49%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.p-section__triple > img:nth-child(3) {
  bottom: 0;
  left: 14.9333333333%;
}
.p-section__credit {
  width: 62vw;
  margin: 5.3333333333vw auto 0;
}
@media screen and (min-width: 751px) {
  .p-section__credit {
    width: 320px;
    margin-top: 50px;
  }
}
.p-section__credit li + li {
  margin-top: 1.6vw;
}
@media screen and (min-width: 751px) {
  .p-section__credit li + li {
    margin-top: 10px;
  }
}
.p-section__credit li a, .p-section__credit li p {
  display: flex;
  justify-content: space-between;
}
.p-section__credit li a span {
  text-decoration: underline;
}
.p-section:nth-child(2) .p-section__rand {
  aspect-ratio: 1/1.053;
}
.p-section:nth-child(2) .p-section__rand img:nth-child(1) {
  top: 0;
  left: 0;
}
.p-section:nth-child(2) .p-section__rand img:nth-child(2) {
  right: 0;
  bottom: 0;
}
.p-section:nth-child(3) .p-section__rand {
  aspect-ratio: 1/1.211;
}
.p-section:nth-child(3) .p-section__rand img:nth-child(1) {
  top: 0;
  right: 0;
}
.p-section:nth-child(3) .p-section__rand img:nth-child(2) {
  bottom: 0;
  left: 0;
}
.p-section:nth-child(4) .p-section__rand {
  aspect-ratio: 1/1.053;
}
.p-section:nth-child(4) .p-section__rand img {
  width: 66.6666666667%;
}
.p-section:nth-child(4) .p-section__rand img:nth-child(1) {
  top: 0;
  left: 0;
}
.p-section:nth-child(4) .p-section__rand img:nth-child(2) {
  right: 0;
  bottom: 0;
}
.p-section:nth-child(8) .p-section__rand {
  aspect-ratio: 1/1.211;
}
.p-section:nth-child(8) .p-section__rand img:nth-child(1) {
  top: 0;
  right: 0;
}
.p-section:nth-child(8) .p-section__rand img:nth-child(2) {
  bottom: 0;
  left: 0;
}
.p-section:nth-child(10) .p-section__rand {
  aspect-ratio: 1/1.053;
}
.p-section:nth-child(10) .p-section__rand img:nth-child(1) {
  top: 0;
  left: 0;
}
.p-section:nth-child(10) .p-section__rand img:nth-child(2) {
  right: 0;
  bottom: 0;
}
.p-section:nth-child(14) .p-section__rand {
  aspect-ratio: 1/1.053;
}
.p-section:nth-child(14) .p-section__rand img:nth-child(1) {
  top: 0;
  left: 0;
}
.p-section:nth-child(14) .p-section__rand img:nth-child(2) {
  right: 0;
  bottom: 0;
}
.p-section:nth-child(16) .p-section__rand {
  aspect-ratio: 1/1.053;
}
.p-section:nth-child(16) .p-section__rand img:nth-child(1) {
  top: 0;
  left: 0;
}
.p-section:nth-child(16) .p-section__rand img:nth-child(2) {
  right: 0;
  bottom: 0;
}

.p-archive {
  margin-top: 32%;
  color: #5A5A5A;
}
@media screen and (min-width: 751px) {
  .p-archive {
    margin-top: 200px;
  }
}
.p-archive__title {
  font-size: 5.3333333333vw;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 751px) {
  .p-archive__title {
    font-size: 36px;
  }
}
.p-archive__list {
  width: 53.3333333333vw;
  margin: 10.6666666667vw auto 0;
}
@media screen and (min-width: 751px) {
  .p-archive__list {
    width: 530px;
    margin-top: 50px;
    display: flex;
    gap: 30px;
  }
}
.p-archive__list li + li {
  margin-top: 8vw;
}
@media screen and (min-width: 751px) {
  .p-archive__list li + li {
    margin-top: 0;
  }
}
.p-archive__text {
  margin-top: 1.6vw;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-archive__text {
    margin-top: 10px;
    font-size: 14px;
  }
}

.p-footer {
  padding: 32vw 0 16vw;
}
@media screen and (min-width: 751px) {
  .p-footer {
    padding: 200px 0 100px;
  }
}
.p-footer__navi {
  display: flex;
  justify-content: center;
}
.p-footer__navi li:not(:last-of-type)::after {
  content: "/";
  margin: 0 8px 0 4px;
}
.p-footer__logo {
  width: 26.6666666667vw;
  margin: 5.3333333333vw auto 0;
}
@media screen and (min-width: 751px) {
  .p-footer__logo {
    width: 150px;
    margin-top: 30px;
  }
}
.p-footer__copy {
  margin-top: 13.3333333333vw;
  display: block;
  font-size: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-footer__copy {
    margin-top: 80px;
    font-size: 10px;
  }
}

@media screen and (min-width: 751px) and (min-width: 751px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .u-hidden-sp {
    display: none !important;
  }
}
.u-w321 {
  width: 85.6%;
  margin-right: auto;
  margin-left: auto;
}

.u-w264 {
  width: 70.4%;
}

.u-w225 {
  width: 60%;
}

.u-w205 {
  width: 54.6666666667%;
}

.u-w187 {
  width: 50%;
}

.u-center {
  margin-right: auto;
  margin-left: auto;
}

.u-mr0 {
  margin-right: 0;
  margin-left: auto;
}

.u-mr27 {
  margin-right: 7.2vw;
  margin-left: auto;
}

.u-mt60 {
  margin-top: 16%;
}
@media screen and (min-width: 751px) {
  .u-mt60 {
    margin-top: 100px;
  }
}

.u-index2 {
  z-index: 2;
}/*# sourceMappingURL=app.css.map */