@charset "utf-8";
/*///////////////////////////////////////////////////////////*/
/*////////////////////////// loging ////////////////////////////*/
/*///////////////////////////////////////////////////////////*/
#all_contents {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#load_animation {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 9999;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-size: 11px;
	letter-spacing: 2px;
}
#load_animation img{
	margin-bottom: 10px;
}
.fadeins{
	opacity: 0;
}
.fadein {
	animation: fadein 0.7s ease forwards;
}
@keyframes fadein {
	0% {  opacity: 0;}
	100% {  opacity: 1;}
}
.load {
	width: 50px;
	height: 50px;
	-webkit-animation: spin 1.5s linear infinite;
	-moz-animation: spin 1.5s linear infinite;
	-ms-animation: spin 1.5s linear infinite;
	-o-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
	0% {-ms-transform: rotate(0deg);}
	100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
	0% {-o-transform: rotate(0deg);}
	100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
/*///////////////////////////////////////////////////////////*/
/*////////////////////////// common ////////////////////////////*/
/*///////////////////////////////////////////////////////////*/

body{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
	color: #fff;
	background: #000;
}
section{
	margin: 0 0 140px 0 ;
}
.section_title{
	font-size: 63px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2em;
    font-family: 'Hind', sans-serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.section_title, #concept .wrapper{
	word-break: normal;
}
.back1, .back2{
	content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
	opacity: 0;
	transition: .3s ease;
}
.back1{
	background: url('../img/back1.jpg') no-repeat bottom center;
	background-size: cover;
}
.back2{
	background: url('../img/back2.jpg') no-repeat top center;
	background-size: cover;
}
.back1.back-fadein, .back2.back-fadein {
	opacity: 1;
}
.back_pattern{
	background: url('../img/back.gif?0129') repeat top center;
	padding: 110px 0 100px 0;
}
.flex_c{
	display: flex;
	justify-content: center;
}
.invisible {
  visibility: hidden;
}
@media only screen and (max-width: 980px){
	.section_title{
		font-size: 50px;
	}
}
@media only screen and (max-width: 768px){
	.back_pattern{
		padding: 0 0 70px 0;
	}
	section{
		margin: 0 0 70px 0 ;
	}
}
@media only screen and (max-width: 540px){
	.section_title{
		font-size: 39px;
		letter-spacing: 2px;
	}
}
@media only screen and (max-width: 480px){
	.back_pattern{
		padding: 0 0 20px 0;
	}
}


/*///////////////////////////////////////////////////////////*/
/*////////////////////////// TOP ////////////////////////////*/
/*///////////////////////////////////////////////////////////*/
.mainimage{
	position: relative;
	background: #000;
}
.mainimage .box{
	position: relative;
}
.mikado_moss{
	position: absolute;
	top: 70px;
	left: 20px;
	max-height: 20%;
}
.raiden_logo {
    position: absolute;
    bottom: -10%;
    left: 20px;
    max-height: 60%;
    z-index: 100;
}
.release{
	margin-top: -30px;
}

.platform_logo{
	position: absolute;
	top: 0;
	left: 0;
}
.company_logo{
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 99;
}
.company_logo a{
	margin-left: 10px;
}
h1.mainitem{
	margin: 0 auto!important;
	text-align: center;
    display: block;
	max-width: 439px;
	width: 60%;
	position: absolute;
	left: 20px;
	bottom: 20px;
}
.top_bottom_area{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: right;
}
.top_bottom_area .banner{
	margin-bottom: 10px;
	margin-right: 10px;
}
.sns_area{
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	padding: 15px;
	text-align: center;
}
.container {
  	display: flex;
  	flex-direction: row;
	justify-content:center;
}
.container_item:last-child{
	padding-top: 10px;
}
.container_item a{
	padding: 0 8px;
}
.mikado_logo{
	margin-left: 0!important;
}
@media only screen and (max-width: 1200px){
	.raiden_logo {
		bottom: 2%;
	}
}
@media only screen and (max-width: 768px){
	.mikado_moss{
		max-width: 300px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.raiden_logo {
		position: absolute;
	  top: 59%;
	  left: 50%;
		bottom: auto;
	  transform: translateY(-50%) translateX(-50%);
	  -webkit- transform: translateY(-50%) translateX(-50%);
	  margin: auto;
	}
	.top_bottom_area .banner{
		width: 210px;
	}
}
@media only screen and (max-width: 540px){
	.container{
		display: block;
	}
	.container_item:last-child{
		margin-bottom: -70px;
		margin-top: 25px;
	}
	.mainimage{
		margin-bottom: 50px;
	}
	.top_bottom_area{
		text-align: center;
	}
	.mikado_moss{
		max-width: 60%;
		left: 0;
		right: 0;
		margin: auto;
	}
	.raiden_logo {

	}
	.mikado_logo img {
	    width: 55px;
	}
	.moss_logo img {
	    width: 100px;
	}
}
@media only screen and (max-width: 480px){
	.platform_logo{
		/*width: 120px;*/
	}
	.company_logo a {
	    margin-left: 5px;
	}
	.sns_area a{
		margin-left: 10px;
	}
	.mikado_logo{
		margin-right: 15px;
	}
	.top_bottom_area .banner{
		margin-right: 0;
	}
}
/*///////////////////////////////////////////////////////////////*/
/*////////////////////////// concept ////////////////////////////*/
/*///////////////////////////////////////////////////////////////*/

#concept .youtubeblock {
    width: 100%;
    margin: 0 auto 80px auto;
    max-width: 760px;
	position: relative;
	padding: 5px;
	background: rgb(231,0,98);
	background: linear-gradient(135deg, rgba(231,0,98,1) 0%, rgba(190,78,209,1) 40%, rgba(113,226,209,1) 90%);
}
#concept .youtubeblock::before{
	content: '';
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
	height: calc(100% - 10px);
    margin: 5px;
    opacity: 0.8;
}
#concept .youtube_ctrl {
    width: 100%;
    margin: 0 auto;
	position: relative;
	padding-top: 56.25%;
}
#concept .youtube_ctrl::before, #concept .youtube_ctrl::after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	z-index: 20;
}
#concept .youtube_dec_rt, #concept .youtube_dec_lb{
	position: absolute;
	z-index: 20;
	width: 25%;
	max-width: 169px;
}
#concept .youtube_dec_rt{
	top: -1px;
	right: -1px;
}
#concept .youtube_dec_lb{
	bottom: -1px;
	left: -1px;
}
#concept .youtube_ctrl::before{
	top: -3px;
	left: -3px;
	border-width: 30px 30px 0 0;
	border-color: #e70062 transparent transparent transparent;
}
#concept .youtube_ctrl::after{
	bottom: -3px;
	right: -3px;
	border-width: 0 0 30px 30px;
	border-color: transparent transparent #71e2d1 transparent;
}
#concept .youtube {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
#concept .youtube::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: all 0.3s;
}
#concept .youtube img {
    width: 100%;
}
#concept .youtube_play {
    position: absolute;
    top: calc(50% - 26px);
    left: calc(50% - 26px);
    z-index: 11;
    cursor: pointer;
    width: 52px!important;
    height: 52px!important;
}
#concept .youtube_ctrl iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
#concept{
	margin: 90px 0 100px 0;
}
#concept .wrapper{
	text-align:center;
}
.concept_title{
	font-family: 'Noto Serif JP',serif;
	font-size: 100%;
	font-weight: 900;
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 40px;
	line-height: 1.2em;
	font-family: ;
	text-shadow: 5px 5px 4px #e8004c;
}
.concept_title.m_bottom{
	margin-bottom: 20px;
}
.point{
	font-size: 20px;
}
.point .m_bottom{
	margin: 10px 0;
	line-height: 1.5em;
}
.point .font_m{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2em;
}
.update{
	background: rgba(231,0,98);
	background: linear-gradient(90deg, rgba(231,0,98,0.2) 0%, rgba(221,18,200,0.2) 21%, rgba(113,226,209,0.2) 94%);
	padding: 50px 30px;
	margin: 30px 0 100px 0;
	text-align: left;
	font-size: 18px;
}
.update p{
	text-indent: -1em;
	padding-left: 1em;
}

@media only screen and (max-width: 980px){
	.concept_title{
		font-size: 35px;
	}
	.point{
		font-size: 15px;
	}
	.point .font_m{
		font-size: 24px;
	}
}
@media only screen and (max-width: 768px){
	#concept {
		margin: 60px 0 70px 0;
	}
}
@media only screen and (max-width: 540px){
	.concept_title{
		font-size: 32px;
		margin-bottom: 30px;
	}
	#concept .youtubeblock{
		padding: 3px;
	}
	#concept .youtubeblock::before{
	    width: calc(100% - 8px);
		height: calc(100% - 8px);
	}
	.point .font_m{
		font-size: 20px;
	}
	.update{
		font-size: 15px;
		margin: 30px 0 60px 0;
		padding: 20px 20px;
	}
}
@media only screen and (max-width: 480px){
	#concept .youtube_ctrl::before{
		border-width: 20px 20px 0 0;
	}
	#concept .youtube_ctrl::after{
		border-width: 0 0 20px 20px;
	}
}
/*///////////////////////////////////////////////////////////////*/
/*////////////////////////// gest ////////////////////////////*/
/*///////////////////////////////////////////////////////////////*/
.guest{
	display: flex;
  	flex-wrap: wrap;
	justify-content: center;
}
.guest a{
	display: block;
	width: 25%;
	margin-bottom: 20px;
}
@media only screen and (max-width: 860px){
	.guest a{
		width: 33%;
	}
}
@media only screen and (max-width: 640px){
	.guest a{
		width: 50%;
	}
}
/*///////////////////////////////////////////////////////////*/
/*/////////////////////////// info ////////////////////////////*/
/*///////////////////////////////////////////////////////////*/
#info .img_position{
	position: relative;
	background: #3a515d;
	border: 1px solid #2CCABE;
	max-width: 840px;
	margin: 0 auto;
	padding: 20px;
}
#info .text_box{
	height: 185px;
	overflow-y: scroll;
	padding: 0 10px;
	font-size: 15px;
}
.text_box::-webkit-scrollbar {
    width: 4px;
}
.text_box::-webkit-scrollbar-track {
	background: #9d9d9d;
	border-radius: 2px;
}
.text_box::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background:#fff;
	height: 50px;
}
#info .text_box::after, #info .text_box::before {
    content: '';
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 32px;
    height: 36px;
}
#info .text_box::before{
	background-image: url(../img/chara_left.gif);
    top: -1px;
    left: -1px;
}
#info .text_box::after {
    background-image: url(../img/chara_right.gif);
    bottom: -1px;
    right: -1px;
}
@media only screen and (max-width: 768px){
	#info {
		margin: 0 0 100px 0;
	}
}
@media only screen and (max-width: 480px){
	#info .img_position{
		padding: 15px;
	}
}

/*///////////////////////////////////////////////////////////////*/
/*////////////////////////// spec ////////////////////////////*/
/*///////////////////////////////////////////////////////////////*/
#spec{
	margin-bottom: 100px;
}
#spec .box{
	padding: 45px 20px 60px 20px;
	background: rgba(255,255,255,0.15);
}
#spec table{
	width: 100%;
	font-size: 18px;
	border-spacing: 2px;
}
#spec table th{
	width: 100%;
    display: block;
}
#spec table th div{
	padding: 5px 20px;
    background: #eee;
    color: #000;
    text-align: center;
    line-height: 1em;
    font-size: 15px;
    letter-spacing: 0.2em;
}
#spec table td{
	padding: 5px 0 15px 0;
    text-align: left;
    display: block;
}
#spec table td.last_td{
	padding-bottom: 0!important;
}
.spec_box{
	width: 95%;
    margin: auto;
    max-width: 1050px;
}
.spec_container{
	display: flex;
	justify-content: center;
  	flex-direction: row-reverse;
	align-items: center;
}
.spec_container_r{
	width: 46%;
	margin-left: 4%;
}
.spec_container_l{
	width: 50%;
}
@media only screen and (max-width: 980px){
	#spec table{
		font-size: 15px;
	}
	.spec_container_r{
		width: 56%;
	}
	.spec_container_l{
		width: 41%;
	}
	.spec_container {
	    display: block;
	}
	.spec_container_r {
	    max-width: 660px;
	    width: 100%;
	    text-align: center;
	    margin: 0 auto 30px auto;
	}
	.spec_container_l {
	    width: 100%;
		max-width: 660px;
	    margin: 0 auto;
	}
}
@media only screen and (max-width: 768px){
	#spec table td {
	    padding: 5px 0 15px 0;
	}
	#spec{
		padding-top: 0;
		background: rgba(255,255,255,0.15);
	}
	#spec .box {
	    padding: 80px 0 90px 0;
		background: none;
	}
}
@media only screen and (max-width: 640px){
	.spec_box{
		width: 100%;
	}
	#spec .box{
		padding: 60px 0 70px 0;
	}
	#spec {
	    margin-bottom: 70px;
	}
}

/*///////////////////////////////////////////////////////////////*/
/*////////////////////////// about ////////////////////////////*/
/*///////////////////////////////////////////////////////////////*/
#about{
	margin-bottom: 0;
}
#about .section_title{
	margin-bottom: 30px;
}
#about .float_l{
	width: 68%;
	font-size: 15px;
}
#about .float_r{
	width: 30%;
}
#about .float_l, #about .float_r{
	margin-bottom: 50px;
}
#about .cf{
	width: 95%;
	max-width: 1050px;
    margin: 0 auto;
}
#about b {
    display: block;
    font-size: 19px;
    background: rgba(255,255,255,0.2);
    text-align: center;
    margin-bottom: 35px;
    padding: 7px;
    letter-spacing: 4px;
    font-weight: normal;
}
@media only screen and (max-width: 768px){
	#about .float_r{
		display: none;
		float: none;
	}
	#about .float_l{
		width: 100%;
		float: none;
	}
	#about .float_l .show_768{
		margin: 0 0 0 20px;
		width: 200px;
	}
}
@media only screen and (max-width: 640px){
	#about .cf:last-child .float_l{
		margin-bottom: 20px;
	}
	#about b{
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 480px){
	#about .cf{
		width: 100%;
	}
	#about .float_l{
		margin-bottom: 15px;
	}
	#about .float_r{
		display: block!important;
		width: 100%;
		margin-bottom: 70px;
	}
	#about .float_l .show_768{
		display: none;
	}
}

/*///////////////////////////////////////////////////////////*/
/*////////////////// mode & system slider ///////////////////*/
/*///////////////////////////////////////////////////////////*/
#mode{
	margin-top: 140px;
}
.slick{
	position: relative;
}
.slick-slide {
  transition: .3s ease;
  transform: scale(.85);
  transform-origin: 100% 50%;
  outline: none;
  cursor: pointer;
}
.slick-center {
  transform: scale(1);
  transform-origin: 50% 50%;
  opacity: 1;
  cursor: auto;
}
.slick-center + .slick-slide {
  transform-origin: 0 50%;
}
.slider_caption{
	opacity: 0;
	margin-top: 10px;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
.slick-initialized .slick-slide .bk_cover{
	position: relative;
}
.slick-initialized .slick-slide .bk_cover::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	transition: .3s ease;
}
.slick-center .bk_cover::before{
	background: none!important;
}
.slick-center .slider_caption {
  opacity: 1;
  transition-delay: .5s;
}
.prev, .next{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: 0 auto;
	z-index: 99;
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	cursor: pointer;
}
.prev{
	left: 20px;
	border-width: 12.5px 25px 12.5px 0;
	border-color: transparent #ffffff transparent transparent;
}
.next{
	right: 20px;
	border-width: 12.5px 0 12.5px 25px;
	border-color: transparent transparent transparent #ffffff;
}
.slider_caption_title{
	position: relative;
	margin-right: 0.6em;
	padding-left: 8px;
}
.slider_caption_title::before{
	content: '';
	position: absolute;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 90%;
    background: #0a7d73;
}
.slider_caption p{
	margin-top: 8px;
}
.slider_caption p:first-child{
	margin-top: 0;
}
.air, .ground{
	position: relative;
	padding: 0 2px;
	display: inline-block;
}
.air{
	/*margin-right: 3px;*/
}
.air::before, .ground::before{
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 6px;
	z-index: -1;
}
.air::before{
	background: #3c5178;
}
.ground::before{
	background: #635645;
}


@media only screen and (max-width: 768px){
	#mode{
		margin-top: 90px;
		margin-bottom: 30px;
	}
	#system{
		margin-bottom: 30px;
	}
	.slider_caption{
		text-align: left;
		font-size: 13px;
	}
}
@media only screen and (max-width: 480px){
	.slick-center .slider_caption{
		text-align: left;
	}
	.next{
		right: 0;
	}
	.prev{
		left: 0;
	}
}

/*///////////////////////////////////////////////////////////*/
/*///////////////////////// CHARACTER //////////////////////////*/
/*///////////////////////////////////////////////////////////*/
.tab-area {
	float: left;
	width: 253px;
	cursor: pointer;
}
.tab {
	position: relative;
	margin-bottom: 10px;
	padding: 15px;
	font-size: 18px;
	background-color: #3a515d;
	text-align: center;
	opacity: 0.7;
	line-height: 1.2;
}
.tab.active::after, .tab.active::before{
	content: '';
	background-repeat: no-repeat;
	background-size: auto;
	position: absolute;
    width: 32px;
	height: 36px;
}
.tab.active::before{
	background-image: url(../img/chara_left.gif);
	top: 0;
	left: 0;
}
.tab.active::after{
	background-image: url(../img/chara_right.gif);
	bottom: 0;
	right: 0;
}
.tab.active {
	border: 1px solid #2CCABE;
	opacity: 1;
}
.tab_content-area {
	float: right;
	width: calc(100% - 270px);
}
.tab_content {
  display: none;
}
.tab_content.show {
  display: block;
}
.tab_caption{
	margin-top: 10px;
	font-size: 18px;
}
@media only screen and (max-width: 768px){
	#chara{
		margin-bottom: 90px;
	}
	.tab-area {
		float: none;
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
	.tab{
		width: 100%;
		max-width: 500px;
		font-size: 15px;
		display: block;
		margin: 0 auto 5px auto;
	}
	.tab_content-area{
		float: none;
		width: 100%;
	}
	.tab_caption{
		font-size: 15px;
	}
}
@media only screen and (max-width: 640px){
	#chara {
	    margin-bottom: 70px;
	}
}


/*///////////////////////////////////////////////////////////*/
/*///////////////////////// footer //////////////////////////*/
/*///////////////////////////////////////////////////////////*/

.footer_text{
	font-size: 11px;
	line-height: 1.2em;
	background: #000;
	text-align: center;
	padding: 15px 20px 20px 20px;
}
.footer_text p{
	margin-top: 5px;
}


/*///////////////////////////////////////////////////////////*/
/*/////////////////////////// nav ////////////////////////////*/
/*///////////////////////////////////////////////////////////*/
.fixed_position{
	height: 48px;
	position: relative;
}
nav{
	position: absolute;
	width: 100%;
	background: #000;
	font-size: 20px;
	top: 0;
	left: 0;
	z-index: 99;
}
nav.menu_fixed{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}
.menu_ul{
	max-width: 900px;
	margin: 0 auto;
}
.menu_list{
	width: 12%;
	float: left;
	text-align: center;
}
.menu_list:first-child, .menu_list:last-child{
	width: 20%;
}
.menu_list a{
	padding: 10px 4px;
	color: #fff;
	display: block;
	word-wrap: break-word;
	background: #000;
	transition: all 0.3s ease;
}
.menu_list a:hover{
	background: #152927;
}
.menu_sp{
	display: none;
}
@media only screen and (max-width: 768px){
	.fixed_position{
		height: 45px;
	}
	nav{
		font-size: 15px;
	}
	nav .wrapper{
		padding: 0;
	}
	.menu_sp{
		display: block;
		position: relative;
		padding: 10px 20px;
		font-size: 15px;
		text-align: center;
		cursor: pointer;
	}
	.menu_sp img{
		position: absolute;
		left: 20px;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.menu_ul{
		display: none;
		top: 0;
		left: 0;
		border-top: 1px solid #4d4d4d;
	}
	.menu_list{
		width: 100%!important;
	}
}
@media only screen and (max-width: 540px){
	nav{
		margin-top: 24px;
	}
	nav.menu_fixed{
		margin-top: 0;
	}
}


/*///////////////////////////////////////////////////////////*/
/*//////////////////////// SPECIAL //////////////////////////*/
/*///////////////////////////////////////////////////////////*/
#special{
	margin-bottom: 100px;
}
#special .float_l{
	width: 45%;
}
#special .float_r{
	width: 53%;
	font-size: 18px;
}
#special .float_r p{
	text-indent: -1em;
	padding-left: 1em;
}
#special .cf{
	max-width: 1050px;
	width: 95%;
	margin: 0 auto 30px auto;
}
#special b{
	display: block;
	margin-bottom: 10px;
	font-size: 22px;
}
@media only screen and (max-width: 768px){
	#special b{
		margin-bottom: 5px;
		font-size: 20px;
	}
	#special .float_r{
		font-size: 15px;
	}
}
@media only screen and (max-width: 640px){
	#special .float_l, #special .float_r{
		width: 100%;
		float: none;
	}
	#special .float_l{
		text-align: center;
	}
	#special .float_r{
		max-width: 480px;
		margin: 15px auto;
	}
	#special {
	    margin-bottom: 70px;
	}
}
@media only screen and (max-width: 480px){
	#special .cf{
		width: 100%;
	}
}
