/*========================
アニメーション
========================*/
.loadingAnim {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
	line-height: 1;
	position: fixed;
	z-index: 99;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	content: ' ';
	transition: all .6s cubic-bezier(.785, .135, .15, .86) 0s;
	/*    transition: all .3s linear 0s;*/
	transition-delay: .3s;
	background-color: #006CBB;
}

.loadingAnim:before {
	left: 0%;
}

.loadingAnim:after {
	right: 0%;
}

.loaded .loadingAnim:before {
	width: 100%;
	transform: translateX(-100%);
}

.loaded .loadingAnim:after {
	width: 100%;
	transform: translateX(100%);
}

.loadingAnim_line {
	line-height: 1;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	overflow: hidden;
	width: 50px;
	height: 1px;
	margin: auto;
	transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
	transition-delay: .6s;
	text-align: center;
}

.loadingAnim_line:after {
	position: absolute;
	z-index: 100;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 100%;
	margin: auto auto auto 0;
	content: ' ';
	animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
	background-color: #000;
	will-change: transform, width;
}

.loadingAnim_line:before {
	font-size: 1rem;
	font-weight: 100;
	font-style: normal;
	line-height: 1;
	display: block;
	content: '';
	animation: loadingAnim_text 2s ease 3s infinite alternate both;
	letter-spacing: .1em;
	color: #fff;
	will-change: opacity;
}

.loaded .loadingAnim_line {
	overflow: hidden;
	height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
	-webkit-animation: none;
	animation: none;
}

.loaded .loadingAnim_line:before {
	content: '';
}

@-webkit-keyframes loadingAnim {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@keyframes loadingAnim {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@-webkit-keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #fff;
	}

	50% {
		color: #fff;

	}

	100% {
		opacity: .5;
		color: #fff;
	}
}

@keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #fff;
	}

	50% {
		color: #fff;
	}

	100% {
		opacity: .5;
		color: #fff;
	}
}
/*========================
フッター
========================*/
/*
footer {
	background-color: #1A1A1A;
	padding-top: 0.40rem;
	padding-bottom: 0.4rem;
	text-align: center;
}
*/
#top_footer {
	position: absolute;
	width: 100%;
	bottom: 0;
}
@media screen and (max-width: 499px) {
	#top_footer {
		position: static;
		background: rgba(0,0,0,0.9);
		box-sizing: border-box;
	}
}

.top_footer_box.flex_box {
	align-items: flex-end;
}
@media screen and (max-width: 499px) {
	.top_footer_box.flex_box {
		flex-flow: column-reverse;
	}
}

.top_footer_left {
	padding-left: 0.2rem;
}
@media screen and (max-width: 499px) {
	.top_footer_left {
		width: 100%;
		text-align: center;
	}
}

/*プライバシーポリシー  */
.top_footer_left_nav {
	margin-bottom: 0.2rem;
}

.top_footer_left_nav a {
	font-size: 0.16rem;
	color: #fff;
	text-decoration: none;
	position: relative;
}

.top_footer_left_nav a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

.top_footer_left_nav a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* コピーライト */
.top_footer_left_copy {
	font-size: 0.14rem;
	color: #fff;
	padding-bottom: 0.1rem;
}

@media screen and (max-width: 499px) {
	.top_footer_right {
		width: 100%;
		text-align: center;
		margin-bottom: 0.2rem;
		background: rgba(255,255,255,0.6);
		box-sizing: border-box;
		padding-top: 0.15rem;
		padding-bottom: 0.15rem;
	}
}


/*========================
トップ
========================*/
#top {
	position: relative;
}

/* ロゴ */
#top h1 {
	position: absolute;
	width: 100%;
	z-index: 1;
	top: 0;
}
@media screen and (max-width: 499px) {
	#top h1 {
		top: 0.5rem;
	}
}


#top h1 img {
	width: 100%;
}

/* コンテンツ */
.top_cont {
	width: calc(100% /2 );
	height: 100vh;
	background-color: #000;
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 499px) {
	.top_cont {
		width: 100%;;
		height: auto;
	}
}

.top_cont .top_cont_bg {
	height: 100vh;
}
@media screen and (max-width: 499px) {
	.top_cont .top_cont_bg {
		height: 80vh;
	}
}
/* 画像をぼかす */
.top_cont .top_cont_bg::before {
	background: inherit;
	content: '';
	position: absolute;
	top: -5px;
	right: -5px;
	bottom: -5px;
	left: -5px;
	filter: blur(5px);
	transition: 1s;
}

.top_cont .top_cont_bg:hover::before {
	filter: blur(0);
}

/*
.top_cont .top_cont_bg::before {
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}

.top_cont .top_cont_bg:hover::before {
	background-color: rgba(0,0,0,0.1);
	transition: 0.7 ;
}
*/



.top_cont .top_cont_text {
/*
	line-height: 100vh;
	text-align: center;
*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
}

.top_cont .top_cont_text h2 {
	font-size: 0.42rem;
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-shadow:2px 5px 10px #000;
}

.top_cont .top_cont_text h2 span {
	display: block;
	font-size: 0.16rem;
}
.top_cont .top_cont_text h2 span::before {
	content: '';
	width: 0.5rem;
	height: 1px;
	display: block;
	margin: 0 auto;
	border-top: 1px solid #fff;
	padding-top: 10px;
	margin-top: 10px
}

/* 背景共通 */
.top_cont_bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transition: 1s;
}


/* moodle */
.top_cont_moodle .top_cont_bg {
	background-image: url(../img/top_moodle_bg_bk.png);
}

.top_cont_moodle .top_cont_bg:hover {
	background-image: url(../img/top_moodle_bg.png);
}


/* chat */
.top_cont_chat .top_cont_bg {
	background-image: url(../img/top_chat_bg_bk.png);
}

.top_cont_chat .top_cont_bg:hover {
	background-image: url(../img/top_chat_bg.png);
}

/* info */
.top_cont_info .top_cont_bg {
	background-image: url(../img/top_info_bg_bk.png);
}

.top_cont_info .top_cont_bg:hover {
	background-image: url(../img/top_info_bg.png);
}
