@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Holtwood+One+SC&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}
@media screen and (min-width: 1201x) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 16px;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: clamp(14px, 2.1vw, 16px);
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 15px;
    font-size: 3.623vw;
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #FFF;
  background-color: #000;
}

b, strong, .fw-bold {
  font-weight: 700;
}

ul, ol {
  list-style: none;
}

p, ul, ol, table, dl {
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  color: #000;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.pc-none,
.for-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .for-mobile {
    display: block;
  }
}
/*------------------------
  layout
------------------------*/
.ly-container {
  padding: 7.5rem 0 10rem;
}
.ly-container.top {
  padding-top: 0;
}
.ly-container.bottom {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .ly-container {
    padding: 3.75rem 0;
  }
}

.ly-wrapper {
  margin: 0 auto;
  max-width: calc(1440px + 7.5rem);
  width: 100%;
  padding: 0 3.75rem;
}
.ly-wrapper.sm {
  max-width: calc(1000px + 12.5rem);
}
@media screen and (max-width: 768px) {
  .ly-wrapper {
    padding: 0 1.875rem;
  }
}

.ly-content {
  display: grid;
  grid-template-columns: 70% 25%;
  justify-content: space-between;
  align-items: flex-start;
  max-width: calc(1440px + 12.5rem);
  padding: 0 6.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ly-content {
    grid-template-columns: 1fr;
    padding: 0 1.5625rem;
  }
}
.ly-content.reverse {
  grid-template-columns: 25% 70%;
}
@media screen and (max-width: 768px) {
  .ly-content.reverse {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.ly-content .sidebar {
  position: sticky;
  top: 4.625rem;
}
@media screen and (max-width: 768px) {
  .ly-content .sidebar {
    width: 100%;
    top: 0;
  }
}

.ly-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .ly-flex {
    flex-wrap: wrap;
  }
}

.ly-grid {
  display: grid;
}

.col2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .col2 {
    width: 100%;
  }
}

.col3 {
  width: 33.333%;
}
@media screen and (max-width: 768px) {
  .col3 {
    width: 100%;
  }
}

.col4 {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .col4 {
    width: 50%;
  }
}

/*------------------------
  heading
------------------------*/
.sec-ttl {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 3.75rem;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sec-ttl {
    font-size: 2.625rem;
  }
}
.sec-ttl small {
  font-size: 2.375rem;
}
@media screen and (max-width: 768px) {
  .sec-ttl small {
    font-size: 2rem;
  }
}
.sec-ttl .large {
  font-size: 4.375rem;
  margin-left: -0.1em;
}
@media screen and (max-width: 768px) {
  .sec-ttl .large {
    font-size: 3.75rem;
  }
}

/*------------------------
  kv
------------------------*/
.kv {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  min-height: 64rem;
  background: url(../images/kv_bg.svg) no-repeat center/cover;
  background-attachment: fixed;
  padding: 5.625rem 0 0;
}
@media screen and (max-width: 1024px) {
  .kv {
    height: auto;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    padding: 3.75rem 0 0;
  }
}
.kv h1 {
  padding: 0 3.75rem;
}
.kv h1 img {
  display: block;
  margin: 0 auto;
  width: 28.4375rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .kv h1 img {
    width: 16.25rem;
  }
}
.kv h1 img + img {
  margin: 3.125rem auto;
  width: 47.8125rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .kv h1 img + img {
    margin: 1.875rem auto;
    width: 25rem;
  }
}
.kv p {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .kv p {
    font-size: 1.25rem;
  }
}
.kv p + p {
  font-size: 2.125rem;
}
@media screen and (max-width: 768px) {
  .kv p + p {
    font-size: 1.4375rem;
  }
}
.kv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  margin: 6.875rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .kv__btn {
    gap: 1.25rem;
    margin: 2.5rem 0 3.75rem;
  }
}
.kv__btn img {
  width: auto;
  height: 5rem;
}
@media screen and (max-width: 768px) {
  .kv__btn img {
    height: 3.125rem;
  }
}
.kv .splide {
  margin-top: auto;
  position: relative;
  z-index: 10;
}
.kv .splide__slide {
  padding: 0 1.875rem;
}
@media screen and (max-width: 768px) {
  .kv .splide__slide {
    padding: 0 0.9375rem;
  }
}
.kv .splide__slide img {
  transform: scale(0.5);
  transition: 0.5s;
}
.kv .splide__slide.is-active img {
  transform: scale(1);
  z-index: 1;
}

/*------------------------
  utilities
------------------------*/
.is-relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-10 {
  margin-top: 0.625rem !important;
}

.en {
  font-family: "Holtwood One SC", serif;
}

.dela {
  font-family: "Dela Gothic One", sans-serif;
}

/*------------------------
  about
------------------------*/
.about {
  background: #FF60E1 url(../images/bg_border_pink.svg) repeat center;
  position: relative;
  margin-top: -1.875rem;
}
.about .sec-ttl {
  position: relative;
}
.about__phrase {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  color: #FF4BDD;
  font-size: 22.25rem;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .about__phrase {
    top: -0.3em;
    font-size: 12.75rem;
  }
}
@media screen and (max-width: 576px) {
  .about__phrase {
    font-size: 8.75rem;
  }
}
.about__phrase small {
  font-size: 16rem;
}
@media screen and (max-width: 768px) {
  .about__phrase small {
    font-size: 8.75rem;
  }
}
@media screen and (max-width: 576px) {
  .about__phrase small {
    font-size: 5rem;
  }
}
.about__lead {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1.875rem 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__lead {
    font-size: 1.375rem;
    margin: 0.625rem 0 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .about picture {
    margin-left: -1.875rem;
    margin-right: -1.875rem;
    display: block;
  }
}
.about img {
  position: relative;
}
.about__desc {
  margin-top: -9.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__desc {
    margin-top: -6.25rem;
  }
}
@media screen and (max-width: 576px) {
  .about__desc {
    margin-top: -3.125rem;
  }
}
.about__desc p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about__desc p {
    font-size: 1.125rem;
  }
}
.about .tag_txt {
  margin-top: 3.125rem;
  margin-bottom: 5.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .tag_txt {
    margin-bottom: 3.75rem;
  }
}
.about__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .about__list {
    grid-template-columns: 100%;
    gap: 2.5rem;
  }
}
.about__item h3 {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .about__item h3 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}
.about__img {
  position: relative;
  cursor: pointer;
}
.about__img img {
  border-radius: 0.1875rem;
  overflow: hidden;
}
.about__img img[src*="@2x"] {
  display: none;
}
.about__icon {
  position: absolute;
  width: 4.6875rem;
  height: 4.6875rem;
  border-radius: 50%;
  background-color: #FFF;
  bottom: -1.25rem;
  right: -0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .about__icon {
    width: 3.125rem;
    height: 3.125rem;
  }
  .about__icon img {
    width: 1.25rem;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 96, 225, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-visible {
  opacity: 1;
}
.modal-overlay.is-visible .modal-content {
  transform: scale(1);
}
.modal-overlay .modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  cursor: default;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

body.no-scroll {
  overflow: hidden;
}

/*------------------------
  tag_txt
------------------------*/
.tag_txt p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .tag_txt p {
    gap: 0.9375rem;
  }
}
.tag_txt p span {
  text-align: center;
  color: #7E24FF;
  font-weight: 700;
  font-size: 2rem;
  background-color: #FFF;
  padding: 0 0.375rem;
}
@media screen and (max-width: 768px) {
  .tag_txt p span {
    font-size: 1.625rem;
  }
}

/*------------------------
  footer
------------------------*/
.l-footer {
  width: 100%;
  padding: 3.75rem 0;
  color: #B3B3B3;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 1.875rem 0;
  }
}
.l-footer .ly-flex {
  justify-content: space-between;
}
.l-footer-info {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .l-footer-info {
    font-size: 0.875rem;
  }
}
.l-footer-copyright {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer-copyright {
    font-size: 0.6875rem;
    margin-top: 0.625rem;
  }
}

/*------------------------
  feature
------------------------*/
.feature {
  background: url(../images/bg_feature.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .feature .ly-wrapper {
    padding: 0;
  }
}
.feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature__list {
    margin-top: 1.25rem;
  }
}
.feature__list::before, .feature__list::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  overflow: hidden;
}
.feature__list::before {
  background-color: rgba(255, 255, 255, 0.06);
  left: 1.875rem;
  top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .feature__list::before {
    content: none;
  }
}
.feature__list::after {
  background: #000 url(../images/bg_feature.svg) no-repeat left center/cover;
  left: 0;
  top: 0.625rem;
}
.feature__list .feature__item {
  width: calc((100% - 2.5rem) / 2);
  background-color: #FCE303;
  border-radius: 1.875rem;
  padding: 3.125rem 2.5rem 3.75rem;
  color: #000;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .feature__list .feature__item {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}
.feature__list .feature__item:last-child {
  width: 100%;
  background-color: transparent;
  padding-bottom: 0;
}
.feature__list .feature__item:last-child::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 80%;
  background-color: #FCE303;
  border-radius: 1.875rem;
  top: 0;
  left: 0;
}
.feature__list .feature__item p {
  font-size: 1.125rem;
}
.feature__num {
  position: absolute;
  background-color: #FF60E1;
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  left: -1.25rem;
  top: -1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .feature__num {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.25rem;
  }
}
.feature__ttl {
  font-size: 2rem;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature__ttl {
    font-size: 1.625rem;
  }
}
.feature__ttl small {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .feature__ttl small {
    font-size: 1.25rem;
  }
}
.feature__subttl {
  font-size: 1.5rem;
  margin: 0.3125rem 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .feature__subttl {
    font-size: 1.25rem;
  }
}
.feature__img {
  width: calc(68.5% + 3.125rem);
  min-width: 25.3125rem;
  padding: 1.875rem 1.5625rem 0;
  margin-top: 0.625rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: url(../images/frame_left.svg) no-repeat left top, url(../images/frame_right.svg) no-repeat right top;
  background-size: 5.3125rem auto;
}
@media screen and (max-width: 576px) {
  .feature__img {
    min-width: auto;
    width: 100%;
    margin-top: 1.25rem;
    padding: 1.25rem 0.9375rem 0;
    background-size: 2.8125rem auto;
  }
}

/*------------------------
  info
------------------------*/
.info {
  background: url(../images/bg_info.png) no-repeat center/cover;
}
.info .tag_txt {
  margin: 0 0 5.625rem;
}
@media screen and (max-width: 768px) {
  .info .tag_txt {
    margin: 0 0 3.75rem;
  }
}
.info__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .info__ttl {
    font-size: 1.0625rem;
    margin-bottom: 0.9375rem;
  }
}
.info__ttl::before, .info__ttl::after {
  content: "";
  width: 1.25rem;
  border-top: 2px solid #FFF;
  display: inline-block;
}
.info__ttl::before {
  margin-right: 0.625rem;
}
.info__ttl::after {
  margin-left: 0.625rem;
}
.info__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  margin: 6.875rem 0 0;
}
@media screen and (max-width: 768px) {
  .info__btn {
    margin: 3.75rem 0 0;
    gap: 1.25rem;
  }
}
.info__btn img {
  width: auto;
  height: 5rem;
}
@media screen and (max-width: 768px) {
  .info__btn img {
    height: 3.125rem;
  }
}
.info dl {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .info dl {
    font-size: 0.875rem;
    align-items: flex-start;
  }
}
.info dl dt {
  background-color: #5A5A5A;
  border-radius: 0.1875rem;
  padding: 0 0.3125rem;
  white-space: nowrap;
}
@media screen and (max-width: 576px) {
  .info .tag_txt span {
    font-size: 1.75rem;
  }
}
.info .tag_txt .pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .info .tag_txt .pc-none {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .info .tag_txt .sp-none {
    display: none;
  }
}

/*------------------------
  animation
------------------------*/
.text-bounce {
  animation: text-bounce 0.5s ease-in-out forwards;
}
.text-bounce.delay {
  animation-delay: 0.2s;
}
.text-bounce.delay2 {
  animation-delay: 0.4s;
}

@keyframes text-bounce {
  0% {
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0, 3px);
  }
  30% {
    transform: scale(1.02, 1) translate(0, 5px);
  }
  50% {
    transform: scale(0.98, 1.05) translate(0, -5px);
  }
  70% {
    transform: scale(1, 0.9) translate(0, 3px);
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}