/***
    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: clamp(10px, 2.7vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  background-color: #fff;
}
@media screen and (min-width: 800px) {
  body {
    font-size: clamp(14px, 1.3vw, 18px);
  }
}

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

img {
  display: block;
}

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

.l-loading {
  width: 100%;
  height: 100vh;
  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: 800px) {
  .l-loading__logo {
    width: 20%;
  }
}

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

.l-container {
  display: flex;
  flex-direction: column;
  width: 85%;
  margin: 0 auto;
  padding-top: 30px;
  gap: 30px;
}
@media screen and (min-width: 800px) {
  .l-container {
    width: 70%;
    gap: 60px;
  }
}

.p-header {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-header__arrow {
  width: 20px;
}
.p-header__title {
  width: 60px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .p-header__title {
    width: 100px;
  }
}
.p-header__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../assets/images/common/arrow_back.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
@media screen and (min-width: 800px) {
  .p-header__title::before {
    left: -30px;
  }
}

.p-section {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.p-section__modal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .p-section__modal {
    align-items: flex-end;
  }
}
.p-section__credit {
  width: 50%;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 800px) {
  .p-section__credit {
    padding-bottom: 4%;
    gap: 20px;
  }
}
.p-section__title {
  font-size: clamp(13px, 3.4vw, 16px);
  font-weight: bold;
}
@media screen and (min-width: 800px) {
  .p-section__title {
    font-size: clamp(16px, 1.4vw, 20px);
  }
}
.p-section__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 800px) {
  .p-section__list {
    width: 75%;
    gap: 15px;
  }
}
.p-section__link {
  display: flex;
  justify-content: space-between;
}
.p-section__link * {
  text-decoration: underline;
}
.p-section__btn {
  width: 8%;
  aspect-ratio: 1/1;
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 5;
}
@media screen and (min-width: 800px) {
  .p-section__btn {
    right: 3%;
    bottom: 3%;
  }
}
.p-section__btn::before, .p-section__btn::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (min-width: 800px) {
  .p-section__btn::before, .p-section__btn::after {
    height: 3px;
  }
}

.p-footer {
  padding: 80px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-footer__archive {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .p-footer__archive {
    gap: 30px;
  }
}
.p-footer__archiveTitle {
  font-size: clamp(18px, 4.8vw, 22px);
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  .p-footer__archiveTitle {
    font-size: clamp(20px, 1.9vw, 24px);
  }
}
.p-footer__archiveList {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.p-footer__all {
  width: 80%;
  max-width: 500px;
  margin-top: 50px;
  padding: 16px;
  font-size: clamp(16px, 4.2vw, 18px);
  font-weight: bold;
  letter-spacing: 0.08em;
  border: 1px solid #000;
  transition: all 0.6s;
}
@media screen and (min-width: 800px) {
  .p-footer__all {
    width: 520px;
    margin-top: 100px;
    padding: 20px;
    font-size: clamp(18px, 1.6vw, 20px);
  }
}
.p-footer__all:active {
  color: #fff;
  background-color: #000;
  opacity: 1;
}
@media screen and (min-width: 800px) {
  .p-footer__all:hover {
    color: #fff;
    background-color: #000;
    opacity: 1;
  }
}
.p-footer__logos {
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .p-footer__logos {
    margin-top: 120px;
    gap: 40px;
  }
}
.p-footer__insta {
  width: 25px;
}
@media screen and (min-width: 800px) {
  .p-footer__insta {
    width: 30px;
  }
}
.p-footer__logo {
  width: 20%;
}
@media screen and (min-width: 800px) {
  .p-footer__logo {
    width: 120px;
  }
}
.p-footer__copy {
  font-size: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 800px) {
  .p-footer__copy {
    margin-top: 50px;
  }
}

@media screen and (min-width: 800px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 799px) {
  .u-hidden-sp {
    display: none !important;
  }
}
.u-credit-one {
  justify-content: center;
}
.u-credit-one .p-section__credit {
  width: 50%;
}
@media screen and (min-width: 800px) {
  .u-credit-one .p-section__credit {
    width: 37.5%;
  }
}
.u-credit-one .p-section__list {
  width: 100%;
}

.u-none-line * {
  text-decoration: none;
}/*# sourceMappingURL=app.css.map */