/***
    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: clamp(13px, 3.5vw, 17px);
  letter-spacing: 0.1em;
  background-color: #FFF;
  overflow-x: hidden;
}

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: "myriad-pro", sans-serif;
}

.l-credit {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 26vw, 200px);
}
@media screen and (min-width: 800px) {
  .l-credit {
    width: 800px;
    margin: 200px auto 0;
  }
}

.c-credit {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .c-credit__imageBox {
    width: 100%;
  }
}
.c-credit__flex, .c-credit__flex--small, .c-credit__flex--smaller {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.c-credit__flex li, .c-credit__flex--small li, .c-credit__flex--smaller li {
  width: calc((100% - 10px) / 2);
}
.c-credit__flex--small {
  width: 77%;
}
@media screen and (min-width: 800px) {
  .c-credit__flex--small {
    width: 638px;
  }
}
.c-credit__flex--smaller {
  width: 77%;
}
.c-credit__triple {
  width: 90%;
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 800px) {
  .c-credit__triple {
    width: 680px;
    gap: 10px;
  }
}
.c-credit__shift {
  width: 90%;
  height: 43vw;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 800px) {
  .c-credit__shift {
    width: 960px;
    height: 410px;
    aspect-ratio: 1/0.41;
  }
}
.c-credit__shift li {
  width: 40%;
  position: absolute;
}
@media screen and (min-width: 800px) {
  .c-credit__shift li {
    width: 360px;
  }
}
.c-credit__shift li:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 10;
}
.c-credit__shift li:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 20;
}
.c-credit__shift li:nth-child(3) {
  right: 0;
  bottom: 0;
  z-index: 30;
}
.c-credit__random {
  position: relative;
}
.c-credit__largeImage {
  width: 60%;
}
@media screen and (min-width: 800px) {
  .c-credit__largeImage {
    width: 430px;
  }
}
.c-credit__smallImage {
  width: 45.8%;
}
@media screen and (min-width: 800px) {
  .c-credit__smallImage {
    width: 314px;
  }
}
.c-credit__horizontal {
  width: 53%;
}
@media screen and (min-width: 800px) {
  .c-credit__horizontal {
    width: 50%;
  }
}
.c-credit__plus {
  position: relative;
  z-index: 10;
}
.c-credit__plus span {
  width: min(13.2%, 45px);
  aspect-ratio: 1/1;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .c-credit__plus span {
    bottom: 20px;
    right: 20px;
  }
}
.c-credit__plus span::before, .c-credit__plus span::after {
  width: 2px;
  height: 100%;
  content: "";
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
}
.c-credit__plus span::before {
  transform: translate(-50%, -50%);
}
.c-credit__plus span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-credit__text {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 800px) {
  .c-credit__text {
    width: 300px;
  }
}
.c-credit__text li {
  display: flex;
  justify-content: space-between;
}
.c-credit__link {
  text-decoration: underline;
}

.c-modal {
  display: none;
  width: 100%;
  height: 100%;
  background-color: #e5e9ec;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: scroll;
}
@media screen and (min-width: 800px) {
  .c-modal {
    height: 100vh;
  }
}
.c-modal__close {
  width: 45px;
  height: 45px;
  display: inline-block;
  opacity: 0.8;
  position: absolute;
  top: 17.5px;
  right: 5%;
  z-index: 110;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .c-modal__close {
    width: 70px;
    height: 70px;
    top: 5px;
  }
}
.c-modal__close::before, .c-modal__close::after {
  width: 1px;
  height: 100%;
  content: "";
  display: inline-block;
  background-color: #383838;
  position: absolute;
  left: 50%;
  top: 50%;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__contents {
  margin: 80px 0;
  padding: 50px 0;
  background-color: #FFF;
  position: relative;
}
@media screen and (min-width: 800px) {
  .c-modal__contents {
    height: calc(100vh - 160px);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.c-modal__inner {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .c-modal__inner {
    width: min(90%, 900px);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
  }
}
@media screen and (min-width: 800px) {
  .c-modal__slider {
    width: 50%;
  }
}
.c-modal__textBox {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .c-modal__textBox {
    gap: 90px;
  }
}
.c-modal__heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .c-modal__heading {
    gap: 50px;
  }
}
.c-modal__title {
  font-size: 34px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  .c-modal__title {
    font-size: 48px;
  }
}
.c-modal__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 800px) {
  .c-modal__text {
    gap: 20px;
  }
}
.c-modal__text li {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.c-modal__link {
  text-decoration: underline;
}
.c-modal__page {
  font-size: 12px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  .c-modal__page {
    font-size: 16px;
  }
}

@media screen and (min-width: 800px) {
  .p-firstView {
    display: flex;
  }
}
@media screen and (min-width: 800px) {
  .p-firstView__slider {
    width: 50%;
  }
}
.p-firstView__textBox {
  padding: 80px 7vw 100px 7vw;
  background: linear-gradient(to bottom, #d6dde1, #FFF);
  display: flex;
  flex-direction: column;
  gap: 35px;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 800px) {
  .p-firstView__textBox {
    width: 50%;
    padding: 0;
    justify-content: center;
    gap: 60px;
    background: #e5e9ec;
  }
}
.p-firstView__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-firstView__title {
  font-size: clamp(36px, 9.6vw, 58px);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.p-firstView__description {
  font-size: clamp(12px, 3.2vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

.p-footer {
  padding: 100px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .p-footer {
    width: 800px;
    margin: 0 auto;
    padding: 200px 0 100px;
  }
}
.p-footer__staff {
  width: 75%;
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .p-footer__staff {
    width: 640px;
  }
}
.p-footer__allBtn {
  width: 60%;
  height: 45px;
  margin: 50px auto 0;
  transition: all 0.6s;
}
@media screen and (min-width: 800px) {
  .p-footer__allBtn {
    width: 460px;
    height: 80px;
    margin-top: 80px;
  }
}
.p-footer__allLink {
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 45px;
  letter-spacing: 0.2em;
  border: 1px solid #383838;
}
@media screen and (min-width: 800px) {
  .p-footer__allLink {
    height: 100%;
    font-size: 20px;
    line-height: 80px;
  }
}
.p-footer__allLink:active {
  color: #fff;
  background-color: #383838;
  opacity: 1;
}
@media screen and (min-width: 800px) {
  .p-footer__allLink:hover {
    color: #fff;
    background-color: #383838;
    opacity: 1;
  }
}
.p-footer__archive {
  width: 52.5%;
  margin: 100px 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #5A5A5A;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .p-footer__archive {
    width: 288px;
    margin-top: 150px;
    gap: 25px;
  }
}
.p-footer__archiveTitle {
  font-size: clamp(20px, 5.3vw, 33px);
  letter-spacing: 0.2em;
}
@media screen and (min-width: 800px) {
  .p-footer__archiveTitle {
    font-size: 38px;
  }
}
.p-footer__archiveLink {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 800px) {
  .p-footer__archiveLink {
    gap: 10px;
  }
}
.p-footer__archiveText {
  font-size: clamp(12px, 3.2vw, 14px);
}
@media screen and (min-width: 800px) {
  .p-footer__archiveText {
    font-size: 19px;
  }
}
.p-footer__navi {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .p-footer__navi {
    margin-top: 150px;
  }
}
.p-footer__navi li {
  font-size: 11px;
}
@media screen and (min-width: 800px) {
  .p-footer__navi li {
    font-size: 16px;
  }
}
.p-footer__navi li:not(:last-of-type)::after {
  content: "/";
  margin: 0 8px 0 4px;
}
.p-footer__logoBtn {
  width: 25%;
  margin: 20px auto 0;
}
@media screen and (min-width: 800px) {
  .p-footer__logoBtn {
    width: 130px;
    margin-top: 30px;
  }
}
.p-footer__logoLink {
  display: block;
}
.p-footer__copy {
  margin-top: 40px;
  color: #787676;
  font-size: 7px;
}
@media screen and (min-width: 800px) {
  .p-footer__copy {
    margin-top: 75px;
    font-size: 10px;
  }
}
.p-footer__toTop {
  width: 2.5%;
  position: fixed;
  bottom: 2%;
  right: 3%;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .p-footer__toTop {
    width: 1%;
  }
}

@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-monotone {
  filter: grayscale(100%);
}

@media screen and (min-width: 800px) {
  .u-credit2-flex {
    width: 638px;
    margin: 0 auto;
  }
}

.u-credit2-random {
  width: 100%;
  height: 62.1vw;
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .u-credit2-random {
    width: 800px;
    height: 545px;
    margin-top: 50px;
  }
}
.u-credit2-random li {
  width: calc((80% - 10px) / 2);
  position: absolute;
}
@media screen and (min-width: 800px) {
  .u-credit2-random li {
    width: 314px;
  }
}
.u-credit2-random li:nth-child(1) {
  left: 40%;
  bottom: 0;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  .u-credit2-random li:nth-child(1) {
    left: 45%;
  }
}
.u-credit2-random li:nth-child(2) {
  top: 0;
  left: 10%;
}
@media screen and (min-width: 800px) {
  .u-credit2-random li:nth-child(2) {
    left: 20%;
  }
}

.u-credit2-triple {
  margin-top: 50px;
}
@media screen and (min-width: 800px) {
  .u-credit2-triple {
    margin-top: 80px;
    margin-left: -80px;
  }
}

@media screen and (min-width: 800px) {
  .u-credit2-text {
    margin: 0 0 0 auto;
  }
}

.u-credit3-horizontal {
  margin: 30px 5% 0 auto;
}
@media screen and (min-width: 800px) {
  .u-credit3-horizontal {
    margin: 50px -80px 0 auto;
  }
}

@media screen and (min-width: 800px) {
  .u-credit3-text {
    position: absolute;
    bottom: 0;
    left: 80px;
  }
}

@media screen and (min-width: 800px) {
  .u-credit4-flex {
    width: 638px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 800px) {
  .u-credit6-flex {
    width: 638px;
    margin: 0 auto;
  }
}

.u-credit6-triple {
  margin-top: 50px;
}
@media screen and (min-width: 800px) {
  .u-credit6-triple {
    margin: 50px 0 0 -80px;
  }
}

@media screen and (min-width: 800px) {
  .u-credit6-text {
    margin: 0 0 0 auto;
  }
}

.u-credit7-random {
  height: 75.7vw;
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .u-credit7-random {
    width: 100%;
    height: 500px;
    aspect-ratio: 1/0.71;
    margin-top: 80px;
  }
}
.u-credit7-random li {
  position: absolute;
}
.u-credit7-random li:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 800px) {
  .u-credit7-random li:nth-child(1) {
    right: 80px;
    left: unset;
    transform: translateX(0);
  }
}
.u-credit7-random li:nth-child(2) {
  bottom: 0;
  left: 5%;
  z-index: 20;
}
@media screen and (min-width: 800px) {
  .u-credit7-random li:nth-child(2) {
    left: 80px;
  }
}

.u-credit8-shift {
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .u-credit8-shift {
    margin: 80px 0 0 -80px;
  }
}

@media screen and (min-width: 800px) {
  .u-credit8-text {
    margin-left: 0;
  }
}

.u-credit9-random {
  height: 150.1vw;
}
@media screen and (min-width: 800px) {
  .u-credit9-random {
    width: 750px;
    height: 1210px;
    margin: 0 auto;
  }
}
.u-credit9-random li {
  width: calc((100% - 10px) / 2);
  position: absolute;
}
@media screen and (min-width: 800px) {
  .u-credit9-random li {
    width: 395px;
  }
}
.u-credit9-random li:nth-child(1) {
  top: 12.5%;
  left: 5%;
  z-index: 40;
}
@media screen and (min-width: 800px) {
  .u-credit9-random li:nth-child(1) {
    left: 25px;
  }
}
.u-credit9-random li:nth-child(2) {
  top: 0;
  right: 5%;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  .u-credit9-random li:nth-child(2) {
    right: 80px;
  }
}
.u-credit9-random li:nth-child(3) {
  bottom: 0;
  left: 10%;
  z-index: 10;
}
@media screen and (min-width: 800px) {
  .u-credit9-random li:nth-child(3) {
    left: 80px;
  }
}
.u-credit9-random li:nth-child(4) {
  bottom: 12.5%;
  right: 0;
  z-index: 30;
}
@media screen and (min-width: 800px) {
  .u-credit9-random li:nth-child(4) {
    right: 25px;
  }
}

.u-credit9-horizontal {
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .u-credit9-horizontal {
    margin-top: 50px;
  }
}

@media screen and (min-width: 800px) {
  .u-credit9-text {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.u-credit10-small {
  margin-left: -5%;
}
@media screen and (min-width: 800px) {
  .u-credit10-small {
    margin-left: -80px;
  }
}

.u-credit10-flex {
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .u-credit10-flex {
    margin-top: 50px;
  }
}

@media screen and (min-width: 800px) {
  .u-credit11-flex {
    width: 638px;
    margin: 0 0 0 auto;
  }
}

.u-credit11-large {
  margin: 30px 0 0 5%;
}
@media screen and (min-width: 800px) {
  .u-credit11-large {
    margin: 50px 0 0 0;
  }
}

@media screen and (min-width: 800px) {
  .u-credit11-text {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media screen and (min-width: 800px) {
  .u-credit12-flex {
    width: 638px;
    margin: 0 auto;
  }
}

.u-credit13-large {
  margin: 0 8% 0 auto;
}
@media screen and (min-width: 800px) {
  .u-credit13-large {
    margin: 0 0 0 auto;
  }
}

.u-credit13-flex {
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .u-credit13-flex {
    width: 638px;
    margin-top: 50px;
  }
}

@media screen and (min-width: 800px) {
  .u-credit13-text {
    position: absolute;
    top: 507px;
    left: 0;
  }
}

.u-credit14-small {
  margin: 30px 0 0 auto;
}
@media screen and (min-width: 800px) {
  .u-credit14-small {
    margin: 50px -80px 0 auto;
  }
}/*# sourceMappingURL=app.css.map */