@charset "utf-8";

/* ----------全て共通 ---------- */
html {
  scroll-behavior: smooth;
}
:root {
  --main-color: #c71dff;
  --text-color: #ffffff;
  --gnav-color: var(--main-color); /* gnavの初期色は基本色 */
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*SP　600px以下
----------------------------------------------------*/
/* bodyのフォント */
body {
  cursor: pointer;
}

.f-en {
  font-family: "Bangers", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.bg-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.bg-parallax__video {
  width: 100%;
  height: 100dvh;
  vertical-align: bottom;
  object-fit: cover;
}

.bg-parallax::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.5) 50%
  );
  background-size: 2px 2px;
}

.btn {
  font-family: "Exo", sans-serif;
  font-size: clamp(1rem, 0.954rem + 0.19vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #c71dff, #ff1dbf);
  color: var(--text-color);
  padding: 20px;
  width: 170px;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
  line-height: 1.5;
}

.btn--small {
  width: 164px;
  padding: 15px;
  font-size: calc(15 / 16 * 1rem);
}

.btn--large {
  width: 100%;
}

/******* ローディング ********/
/* 画面全体の設定 */
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000000;
  z-index: 1000;
}

/* ローディングアニメーションの設定 */
.loader__contents {
  z-index: 1000;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
}

.loader__text {
  margin-top: 20px;
  color: var(--main-color);
  letter-spacing: 0.5em;
  text-align: center;
}

@keyframes blink {
  50% {
    opacity: 1;
  }
}

/* ローディング　Epic Spinners　部分 */
.breeding-rhombus-spinner {
  height: 65px;
  width: 65px;
  position: relative;
  transform: rotate(45deg);
  margin: 0 auto;
}

.breeding-rhombus-spinner,
.breeding-rhombus-spinner * {
  box-sizing: border-box;
}

.breeding-rhombus-spinner .rhombus {
  height: calc(65px / 7.5);
  width: calc(65px / 7.5);
  animation-duration: 2000ms;
  top: calc(65px / 2.3077);
  left: calc(65px / 2.3077);
  background-color: var(--main-color);
  position: absolute;
  animation-iteration-count: infinite;
}

.breeding-rhombus-spinner .rhombus:nth-child(2n + 0) {
  margin-right: 0;
}

.breeding-rhombus-spinner .rhombus.child-1 {
  animation-name: breeding-rhombus-spinner-animation-child-1;
  animation-delay: calc(100ms * 1);
}

.breeding-rhombus-spinner .rhombus.child-2 {
  animation-name: breeding-rhombus-spinner-animation-child-2;
  animation-delay: calc(100ms * 2);
}

.breeding-rhombus-spinner .rhombus.child-3 {
  animation-name: breeding-rhombus-spinner-animation-child-3;
  animation-delay: calc(100ms * 3);
}

.breeding-rhombus-spinner .rhombus.child-4 {
  animation-name: breeding-rhombus-spinner-animation-child-4;
  animation-delay: calc(100ms * 4);
}

.breeding-rhombus-spinner .rhombus.child-5 {
  animation-name: breeding-rhombus-spinner-animation-child-5;
  animation-delay: calc(100ms * 5);
}

.breeding-rhombus-spinner .rhombus.child-6 {
  animation-name: breeding-rhombus-spinner-animation-child-6;
  animation-delay: calc(100ms * 6);
}

.breeding-rhombus-spinner .rhombus.child-7 {
  animation-name: breeding-rhombus-spinner-animation-child-7;
  animation-delay: calc(100ms * 7);
}

.breeding-rhombus-spinner .rhombus.child-8 {
  animation-name: breeding-rhombus-spinner-animation-child-8;
  animation-delay: calc(100ms * 8);
}

.breeding-rhombus-spinner .rhombus.big {
  height: calc(65px / 3);
  width: calc(65px / 3);
  top: calc(65px / 3);
  left: calc(65px / 3);
  background-color: var(--main-color);
  animation: breeding-rhombus-spinner-animation-child-big 2s infinite;
  animation-delay: 0.5s;
}

@keyframes breeding-rhombus-spinner-animation-child-1 {
  50% {
    transform: translate(-325%, -325%);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-2 {
  50% {
    transform: translate(0, -325%);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-3 {
  50% {
    transform: translate(325%, -325%);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-4 {
  50% {
    transform: translate(325%, 0);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-5 {
  50% {
    transform: translate(325%, 325%);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-6 {
  50% {
    transform: translate(0, 325%);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-7 {
  50% {
    transform: translate(-325%, 325%);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-8 {
  50% {
    transform: translate(-325%, 0);
  }
}

@keyframes breeding-rhombus-spinner-animation-child-big {
  50% {
    transform: scale(0.5);
  }
}

/* ローディング終了後 */
.loaded {
  opacity: 0;
  visibility: hidden;
}

/*-------------- 
header
---------------*/
.header {
  height: 60px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 10;
}

.header__logo {
  display: block;
  margin-top: 15px;
  width: 70px;
  filter: none;
  transition: filter 0.2s ease;
}
.header__logo--light {
  filter: brightness(0) invert(1)
    drop-shadow(3px 3px 1px rgba(114, 114, 114, 0.9));
}
.header__logo--dark {
  filter: none;
}
.gnav {
  color: var(--gnav-color);
  font-weight: 700;
  font-size: clamp(0.813rem, 0.743rem + 0.29vw, 1rem);
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  isolation: isolate;
}

.gnav__list {
  transition: color 0.2s ease;
  margin-left: 20px;
}
.gnav__link {
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.3);
}
.gnav--light .gnav__link {
  color: #ffffff;
  text-shadow: 3px 3px 1px rgba(71, 71, 71, 0.7);
}
.gnav--light .gnav__list--cta {
  box-shadow: 3px 3px 1px rgba(71, 71, 71, 0.7);
}
.gnav--dark .gnav__list {
  color: var(--gnav-color); /* デフォルトのピンク */
}
.gnav__list--cta {
  display: none;
}

.inner {
  max-width: 1170px;
  padding: 0 20px;
  margin: 0 auto;
}

/*-------------- 
fv
---------------*/

.fv {
  position: relative;
  height: 100dvh;
}

.sound-btn {
  /* position: fixed; */
  top: 60px;
  right: 0;
  color: #bfbfbf;
  font-size: calc(13 / 16 * 1rem);
  font-weight: 700;
  padding: 0px 20px;

  display: flex;
  align-items: center;
}

.sound-btn__icon {
  margin-left: 6px;
}

/* オーディオ */
.js-audio-play {
  display: flex;
  align-items: center;
}

.sound-box {
  position: fixed;
  right: 20px;
  top: 60px;
  z-index: 10;
}

.audioSwitch {
  font-size: calc(13 / 16 * 1rem);
  color: #bfbfbf;
  letter-spacing: 0.1em;
}

.audioSwitch.on {
  color: var(--text-color);
}

.audioSwitch__icon {
  font-size: 18px;
}

.audioSwitch__text {
  font-weight: 700;
  margin-right: 6px;
}

/* テロップ */
.news {
  position: absolute;
  bottom: 50px;
  right: 20px;
  border: 1px solid var(--main-color);
  padding: 8px 0;
  width: 200px;
  font-size: clamp(0.75rem, 0.704rem + 0.19vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-wrap: nowrap;
  overflow: hidden;
  text-align: center;
  background-color: #ffffff;
}

.news__date {
  color: var(--main-color);
  margin-right: 10px;
}

.news__text {
  color: var(--main-color);
}

.loopAnimation {
  animation: loop-slide 10s infinite linear;
  display: inline-block;
  white-space: nowrap;
}

@keyframes loop-slide {
  from {
    transform: translateX(50%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* スクロール */
.scroll-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  padding: 13px 0;
  text-align: center;
  font-size: calc(13 / 16 * 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--main-color);
  transform: rotate(90deg);
}

.scroll-box:after {
  position: absolute;
  content: "";
  border: 1px solid var(--main-color);
  bottom: 0;
  right: 0;
  width: 100%;
}

.scroll-box::before {
  position: absolute;
  content: "";
  background-color: var(--main-color);
  border-radius: 50%;
  bottom: -4px;
  right: 0;
  width: 10px;
  height: 10px;
  animation: scrollDown 1.5s infinite linear;
}

@keyframes scrollDown {
  0% {
    left: -3%;
    opacity: 0.2;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0.2;
  }
}

.fv__body {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.fv__label {
  font-size: clamp(1.375rem, 1.143rem + 0.95vw, 2rem);

  font-weight: 700;
  letter-spacing: 0.2em;
}

.fv__title {
  font-size: clamp(4.75rem, 3.264rem + 6.1vw, 8.75rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 0.9;
  margin-top: 20px;
}

.fv__subtitle {
  font-size: clamp(1.375rem, 1.096rem + 1.14vw, 2.125rem);
  font-weight: 600;
  letter-spacing: 0.6em;
  margin-top: 10px;
}

.fv__cta {
  margin-top: 30px;
}

/*-------------- 
section 共通
---------------*/
.section-heading {
  font-size: clamp(3.125rem, 2.429rem + 2.86vw, 5rem);
  color: var(--main-color);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  margin-bottom: 45px;
}

.section-heading::before {
  position: absolute;
  content: "";
  width: 15vw;
  max-width: 80px;
  height: 8px;
  bottom: -15px;
  left: 0;
  background-color: var(--main-color);
}

.section-heading--sub {
  color: var(--text-color);
}

.section-heading--sub::before {
  background-color: var(--text-color);
}

/*-------------- 
about
---------------*/
#about {
  padding-top: 70px;
  margin-top: 70px;
}
.about {
  width: 100%;
  height: 100%;
  padding-bottom: 43px;
  padding-top: 50px;
  background: #000000;
}

.about__wrap {
  display: grid;
  row-gap: 53px;
}

.about__content {
  display: grid;
  color: #ffffff;
  gap: 30px;
}

.about__title {
  font-size: clamp(1.5rem, 1.314rem + 0.76vw, 2rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about__text {
  font-size: clamp(0.938rem, 0.914rem + 0.1vw, 1rem);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.about__img {
  box-shadow: 7px 7px 10px rgba(199, 29, 255, 0.4);

  transform: skew(-5deg, 0deg);
  line-height: 0;
  width: 85%;
  margin: 0 auto;
  border-radius: 50px;
}

.about__img img {
  border-radius: 50px;
}

.about__img--sd-rv {
  box-shadow: -7px 7px 10px rgba(199, 29, 255, 0.4);
  transform: skew(5deg, 0deg);
}

/*-------------- 
cta
---------------*/
.cta {
  padding: 70px 20px;

  display: grid;
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.cta_text {
  font-size: clamp(2rem, 1.257rem + 3.05vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
}

/*-------------- 
trailer
---------------*/
#trailer {
  padding-top: 70px;
  margin-top: 70px;
}
.trailer {
  background-color: var(--main-color);
  position: relative;
  padding: 50px 0;
}

.trailer__movie {
  height: 44vw;
  max-height: 560px;
}
.bg__decoration-section {
  position: relative;
}
.bg__decoration {
  position: absolute;
  width: 51vw;
  max-width: 430px;
  height: auto;
  aspect-ratio: 430 / 40;

  display: block;
}
.bg__decoration--main-color svg path {
  fill: 000000;
}
.bg__decoration--main-color svg path {
  fill: var(--main-color);
}
.bg__decoration--top {
  right: 0;
  top: 0; /* 一旦リセット */
  transform: translateY(-97%); /* 上に自身の高さ分ずらす */
}
.bg__decoration--bottom {
  left: 0;
  bottom: 0; /* 一旦リセット */
  transform: translateY(97%); /* 上に自身の高さ分ずらす */
}
.bg__decoration svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*-------------- 
cta2
---------------*/
.cta--2 {
  position: relative;
}

/*-------------- 
footer
---------------*/
.footer {
  background-color: #000000;
  position: relative;
  padding: 38px 0 20px 0;
}

.sns-list {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}

.sns-list__item {
  display: flex;
}

iframe.line-it-button {
  width: 30px !important;
  height: 30px !important;
}
.fb_iframe_widget_fluid {
  display: flex !important;
  scale: 1.2;
}

.footer__copy-right {
  color: #ffffff;
  font-size: clamp(0.688rem, 0.618rem + 0.29vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 30px;
}

.footer__cta {
  margin-top: 44px;
}

/*media Queries 600px以上 タブレット用
----------------------------------------------------*/
@media screen and (min-width: 600px) {
  .inner {
    padding: 0 30px;
  }
  .header__logo {
    width: 80px;
  }
  .about__img {
    width: 70%;
  }
}

/*media Queries 1025px以上
----------------------------------------------------*/
@media screen and (min-width: 1025px) {
  /* 全体 */
  .bg-parallax::before {
    background-size: 4px 4px;
  }

  .btn {
    width: 230px;
  }

  .btn--small {
    width: 164px;
    padding: 15px;
    font-size: calc(15 / 16 * 1rem);
  }

  /* header */
  .header {
    height: 110px;
    padding: 0 30px;
    display: flex;
  }
  .header__logo {
    width: 100px;
    margin-top: 0;
  }

  .gnav {
    letter-spacing: 0.1em;
  }

  .gnav__list {
    margin-left: 30px;
  }

  .gnav__list--cta {
    display: inline;
  }

  .sound-btn {
    /* position: fixed; */
    top: 60px;
    right: 0;
    color: #bfbfbf;
    font-size: calc(13 / 16 * 1rem);
    font-weight: 700;
    padding: 0px 20px;

    display: flex;
    align-items: center;
  }

  .sound-btn__icon {
    margin-left: 6px;
  }

  /* オーディオ */
  .sound-box {
    right: 30px;
    top: 95px;
  }

  .audioSwitch {
    font-size: 1rem;
  }

  .audioSwitch__text {
    margin-right: 8px;
  }

  /* fv */

  .fv__title {
    margin-top: 30px;
    letter-spacing: 0.15em;
  }

  .fv__subtitle {
    letter-spacing: 1em;
  }

  .fv__cta {
    margin-top: 50px;
  }

  /* テロップ */
  .news {
    position: absolute;
    bottom: 50px;
    right: 30px;
    width: 360px;
  }

  .news__date {
    margin-right: 20px;
  }

  .loopAnimation {
    animation: loop-slide 10s infinite linear;
    display: inline-block;
    white-space: nowrap;
  }
  @keyframes loop-slide {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(-100%);
    }
  }

  /*-------------- 
section 共通
---------------*/

  .section-heading {
    margin-bottom: 70px;
  }

  .section-heading::before {
    bottom: -30px;
  }

  /*-------------- 
about
---------------*/
  .about {
    padding-bottom: 131px;
    padding-top: 158px;
  }

  .about__wrap {
    row-gap: 83px;
  }

  .about__content {
    display: flex;
    align-items: center;
    column-gap: 80px;
  }

  .about__content--rv {
    flex-direction: row-reverse;
  }
  .about__img {
    aspect-ratio: 1/1;
  }

  .about__text-box {
    width: 600px;
    flex-shrink: 0;
  }

  .about__title {
    line-height: 1.5;
  }

  .about__text {
    margin-top: 30px;
  }

  /*-------------- 
cta
---------------*/
  .cta {
    padding: 100px 30px;
    gap: 25px;
  }

  /*-------------- 
trailer
---------------*/
  .trailer {
    padding: 110px 0;
  }

  .trailer__movie {
    height: 560px;
  }

  /*-------------- 
footer
---------------*/
  .footer {
    padding: 40px 0;
  }

  .footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sns-list {
    display: flex;
    width: 50%;
    justify-content: left;
  }

  .sns-list__item {
    display: flex;
  }

  .footer__copy-right {
    margin-top: 0;
    flex-shrink: 0;
  }

  .footer__cta {
    display: none;
  }
}
