html {
  font-size: 62.5%
}

section {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
  position: relative;
  padding: 100px 0px;
  margin-bottom: 2em;
}
.sp{
  display: none!important;
}

a {
  text-decoration: none;
}

#wrap img {
  background-image: url("../img/load_image.png");
  background-repeat: no-repeat;
  background-position: center center;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #f7cf6a;
  z-index: 9999;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #000;
  z-index: 2;
}

#loader p {
  font-family: 'Bangers' !important;
}

#loader_img {
  mix-blend-mode:multiply;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Bangers', cursive;
  font-family: 'Play', sans-serif;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

header {
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  align-items: center;
  background: #000;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  top: -80px;
  position: fixed;
  width: 100%;
  z-index: 9998;
  transition: .5s;
}

.flexbox a, h2, .name {
  font-family: "impact";
}

.story_text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 10em;
  margin: 0 0 0.5em;
}

#fixed-header.is-show {
  top: 0;
}

header .inner {
  margin: 0 auto;
  max-width: 100%;
  width: 1020px;
}

header .flexbox {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-global ul {
  list-style: none;
  font-size: 2em;
}

.nav-global li {
  margin: 0 15px;
}

.nav-global li:last-child {
  margin-right: 0;
}

.flexbox a {
  color: #fff;
  text-decoration: none;
}

.flexbox p {
  padding: 0 5px;
}

#wrap {
  overflow: hidden;
}

.contents-area {
  color: #000;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.position-now {
  height: 100vh;
}

.link-current p {
  color: #000;
  background-color: #fff;
}

/*---- エリア ----*/
.area_center {
  margin-bottom: 5em;
}

footer {
  padding: 10px 0;
  text-align: center;
  width: 100%;
  background-color: #000;
  color: #fff;
}

.waku {
  height: 100px;
  width: 100%;
  background-color: #000;
}

/*----- ボタン -----*/
button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #183153;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: none;
}

button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #FFD401;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

button span {
  font-family: "impact";
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

button:hover span {
  color: #183153;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.btn_center {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}

.btn_n {
  display: flex;
  justify-content: space-evenly;
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*---------- TOP ----------*/
#top {
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #000;
  height: 100%;
  padding: 0;
  margin: 0;
}

.top_img {
  display: flex;
  opacity: 0;
  animation: show 10s both;
  animation-timing-function: ease-out;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 0% 30%;
}

#top .top_02 {
  position: absolute;
  top: 0;
  opacity: 0;
  animation-delay: 2s;
}

@keyframes show {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

#story, #character, #lineup {
  height: auto;
}

/*---------- STORY ----------*/
#story {
  justify-content: center;
  align-items: center;
  background-image: url(../img/story_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #ffd9d9;
  background-blend-mode: screen;
}

.story_text {
  width: 50%;
  margin: auto;
  text-align: left;
}

.story_summary{
  display: flex;
  font-size: 1.5em;
  line-height: 3em;
  flex-direction: row;
}

.bgextend{
  text-align: left!important;
}
/*---------- CHARACTER ----------*/
#character {
  color: #fff;
}

#character h2, #contact h2 {
  margin: 1em 0 0;
}

#character .character_pf, #lineup .lineup_frex, #contact .contact_img {
  width: 50%;
  margin: auto;
  padding: 10em;
  display: flex;
  justify-content: center;
  justify-content: space-around;
}

#character .character_pf:nth-child(even), #lineup .lineup_frex_rowre .lineup_frex:nth-child(odd) {
  display: flex;
  flex-direction: row-reverse;
}

#character .character_text {
  text-align: left;
}

#character .character_pf .name {
  font-size: 3em;
}

#character .character_pf p, #lineup .lineup_txt p {
  font-size: 1.5em;
}

#character .character_img, #lineup .lineup_img {
  margin-top: 30px;
  text-align: center;
}

#character .character_img img, #lineup .lineup_img img {
  margin-right: 10px;
  width: 400px;
  height: 400px;
  border: 1px solid #ddd;
  object-fit: contain;
}

#character .character_txt_box {
  width: 50%;
  padding: 0 4em;
  margin: auto;
}

.Block1::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  /*ここで三角形のサイズを決める。必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width: 120px 0 0 100vw;
  /*transparentで余分な線を消す*/
  border-color: transparent transparent transparent #000;
}

.Block1 {
  position: relative;
}

.Block2 {
  position: relative;
  z-index: 0;
}

.Block2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  /*四角形を傾けます*/
  transform: skewY(5deg);
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000;
}

/*----ラインナップ----*/
.lineup_frex {
  display: flex;
  justify-content: center;
}

#lineup .lineup_img img {
  width: auto;
  height: 300px;
  border: none;
}

#lineup .lineup_frex {
  padding: 5em;
}

#lineup .lineup_txt {
  display: flex;
  align-items: center;
  text-align: left;
  width: 50%;
}

#lineup .lineup_txt_box h3 {
  font-family: 'Bangers', cursive;
  font-size: 3em;
}

#lineup .lineup_frex_rowre {
  background-color: #000;
  color: #fff;
}

/*----- contact -----*/
#contact {
  background: #000;
  color: #fff;
  margin: 0;
}

.image_box {
  width: 200px;
  display: block;
}

#contact img {
  display: inline-block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

#contact p {
  font-size: 2em;
  font-family: 'Play', sans-serif;
}

figure, p {
  /* リセット用（場合によっては不要） */
  margin: 0;
}

.image_box {
  width: 350px;
  display: block;
}

.hover {
  position: relative;
}

.hover figure {
  overflow: hidden;
}

.hover figure img {
  display: block;
  width: 100%;
  transition: 0.3s;
}

.hover figure figcaption {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.hover figure figcaption .txt_box {
  position: relative;
  width: 100%;
  height: 100%;
}

.hover figure figcaption .txt_box>p {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hover:hover figure img {
  display: block;
  filter: blur(3px);
  opacity: 0.7;
}

.hover:hover figure figcaption {
  opacity: 1;
}
