@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@keyframes slide-down-menu {
  from {
    transform: translateY(-40%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-up-menu {
  from {
    transform: translateY(40%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu-top {
  position: fixed;
  top: 20px;
  left: 40px;
  width: 50px;
  z-index: 9;
  animation: slide-down-menu 0.7s cubic-bezier(0.73, 0, 0.22, 0.99) calc(2.7s + var(--delay, 0s)) both;
}
@media (max-width: 767px) {
  .menu-top {
    top: 20px;
    left: 24px;
    width: 40px;
  }
}
.menu-top img {
  display: block;
  width: 100%;
}

.global-menu {
  display: grid;
  column-gap: 24px;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  animation: slide-down-menu 0.7s cubic-bezier(0.73, 0, 0.22, 0.99) calc(2.7s + var(--delay, 0s)) both;
}

.global-menu__list {
  display: grid;
  column-gap: 26px;
  grid-auto-flow: column;
  justify-content: end;
  align-items: center;
}

.global-menu__item {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.45;
  color: #000;
}

.global-menu__entry {
  display: grid;
  column-gap: 12px;
  grid-template-columns: auto auto;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
  color: #fff;
  padding: 17px 29px;
  background: linear-gradient(85deg, #000 66.83%, #94f1ee 100%);
  border-radius: 0 0 0 30px;
}
.global-menu__entry img {
  width: 21px;
  padding-bottom: 2px;
}
@media (hover: hover) {
  .global-menu__entry:hover img {
    animation: global-menu-entry 0.4s ease-in-out 0s both;
  }
}

@keyframes global-menu-entry {
  from, to {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20%);
  }
}
.lang-select {
  position: absolute;
  display: grid;
  column-gap: 8px;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
}
@media (min-width: 768px) {
  .lang-select {
    bottom: 0;
    right: 20px;
    transform: translateY(calc(100% + 20px));
  }
}
@media (max-width: 767px) {
  .lang-select {
    bottom: 26px;
    left: 24px;
    z-index: 2;
  }
}

.lang-select__item {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.45;
  color: #000;
  padding: 2px 4px;
}
@media (max-width: 767px) {
  .lang-select__item {
    font-size: 20px;
    padding: 2px 7px;
  }
}
.lang-select__item.current {
  background-color: #000;
  color: #fff;
}

.menu-button {
  --size: 60px;
  position: fixed;
  top: 0;
  right: 0;
  width: var(--size);
  height: var(--size);
  background-color: #000;
  border-radius: 0 0 0 25px;
  z-index: 9;
  animation: slide-down-menu 0.7s cubic-bezier(0.73, 0, 0.22, 0.99) calc(2.7s + var(--delay, 0s)) both;
}

.menu-button__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 18px;
  transform: translate(-40%, -50%);
  overflow: hidden;
}

.menu-button__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.2s ease-in-out 0s;
}
.menu-button__line:nth-child(1) {
  top: 0;
}
.menu-button__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-button__line:nth-child(3) {
  bottom: 0;
}

.menu-button.open .menu-button__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-button.open .menu-button__line:nth-child(2) {
  transform: translate(101%, -50%);
}
.menu-button.open .menu-button__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.menu-view {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient-primary);
  z-index: 8;
  visibility: hidden;
  opacity: 0;
  filter: blur(8px);
  transition: all 0.4s ease-in-out 0s;
}

.menu-view.open {
  visibility: visible;
  opacity: 1;
  filter: blur(0);
}

.menu-view__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 300px;
}

.menu-view__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: grid;
  row-gap: 24px;
  justify-items: center;
  align-content: center;
}

.menu-view__item {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.45;
  color: #000;
}

.fixed-menu-entry {
  position: fixed;
  bottom: 0;
  right: 0;
  display: grid;
  column-gap: 12px;
  grid-template-columns: auto auto;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
  color: #fff;
  padding: 17px 29px;
  background: linear-gradient(85deg, #000 66.83%, #94f1ee 100%);
  border-radius: 30px 0 0 0;
  z-index: 9;
  animation: slide-up-menu 0.7s cubic-bezier(0.73, 0, 0.22, 0.99) calc(2.7s + var(--delay, 0s)) both;
}
.fixed-menu-entry img {
  width: 21px;
  padding-bottom: 2px;
}

.kv {
  position: relative;
  width: 100%;
  height: 877px;
  background: var(--bg-gradient-primary);
  overflow: hidden;
}
@media (max-width: 767px) {
  .kv {
    height: 833px;
  }
}

.kv__video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255) 20% 80%, rgba(255, 255, 255, 0));
  animation: kv-video 1.2s cubic-bezier(0.73, 0, 0.22, 0.99) calc(1.5s + var(--delay, 0s)) both;
}
@media (min-width: 768px) {
  .kv__video {
    height: 75%;
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 767px) {
  .kv__video {
    aspect-ratio: 1;
    transform: translate(-50%, -85%);
  }
}
.kv__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .kv__video iframe {
    width: 100%;
    height: 200%;
  }
}
@media (max-width: 767px) {
  .kv__video iframe {
    height: 100%;
    aspect-ratio: 1980/1080;
  }
}

@keyframes kv-video {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(80%);
  }
}
.kv__title-wrapper {
  position: absolute;
  bottom: 138px;
  left: 40px;
}
@media (max-width: 767px) {
  .kv__title-wrapper {
    bottom: 200px;
    left: 10px;
  }
}

.kv__title {
  display: grid;
  row-gap: 14px;
  justify-items: start;
}
@media (max-width: 767px) {
  .kv__title {
    row-gap: 10px;
  }
}
.kv__title span {
  position: relative;
  display: block;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.1;
  color: #000;
  padding: 0 20px;
  background: linear-gradient(90deg, #c3fefc 0%, #fed6ff 50%, #d9d7ff 100%);
  animation: clip-kv-title 0.65s cubic-bezier(0.73, 0, 0.22, 0.99) both;
}
.kv__title span:nth-child(1) {
  animation-delay: calc(2.1s + var(--delay, 0s));
}
.kv__title span:nth-child(2) {
  animation-delay: calc(2.2s + var(--delay, 0s));
}
.kv__title span:nth-child(3) {
  animation-delay: calc(2.3s + var(--delay, 0s));
}
.kv__title span:nth-child(4) {
  animation-delay: calc(2.4s + var(--delay, 0s));
}
.kv__title span:nth-child(5) {
  animation-delay: calc(2.5s + var(--delay, 0s));
}
.kv__title span:nth-child(6) {
  animation-delay: calc(2.6s + var(--delay, 0s));
}
@media (max-width: 767px) {
  .kv__title span {
    font-size: 20px;
    padding: 0 6px;
  }
}
.kv__title span small {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(30%, -110%);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.6em;
  color: #000;
}
@media (max-width: 767px) {
  .kv__title span small {
    font-size: 10px;
    transform: translate(10%, -110%);
  }
}

@keyframes clip-kv-title {
  from {
    clip-path: polygon(0 -100%, 0 -100%, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 -100%, 100% -100%, 100% 100%, 0 100%);
  }
}
.kv__supportby {
  display: grid;
  column-gap: 20px;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 24px;
  animation: slide-kv-supportby 0.65s cubic-bezier(0.73, 0, 0.22, 0.99) calc(2.6s + var(--delay, 0s)) both;
}
@media (max-width: 767px) {
  .kv__supportby {
    margin-top: 16px;
  }
}
.kv__supportby::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, transparent 0 8px, #ccc 8px 16px);
}
.kv__supportby img {
  display: block;
  width: 168px;
}

@keyframes slide-kv-supportby {
  from {
    transform: translateX(-2%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
.scroll-down {
  fill: none;
  position: absolute;
}
@media (min-width: 768px) {
  .scroll-down {
    bottom: 90px;
    right: 40px;
    width: 12px;
  }
}
@media (max-width: 767px) {
  .scroll-down {
    bottom: 70px;
    left: 25px;
    width: 10px;
  }
}

.kv__obj-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: kv-obj-wrapper 1.5s linear calc(2.4s + var(--delay, 0s)) both;
}

@keyframes kv-obj-wrapper {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.kv__obj1 {
  position: absolute;
  right: 50%;
}
@media (min-width: 768px) {
  .kv__obj1 {
    top: -80px;
    width: 240px;
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .kv__obj1 {
    top: -57px;
    width: 162px;
    transform: translateX(50%);
  }
}

.kv__obj2 {
  position: absolute;
  left: 50%;
}
@media (min-width: 768px) {
  .kv__obj2 {
    bottom: 80px;
    width: 174px;
    transform: translateX(250%);
  }
}
@media (max-width: 767px) {
  .kv__obj2 {
    bottom: 68px;
    width: 105px;
    transform: translateX(-100%);
  }
}

.kv__obj3 {
  position: absolute;
  left: 50%;
  bottom: 0;
}
@media (min-width: 768px) {
  .kv__obj3 {
    width: 164px;
    transform: translateX(120%);
  }
}
@media (max-width: 767px) {
  .kv__obj3 {
    width: 100px;
    transform: translateX(40%);
  }
}

.kv__obj4 {
  position: absolute;
}
@media (min-width: 768px) {
  .kv__obj4 {
    top: 88px;
    left: 26px;
    width: 106px;
  }
}
@media (max-width: 767px) {
  .kv__obj4 {
    top: 65px;
    left: 15px;
    width: 65px;
  }
}

.kv__obj5 {
  position: absolute;
}
@media (min-width: 768px) {
  .kv__obj5 {
    top: 181px;
    right: -56px;
    width: 123px;
  }
}
@media (max-width: 767px) {
  .kv__obj5 {
    top: 65px;
    right: -22px;
    width: 57px;
  }
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(106deg, #cdfffd 0%, #ffe8e8 48.08%, #dfdbff 100%);
  z-index: 10;
  animation: clip-intro 0.65s cubic-bezier(0.73, 0, 0.22, 0.99) calc(1.4s + var(--delay, 0s)) both;
}

@keyframes clip-intro {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
}
.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  transform: translate(-50%, -50%);
  overflow: visible;
}
@media (max-width: 767px) {
  .intro-logo {
    width: 85%;
  }
}

.intro-logo__symbol-bg {
  transform-box: fill-box;
  transform-origin: center;
  transform: translateX(300%) scale(1.6);
  animation: scale-logo 0.7s cubic-bezier(0, 0.56, 0.22, 0.99) calc(0.4s + var(--delay, 0s)) both;
}

@keyframes scale-logo {
  from {
    opacity: 0;
  }
  1% {
    opacity: 0.1;
  }
  to {
    opacity: 0;
  }
  from {
    transform: translateX(300%) scale(1.6);
  }
  to {
    transform: translateX(300%) scale(4);
  }
}
.intro-logo__symbol {
  transform-box: fill-box;
  transform-origin: center;
  transform: translateX(300%) scale(1.6);
  animation: press-logo 0.45s cubic-bezier(0.73, 0, 0.22, 0.99) calc(0.1s + var(--delay, 0s)) both, move-logo 0.5s cubic-bezier(0.73, 0, 0.22, 0.99) calc(0.65s + var(--delay, 0s)) forwards;
}

@keyframes press-logo {
  from {
    transform: translateX(300%) scale(3);
    opacity: 0;
  }
  to {
    transform: translateX(300%) scale(1.6);
    opacity: 1;
  }
}
@keyframes move-logo {
  from {
    transform: translateX(300%) scale(1.6);
  }
  to {
    transform: translateX(0%) scale(1);
  }
}
.intro-logo__typo-bg,
.intro-logo__typo {
  animation: clip-typo 0.5s cubic-bezier(0.73, 0, 0.22, 0.99) both;
}

.intro-logo__typo-bg {
  animation-delay: calc(0.85s + var(--delay, 0s));
  opacity: 0.1;
}

.intro-logo__typo {
  animation-delay: calc(0.95s + var(--delay, 0s));
}

@keyframes clip-typo {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.promotion {
  position: relative;
  width: 100%;
}

.promotion__inner {
  position: relative;
  width: 100%;
  padding: 130px 0 220px;
}
@media (max-width: 767px) {
  .promotion__inner {
    padding: 120px 0 190px;
  }
}

.promotion__player {
  box-sizing: border-box;
  position: relative;
  width: calc(100% - 32px);
  max-width: 800px;
  aspect-ratio: 1980/1080;
  margin: 0 auto;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .promotion__player {
    margin-top: 30px;
  }
}
.promotion__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: solid 13px #fff;
  box-shadow: 0 8px 24px 0 rgba(165, 161, 255, 0.3);
}
@media (max-width: 767px) {
  .promotion__player iframe {
    border-width: 6px;
    border-radius: 12px;
    box-shadow: 0 5px 16px 0 rgba(165, 161, 255, 0.3);
  }
}
.promotion__player::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 300px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(195, 254, 252, 0.2) 0%, rgba(247, 192, 249, 0.2) 50%, rgba(188, 185, 254, 0.2) 100%), #fff;
}
@media (max-width: 767px) {
  .promotion__player::before {
    height: 130px;
  }
}

.promotion__player.animate-element--standby iframe {
  opacity: 0;
}

.promotion__player.animate-element--inview iframe {
  animation: promotion-player 1.2s cubic-bezier(0.04, 0.91, 0.51, 0.97) 0s forwards, fadeIn 0.6s ease-out 0s forwards;
}

@keyframes promotion-player {
  from {
    transform: translateY(-50%) scale(1.25) rotate(6deg);
  }
  to {
    transform: translate(0) scale(1) rotate(0deg);
  }
}
.promotion__sign {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 404px;
  transform: translate(40%, 100%);
}
@media (max-width: 767px) {
  .promotion__sign {
    width: 250px;
    transform: translate(4%, 100%);
  }
}

.promotion__bg {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 90%;
}

.promotion__obj1 {
  display: block;
  position: absolute;
}
@media (min-width: 768px) {
  .promotion__obj1 {
    top: 160px;
    left: 50%;
    width: 174px;
    transform: translateX(300%);
  }
}
@media (max-width: 767px) {
  .promotion__obj1 {
    bottom: 40px;
    right: 50%;
    width: 110px;
    transform: translateX(-60%);
  }
}

.promotion__obj2 {
  display: block;
  position: absolute;
  top: 200px;
  right: 50%;
  width: 82px;
  transform: translateX(-600%);
}

.promotion__obj3 {
  display: block;
  position: absolute;
}
@media (min-width: 768px) {
  .promotion__obj3 {
    bottom: 80px;
    left: 50%;
    width: 82px;
    transform: translateX(-600%);
  }
}
@media (max-width: 767px) {
  .promotion__obj3 {
    bottom: 40px;
    left: 50%;
    width: 70px;
    transform: translateX(60%);
  }
}

.about {
  position: relative;
  width: 100%;
  background: var(--bg-gradient-primary);
}
.about .description {
  margin: 50px auto 80px;
}
@media (max-width: 767px) {
  .about .description {
    margin: 30px auto 60px;
  }
}
.about .panel {
  margin: 50px 0;
}
@media (max-width: 767px) {
  .about .panel {
    margin: 30px 0;
  }
}

.about__inner {
  box-sizing: border-box;
  position: relative;
  width: calc(100% - 32px);
  max-width: 800px;
  margin: 0 auto;
  padding: 200px 0 180px;
}
@media (max-width: 767px) {
  .about__inner {
    padding: 100px 0 160px;
  }
}

.about__title {
  position: relative;
  display: grid;
  row-gap: 16px;
  justify-items: center;
  width: fit-content;
}
@media (min-width: 768px) {
  .about__title {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about__title {
    row-gap: 8px;
    justify-items: start;
  }
}
.about__title span {
  display: block;
  position: relative;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  padding: 0 22px;
  background: linear-gradient(90deg, #c3fefc 0%, #fed6ff 50%, #d9d7ff 100%);
  z-index: 1;
}
.about__title span:nth-child(2), .about__title span:nth-child(3) {
  font-size: 24px;
}
@media (max-width: 767px) {
  .about__title span {
    font-size: 20px;
    padding: 0 6px;
  }
  .about__title span:nth-child(2), .about__title span:nth-child(3) {
    font-size: 14px;
  }
}
.about__title::before, .about__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  aspect-ratio: 200/154;
  background: url("../img/about/symbol.webp") center/contain no-repeat;
}
@media (max-width: 767px) {
  .about__title::before, .about__title::after {
    width: 100px;
  }
}
.about__title::before {
  top: 0;
  left: 0;
  transform: translate(-70%, -30%);
}
@media (max-width: 767px) {
  .about__title::before {
    display: none;
  }
}
.about__title::after {
  bottom: 0;
  right: 0;
  transform: translate(70%, 30%);
}
@media (max-width: 767px) {
  .about__title::after {
    transform: translateX(70%);
  }
}

.about__title.animate-element--standby span {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.about__title.animate-element--inview span {
  animation: clip-about-title 0.65s cubic-bezier(0.73, 0, 0.22, 0.99) calc(var(--delay, 0s)) both;
}
.about__title.animate-element--inview span:nth-child(1) {
  --delay: 0s;
}
.about__title.animate-element--inview span:nth-child(2) {
  --delay: 0.1s;
}
.about__title.animate-element--inview span:nth-child(3) {
  --delay: 0.2s;
}

@keyframes clip-about-title {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.about__obj1 {
  display: block;
  position: absolute;
  top: 400px;
  right: 0;
  width: 174px;
  transform: translateX(140%);
}

.about__obj2 {
  display: block;
  position: absolute;
  top: 850px;
  left: 0;
  width: 246px;
  transform: translateX(-120%);
}

.about__obj3 {
  display: block;
  position: absolute;
  bottom: 240px;
  right: 0;
  width: 179px;
  transform: translateX(140%);
}

.about__leaf {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 164px;
  transform: translateX(-140%);
}

.why {
  position: relative;
  width: 100%;
}
.why .description {
  margin: 50px auto 80px;
}
@media (max-width: 767px) {
  .why .description {
    margin: 30px auto 60px;
  }
}
.why .description.bottom {
  line-height: 3;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .why .description.bottom {
    margin-top: 80px;
    margin-bottom: 0;
  }
}
.why .panel {
  margin: 50px 0;
}
@media (max-width: 767px) {
  .why .panel {
    margin: 30px 0;
  }
}
.why .panel p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .why .panel p {
    font-size: 13px;
  }
}
.why .panel p:first-of-type {
  margin-bottom: 1em;
}
.why .panel p:last-of-type {
  margin-top: 1em;
}

.why__inner {
  position: relative;
  width: calc(100% - 32px);
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 0 180px;
}
@media (max-width: 767px) {
  .why__inner {
    padding: 80px 0 160px;
  }
}

.why__obj1 {
  display: block;
  position: absolute;
  top: 382px;
  left: 0;
  width: 107px;
  transform: translateX(-180%);
}

.why__obj2 {
  display: block;
  position: absolute;
  top: 630px;
  right: 0;
  width: 107px;
  transform: translateX(180%) rotate(180deg);
}

.why__obj3 {
  display: block;
  position: absolute;
  top: 1010px;
  right: 0;
  width: 113px;
  transform: translateX(180%);
}

.why__obj4 {
  display: block;
  position: absolute;
  top: 1100px;
  left: 0;
  width: 113px;
  transform: translateX(-280%);
}

.why__obj5 {
  display: block;
  position: absolute;
  bottom: 340px;
  right: 0;
  width: 142px;
  transform: translateX(240%);
}

.why__obj6 {
  display: block;
  position: absolute;
  bottom: 260px;
  left: 0;
  width: 101px;
  transform: translateX(-240%);
}

.image {
  position: relative;
  width: 100%;
  z-index: 1;
}

.image__inner {
  position: relative;
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .image__inner {
    padding: 80px 0;
  }
}

.image__obj1 {
  display: block;
  position: absolute;
  top: 250px;
  left: 50%;
  width: 107px;
  transform: translateX(500%);
}

.image__obj2 {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 107px;
  transform: translate(500%, 50%);
}

.image__obj3 {
  display: block;
  position: absolute;
  top: 140px;
  right: 50%;
  width: 107px;
  transform: translateX(-500%);
}

.image__obj4 {
  display: block;
  position: absolute;
  bottom: 80px;
  right: 50%;
  width: 90px;
  transform: translateX(-600%);
}

.manga-list {
  display: grid;
  width: 100%;
}
@media (min-width: 768px) {
  .manga-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .manga-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 50px;
  }
}

.manga-item {
  display: grid;
  row-gap: 16px;
}
@media (max-width: 767px) {
  .manga-item {
    row-gap: 8px;
  }
}

.manga-item__image {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-radius: 16px;
  border: solid 1px #ccc;
  overflow: hidden;
}
@media (max-width: 767px) {
  .manga-item__image {
    border-radius: 8px;
  }
}
.manga-item__image img {
  display: block;
  width: 100%;
}

.manga-item__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.45;
  color: #000;
}
@media (max-width: 767px) {
  .manga-item__title {
    font-size: 12px;
  }
}

.nc {
  position: relative;
  width: 100%;
  background-color: #f9f9f9;
  padding: 120px 0 140px;
  color: #000;
  overflow: hidden;
}
@media (max-width: 767px) {
  .nc {
    padding: 90px 0;
  }
}

.nc__description {
  position: relative;
  width: fit-content;
  margin: 50px auto 80px;
}
@media (max-width: 767px) {
  .nc__description {
    margin: 30px auto 40px;
  }
}
.nc__description p {
  position: relative;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .nc__description p {
    font-size: 14px;
  }
}
.nc__description::before, .nc__description::after {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  aspect-ratio: 200/154;
  background: url("../img/nakayoku-creators/symbol.svg") center/contain no-repeat;
}
@media (max-width: 767px) {
  .nc__description::before, .nc__description::after {
    width: 100px;
  }
}
.nc__description::before {
  top: 0;
  left: 0;
  transform: translate(-40%, -30%);
}
@media (max-width: 767px) {
  .nc__description::before {
    transform: translateX(-70%);
  }
}
.nc__description::after {
  bottom: 0;
  right: 0;
  transform: translate(40%, 30%);
}
@media (max-width: 767px) {
  .nc__description::after {
    transform: translateX(70%);
  }
}

.nc__inner {
  display: grid;
  width: calc(100% - 48px);
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .nc__inner {
    column-gap: 64px;
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .nc__inner {
    row-gap: 54px;
    justify-items: center;
  }
}
.nc__inner hr {
  border: none;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, transparent 0 10px, #ccc 10px 20px);
}

.nc__icon {
  position: relative;
  aspect-ratio: 300/420;
  border: solid 1px #000;
  border-radius: 999px 999px 20px 20px;
  width: 300px;
}
@media (max-width: 767px) {
  .nc__icon {
    width: 250px;
  }
}
.nc__icon img {
  display: block;
  width: 100%;
  border-radius: inherit;
}
.nc__icon::before, .nc__icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  aspect-ratio: 1;
  width: 50px;
  background: url("../img/nakayoku-creators/kira.svg") center/contain no-repeat;
}
@media (max-width: 767px) {
  .nc__icon::before, .nc__icon::after {
    width: 40px;
  }
}
.nc__icon::before {
  top: 0;
  transform: translate(-50%, -50%);
}
.nc__icon::after {
  bottom: 0;
  transform: translate(-50%, 50%);
}

.nc__profile {
  display: grid;
  row-gap: 40px;
  width: 100%;
}

.nc__name {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 4px;
  justify-content: start;
  align-items: end;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
}
.nc__name small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5em;
}

.nc__message {
  font-size: 14px;
  line-height: 1.7;
}

.nc__link {
  display: block;
  position: relative;
  width: fit-content;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  color: #fff;
  padding: 17px 40px;
  border-radius: 999px;
  background-color: #000;
  transition: transform 0.2s ease-in-out 0s;
}
@media (hover: hover) {
  .nc__link:hover {
    transform: scale(1.03);
  }
}
.nc__link::before, .nc__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
}
.nc__link::before {
  width: 16px;
  height: 3px;
  background-color: #fff;
  transform: translateY(-50%);
}
.nc__link::after {
  width: 32px;
  aspect-ratio: 32/13;
  transform: translate(92%, -88%);
  background: url("../img/nakayoku-creators/arrow.svg") center/contain no-repeat;
}

.footer {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 130px 0 40px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer {
    padding: 120px 0 80px;
  }
}

.footer__inner {
  display: grid;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    row-gap: 70px;
    justify-items: center;
    margin-bottom: 120px;
  }
}
.footer__inner img {
  display: block;
  width: 300px;
}
@media (max-width: 767px) {
  .footer__inner img {
    width: 200px;
  }
}
.footer__inner hr {
  border: none;
  background-color: #ccc;
}
@media (min-width: 768px) {
  .footer__inner hr {
    width: 1px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .footer__inner hr {
    width: 100px;
    height: 1px;
  }
}

.copyright {
  font-size: 14px;
  line-height: 2.1;
  text-align: center;
  color: #000;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 12px;
  }
}

.top-button {
  display: block;
  position: relative;
  width: fit-content;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  color: #fff;
  padding: 17px 40px;
  margin: 0 auto 64px;
  border-radius: 999px;
  background-color: #000;
  transition: transform 0.2s ease-in-out 0s;
}
@media (max-width: 767px) {
  .top-button {
    margin-bottom: 40px;
  }
}
@media (hover: hover) {
  .top-button:hover {
    transform: scale(1.03);
  }
}

.entry-button-wrapper {
  width: fit-content;
  margin: 0 auto;
}

.entry-button {
  display: block;
  position: relative;
  width: fit-content;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  color: #fff;
  padding: 16px 46px;
  border-radius: 999px;
  background: linear-gradient(85deg, #000 66.83%, #94f1ee 100%);
  transition: transform 0.2s ease-in-out 0s;
}
@media (hover: hover) {
  .entry-button:hover {
    transform: scale(1.03);
  }
}
.entry-button::before, .entry-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
}
.entry-button::before {
  width: 16px;
  height: 3px;
  background-color: #fff;
  transform: translateY(-50%);
}
.entry-button::after {
  width: 32px;
  aspect-ratio: 32/13;
  transform: translate(92%, -88%);
  background: url("../img/nakayoku-creators/arrow.svg") center/contain no-repeat;
}

.title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.title__fragments {
  position: absolute;
  inset: 0;
}

.title__fragment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15%;
}
.title__fragment:nth-child(1) {
  --rotate: 20deg;
}
.title__fragment:nth-child(2) {
  --rotate: 140deg;
}
.title__fragment:nth-child(3) {
  --rotate: 260deg;
}

.title.animate-element--standby .title__fragment {
  opacity: 0;
}

.title.animate-element--inview .title__fragment {
  animation: fragment-in-out 1s cubic-bezier(0.73, 0, 0.22, 0.99) 0s both;
}

@keyframes fragment-in-out {
  from, 70% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
  from {
    transform: rotate(var(--rotate, 0deg)) translateY(0%) scale(0) translate(-50%, -50%);
  }
  to {
    transform: rotate(var(--rotate, 0deg)) translateY(-600%) scale(1) translate(-50%, -50%);
  }
}
.title__balls {
  position: absolute;
  inset: 0;
}

.title.loop-animate.inview .title__balls {
  animation: rotate 65s linear 0s both;
}

.title__ball {
  --size: 12px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .title__ball {
    --size: 8px;
  }
}
.title__ball:nth-child(1) {
  background-color: #f1f194;
  transform: translate(-900%, -900%);
}
.title__ball:nth-child(2) {
  background-color: #bcb9fe;
  transform: translate(800%, -900%);
}
.title__ball:nth-child(3) {
  background-color: #94f1ee;
  transform: translate(-900%, 800%);
}
.title__ball:nth-child(4) {
  background-color: #d7f194;
  transform: translate(800%, 800%);
}

.title__line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -55%);
  width: 1029px;
}
@media (max-width: 767px) {
  .title__line {
    width: 500px;
  }
}

.title__bg {
  position: relative;
  width: 200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .title__bg {
    width: 160px;
  }
}
.title__bg img {
  display: block;
  width: 100%;
}

.title.loop-animate.inview .title__bg img {
  animation: rotate 30s linear 0s both;
}

.title.animate-element--standby .title__bg {
  opacity: 0;
}

.title.animate-element--inview .title__bg {
  animation: title-bg-in-out 0.8s cubic-bezier(0.73, 0, 0.22, 0.99) 0.15s both;
}

@keyframes title-bg-in-out {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  from {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
.title__inner {
  display: grid;
  row-gap: 8px;
  justify-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .title__inner {
    row-gap: 4px;
  }
}

.title__main {
  --size: 24px;
  display: grid;
  column-gap: 16px;
  grid-template-columns: auto auto auto;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .title__main {
    --size: 16px;
    column-gap: 4px;
    font-size: 22px;
  }
}
.title__main::before, .title__main::after {
  content: "";
  display: block;
  position: relative;
  width: var(--size);
  height: var(--size);
  background: url("../img/title/comma.svg") center/contain no-repeat;
}
.title__main::after {
  align-self: end;
  transform: scaleY(-1);
}

.title.animate-element--standby .title__main {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.title.animate-element--inview .title__main {
  animation: clip-title 0.65s cubic-bezier(0.73, 0, 0.22, 0.99) 0.3s both;
}

@keyframes clip-title {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.title__sub {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: 0.5em;
}
@media (max-width: 767px) {
  .title__sub {
    font-size: 10px;
  }
}

.title.animate-element--standby .title__sub {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.title.animate-element--inview .title__sub {
  animation: clip-title 0.65s cubic-bezier(0.73, 0, 0.22, 0.99) 0.4s both;
}

.title__stars {
  --size: 20px;
  display: grid;
  column-gap: 30px;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .title__stars {
    --size: 16px;
    column-gap: 20px;
    margin-top: 20px;
  }
}

.title__star {
  width: var(--size);
  height: var(--size);
  background: url("../img/title/kira.svg") center/contain no-repeat;
}

.scroll-animate-y.animate-element--standby {
  opacity: 0;
}
@media (min-width: 768px) {
  .scroll-animate-y.animate-element--standby {
    --y: 24px;
  }
}
@media (max-width: 767px) {
  .scroll-animate-y.animate-element--standby {
    --y: 12px;
  }
}

.scroll-animate-y.animate-element--inview {
  animation: scroll-animate-y 0.7s cubic-bezier(0, 0.44, 0.17, 1) 0s both, fadeIn 0.5s ease-out 0s both;
}

.scroll-animate-x.animate-element--standby {
  opacity: 0;
}
@media (min-width: 768px) {
  .scroll-animate-x.animate-element--standby {
    --x: -24px;
  }
}
@media (max-width: 767px) {
  .scroll-animate-x.animate-element--standby {
    --x: -12px;
  }
}

.scroll-animate-x.animate-element--inview {
  animation: scroll-animate-x 0.7s cubic-bezier(0, 0.44, 0.17, 1) 0s both, fadeIn 0.5s ease-out 0s both;
}

@keyframes scroll-animate-x {
  from {
    transform: translateX(var(--x));
  }
  to {
    transform: translateX(0);
  }
}
@keyframes scroll-animate-y {
  from {
    transform: translateY(var(--y));
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sign {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 404px;
  transform: translate(40%, 100%);
}
@media (max-width: 767px) {
  .sign {
    width: 250px;
    transform: translate(4%, 100%);
  }
}

.sign-body {
  fill: #000;
}

.sign-line {
  fill: none;
  stroke: #fff;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sign-line:nth-child(1) {
  --duration: 0.3s;
  --delay: 0s;
  --stroke-length: 241px;
}
.sign-line:nth-child(2) {
  --duration: 0.1s;
  --delay: 0.2s;
  --stroke-length: 126.8px;
}
.sign-line:nth-child(3) {
  --duration: 0.1s;
  --delay: 0.3s;
  --stroke-length: 185.8px;
}
.sign-line:nth-child(4) {
  --duration: 0.1s;
  --delay: 0.4s;
  --stroke-length: 107px;
}
.sign-line:nth-child(5) {
  --duration: 0.2s;
  --delay: 0.5s;
  --stroke-length: 210px;
}
.sign-line:nth-child(6) {
  --duration: 0.2s;
  --delay: 0.7s;
  --stroke-length: 144px;
}
.sign-line:nth-child(7) {
  --duration: 0.1s;
  --delay: 0.9s;
  --stroke-length: 68px;
}
.sign-line:nth-child(8) {
  --duration: 0.2s;
  --delay: 1s;
  --stroke-length: 131px;
}
.sign-line:nth-child(9) {
  --duration: 0.25s;
  --delay: 1.2s;
  --stroke-length: 413px;
}

.sign.animate-element--standby .sign-line {
  opacity: 0;
}

.sign.animate-element--inview .sign-line {
  animation: drawLine var(--duration, 0s) ease-in-out var(--delay, 0s) both;
}

.sign2 {
  display: block;
  position: absolute;
  bottom: 125px;
  right: 36px;
  width: 404px;
}
@media (max-width: 767px) {
  .sign2 {
    right: 0;
    bottom: 45px;
    width: 250px;
  }
}

.sign2-body {
  fill: #000;
}

.sign2-line {
  fill: none;
  stroke: #fff;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sign2-line:nth-child(1) {
  --duration: 0.3s;
  --delay: 0s;
  --stroke-length: 241px;
}
.sign2-line:nth-child(2) {
  --duration: 0.1s;
  --delay: 0.2s;
  --stroke-length: 126.8px;
}
.sign2-line:nth-child(3) {
  --duration: 0.1s;
  --delay: 0.3s;
  --stroke-length: 185.8px;
}
.sign2-line:nth-child(4) {
  --duration: 0.1s;
  --delay: 0.4s;
  --stroke-length: 107px;
}
.sign2-line:nth-child(5) {
  --duration: 0.2s;
  --delay: 0.5s;
  --stroke-length: 210px;
}
.sign2-line:nth-child(6) {
  --duration: 0.2s;
  --delay: 0.7s;
  --stroke-length: 144px;
}
.sign2-line:nth-child(7) {
  --duration: 0.1s;
  --delay: 0.9s;
  --stroke-length: 68px;
}
.sign2-line:nth-child(8) {
  --duration: 0.2s;
  --delay: 1s;
  --stroke-length: 131px;
}
.sign2-line:nth-child(9) {
  --duration: 0.25s;
  --delay: 1.2s;
  --stroke-length: 413px;
}

.sign2.animate-element--standby .sign2-line {
  opacity: 0;
}

.sign2.animate-element--inview .sign2-line {
  animation: drawLine var(--duration, 0s) ease-in-out var(--delay, 0s) both;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes drawLine {
  from {
    opacity: 0;
  }
  10%, to {
    opacity: 1;
  }
  from {
    stroke-dasharray: 0 var(--stroke-length);
  }
  to {
    stroke-dasharray: var(--stroke-length) var(--stroke-length);
  }
}
:root {
  --delay: 0.1s;
  --bg-gradient-primary: linear-gradient(
    106deg,
    #eefffe 0%,
    #fff 48.08%,
    #efedff 100%
  );
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.45;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.description {
  letter-spacing: 0.2em;
  line-height: 2;
  color: #000;
}
@media (min-width: 768px) {
  .description {
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .description {
    font-size: 14px;
  }
}

.panel.yellow {
  background: linear-gradient(90deg, rgba(203, 242, 135, 0.2) 0%, rgba(255, 247, 203, 0.2) 49.04%, rgba(254, 198, 152, 0.2) 100%), #fff;
}

.panel {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  row-gap: 10px;
  padding: 32px;
  border-radius: 20px;
  color: #000;
  background: linear-gradient(100deg, rgba(195, 254, 252, 0.5) 0%, rgba(254, 214, 255, 0.5) 50%, rgba(217, 215, 255, 0.5) 100%), #fff;
}
@media (max-width: 767px) {
  .panel {
    padding: 24px 16px;
    border-radius: 10px;
  }
}
.panel h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .panel h3 {
    font-size: 18px;
  }
}
.panel h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .panel h4 {
    font-size: 14px;
  }
}
.panel p {
  font-size: 20px;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .panel p {
    font-size: 14px;
  }
}
.panel small {
  font-size: 14px;
  line-height: 1.45;
  color: #666;
}
@media (max-width: 767px) {
  .panel small {
    font-size: 11px;
  }
}
.panel ul {
  padding-left: 1.2em;
  list-style-type: disc;
}
.panel ul li {
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 0.2em;
}
@media (max-width: 767px) {
  .panel ul li {
    font-size: 14px;
  }
}
.panel ul.table {
  display: grid;
  row-gap: 10px;
  margin-top: 10px;
  padding-left: 0;
}
@media (max-width: 767px) {
  .panel ul.table {
    margin-top: 4px;
    row-gap: 8px;
  }
}
.panel ul.table li {
  display: grid;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .panel ul.table li {
    grid-template-columns: 150px 1fr;
    column-gap: 8px;
    align-items: start;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .panel ul.table li {
    font-size: 14px;
  }
}

.wall {
  position: absolute;
  left: 0;
  width: 100%;
  height: 119px;
  background: url("../img/section/primary2.webp") center/auto 100% repeat-x;
  z-index: 2;
}
@media (max-width: 767px) {
  .wall {
    height: 54px;
  }
}
.wall.yellow {
  background-image: url("../img/section/secondary2.webp");
}
.wall.top {
  top: 0;
  transform: scaleY(-1);
}
.wall.bottom {
  bottom: 0;
}

/*# sourceMappingURL=index.css.map */
