@charset "UTF-8";
*:focus {
  outline: none; }

html, body {
  height: 100%; }

html {
  min-height: 100%; }

body > .wrap {
  height: auto; }

html {
  height: 100%;
  font-size: 62.5%;
  /* font-sizeは16pxの62.5%の10px */ }

body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #d20000;
  font-size: 1.5rem;
  /* 15px */
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  color: #fff;
  margin: 0;
  padding: 0;
  min-width: inherit;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  /*-ms-overflow-style: none;*/
  /*Firefoxへの対応*/
  /*scrollbar-width: none;*/ }

/*Google Chrome、Safariへの対応*/
/*
body::-webkit-scrollbar{
  display: none;
}
*/
img {
  max-width: 100%;
  height: auto; }

a img {
  border: none; }

/*---PCは非表示、SPは表示---*/
.is-pc {
  display: none; }

.is-sp {
  display: block; }

/*---loading---*/
.loadingOverlay {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1001;
  color: #000;
  background: #fff; }

.loader,
.loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em; }

.loader {
  margin: 60px auto;
  font-size: 8px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.8em solid rgba(186, 0, 10, 0.2);
  border-right: 0.8em solid rgba(186, 0, 10, 0.2);
  border-bottom: 0.8em solid rgba(186, 0, 10, 0.2);
  border-left: 0.8em solid #ba000a;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.4s infinite linear;
  animation: load8 1.4s infinite linear; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.loader.is-show,
.loadingLogo.is-show {
  display: none; }

.loadingOverlay.is-show {
  display: none; }

/*--- wrap ---*/
.wrap {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  position: relative; }

/*----------------------------
ナビゲーション用ボタン
-----------------------------*/
.nav_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  position: fixed;
  width: 58px;
  height: 58px;
  right: 3px;
  top: 3px;
  box-sizing: border-box;
  border-radius: 50%;
  padding: 5px 15px;
  background: rgba(119, 0, 7, 0.6);
  background-size: 100%;
  z-index: 99;
  transition: ease .5s;
  cursor: pointer; }

.nav_btn.is-open {
  background: #8b0008; }

.navbar_toggle {
  z-index: 999; }

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s; }

.navbar_toggle_icon:nth-child(1) {
  top: 0; }

.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0; }

.navbar_toggle_icon:nth-child(3) {
  top: 0; }

/*ハンバーガーメニューの開閉*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg); }

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0; }

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg); }

.navbar_toggle {
  margin: 0 0 0 auto; }

/*---------------------------------
     ナビゲーション
----------------------------------*/
.gnav {
  position: fixed;
  z-index: 98;
  top: 0;
  top: -100vh;
  height: 100vh;
  width: 100vw;
  padding-bottom: 0;
  transition-property: all;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #e00000;
  background: linear-gradient(0deg, #e00000 0%, #730202 58%, #210000 100%);
  font-family: YakuHanMPs, "Noto Serif JP", serif;
  font-size: 2.2rem;
  opacity: 0; }

.gnav.is-show {
  top: 0;
  opacity: 1; }

.nav {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%; }

.navLogo {
  display: block;
  width: 40%;
  max-width: 180px;
  margin: 4vw auto 5vw auto;
  padding: 0 0; }

.nav ul.navList {
  display: block;
  width: 100vw;
  height: auto;
  padding: 0 0 0 0;
  margin: 0 0;
  line-height: 1.0;
  font-family: 'Crimson Text','Noto Serif JP', serif;
  font-weight: 400; }

.nav ul.navList > li {
  width: 70%;
  margin: 8px auto;
  padding: 0;
  text-align: center;
  line-height: 1.0;
  border-bottom: 1px dotted #ff2400; }

.nav ul.navList > li.no-border {
  border-bottom: none; }
  .nav ul.navList > li.no-border .sns_nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: auto;
    min-width: 190px;
    max-width: 360px;
    margin: 0 auto;
    padding: 8px 0 5px 0; }
    .nav ul.navList > li.no-border .sns_nav div {
      width: 28%;
      height: auto;
      margin: 0 2px;
      padding: 0; }
      .nav ul.navList > li.no-border .sns_nav div img {
        height: 30px !important; }

li.slash {
  display: none; }

.nav ul.navList > li a {
  display: block;
  width: 100%;
  height: auto;
  padding: 8px 0;
  margin: 0;
  text-align: center;
  text-decoration: none;
  transition: 0.5s ease;
  font-size: 1.7rem;
  color: #fff; }

.nav ul.navList > li a img {
  width: auto;
  height: 30px; }

.condensed {
  width: 100%; }

@media screen and (max-width: 560px) {
  .condensed {
    transform: scale(0.8, 1);
    transform-origin: 0 0;
    width: 125%; } }
/*----------
   TABLET
----------*/
@media screen and (min-width: 600px) and (max-width: 799px) {
  .is-pc {
    display: block; }

  /*PCのみ表示の時*/
  .is-sp {
    display: none; }

  /*スマホのみ表示の時*/ }
@media screen and (min-width: 800px) and (max-width: 1023px) {
  .is-pc {
    display: block; }

  /*PCのみ表示の時*/
  .is-sp {
    display: none; }

  /*スマホのみ表示の時*/ }
/*----------
   PC
----------*/
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8; }

  /*---PCは表示、SPは非表示---*/
  .is-pc {
    display: block; }

  /*PCのみ表示の時*/
  .is-sp {
    display: none; }

  /*スマホのみ表示の時*/
  .nav_btn {
    right: 10px;
    top: 10px; }

  .navLogo {
    margin: 50px auto 20px auto;
    padding: 0 0; }

  .nav ul.navList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    width: 900px;
    height: auto;
    padding: 0 0 0 0;
    margin: 0 auto;
    line-height: 1.0; }

  .nav ul.navList > li {
    display: flex;
    width: auto;
    margin: 10px 8px;
    padding: 0;
    text-align: center;
    line-height: 1.0;
    border-bottom: 0; }

  li.slash {
    display: flex;
    width: 18px !important;
    height: 32px !important;
    margin: 0;
    padding: 0;
    background: url("../img/common/slash2.svg") center center no-repeat;
    background-size: 100%;
    opacity: 0.5; }

  .nav ul.navList > li.goHome {
    width: 100%;
    padding: 0 100px; }

  .nav ul.navList > li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 6px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    transition: 0.5s ease;
    font-size: 1.8rem; }

  .nav ul.navList > li.goHome a {
    width: 140px;
    height: auto;
    padding: 26px 6px 0 6px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    transition: 0.5s ease; }

  .nav ul.navList > li a img {
    width: auto;
    height: 40px;
    transition: 0.3s ease; }

  .nav ul.navList > li a:hover,
  .nav ul.navList > li a:hover img {
    opacity: 0.6; } }
/* PC ここまで */
/* TRAILER */
.trailerWrap {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 0 0x 12vw 0;
  background: #620000;
  background: linear-gradient(90deg, #620000 10%, #a60000 45%, #a60000 55%, #620000 90%); }
  .trailerWrap h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    line-height: 0;
    background: rgba(0, 0, 0, 0.4); }
    .trailerWrap h2 img {
      width: 36%;
      max-width: 220px;
      margin: 0;
      padding: 0; }

.trailer {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
  padding: 8vw 8px 10vw 8px;
  background: transparent;
  text-align: center;
  position: relative; }
  .trailer #player {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden; }
  .trailer #player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .trailer ul.movieNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    width: 100%;
    max-width: 1000px;
    margin: 10px auto 20px auto;
    font-family: 'Noto Serif JP', serif; }
  .trailer .movieNav li {
    margin-right: 2px;
    margin-left: 2px;
    margin-bottom: 2px; }
    .trailer .movieNav li a {
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
      width: auto;
      min-width: 140px;
      padding: 10px 30px;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid #000;
      cursor: pointer;
      font-weight: 500;
      font-size: 16px;
      line-height: 1;
      color: #fff;
      text-decoration: none;
      transition: .5s; }
    .trailer .movieNav li a:hover {
      background: #fff;
      color: #000; }
  .trailer .movieNav li.active a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    width: auto;
    min-width: 140px;
    padding: 10px 30px;
    border: 1px solid #547180;
    cursor: default;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    background: #dc0000;
    border: 1px solid #ee8c8c;
    color: #fff;
    text-decoration: none; }

/*---etc.---*/
.pagetop {
  width: 60px;
  height: 60px;
  bottom: 10px;
  right: 10px;
  position: fixed; }
  .pagetop img {
    width: 60px; }

.alphaBnr a img {
  transition: .3s; }

.alphaBnr a:hover img {
  opacity: 0.6; }

.g_line {
  display: block;
  width: 100%;
  height: 2px;
  background: #dd9600;
  background: linear-gradient(145deg, #dd9600 10%, #ffd506 50%, #dd9600 90%);
  line-height: 0; }
