@charset "UTF-8";

/* --------------------------
:: Base
-------------------------- */

html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

body {
  color: #fff;
  font-size: 16px;
  font-family: "source-han-serif-japanese", serif;
  font-weight: 300;
  font-style: normal;
  background: #000;
}

a {
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
  color: #D5B68E;
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* レイアウト */
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.container {
  position: relative;
  width: 94%;
  max-width: 1366px;
  margin: auto;
}



/* --------------------------
:: Header
-------------------------- */

.header {
  background: #333;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  height: 69px;
}

.header * {
  height: 100%;
}

.header .container {
  gap: 30px;
  padding: 0 24px;
}

.header_bottom {
  height: 69px;
}

/* @media screen and (min-width: 951px) {

  .header,
  .header_bottom {
    height: 4.79vw;
  }

  .header .container {
    gap: 4vw;
    padding: 0;
  }

  .sp {
    display: none !important;
  }
} */

/* @media screen and (max-width: 950px) {

  .header,
  .header_bottom {
    height: 100px;
  }

  .header .container {
    padding: 0;
    /* width: 92%; */
/* padding-right: 5px;
    gap: 5px;
  }

  .pc {
    display: none !important;
  }

  .logonav {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .link_btn {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }
} */


/* logo */
.header .logo img {
  width: auto;
}

/* header nav */
.header .nav {
  flex: 1;
}

/* .header .nav_inner {
  gap: 20px;
} */

.header .nav a {
  font-size: 20px;
  font-weight: 900;
  display: block;
  line-height: 69px;
  white-space: nowrap;
}

.header .nav a:hover {
  color: #7252A3;
}

@media screen and (min-width: 701px) {

  .header,
  .header_bottom {
    height: 4.79vw;
  }

  .header .container {
    gap: 4vw;
    padding: 0;
  }

  .sp {
    display: none !important;
  }

  .header .nav_inner {
    gap: 1.39vw;
  }

  .header .nav a {
    padding: 0 0.69vw;
    font-size: 1.39vw;
    line-height: 4.79vw;
  }
}

@media screen and (max-width: 700px) {

  .header,
  .header_bottom {
    height: 100px;
  }

  .header .container {
    padding: 0;
    /* width: 92%; */
    padding-right: 5px;
    gap: 5px;
  }

  .pc {
    display: none !important;
  }

  .logonav {
    height: 50%;
    width: 100%;

  }

  .link_btn {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 10px;
  }

  .logo {
    width: 110px;
  }

  .header .nav a {
    font-size: 12px;
    line-height: 50px;
  }

  .header .nav_inner {
    /* display: flex;
    justify-content: space-between; */
    gap: 10px;
  }


}

/* link_btn */
.header .link_btn {
  gap: 27px;
}

/* PC,モバイル共通 */
.header .link_btn .twitter {
  display: block;
  width: 60px;
  background: url(../img/X.svg) no-repeat center;
  background-size: 38px auto;
  height: 25px;
}

.header .link_btn .download {
  display: block;
  background: url(../img/Steam.svg) no-repeat center;
  background-size: contain;
}

/* .header .link_btn .download:hover {
  background-image: url(../img/btn_download_hover.png);
} */

.header .link_btn .googleplay {
  display: block;
  background: url(../img/google-play-badge\ 1.svg) no-repeat center;
  background-size: contain;
}

.header .link_btn .appstore {
  display: block;
  background: url(../img/Download_on_the_App_Store_Badge_JP_RGB_blk_100317\ 1.svg) no-repeat center;
  background-size: contain;
}

/* PC */
@media screen and (min-width: 701px) {
  .header .link_btn {
    gap: 1.88vw;
  }

  .header .link_btn .twitter {
    width: 4.17vw;
    background-size: 2.64vw auto;
  }

  .header .link_btn .download {
    width: 9.7vw;
  }

  .header .link_btn .googleplay {
    width: 11vw;
  }

  .header .link_btn .appstore {
    width: 9vw;
  }
}

/* モバイル */
@media screen and (max-width: 700px) {
  .header .link_btn {
    gap: 10px;
  }

  .header .link_btn .twitter {
    width: 50px;
    background-size: 25px auto;
    margin: 0 10px;
  }

  .header .link_btn .download {
    width: 15vh;
    height: 70px;
  }

  .header .link_btn .googleplay {
    width: 17.1vh;
  }

  .header .link_btn .appstore {
    width: 13.8vh;
  }
}


/* --------------------------
:: Footer
-------------------------- */

.footer {
  display: block;
  width: 100%;
  background: #333;
}


/* footer nav */
.footer .nav {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 50%);
  padding: 80px 0 40px;
}

.footer .nav_inner {
  -webkit-justify-content: space-around;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer .nav a {
  color: #fff;
  font-size: 14px;
  display: block;
  padding: 10px;
}

.footer .nav a:hover {
  color: #D5B68E;
}

@media screen and (max-width: 1439px) {
  .footer .nav {
    padding: 5.56vw 5vw 2.78vw;
  }

  .footer .nav a {
    font-size: 13px;
    padding: 0.69vw;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 700px) {
  .footer .nav a {
    font-size: 11px;
  }
}

/* copyright */
.footer .copyright {
  display: block;
  font-size: 14px;
  padding: 130px 0 116px;
  text-align: center;
}

@media screen and (max-width: 1439px) {
  .footer .copyright {
    font-size: 13px;
    padding: 9.03vw 0 8.06vw;
  }
}

@media screen and (max-width: 700px) {
  .footer .copyright {
    font-size: 11px;
  }
}




/* --------------------------
:: MV
-------------------------- */

.mv {
  background: url(../img/bg_mv.jpg) no-repeat top center;
  background-size: 1920px auto;
  max-height: 1536px;
  padding: 230px 0 45px;
}

.mv .logo {
  display: block;
  margin: auto;
  max-width: 622px;
}

.mv .copy {
  display: block;
  margin: auto;
  padding-bottom: 138px;
  max-width: 884px;
}

.campaign {
  display: block;
  margin: auto;
  width: 100%;
}

@media screen and (max-width: 1439px) {
  .mv {
    background-size: cover;
    height: 106.67mv;
    padding: 15.97vw 0 3.13vw;
  }

  .mv .logo {
    width: 43.19vw;
  }

  .mv .copy {
    padding-bottom: 9.58bw;
    max-width: 61.39vw;
  }
}




/* --------------------------
:: movie
-------------------------- */

.body {
  background: url(../img/bg_body.jpg) no-repeat top center;
  background-size: 1920px auto;
  padding-top: 25px;
}

@media screen and (max-width: 1439px) {
  .body {
    background-size: cover;
    padding-top: 1.74vw;
  }
}

@media screen and (max-width: 700px) {
  .body {
    padding-top: 3.5vw;
  }
}


.movie {
  padding: 80px 0 135px;
  width: 900px;
}

.movie .movie_inner {
  position: relative;
}

.movie .playbtn {
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  background: url(../img/btn_play.svg) no-repeat center;
  transition: all .4s ease-out;
  /*pointer-events: none;*/
  cursor: pointer;
}

.movie .playbtn:hover {
  background-image: url(../img/btn_play_hover.svg);
}

.movie .movie_inner.play .playbtn {
  opacity: 0;
}

.movie .video {
  width: 100%;
  height: auto;
  background: #000;
}

@media screen and (max-width: 1439px) {
  .movie {
    padding: 5.56vw 0 9.38vw;
    width: 62.5vw;
  }
}

@media screen and (max-width: 700px) {
  .movie {
    width: 80vw;
  }
}



/* --------------------------
:: system
-------------------------- */

.system {
  padding-bottom: 90px;
}

@media screen and (max-width: 1439px) {
  .system {
    padding-bottom: 6.25vw;
  }
}

@media screen and (max-width: 700px) {
  .system {
    padding-bottom: 5vw;
  }
}


.tab {
  width: 100%;
  height: 700px;
  background: url(../img/bg_system.png) no-repeat center;
  background-size: 100% 100%;
  padding: 100px 9%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1px 3.15%
}

.tab-label {
  width: 400px;
  height: 60px;
  background: url(../img/btn_system_none.png) no-repeat center;
  background-size: 100% 100%;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  float: left;
  line-height: normal;
  padding-right: 14.5px;
  transition: all .5s ease-out;

}

.tab-label:not(.no-border):before {
  content: "";
  display: block;
  width: 95.3%;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
  background: #F4F5F9;
}

.tab-content {
  display: none;
  width: 745px;
  height: 100%;
}

.tab-content .disc {
  font-size: 18px;
  line-height: 160%;
  padding-top: 10px;
}

.tab-switch:checked+.tab-label {
  background-image: url(../img/btn_system.png);
  color: #D5B68E;
}

.tab-label:hover {
  background-image: url(../img/btn_system_hover.png);
  color: #D5B68E;
}

.tab-switch:checked+.tab-label+.tab-content {
  display: block;
}

.tab-switch {
  display: none;
}

@media screen and (min-width: 701px) {
  .tab {
    height: 52vw;
    padding: 7.9vw 9% 7vw 9%;
    gap: 1px 2.43vw;
  }

  .tab-label {
    width: 22vw;
    height: 4.5vw;
    font-size: 1.39vw;
    padding-top: 0.20vw;
    padding-right: 1.01vw;
  }

  .tab-content {
    width: 52.5vw;
    margin-top: 15px;
  }

  .tab-content .disc {
    font-size: 1.25vw;
    padding-top: 0.69vw;
  }
}

@media screen and (max-width: 700px) {
  .tab {
    height: 65vw;
    padding: 10vw 3.5% 8vw;
    gap: 0.5px 1vw;
  }

  .tab-label {
    width: 24vw;
    height: 5.5vw;
    font-size: 1.5vw;
    padding-top: 0.5vw;
    padding-right: 1.15vw;
  }

  .tab-label:not(.no-border):before {
    height: 0.5px;
    top: -0.5px;
  }

  .tab-content {
    width: 58vw;
    margin-top: 10px;
  }

  .tab-content .disc {
    font-size: 1.5vw;
    padding-top: 1vw;
  }
}




/* --------------------------
:: about
-------------------------- */

.about {
  padding: 80px 65px;
  margin-bottom: 90px;
  gap: 32px;
}

.about img {
  width: 763px;
}

.about .info {
  flex: 1;
}

.about .info th,
.about .info td {
  font-size: 17px;
  text-align: left;
  padding: 12px 0;
  white-space: nowrap;
}

.about .info td:before {
  content: "　：　";

}

@media screen and (max-width: 1439px) {
  .about {
    padding: 5.56vw 4.51vw;
    margin-bottom: 6.25vw;
    gap: 2.22vw;
  }

  .about img {
    width: 50vw;
  }

  .about .info th,
  .about .info td {
    font-size: 1.3vw;
  }
}

@media screen and (max-width: 700px) {
  .about {
    width: 86vw;
    padding: 5.56vw 0;
    margin-bottom: 10vw;
  }

  .about img {
    width: 40vw;
  }

  .about .info th,
  .about .info td {
    font-size: 1.5vw;
    padding: 8px 0;
  }
}




/* --------------------------
:: page
-------------------------- */

.page_body {
  position: relative;
  width: 90%;
  max-width: 1366px;
  margin: 60px auto 100px;
}

.page_body p {
  margin-top: 12px;
  line-height: 1.6;
}

.page_body p:first-child {
  margin-top: 0;
}

.page_body h1 {
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 40px;
}

.page_body h2 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 45px;
  margin-bottom: 20px;
}

.madoguchi {
  background: #333;
  padding: 30px 40px 40px;
  border-radius: 10px;
  max-width: 500px;
  margin: 30px 0 50px;
}


/* --------------------------
:: Contact
-------------------------- */

.form {
  max-width: 800px;
  margin: auto;
}

.form div {
  margin-bottom: 22px;
}

.form .caption {
  font-size: 14px;
  margin-top: 10px;
  display: block;
  opacity: .7;
}

.form input[type="text"],
.form input[type="email"],
.form textarea,
.form select {
  width: 100%;
  font-size: 16px;
  padding: 10px 16px;
  background: #F4F5F9;
  position: relative;
  line-height: 1.8;
  font-family: inherit;
}

.form textarea {
  resize: vertical;
}

.form .select {
  max-width: 390px;
}

.form ::placeholder {
  color: #969696;
}

.form .btn {}

.form .btn * {
  text-align: center;
  display: block;
  margin: auto;
  width: 188px;
  line-height: 76px;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 600;
  background: url(../img/btn_submit.png) no-repeat center;
  background-size: 100% 100%;
  cursor: pointer;
  transition: all .3s ease-out;
}

.form .btn *:hover {
  background-image: url(../img/btn_submit_hover.png);
}


.error {
  color: #ff4f4f;
  line-height: 1.6;
  font-size: 15px;
  background: #460c0c;
  border-radius: 3px;
  padding: 12px 20px 14px;
}


/* captcha */
.grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha-text {
  font-size: 11px;
  text-align: center;
  padding-top: 20px;
  opacity: .7;
}

.form .thanks {
  margin: 160px auto;
  font-size: 20px;
  gap: 13px;
  justify-content: center;
}

.form .thanks img {
  width: 72px;
}



/* --------------------------
:: inview
-------------------------- */
.inview {
  opacity: 0;
  transform: translate(0, 50px);
  transition: opacity 2s, transform 1s;
}

.inview.is-show {
  transform: translate(0);
  opacity: 1;
}