@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
*, *:before, *:after {
box-sizing: border-box;
}
a{
  outline: none;
  text-decoration:none;
}
img{
	vertical-align: bottom;
}
/* ------ */

html{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
/*	scroll-behavior: smooth;*/
}

body {
	font-family: "BIZ UDPGothic", "Josefin Sans", sans-serif;
	width: 100%;
	color: #000;
  font-size: 2.1rem;/*body内基本フォントサイズ*/
	background-color: #000;
}

.inner{
	width: 1000px;
  margin: 0 auto;
}

button{
  outline: none;
}
/* Firefox */
button::-moz-focus-inner {
  border: 0;
}

.clearfix:after {
 visibility: hidden;
 display: block;
 font-size: 0;
 content: " ";
 clear: both;
 height: 0;
}

.sp{
  display: none;
}

@media screen and (max-width:980px) {
  .pc{
    display: none;
  }
  
  .sp{
    display: block;
  }
}

/*------------------------------------------------------------------------------------------------
pagetop
------------------------------------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  width: 190px;
	text-align: center;
}

.pagetop p:first-child{
  margin-bottom: 10px;
}

/*------------------------------------------------------------------------------------------------
moonrabi-Menu
------------------------------------------------------------------------------------------------*/
.bgColor{
	background-color: #fff;
}

#moonrabi-nav{
  font-family: Meiryo, "sans-serif";
  color: #fff;
  background-color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
  padding: 0.5rem;
  width: 1000px;
  height: 50px;
}
#moonrabi-nav ul{
  list-style: none;
  position: relative;
  font-weight: bold;
  margin-top: 5px;
  display: flex;
  align-items: center;
  float: right;
}


#moonrabi-nav ul li{
 margin-left: 7px;
}

#moonrabi-nav .moonrabi-btn{
  display: flex;
  justify-content: space-evenly; 
  align-items: center;
	text-decoration: none;
	width: auto;
	padding: 0.7rem 1rem;
	font-weight: bold;
	background: #39b89f;
	color: #fff;
	position: relative;
}

#moonrabi-nav .moonrabi-btn-non{
  display: flex;
  justify-content: space-evenly; 
  align-items: center;
	text-decoration: none;
	width: auto;
	padding: 0.7rem 1rem;
	font-weight: bold;
	background: #d0d0d0;
	color: #fff;
	position: relative;
}
#moonrabi-nav h1{
  float: left;
}
#moonrabi-nav .moonrabi-btn::before {
	content: '';
	width: 0.7rem;
	height: 0.7rem;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
  margin-right: 1.5rem;
}

#moonrabi-nav ul li .moonrabi-btn:hover {
	background: #595656;
}
/*------------------------------------------------------------------------------------------------
header
------------------------------------------------------------------------------------------------*/

header{
  background: url("../images/header-bg.jpg") no-repeat top center;
	overflow: hidden;
  height: 848px;
}

header .inner{
  position: relative;
}

header .inner h1{
  position: absolute;
  top: 689px;
  right: 17px;
  z-index: 2;
}

header .inner h2{
  position: absolute;
  top: 176px;
  right: 31px;
  z-index: 2;
	  animation-duration: 1.5s;
  animation-delay: 3s;
  animation-fill-mode: both;
　opacity: 0;
}

header .inner .header-chara{
  position: absolute;
  top: 21px;
  left: -170px;
	animation-duration: 1.5s;
  animation-delay: 2s;
  animation-fill-mode: both;
　opacity: 0;
}

header .inner .catch{
  position: absolute;
  top: 148px;
  left: 0;
  z-index: 2;
	  animation-duration: 1.5s;
  animation-delay: 3s;
  animation-fill-mode: both;
　opacity: 0;
}

/* ============
animation
============*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadein {
  animation-name: fadeIn;
}

.fade_in {
  opacity: 0.1;
  transform: translate(0, 80px);
  transition: all 500ms; }

.fade_in.left_side {
  transform: translate(-160px, 0); }

.fade_in.right_side {
  transform: translate(160px, 0); }

.fade_in.scrollin {
  opacity: 1;
  transform: translate(0, 0); }

/*------------------------------------------------------------------------------------------------
nav
------------------------------------------------------------------------------------------------*/
nav{
  position: relative;
  background: url(../images/nav-bg.png) repeat top center;
  width: 1030px;
  height: 98px;
  top: 0;
  z-index: 1000;
}

nav ul{
  display: flex;
  justify-content: center;
}

nav ul li{
  margin-right: 0px;
}

nav ul li:last-child{
  margin-right: 0;
}

nav.fixed{
	position: fixed;
}

/*------------------------------------------------------------------------------------------------
loading
------------------------------------------------------------------------------------------------*/
.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
 background: radial-gradient(ellipse at center, #07100a 0%, #410b0a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s linear;
	z-index: 1100;
	
}

.loading.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}


.magic-circle {
  width: 100px;
  height: 100px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #f5d68e;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  box-shadow: 0 0 20px rgba(243, 79, 84, 0.4);
}

.loading-text {
  margin-top: 20px;
  color: #f5d68e;
  font-size: 1.2rem;
  text-shadow: 2px 2px 15px #f34f54;
  letter-spacing: 2px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/*------------------------------------------------------------------------------------------------
register
------------------------------------------------------------------------------------------------*/

.register{
  position: relative;
  background: url(../images/patten_bg.jpg) repeat top center;
  width: 100%;
  height: 107px;
  top: 0;
	z-index: 3;
}

.register ul{
  padding-top: 15px;
  display: flex;
  justify-content: center;
}

.register ul li{
  margin-right: 21px;
}

.register ul li:last-child{
  margin-right: 0;
}

/*------------------------------------------------------------------------------------------------
benefits
------------------------------------------------------------------------------------------------*/
#benefits{
  background: url("../images/benefits-bg.jpg") no-repeat top center;
  overflow: hidden;
}

#benefits .inner{
  height: 1010px;
  position: relative;
}

#benefits .inner .intro {
  position: absolute;
  top: 39px;
  left: 145px;
}

#benefits .inner .txt {
  position: absolute;
  top: 166px;
  left: 52px;
}

#benefits .inner .gift {
  position: absolute;
  top: 321px;
  left: 131px;
}

#benefits .inner .chara li {
  position: absolute;
}

#benefits .inner .chara li:nth-of-type(1){
  top: 486px;
  left: -255px;
}

#benefits .inner .chara li:nth-of-type(2){
  top: 317px;
  left: -2px;
}

#benefits .inner .chara li:nth-of-type(3){
  top: 438px;
  right: -72px;
}

/*------------------------------------------------------------------------------------------------
abyss
------------------------------------------------------------------------------------------------*/
#abyss{
  background: url("../images/abyss-bg.jpg") no-repeat top center;
  position: relative;
  overflow: hidden;
}

#abyss .inner{
  height: 1182px;
  position: relative;
  text-align: center;
}

#abyss .title{
  padding-top: 33px;
}

#abyss .story li{
  padding-bottom: 25px;
}

#abyss .story li:last-child{
  padding-bottom: 0;
}

#abyss .title2{
	text-align: left;
}

#abyss .map{
	display: flex;
  justify-content: center;
}

#abyss .map li{
	padding-right: 32px;
}
/*------------------------------------------------------------------------------------------------
update
------------------------------------------------------------------------------------------------*/
#update{
  background: url("../images/update-bg.jpg") no-repeat top center;
}

#update .inner{
  height: 2008px;
  text-align: center;
  position: relative;
}

#update .title{
  position: absolute;
	top: 114px;
	left: -2px;
}

#update .txt{
  position: absolute;
	top: 271px;
	left: -2px;
}

#update .chara{
	position: absolute;
	top: 49px;
	right: -160px;
}

#update .title2{
  position: absolute;
	top: 599px;
	left: 0;
}

#update .flow{
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	top: 743px;
	left: 0;
}

#update .txt2{
  position: absolute;
	top: 1748px;
	left: -2px;
}
/*------------------------------------------------------------------------------------------------
about
------------------------------------------------------------------------------------------------*/
#about{
  background-color: rgba(0,0,0,0.50);
  height: 1291px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#about .inner{
  position: relative;
}

#about .inner .title{
  position: absolute;
  top: 50px;
  left: 0;
}

#about .inner .title2{
  position: absolute;
  top: 180px;
  left: 0;
}

#about .inner .txt li{
  position: absolute;
}

#about .inner .txt li:nth-of-type(1){
	top: 397px;
  left: 67px;
}

#about .inner .txt li:nth-of-type(2){
	top: 540px;
  left: 39px;
}

#about .inner .chara li{
  position: absolute;
}

#about .inner .chara li:nth-of-type(1){
	top: 765px;
	left: -84px;
}

#about .inner .chara li:nth-of-type(2){
	top: 777px;
	right: 29px;
}

#about .inner .chara li:nth-of-type(3){
	top: 722px;
	left: 357px;
}



.background video{
	display: block;
	min-width: 100%;
	height: auto;
	margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
/*------------------------------------------------------------------------------------------------
btn
------------------------------------------------------------------------------------------------*/
#btn{
  background: url("../images/patten_bg.jpg") repeat top center;
  height: 123px;
}

#btn ul{
  padding-top: 23px;
  display: flex;
  justify-content: center;
}

#btn ul li{
  margin-right: 18px;
}

#btn ul li:last-child{
  margin-right: 0;
}
/*------------------------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------------------------*/
footer{
  background-color: #fff;
  height: 225px;
  text-align: center;
}

footer ul{
  padding: 30px 0;
  display: flex;
  justify-content: center;
    align-items: center;
}

footer li{
  padding: 0 10px 0 0;
}

footer p{
    padding-top: 16px;
}

footer #copyright{
    font-size: 14px;
    color: #959aad;
    line-height: 1.5;
    letter-spacing: normal;
}

