@charset "UTF-8";
:root {
  --main-font: "aktiv-grotesk", "Helvetica Neue", "Arial", sans-serif;
  --jp-font: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--jp-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0C021D;
}

.wrapper {
  width: 100%;
  background: #0C021D;
  color: #fff;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
}

.contentsWrapper {
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  padding-top: var(--headerH);
}
@media screen and (max-width: 767px) {
  .contentsWrapper {
    padding: var(--headerH) 5.3333333333vw 0;
  }
}

.headerBlock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: #0C021D;
}
.headerBlock.is-dim {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .headerBlock .titleBlock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3.125vw 6.25vw 2.34375vw;
  }
}
@media screen and (max-width: 767px) {
  .headerBlock .titleBlock {
    padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw;
    position: relative;
  }
}
.headerBlock .titleBlock__logo {
  width: 6.25vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .headerBlock .titleBlock__logo {
    width: 13.3333333333vw;
    position: absolute;
    top: 10.6666666667vw;
    left: 5.3333333333vw;
  }
}
.headerBlock .titleBlock__title {
  width: 37.890625vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .headerBlock .titleBlock__title {
    width: 100%;
  }
}

.mainBlock {
  position: relative;
  max-width: 580px;
  width: 90%;
  margin: 0 auto 7.8125vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mainBlock {
    width: 100%;
    margin: 0 auto 17.0666666667vw;
  }
}
.mainBlock .listWrap > li {
  padding-bottom: 9.375vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mainBlock .listWrap > li {
    padding-bottom: 21.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .mainBlock .listWrap > li:first-child {
    padding-top: 5.3333333333vw;
  }
}
.mainBlock .listWrap img {
  display: block;
  padding-bottom: 1.25vw;
}
@media screen and (max-width: 767px) {
  .mainBlock .listWrap img {
    padding-bottom: 4.2666666667vw;
  }
}
.mainBlock .itemCredit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mainBlock .itemCredit li {
  text-align: right;
  width: 100%;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .mainBlock .itemCredit li {
    font-size: min(11px, 2.9333333333vw);
  }
}
.mainBlock .itemCredit li + li {
  padding-top: 0.625vw;
}
@media screen and (max-width: 767px) {
  .mainBlock .itemCredit li + li {
    padding-top: 2.1333333333vw;
  }
}
.mainBlock .itemCredit__detail {
  margin-right: 0.5em;
}
.mainBlock .itemCredit__date {
  font-family: var(--jp-font);
  font-size: 10px;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .mainBlock .itemCredit__date {
    font-size: min(10px, 2.6666666667vw);
  }
}
.mainBlock .itemCredit a {
  color: #fff;
  text-decoration: underline;
  margin-left: 0.625vw;
}
@media screen and (max-width: 767px) {
  .mainBlock .itemCredit a {
    margin-left: 2.1333333333vw;
  }
}
.mainBlock .itemCredit .item-d-none {
  display: none;
}
.mainBlock .itemCredit li > div {
  display: inline;
}

.infoWrapper {
  background: #fff;
  position: relative;
  z-index: 3;
  width: 100%;
}

.infoBlock {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  padding: 9.375vw 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5vw;
  font-family: var(--jp-font);
  font-weight: 300;
  text-align: center;
  color: #0C021D;
}
@media screen and (max-width: 767px) {
  .infoBlock {
    width: calc(100% - 10.6666666667vw);
    padding: 21.3333333333vw 0;
    gap: 6.4vw;
  }
}
.infoBlock__title {
  width: 24.84375vw;
}
@media screen and (max-width: 767px) {
  .infoBlock__title {
    width: 74.6666666667vw;
  }
}
.infoBlock__image {
  width: 100%;
}
.infoBlock__text {
  line-height: 170%;
  letter-spacing: 0.055em;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .infoBlock__text {
    font-size: min(11px, 2.9333333333vw);
  }
}
.infoBlock__btn a {
  position: relative;
  display: block;
  background: #0C021D;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 1.25vw 0;
  font-size: 12px;
  width: 25vw;
  margin-bottom: 3.90625vw;
}
@media screen and (max-width: 767px) {
  .infoBlock__btn a {
    font-size: min(12px, 3.2vw);
    width: 74.6666666667vw;
    padding: 4.2666666667vw 0;
    margin-bottom: 10.6666666667vw;
  }
}
.infoBlock__btn a::before {
  content: "";
  position: absolute;
  inset: 0.390625vw;
  border: 1px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .infoBlock__btn a::before {
    inset: 1.3333333333vw;
  }
}
@media (hover: hover) {
  .infoBlock__btn a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.9;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .infoBlock__btn a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.9;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .infoBlock__btn a:where(:any-link, :enabled, summary):hover {
    opacity: 0.9;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
.infoBlock__news {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--main-font);
}
@media screen and (max-width: 767px) {
  .infoBlock__news {
    font-size: min(12px, 3.2vw);
    padding: 0 4vw;
  }
}
.infoBlock__news h3 {
  padding-bottom: 0.72em;
}
.infoBlock__news img {
  margin: 0 auto;
  width: 100%;
}
.infoBlock__news a {
  display: block;
}
@media (hover: hover) {
  .infoBlock__news a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.9;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .infoBlock__news a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.9;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .infoBlock__news a:where(:any-link, :enabled, summary):hover {
    opacity: 0.9;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}

.footerBlock {
  position: relative;
}
.footerBlock .creditArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125vw;
  padding: 9.375vw 0;
  font-weight: 300;
  font-family: var(--main-font);
}
@media screen and (max-width: 767px) {
  .footerBlock .creditArea {
    padding: 21.3333333333vw 0;
    gap: 8.5333333333vw;
  }
}
.footerBlock .creditArea__logo {
  width: 6.71875vw;
}
@media screen and (max-width: 767px) {
  .footerBlock .creditArea__logo {
    width: 22.9333333333vw;
  }
}
.footerBlock .creditArea__logo svg {
  width: 100%;
  height: auto;
}
.footerBlock .creditArea__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375vw;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footerBlock .creditArea__link {
    font-size: min(12px, 3.2vw);
    gap: 3.2vw;
  }
}
.footerBlock .creditArea__link a {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .footerBlock .creditArea__link a:where(:-webkit-any-link, :enabled, summary):hover {
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .footerBlock .creditArea__link a:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .footerBlock .creditArea__link a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.footerBlock__copy {
  font-size: 9px;
  text-align: center;
  padding-bottom: 1.5625vw;
}
@media screen and (max-width: 767px) {
  .footerBlock__copy {
    font-size: min(9px, 2.4vw);
    padding-bottom: 5.3333333333vw;
  }
}

.js-starrySky {
  position: relative;
  z-index: 0;
  width: 100%;
}
.js-starrySky__inner {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.js-starrySky .star {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.9;
  -webkit-animation: twinkle linear infinite;
          animation: twinkle linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  will-change: transform, opacity;
  z-index: 0;
}
@-webkit-keyframes twinkle {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0.4;
  }
}
@keyframes twinkle {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0.4;
  }
}

#titleStars {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--headerH);
  overflow: hidden;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.fadeIn.is-active {
  opacity: 1;
}

.stickyArea {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--headerH) + 10%);
  z-index: 1;
  margin-bottom: -100vh;
}
@media screen and (max-width: 767px) {
  .stickyArea {
    top: calc(var(--headerH) + 20dvh);
  }
}
.stickyArea__inner {
  font-size: 10px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .stickyArea__inner {
    font-size: min(10px, 2.6666666667vw);
  }
}
.stickyArea__inner li + li {
  margin-top: 0.625vw;
}
@media screen and (max-width: 767px) {
  .stickyArea__inner li + li {
    margin-top: 2.1333333333vw;
  }
}
.stickyArea.is-dim {
  opacity: 0;
  pointer-events: none;
}

.infoWrapper {
  position: relative;
  margin-top: 150vh;
}/*# sourceMappingURL=style.css.map */