@charset "utf-8";
@import url("reset.css");

body {
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  font-family: YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  background-color: #ffffff;
  color: #ffffff;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}


article {
  min-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.inner{
  width: 1000px;
  margin:0 auto;
}

.background video{
	display: block;
	width: 2000px;
	height: auto;
	margin: 0 auto;
}

/*============
header
============*/
header{
  background: url("../images/header-bg.jpg")no-repeat top center;
  background-color: rgba(0,14,161,0.6);
}

header .header-bg{
	background: linear-gradient(top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 90%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 90%);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 90%);
	z-index: 1;
}

header .inner{
  height: 958px;
  position: relative;
}
header .inner h1{
	position: absolute;
	top: 0;
	left: 0;
  z-index: 1
}

header .inner .topics{
	position: absolute;
	top: 0;
	right: 8px;
  z-index: 1
}


header .inner .chara li{
	position: absolute;
}

header .inner .chara li:nth-child(1){
  top: 0;
  left: -500px;
  animation: fadein 1s ease both;
    animation-delay: 2.3s;
}

header .inner .chara li:nth-child(2){
  top: 0;
  right: -500px;
  animation: fadein 1s ease both;
    animation-delay: 3.3s;
}

/*fadein*/
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

header .inner h2{
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 408px;
	left: 64px;
  z-index: 10;
  width: 381px;
  height: 444px;
  background: url("../images/h2-tilte-anime.png") no-repeat;
  animation: flip 0.4s steps(8) backwards;
  animation-delay: 2.2s;
	animation-iteration-count: 3;
}

@keyframes flip {
  from {
    background-position: 0 top;
  }
  to {
    background-position: 0 bottom;
  }
}

header .inner .button{
	position: absolute;
	top: 20px;
	right: 0px;
}

header .inner .button:hover{
  filter: brightness(110%);
}

header .inner .movie {
  width: 274px;
  height: 157px;
  padding: 4px 0 0 4px;
  position: absolute;
  top: 19px;
  background: url("../images/movie-bg.jpg") no-repeat top center;
}


/*============
about
============*/
#about{
    background-color: rgba(0,14,161,0.6);
	position: relative;
}
#about .inner{
	height: 950px;
	position: relative;
}

#about .background{
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#about .inner h3{
	position: absolute;
	top: 130px;
	left: -55px;
}

#about .inner .cube{
	position: absolute;
	top: 340px;
	left: 325px;
}

#about .inner ul{
	position: absolute;
	top: 611px;
	text-align: center;
	left: 99px;
}

#about .inner li:nth-child(2n){
	padding-bottom: 56px;
}

#about .inner li:nth-child(2n+1){
	padding-bottom: 12px;
}

/*============
genshin
============*/
#genshin{
    position: relative;
    overflow-x: hidden;
    
}
.genshin-bg{
    background-color: rgba(0,0,0,0.7);
}
#genshin .inner{
	position: relative;
    height: 950px;
}

#genshin .inner h3{
	position: absolute;
	top: 100px;
	left: 95px;
}

#genshin .inner .txt{
	position: absolute;
	top: 522px;
	text-align: center;
	left: 115px;
}

#genshin .inner .txt li:nth-child(1){
	padding-bottom: 56px;
}

#genshin .inner .txt li:nth-child(n+2){
	padding-bottom: 12px;
}

#genshin .inner .chara li{
	position: absolute;
}

#genshin .inner .chara li:nth-child(3){
	top: 158px;
	left: 288px;
}

#genshin .inner .chara li:nth-child(2){
	top: 205px;
	left: 220px;
}

#genshin .inner .chara li:nth-child(1){
	top: 182px;
	left: 62px;
}

#genshin .inner p{
    position: absolute;
	top: 784px;
	left: 336px;
}

#genshin .inner .btn {
 	width: 335px;
 	height: 70px;
 	margin: 0.5em;
 	background: white;
 	color: black;
 	border: none;
 	border-radius: 20px;
 	font-size: 30px;
 	font-weight: bold;
 	cursor: pointer;
    position: relative;
 	z-index: 1;
 	overflow: hidden;
}

#genshin .inner button:hover {
 	color: white;
}

#genshin .inner button:after {
 content: "";
 background: black;
 position: absolute;
 z-index: -1;
 left: -20%;
 right: -20%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1);
 transition: all 0.5s;
}

#genshin .inner button:hover:after {
 transform: skewX(-45deg) scale(1, 1);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}

/*============
weapon
============*/

#weapon{
	position: relative;
    background-color: rgba(0,14,161,0.6);
}

#weapon .inner{
	position: relative;
	height: 950px;
}

#weapon .background{
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#weapon .inner h3{
	position: absolute;
	top: 99px;
	left: 208px;
}

#weapon .inner .chara li{
	position: absolute;
}

#weapon .inner .chara li:nth-child(1){
	top: 241px;
	left: 224px;
}

#weapon .inner .chara li:nth-child(2){
	top: 238px;
	left: -108px;
}

#weapon .inner .chara li:nth-child(3){
	top: 218px;
	left: 266px;
}

#weapon .inner .txt{
	position: absolute;
	top: 687px;
	text-align: center;
	left: 119px;
}

#weapon .inner .txt li:nth-child(3){
	padding-top: 56px;
}

#weapon .inner .txt li:nth-child(1){
	padding-bottom: 12px;
}

/*============
housing
============*/
#housing{
    position: relative;
	background-color: rgba(0,0,0,0.7);
}

#housing .inner{
	position: relative;
	height: 950px;
}

#housing .background{
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#housing .inner h3{
	position: absolute;
	top: 92px;
	left: 57px;
}

#housing .inner .txt{
	position: absolute;
	top: 731px;
	text-align: center;
	left: -46px;
}

#housing .inner .txt li{
	padding-bottom: 12px;
}

.swiper{
  position: absolute;
  top: 295px;
	left: -75px;
	width: 1150px;
}

 .swiper-slide {
	 width: 575px;
}
/*============
spec
============*/
#spec{
	background: url("../images/spec-bg.jpg")no-repeat top center;
}
#spec .inner{
    height: 415px;
    font-size: 15px;
    position: relative;
}

#spec table{
    padding: 40px 0 0 50px;
    width: 680px;
    border-spacing: 3px;
    border-collapse:separate;
}
#spec tr{
    padding: 10px;
}
#spec th{
    padding: 10px;
    background: rgba(167,175,255,0.8);
    color: white;
}

#spec td{
    background: rgba(255,255,255,0.8);
    color: #000ea1;
    padding: 10px;
    line-height: 20px;
    display: table-cell;
    vertical-align: middle;
}

#spec .tdStyle{
    padding: 10px;
    background: rgba(92,106,240,0.8);
    color: white;
    text-align: center;
}

#spec .inner .btn {
	position: absolute;
    top: 158px;
    right: 95px;
 	width: 100px;
 	height: 100px;
    padding: 5px 0 0 0;
 	margin: 0.5em;
 	background: white;
    color: #000000;
 	border: none;
 	border-radius: 20px;
 	font-size: 30px;
 	font-weight: bold;
 	cursor: pointer;
 	z-index: 1;
 	overflow: hidden;
}

#spec .inner button:hover {
 	color: white;
}

#spec .inner button:after {
 content: "";
 background: black;
 position: absolute;
 z-index: -1;
 left: -20%;
 right: -20%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1.5);
 transition: all 0.5s;
}

#spec .inner button:hover:after {
 transform: skewX(-45deg) scale(1.5, 1.5);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}

/*============
footer
============*/

footer{
	background: url("../images/footer-bg.jpg")repeat top center;
    position: relative;
}

footer .inner{
    height: 200px;
}

#footer-btn{
    position: fixed;
    bottom: 0;
    min-width: 1000px;
    width: 100%;
    text-align: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    display: flex;
    z-index: 100;
}

#footer-btn .btn {
 	width: 335px;
 	height: 70px;
 	margin: 0.5em;
 	background: white;
 	color: black;
 	border: none;
 	border-radius: 20px;
 	font-size: 30px;
 	font-weight: bold;
 	cursor: pointer;
    position: relative;
 	z-index: 1;
 	overflow: hidden;
}

#footer-btn button:hover {
 	color: white;
}

#footer-btn button:after {
 content: "";
 background: black;
 position: absolute;
 z-index: -1;
 left: -20%;
 right: -20%;
 top: 0;
 bottom: 0;
 transform: skewX(-45deg) scale(0, 1);
 transition: all 0.5s;
}

#footer-btn button:hover:after {
 transform: skewX(-45deg) scale(1, 1);
 -webkit-transition: all 0.5s;
 transition: all 0.5s;
}

footer #stop{
    width: 1000px;
    height: 100px;
}

footer .moonrabi{
    font-size: 13px;
    text-align: center;
    line-height: 20px;
}
footer .moonrabi p{
    padding: 10px;
}
footer .moonrabi a{
    color: white;
    text-decoration: none;
}

footer .moonrabi a:hover{
    text-decoration: underline;
}

/*============
ローディング
============*/
.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#000ea1;
  z-index:9999;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(255,255,255,1);
  width: 0;
  height: 1px;
}

.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}

.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
          animation: shutterOpen 2.6s forwards;
}

#wrapper {
  -webkit-animation: contentScale 2.6s forwards;
          animation: contentScale 2.6s forwards;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

/*============
ふわっ
============*/
.fadein {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.0s;
}
.fadein.fadein-left {
    transform: translate(-30px, 0);
}
.fadein.fadein-right {
    transform: translate(30px, 0);
}
.fadein.fadein-up {
    transform: translate(0, -30px);
}
.fadein.fadein-bottom {
    transform: translate(0, 30px);
}
.fadein.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}