@charset "UTF-8";
/* ---- reset ----- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html,
body,
main,
header,
section,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  color: #333;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: #333;
  display: block;
  text-decoration: none;
  transition: all ease 0.5s;
}

p {
  font-size: 0.875rem;
  line-height: 1.8;
}

button {
  transition: all ease 0.5s;
}

img {
  width: 100%;
  pointer-events: none;
}

main {
  display: block;
}

@media screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.7;
  }
  p {
    font-size: 1rem;
  }
}
/* ---- reset end ----- */
/* ----- keyframes ----- */
@keyframes scroll-line {
  0% {
    height: 0;
  }
  100% {
    height: 50%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ----- keyframes end ----- */
main {
  min-height: 200vh;
  min-height: 200dvh;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.dark {
  position: relative;
  z-index: 3;
  transform: translateZ(0);
}

.scroll {
  position: fixed;
  bottom: 10px;
  right: 0;
  width: auto;
  height: 20vh;
  overflow: hidden;
  z-index: 999;
  transform: translateZ(0);
  will-change: transform;
}
.scroll p {
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}
.scroll .line {
  width: 1px;
  height: 0;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 49%;
  animation: scroll-line ease 1s infinite;
}

.section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.section p {
  font-size: 6.2vw;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin: 0 0 8vh;
  line-height: 2;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease, transform 2s ease;
}
.section p.is-show {
  opacity: 1;
  transform: translateY(0);
}

.light {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 0;
}
.light.is-show {
  display: flex;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: fadein ease 2s forwards;
}
.light.is-show .inner {
  display: flex;
}
.light.is-show .content {
  animation: fadein ease 1s 2s forwards;
}
.light.is-show .disc {
  animation: fadein ease 2s 3.5s forwards;
}
.light.is-out {
  animation: fadeout ease 1s forwards;
}
.light .inner {
  display: none;
  margin: 0 auto;
  overflow: hidden;
  width: 90%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 6.25rem 0;
}
.light .content {
  opacity: 0;
  width: 100%;
}
.light .content h1 {
  max-width: 450px;
  width: 80%;
  margin: 0 auto;
}
.light .text {
  text-align: center;
  font-family: "Cormorant Infant", serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.disc {
  margin: 3.75rem auto 0;
  max-width: 900px;
  opacity: 0;
  width: 100%;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 2.5rem 1rem;
  overflow-y: scroll;
  height: 25vh;
  background-color: rgba(255, 255, 255, 0.2);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge旧 */
}
.disc::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}
.disc p {
  width: 90%;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .section p {
    font-size: 1.875rem;
    margin: 0;
  }
  .light .inner {
    margin: 0 auto 5vh;
  }
  .disc {
    height: auto;
    overflow-y: inherit;
  }
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .scroll {
    right: 1.25rem;
  }
  .light .inner {
    margin: 0 auto 1.875rem;
  }
  .light .inner h1 {
    width: 450px;
    width: 100%;
  }
  .light .inner .text {
    font-size: 1.875rem;
  }
}/*# sourceMappingURL=style.css.map */