@charset "UTF-8";
*,
::before,
::after {
  border-width: 0;
  border-style: solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  vertical-align: bottom;
}

html {
  width: 100%;
  font-size: 62.5%;
}

body {
  background-color: black;
  color: #ffffff;
  font-family: "Exo", "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ==================
共通
===================*/
.main_color {
  color: #00fff5;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
}
@media screen and (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  .f_nowrap {
    -webkit-flex-flow: nowrap;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
  }
}

a {
  display: inline-block;
}

.section_inner {
  max-width: 1116px;
  margin: 0 auto;
  padding: 100px 20px 80px;
}

/* ==================
header
===================*/
.wrapper {
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 28px 30px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(161, 160, 160, 0)), to(rgba(0, 0, 0, 0.8)));
  background-image: -webkit-linear-gradient(bottom, rgba(161, 160, 160, 0), rgba(0, 0, 0, 0.8));
  background-image: linear-gradient(0deg, rgba(161, 160, 160, 0), rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 767px) {
  .header {
    padding: 20px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  }
}

.header_inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  width: 172px;
}
@media screen and (max-width: 767px) {
  .logo {
    width: 120px;
  }
}

.header_nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
}
.header_nav li {
  margin-right: 3rem;
  font-size: 1.6rem;
}
.header_nav li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .header_nav li {
    font-size: 1.3rem;
    margin-right: 1rem;
  }
}

.audioSwitch {
  position: absolute;
  right: 3rem;
  margin-top: 1rem;
  color: #bfbfbf;
}

.audio_btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.audioSwitch-text {
  line-height: 1;
}

/* ==================
play_btn
===================*/
.play_btn {
  display: inline-block;
  padding: 16px 42px;
  background-color: #00fff5;
  color: black;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.play_btn:hover {
  -webkit-filter: drop-shadow(0 0 16px #00fff5);
          filter: drop-shadow(0 0 16px #00fff5);
}

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

/* ==================
MV
===================*/
.video_area {
  background-attachment: fixed;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.video_area::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.25)), to(rgba(4, 4, 4, 0.78)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.25), rgba(4, 4, 4, 0.78));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(4, 4, 4, 0.78));
}

.mv_movie {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv {
  position: relative;
  height: 100vh;
}
.mv::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  width: min(29vw, 430px);
  height: 40px;
  background-image: url(../img/bg-line-top-b.svg);
  background-repeat: no-repeat;
}

.title_area {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 15;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .title_area {
    left: 20px;
  }
}
.title_area h1 {
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 12.6rem;
  letter-spacing: 0.05em;
}
.title_area .h1_en {
  display: block;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.2em;
}
.title_area .h1_ja {
  display: block;
  font-weight: 400;
  font-size: 3.4rem;
  letter-spacing: 1em;
}

.news_box {
  position: absolute;
  right: 30px;
  bottom: 50px;
  width: min(30vw, 360px);
  padding: 8px 0;
  overflow: hidden;
  border: solid 1px #00fff5;
  background-color: #000000;
  font-size: 1.4rem;
  white-space: nowrap;
}
.news_box p {
  padding-left: 360px;
  -webkit-animation: news_anime 8s infinite;
          animation: news_anime 8s infinite;
}

.newsBox-date {
  margin-right: 1rem;
  color: #ffffff;
}

.newsBox-body {
  color: #00fff5;
}

@-webkit-keyframes news_anime {
  0% {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  100% {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}

@keyframes news_anime {
  0% {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  100% {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}
.scroll_btn .scroll_text {
  position: absolute;
  left: 26px;
  bottom: 50px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 30;
}
.scroll_btn span {
  display: block;
  width: 2px;
  height: 50px;
  background-color: #00fff5;
  position: absolute;
  left: 20px;
  bottom: 30px;
}
.scroll_btn span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #00fff5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: Scroll_Anime 2s infinite;
          animation: Scroll_Anime 2s infinite;
}
@media screen and (max-width: 767px) {
  .scroll_btn .scroll_text {
    left: 16px;
  }
  .scroll_btn span {
    left: 14px;
  }
}

@-webkit-keyframes Scroll_Anime {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  100% {
    -webkit-transform: translate(-50%, 500%);
            transform: translate(-50%, 500%);
  }
}

@keyframes Scroll_Anime {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  100% {
    -webkit-transform: translate(-50%, 500%);
            transform: translate(-50%, 500%);
  }
}
/* ==================
story
===================*/
.story {
  background: url(../img/bg_story.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.story::after {
  content: "";
  display: block;
  background: url(../img/bg-line-bottom-b.svg);
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  width: 430px;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.story_box_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.story_box_wrap:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.story_box_wrap:nth-child(2) .story_box__textarea {
  margin-left: 80px;
  margin-right: 0;
}
.story_box_wrap:nth-child(2) .story_box__img {
  -webkit-transform: skewX(5deg);
          transform: skewX(5deg);
}
.story_box_wrap:nth-child(2) .story_box__img img {
  -webkit-box-shadow: -7px 7px 0 #00fff5;
          box-shadow: -7px 7px 0 #00fff5;
}

.story_box__textarea {
  width: 60%;
  margin-right: 80px;
}

.story_box__img {
  width: 36%;
  max-width: 500px;
  -webkit-transform: skewX(-5deg);
          transform: skewX(-5deg);
}
.story_box__img img {
  -webkit-box-shadow: 7px 7px 0 #00fff5;
          box-shadow: 7px 7px 0 #00fff5;
}

.section_title {
  font-size: 8rem;
  color: #00fff5;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.section_title h2 {
  position: relative;
  padding-bottom: 10px;
}
.section_title h2::after {
  content: "";
  display: inline-block;
  width: 1em;
  border-bottom: solid 8px #00fff5;
  position: absolute;
  bottom: 0;
  left: 0;
}

.story_title {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 30px 0;
  line-height: 1.5;
}

.story_text {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ==================
CTA
===================*/
.cta {
  text-align: center;
  position: relative;
}
.cta::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  width: min(29vw, 430px);
  height: 40px;
  background-image: url(../img/bg-line-top-g.svg);
  background-repeat: no-repeat;
}

.cta_title {
  font-size: 6.4rem;
  margin-bottom: 25px;
}

/* =============
trailer
===============*/
.trailer {
  background-color: #00fff5;
  position: relative;
}
.trailer::after {
  content: "";
  display: block;
  background: url(../img/bg-line-bottom-g.svg);
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  width: 430px;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.trailer .section_title {
  color: #000;
  position: relative;
  padding-bottom: 10px;
}
.trailer .section_title::after {
  content: "";
  display: inline-block;
  width: 1em;
  border-bottom: solid 8px #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.movie_area {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
  margin: 48px auto;
}
.movie_area iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.cta2::after {
  content: none;
}

.footer {
  background-color: #000;
  padding: 40px 30px;
}

.footer_wrap {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sns_btn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .sns_btn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*=========
sns
=========*/
.sns_btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ulタグの内側余白を０にする */
ul.snsbtniti2 {
  padding: 0 !important;
}

.flowbtn17 {
  border-radius: 50%;
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #444;
  color: #fff;
}

/* ボタンマウスホバー時のテキスト指定 */
.flowbtn17:hover {
  text-decoration: none;
}

/* アイコンをど真ん中に */
.flowbtn17 i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Twitterマウスホバー時 */
.flowbtn17.fl_tw2:hover {
  background: -webkit-linear-gradient(315deg, #13f1fc 0%, #0470dc 100%);
  background: linear-gradient(135deg, #13f1fc 0%, #0470dc 100%);
}

/* Instagramマウスホバー時 */
.flowbtn17.insta_btn2:hover {
  background: -webkit-linear-gradient(315deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

/* Facebookマウスホバー時 */
.flowbtn17.fl_fb2:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#5c80c6), color-stop(74%, #34528c));
  background: -webkit-linear-gradient(top, #5c80c6 0%, #34528c 74%);
  background: linear-gradient(to bottom, #5c80c6 0%, #34528c 74%);
}

/* Feedlyマウスホバー時 */
.flowbtn17.fl_fd2:hover {
  background: -webkit-linear-gradient(315deg, #b1ea4d 0%, #459522 100%);
  background: linear-gradient(135deg, #b1ea4d 0%, #459522 100%);
  font-size: 28px;
}

/* Pocketマウスホバー時 */
.flowbtn17.fl_pk2:hover {
  background: -webkit-linear-gradient(315deg, #f36265 0%, #dd4f68 100%);
  background: linear-gradient(135deg, #f36265 0%, #dd4f68 100%);
}

/* はてブアイコンのサイズ */
.flowbtn17.fl_hb2 {
  font-size: 25px;
}

/* はてブマウスホバー時 */
.flowbtn17.fl_hb2:hover {
  background: -webkit-linear-gradient(top, #1fbccd 0%, #1c91d4 84%);
  background: -webkit-gradient(linear, left top, left bottom, from(#1fbccd), color-stop(84%, #1c91d4));
  background: linear-gradient(to bottom, #1fbccd 0%, #1c91d4 84%);
}

/* YouTubeマウスホバー時 */
.flowbtn17.fl_yu2:hover {
  background: -webkit-linear-gradient(315deg, #f5515f 0%, #c9293c 100%);
  background: linear-gradient(135deg, #f5515f 0%, #c9293c 100%);
}

/* LINEマウスホバー時 */
.flowbtn17.fl_li2:hover {
  background: -webkit-linear-gradient(315deg, #3a9278 0%, #00c300 100%);
  background: linear-gradient(135deg, #3a9278 0%, #00c300 100%);
}

/* お問い合わせマウスホバー時 */
.flowbtn17.fl_ma2:hover {
  background: -webkit-linear-gradient(315deg, #fad961 0%, #f76b1c 100%);
  background: linear-gradient(135deg, #fad961 0%, #f76b1c 100%);
}

/*==========
SP
===========*/
@media screen and (max-width: 767px) {
  .section_inner {
    padding: 50px 20px;
  }
  .mv .h1_en,
.mv .h1_ja {
    font-size: 2.2rem;
  }
  .mv h1 {
    font-size: 7.6rem;
  }
  .news_box {
    right: 20px;
    width: 50%;
  }
  .story_box_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-bottom: 30px;
  }
  .story_box_wrap:last-child {
    margin-bottom: 0;
  }
  .story_box__textarea,
.story_box__img {
    width: 100%;
  }
  .story_box__textarea img,
.story_box__img img {
    display: block;
    width: 90%;
    margin: 30px auto;
  }
  .story_box_wrap:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .story_box_wrap:nth-child(2) .story_box__textarea {
    margin: 0;
  }
  .section_title {
    font-size: 5rem;
  }
  .story_title {
    font-size: 2.4rem;
  }
  .story_text {
    font-size: 1.5rem;
  }
  .cta_title {
    font-size: 3.2rem;
  }
  .play_btn {
    font-size: 1.4rem;
  }
  .copyright {
    text-align: center;
    margin-top: 2rem;
  }
  .mv::after,
.story::after,
.cta::after,
.trailer::after {
    width: 200px;
    height: 30px;
  }
  .trailer::after,
.story::after {
    background-position: right;
  }
  .movie_area {
    margin: 20px auto 0;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999;
  color: #00fff5;
  font-weight: 600;
  font-size: 2rem;
}

.completed {
  opacity: 0;
  visibility: hidden;
}

.trinity-rings-spinner,
.trinity-rings-spinner * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.trinity-rings-spinner {
  height: 66px;
  width: 66px;
  padding: 3px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 2rem;
}

.trinity-rings-spinner .circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 3px solid #00fff5;
  opacity: 1;
}

.trinity-rings-spinner .circle:nth-child(1) {
  height: 60px;
  width: 60px;
  -webkit-animation: trinity-rings-spinner-circle1-animation 1.5s infinite linear;
          animation: trinity-rings-spinner-circle1-animation 1.5s infinite linear;
  border-width: 3px;
}

.trinity-rings-spinner .circle:nth-child(2) {
  height: 39px;
  width: 39px;
  -webkit-animation: trinity-rings-spinner-circle2-animation 1.5s infinite linear;
          animation: trinity-rings-spinner-circle2-animation 1.5s infinite linear;
  border-width: 2px;
}

.trinity-rings-spinner .circle:nth-child(3) {
  height: 6px;
  width: 6px;
  -webkit-animation: trinity-rings-spinner-circle3-animation 1.5s infinite linear;
          animation: trinity-rings-spinner-circle3-animation 1.5s infinite linear;
  border-width: 1px;
}

@-webkit-keyframes trinity-rings-spinner-circle1-animation {
  0% {
    -webkit-transform: rotateZ(20deg) rotateY(0deg);
            transform: rotateZ(20deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateZ(100deg) rotateY(360deg);
            transform: rotateZ(100deg) rotateY(360deg);
  }
}

@keyframes trinity-rings-spinner-circle1-animation {
  0% {
    -webkit-transform: rotateZ(20deg) rotateY(0deg);
            transform: rotateZ(20deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateZ(100deg) rotateY(360deg);
            transform: rotateZ(100deg) rotateY(360deg);
  }
}
@-webkit-keyframes trinity-rings-spinner-circle2-animation {
  0% {
    -webkit-transform: rotateZ(100deg) rotateX(0deg);
            transform: rotateZ(100deg) rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg) rotateX(360deg);
            transform: rotateZ(0deg) rotateX(360deg);
  }
}
@keyframes trinity-rings-spinner-circle2-animation {
  0% {
    -webkit-transform: rotateZ(100deg) rotateX(0deg);
            transform: rotateZ(100deg) rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg) rotateX(360deg);
            transform: rotateZ(0deg) rotateX(360deg);
  }
}
@-webkit-keyframes trinity-rings-spinner-circle3-animation {
  0% {
    -webkit-transform: rotateZ(100deg) rotateX(-360deg);
            transform: rotateZ(100deg) rotateX(-360deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg) rotateX(360deg);
            transform: rotateZ(-360deg) rotateX(360deg);
  }
}
@keyframes trinity-rings-spinner-circle3-animation {
  0% {
    -webkit-transform: rotateZ(100deg) rotateX(-360deg);
            transform: rotateZ(100deg) rotateX(-360deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg) rotateX(360deg);
            transform: rotateZ(-360deg) rotateX(360deg);
  }
}