@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1160px;
  box-sizing: border-box;
}

.l-logo {
  position: fixed;
  top: 40px;
  left: 60px;
  z-index: 999;
  max-width: 200px;
}

.l-digstation {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}

.l-digstation img {
  width: 100%;
  height: auto;
}

p {
  margin: 0;
}

.erica-one-regular {
  font-family: "Erica One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.line-seed-jp-regular {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* header */

.l-header {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}

/* 器（ここが横→縦に変形する） */
.l-header__shell {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 60;

  width: 144px;
  height: 44px;
  border-radius: 999px;

  overflow: hidden;

  transition:
    width .35s cubic-bezier(.22, .61, .36, 1),
    height .45s cubic-bezier(.22, .61, .36, 1);
}

/* 黒背景は別パーツ（ボタンじゃない） */
.l-header__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.is-wide .l-header__toggle {
  opacity: 0;
  pointer-events: none;
}

/* 操作領域（ボタン）。背景なし */
.l-header__toggle {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  z-index: 2;

  width: 144px;
  height: 44px;
  padding: 0 18px;

  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.l-header__icon {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
}

.l-header__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1), top .35s cubic-bezier(.22, .61, .36, 1), opacity .2s ease;
}

.l-header__line:nth-child(1) {
  top: 0
}

.l-header__line:nth-child(2) {
  top: 6px
}

.l-header__line:nth-child(3) {
  top: 12px
}

.l-header__text {
  font-size: 12px;
  letter-spacing: .12em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .35s cubic-bezier(.22, .61, .36, 1);
}

/* パネル本体（中身） */
.l-header__panel {
  position: absolute;
  inset: 0;
  z-index: 1;

  padding: 60px 50px;
  pointer-events: none;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .45s cubic-bezier(.22, .61, .36, 1);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.l-header__close {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;

  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .35s cubic-bezier(.22, .61, .36, 1);
}

.l-header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.l-header__link {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
}

.l-header__link:hover {
  opacity: .85
}

.l-header__social {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.l-header__socialBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: 220px;
  font-size: 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  color: #0a0a0a;
  padding-bottom: 2px;
}

.l-header__socialBtn:hover {
  opacity: .85
}

.l-header__socialBtn--tiktok {
  background: #febd2b
}

.l-header__socialBtn--line {
  background: #fa653c
}

.l-header__socialBtn--ig {
  background: #4477e9
}

.l-header__socialBtn--x {
  background: #24cd81
}

/* 1段階目：横幅だけ広がる（この時点で角丸四角にする＝楕円化防止） */
.l-header.is-wide .l-header__shell {
  width: 376px;
  border-radius: 22px;
}

.l-header.is-wide .l-header__shell::before {
  border-radius: 22px;
}

.l-header.is-wide .l-header__toggle {
  width: 376px;
}

.l-header.is-wide .l-header__text {
  opacity: 1;
  transform: translateX(0);
}

/* 2段階目：縦だけ広がる（角丸はそのまま、ただ縦に伸びる） */
.l-header.is-tall .l-header__shell {
  height: 743px;
  border-radius: 22px;
}

.l-header.is-tall .l-header__shell::before {
  border-radius: 22px;
}

/* 3段階目：中身を出す（そのままでOK） */
.l-header.is-open .l-header__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.l-header.is-open .l-header__close {
  opacity: .95;
  transform: translateY(0);
}

/* ハンバーガー→× */
.l-header.is-open .l-header__line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.l-header.is-open .l-header__line:nth-child(2) {
  opacity: 0;
}

.l-header.is-open .l-header__line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

@media (max-width:480px) {
  .l-header.is-wide .l-header__shell {
    width: calc(100vw - 36px);
  }

  .l-header.is-wide .l-header__toggle {
    width: calc(100vw - 36px);
  }

  .l-header.is-tall .l-header__shell {
    height: calc(100vh - 36px);
  }
}

/* header */
.l-ttl__ja {
  font-size: 24px;
  border: 2px solid #000;
  display: inline-block;
  text-align: center;
  border-radius: 100vh;
  padding: 0 10px;
  margin-top: 20px;
}

.l-concept .l-ttl {
  margin-bottom: 66px;
}

.l-concept .l-ttl__ja {
  background-color: #feaa2b;
}

.l-concept .l-ttl__en {
  max-width: 551px;
}

.l-lineup .l-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-lineup .l-ttl__en {
  max-width: 425px;
}

.l-lineup .l-ttl__ja {
  background-color: #24cd81;
}

.l-streaming .l-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-streaming .l-ttl__en {
  max-width: 692px;
}

.l-streaming .l-ttl__ja {
  background-color: #f05894;
}

.l-partners .l-ttl__en {
  max-width: 637px;
}

.l-partners .l-ttl__ja {
  background-color: #4477e9;
}

.l-footer .l-ttl__ja {
  background-color: #00afda;
}

.l-partners .l-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-partners__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 70px;
}

.l-contact .l-ttl {
  display: flex;
  justify-content: center;
}

.l-contact .l-ttl__en {
  max-width: 553px;
}

.l-contact__btn {
  margin-top: 40px;
}

.l-footer .l-ttl {
  display: flex;
  justify-content: center;
}


.l-sec {
  position: relative;
}

.l-bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.l-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.l-wrapper {
  position: relative;
  z-index: 2;
  max-width: calc(1280px + 80px);
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}

.l-mv__movie {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.logo-anim {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.l-mv {
  padding: 80px 0;
}

.l-mv__inner {
  height: 908px;
  border: 2px solid #000;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.l-concept__inner {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.l-concept__img {
  width: 376px;
  flex-shrink: 0;
}

.l-concept__detail-main {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 18px;
}

.l-concept__detail-main span {
  background-image: url(../img/concept_txt_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 92%;
  padding: 20px 0;
}

.l-concept__detail-sub {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.889;
  font-size: 18px;
  margin-top: 45px;
}

.l-slide {
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 95px;
}

.l-slide__list {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: scroll 40s linear infinite;
}

.l-slide__item {
  flex: 0 0 auto;
  width: 945px;
}

.l-slide__item img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

.l-concept {
  padding: 120px 0;
}

.l-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  margin-top: 50px;
}

.l-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-left 24s linear infinite;
}

.l-marquee__text {
  flex: 0 0 auto;
  white-space: nowrap;
  margin: 0;
  font-size: 120px;
  line-height: 1;
  padding-right: 2rem;
  /* 2つの文の間隔 */
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.l-lineup {
  padding: 100px 0;
  border-bottom: 2px solid #000;
  position: relative;
}

.l-lineup .l-character {
  position: absolute;
  width: 129px;
  height: 121px;
  right: 50%;
  bottom: -20px;
  transform: translateX(50%);
  z-index: 99;
}

.l-lineup .l-character::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image:  url(../img/chara01_part02.png), url(../img/chara01_part01.png);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  display: block;
  position: absolute;
  top: 0;
  left: -360px;
}

.l-lineup__detail {
  font-size: 36px;
  margin-top: 60px;
  text-align: center;
}

.l-lineup__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 90px;
}

.l-lineup__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.l-lineup__item:nth-child(4) .l-lineup__item-list {
  grid-template-columns: 1fr;  
}

.l-lineup__item-cnt {
  gap: 40px;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-lineup__item-ttl img {
  width: 100%;
}

.l-lineup__item-list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.l-lineup__item-list li {
  list-style: none;
}

.l-lineup__item:not(:nth-child(4)) .l-lineup__item-list li img {
  max-width: 100%;
  aspect-ratio: 280 /525;
}

.l-lineup__item-list li a {
  transition: none;
}

.l-lineup__item-list li a:hover {
  display: block;
  transform: translateY(8px);
}

.l-streaming {
  padding: 100px 0 120px;
  border-bottom: 2px solid #000;
  position: relative;
}

.l-streaming .l-character {
  position: absolute;
  width: 142px;
  height: 122px;
  right: 50%;
  bottom: -15px;
  transform: translateX(50%);
  z-index: 99;
}

.l-streaming .l-character::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image:  url(../img/chara02_part02.png), url(../img/chara02_part01.png);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  display: block;
  position: absolute;
  top: 0;
  right: -360px;
}

.l-streaming__list {
  display: flex;
  margin-bottom: 50px;
}

.l-streaming__item img {
  max-width: none;
}

.l-streaming__item:nth-child(1):hover {
  transform: rotate(10deg);
}

.l-streaming__item:nth-child(2):hover {
  transform: rotate(-10deg);
}


.l-streaming__item:nth-child(3):hover {
  transform: rotate(10deg);
}


.l-streaming__item:nth-child(4):hover {
  transform: rotate(10deg);
}


.l-streaming__detail {
  font-size: 36px;
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
}

.l-streaming__data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 20px;
  background-color: #f05894;
  max-width: 1120px;
  margin: 0 auto;
  border: 2px solid #000;
}

.l-streaming__data-item:not(:last-child) {
  border-right: 2px solid #000;
}

.l-streaming__data-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.l-streaming__data-ttl {
  line-height: 1;
  margin-bottom: 23px;
  font-size: 28px;
}

.l-streaming__data-num {
  width: 315px;
}

.l-streaming__note {
  text-align: right;
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 12px;
}

.l-streaming__info {
  margin: 0 auto;
  margin-top: 60px;
  border: 2px solid #000;
  border-radius: 40px;
  background-color: #fff;
  padding: 100px 20px;
  max-width: 1120px;
  box-sizing: border-box;
}

.l-streaming__info-lead {
  color: #f05894;
  text-align: center;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 25px;
}

.l-streaming__info-lead::before,
.l-streaming__info-lead::after {
  content: "";
  width: 61px;
  height: 69px;
  background: url(../img/lead_path.svg) no-repeat center / contain;
  display: block;
}

.l-streaming__info-lead::before {
  margin-right: -10px;
}

.l-streaming__info-lead::after {
  margin-left: -10px;
  transform: scale(1, -1);
}

.l-streaming__info-detail {
  max-width: 680px;
  margin: 0 auto;
  margin-top: 40px;
}

.l-partners {
  padding: 100px 0;
}

.l-contact {
  padding: 100px 0;
}

.l-contact__btn {
  max-width: 536px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;

}

.l-contact__btn:hover {
  img {
    transform: rotate(10deg);
  }
}

.l-contact .l-marquee {
  position: absolute;
  bottom: 100px;
  color: #4477e9;
  -webkit-text-stroke: 4px #000;
  text-stroke: 2px #000;
  paint-order: stroke;
}

.l-concept__illust {
  max-width: 243px;
  margin: 0 auto;
}

.l-footer {
  padding: 120px 0;
}

.l-footer__logo {
  max-width: 244px;
  margin: 0 auto;
  margin-top: 35px;
}

@media screen and (max-width: 750px) {
  .l-logo {
    width: 130px;
    left: 30px;
  }

  body {
    margin: 0;
    min-width: 100%;
  }

  .l-ttl__ja {
    font-size: 18px;
  }
  
  .l-mv {
    padding: 22px 0;
  }

  .l-mv__inner {
    height: 495px;
    border-radius: 20px;
  }

  .l-wrapper {
    padding: 0 22px;
  }

  .l-header__panel {
    padding: 50px 0 20px;
  }

  .l-header__shell {
    width: 108px;
    height: 48px;
    top: 20px;
    right: 4vw;
  }

  .l-header__toggle {
    width: 108px;
    height: 48px;
  }

  .l-header.is-tall .l-header__shell {
    height: 450px;
    border-radius: 11px;
  }

  .l-header.is-wide .l-header__shell {
    width: 79vw;
  }

  .l-header__list {
    gap: 5px;
    margin-bottom: 10px;
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
  }

  .l-header__link {
    font-size: 18px;
  }

  .l-header__social {
    gap: 10px;
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
  }

  .l-header__socialBtn {
    font-size: 16px;
  }

  .l-concept {
    padding: 60px 0;
  }

  .l-concept__inner {
    flex-direction: column;
    gap: 40px;
  }

  .l-concept .l-ttl {
    margin-bottom: 45px;
  }

  .l-concept__detail-main {
    font-size: 25px;
  }

  .l-concept__detail-sub {
    font-size: 16px;
  }
  
  .l-concept__img {
    width: 240px;
    margin:  auto;
  }

  .l-slide {
    margin-top: 50px;
  }

  .l-slide__list {
    animation: scroll 40s linear infinite;
  }

  .l-marquee {
    margin-top: 20px;
  }

  .l-marquee__text {
    font-size: 70px;
  }

  .l-lineup {
    padding: 60px 0;
  }

  .l-lineup .l-ttl__en {
    display: flex;
    justify-content: center;
  }

  /* .l-lineup .l-ttl__en img {
    width: 233px;
  } */

  .l-lineup__detail {
    font-size: 25px;
    margin-top: 25px;
  }

  .l-lineup__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 45px;
  }

  .l-lineup__item {
    width: 100%;
    margin: 0 auto;
    gap: 0;
  }

  .l-lineup__item-ttl {
    max-width: 100%;
  }

  .l-lineup__item-ttl.--bg {
    max-width: 100%;
  }

  .l-lineup__item-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .l-lineup__item-ttl img {
    width: 100%;
  }

  .l-lineup__item-list {
    gap: 15px;
  }

  .l-lineup__item-list li {
    list-style: none;
  }

  .l-lineup__item-list li a:hover {
    display: block;
    transform: translateY(8px);
  }

  .l-lineup .l-character {
    width: 99px;
    height: 91px;
    bottom: -15px;
  }

  .l-lineup .l-character::after {
    left: -60px;
  }

  .l-streaming {
    padding: 60px 0;
  }

  .l-streaming__detail {
    font-size: 25px;
    margin-top: 40px;
  }

  .l-streaming__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .l-streaming__item {
    position: relative;
    height: 41vw;
  }

  .l-streaming__item img {
    position: absolute;
  }

  .l-streaming__item:nth-child(1) img {
    width: min(347px, 46.267vw);
    top: 0;
    right: 0;
  }

  .l-streaming__item:nth-child(2) img {
    width: min(351px, 46.8vw);
    top: 0;
    right: 0;
  }

  .l-streaming__item:nth-child(3) img {
    width: min(483px, 64.4vw);
    top: -1vw;
    right: -19vw;
  }

  .l-streaming__item:nth-child(4) img {
    width: min(213px, 28.4vw);
    top: 11vw;
    right: 1vw;
  }

  .l-streaming__data {
    grid-template-columns: 1fr;
  }

  .l-streaming__data-item:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid #000;
  }

  .l-streaming__data-ttl {
    margin-bottom: 13px;
  }

  .l-streaming__info-lead {
    font-size: 20px;
  }

  .l-streaming__info-lead::before, .l-streaming__info-lead::after {
    width: 25px;
    height: 27px;
    background-image: url(../img/lead_path_sp.svg);
  }

  .l-streaming__info-lead span {
    padding-bottom: 10px;
  }

  .l-streaming__info {
    border-radius: 20px;
    padding: 30px 10px;
  }

  .l-streaming .l-character {
    width: 92px;
    height: 72px;
    bottom: -9px;
  }

  .l-streaming .l-character::after {
    right: -50px;
  }

  .l-partners {
    padding: 60px 0;
  }

  .l-partners__list {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 234px;
    margin: 0 auto;
    margin-top: 40px;
  }

  .l-contact {
    padding: 60px 0;
  }

  .l-contact .l-ttl__en {
    max-width: 303px;
  }

  .l-contact__btn {
    margin-top: 30px;
  }

  .l-footer {
    padding: 60px 0;
  }

}