@charset "utf-8";
#loading{
	background: #282828;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	z-index: 9999;
	-webkit-transition: all 1.0s ease-in-out;
	transition: all 1.0s ease-in-out;
}
#loading.started {
	opacity: 0;
}
#loading .loading-img_load_01 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 147px;
	height: 23px;
	z-index: 1;
	-webkit-animation-name: loading_txt-anime;
	animation-name: loading_txt-anime;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#loading .loading-img_load_02 {
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: -50%;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
    background-image: url(../img/geass_loading.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#loading .loading-img_load_02 img {
	opacity: 0;
	min-width: 100%;
	min-height: 100%;
}
#loading.finished .loading-img_load_02 {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#loading.start .loading-img_load_01 {
	display: none;
}
#loading.start .loading-img_load_02 {
	-webkit-transform: scale(3.0);
	transform: scale(3.0);
}

@keyframes loading_txt-anime {
	0% {
		opacity: 0;
	}
  50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
  }
}

/*
******************************************************************
* common.css
******************************************************************
*/
html {
	background-color: #000;
}
body {
	color: #ffffff;
	line-height: 1.6;
	word-wrap: break-word;
}
a:link, a:visited {
	color: #ffffff;
	text-decoration: none;
}
a:hover, a:active {
	color: #ffffff;
}
img {
	width: 100%;
}

/*
******************************************************************
* #header
******************************************************************/
#header {
    position: fixed;
    z-index: 51;
    top: -985px;
    left: 0;
    width: 100%;
}

.h_nav-open #header {
    bottom: 0;
    overflow-y: auto;
}

#header .nav_inner_glow {
	padding: 1% 0;
    background-image: url(../img/menu_bg.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

#header .nab_btn {
	display: block;
	position: relative;
}

.cover {
    position: fixed;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.7);
    transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
}
.h_nav-open .cover {
    opacity: 1;
    z-index: 50;
}

/*
******************************************************************
* .menu
******************************************************************/


/*
******************************************************************
* #pre-loader
******************************************************************/
#pre-loader {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #000;
}
#pre-loader .bg-load {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-animation: loading 2.5s ease 1.0s infinite;
  animation: loading 2.5s ease 1.0s infinite;
	z-index: 1;
}
#pre-loader .bg-load img {
	width: 100%;
}
#pre-loader .txt-load {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 125px;
	height: 33px;
	z-index: 2;
}
#pre-loader .txt-load:after {
	content: "";
	position: fixed;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: 2px solid transparent;
	border-radius: 50%;
	box-sizing: border-box;
	z-index: 2;
	transition: ease 1s;
	-webkit-transition: ease 1s;
}
svg {
	transform: rotate(-90deg);
	position: fixed;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition: ease 1s;
	-webkit-transition: ease 1s;
}
.loading circle {
	fill: transparent;
	stroke: #00baff;
	stroke-width: 2;
	-webkit-animation: circle 2s 1;
	animation: circle 2s 1;
}
.finished svg {
	opacity: 0;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

@-webkit-keyframes circle {
  0% { stroke-dasharray: 0 634.28; }
  99.9%,to { stroke-dasharray: 634.28 634.28; }
}
@keyframes circle {
  0% { stroke-dasharray: 0 634.28; }
  99.9%,to { stroke-dasharray: 634.28 634.28; }
}

@-webkit-keyframes loading {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes loading {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}


/*
******************************************************************
* #footer
******************************************************************/
#footer {
	position: relative;
    z-index: 1;
    text-shadow: 0px 1px 1px #000, 0px -1px 1px #000;
    font-size: 10px;
    padding: 20px 5%;
}

#footer .inner {
	display: table;
	margin: 0 auto;
}

/*
******************************************************************
* #contents
******************************************************************/
#contents {}

body.start .chara,
body.start .bg_img03,
body.start .bg_txt,
body.start .txt01 {
	-webkit-transform: scale(1.0) translate(0, 0);
	transform: scale(1.0) translate(0, 0);
}

body.show.retreat .main02 {
    opacity: 1;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}
body.show.retreat .chara {
	opacity: 0;
	-webkit-transform: scale(0.4) translate(0, -320px);
	transform: scale(0.4) translate(0, -320px);
	-webkit-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
}
body.show.retreat .txt01 {
	opacity: 0;
	-webkit-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
}
body.show.retreat .bg_txt {
	opacity: 0;
	-webkit-transform: scale(0.4) translate(-220px, -320px);
	transform: scale(0.4) translate(-220px, -320px);
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
body.show.retreat .bg_img01 {
	opacity: 0;
	-webkit-transform: scale(0.6) translate(0, -190px);
	transform: scale(0.6) translate(0, -190px);
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
body.show.retreat .bg_img03 {
	opacity: 0;
	-webkit-transform: scale(0.4) translate(430px, -86px);
	transform: scale(0.4) translate(430px, -86px);
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
body.show.comeback .bg_img01,
body.show.comeback .bg_img03,
body.show.comeback .bg_txt,
body.show.comeback .chara,
body.show.comeback .txt01 {
	opacity: 1;
	-webkit-transform: scale(1.0) translate(0, 0);
	transform: scale(1.0) translate(0, 0);
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}

/*
******************************************************************
* utility
******************************************************************/
/* hover すると色相回転 */
.hover-hue {
	-webkit-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.hover-hue:hover {
	-webkit-filter: hue-rotate(-30deg);
	-moz-filter: hue-rotate(-30deg);
	-o-filter: hue-rotate(-30deg);
	-ms-filter: hue-rotate(-30deg);
	filter: hue-rotate(-30deg);
}

/* 要素アクション */
*[data-sf] {
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
*.animated[data-sf="toggle"] {
	opacity: 1;
}

*[data-sf="slide-top"] {
	-webkit-transform: translate(0, 100px);
	transform: translate(0, 100px);
}
*[data-sf="slide-left"] {
	-webkit-transform: translate(-300px, 0);
	transform: translate(-300px, 0);
}
*[data-sf="slide-right"] {
	-webkit-transform: translate(300px, 0);
	transform: translate(300px, 0);
}
*.animated[data-sf="slide-top"],
*.animated[data-sf="slide-left"],
*.animated[data-sf="slide-right"] {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
}


/*
******************************************************************
* SNS
******************************************************************/
#footer .sns_btn {
    text-align: center;
    margin: 5% 0;
}
#footer .sns_btn ul {
    display: inline-block;
}
#footer .sns_btn ul li:first-child {
    margin: 0;
}
#footer .sns_btn ul li {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}