html{
	height:100%;
}

body{
	position:relative;
	min-height:100%;
	margin:0;
	background-image:url("../img/background.jpg");
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size:cover;
}

h1,h2,h3,h4{
	font-family:'';
}

/*********************************
	First View
*********************************/
#first_view{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:white;
	z-index:10000;
}
#first_view_skip{
	font-family:'メイリオ';
	display:inline-block;
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
	height:32px;
	font-weight:bold;
	letter-spacing:2px;
	color:#1A0DAB;
	text-decoration:underline;
}
#first_view_skip:hover{
	color:#2814FF;
}
#first_view div{
	display:none;
	position:relative;
	top:50%;
	width:100%;
	margin-top:-350px;
	text-align:center;
	user-select:none;
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
	z-index:10000;
}
#first_view div img{
	display:none;
	width:350px;
	margin:auto;
}
#first_view div p{
	display:none;
	font-family:'Sawarabi Mincho';
	letter-spacing:2px;
	font-size:50px;
	/* font-weight:bold; */
	margin-top:20px;
}


/*********************************
	ヘッダー
*********************************/
header{
	cursor:default;
	min-width:1200px;
	height:50px;
	line-height:50px;
	padding-top:100px;
}
header h1{
	font-family: 'Shadows Into Light Two', cursive;
	font-size:64px;
	font-weight:bold;
	letter-spacing:4px;
	text-align:center;
	color:#FFFFFF;
	text-shadow:
		-1px -1px #000,
		1px -1px #000,
		-1px 1px #000,
		1px 1px #000;
	user-select:none;
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
}
header h1 a{
	color:white;
	text-decoration:none;
}
header h1 a:hover{
	color:white;
}

/*********************************
	メイン
*********************************/
#content{
	font-family:'メイリオ';
	width:1200px;
	margin:100px auto 0 auto;
	padding-bottom:50px;
}

#top{
	width:1200px;
	margin:0 auto;
}
#menu{
	width:800px;
	margin:0 auto;
	text-shadow:
		-1px -1px #000,
		1px -1px #000,
		-1px 1px #000,
		1px 1px #000;
}
#content_left{
	width:50%;
	float:left;
}
#content_right{
	width:50%;
	float:right;
}

#news{
	width:100%;
	height:300px;
	margin-top:30px;
	margin-bottom:30px;
	padding:5px 0 15px 0;
	background-color:rgba(0,0,0,0.5);
	text-shadow:
		-1px -1px #000,
		1px -1px #000,
		-1px 1px #000,
		1px 1px #000;
}
#news h2{
	margin:0 0 0 15px;
	font-size:40px;
	font-weight:normal;
	color:white;
	background-color:rgba(0,0,0,0);
	user-select:none;
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
}
#news h2 span{
	cursor:pointer;
	display:block;
	position:relative;
	margin-top:-5px;
	margin-left:-15px;
	padding-top:5px;
	padding-left:15px;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
}
#news h2 span::before,
#news h2 span::after{
	content:'';
	position:absolute;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
}
#news h2 span::after{
	-webkit-transition:transform 0.3s, 0.3s;
	transition:transform 0.3s, 0.3s;
	opacity:0;
	background-color:rgba(0,0,255,1);
	transform:scale(0.1,0.1);
	border-radius:50%;
}
#news h2 span:hover{
	color:white;
}
#news h2 span:hover::before{
	opacity:1;
	-webkit-transform:scale(1);
	transform:scale(1);
	border-radius:0;
}
#news h2 span:hover::after{
	opacity:1;
	-webkit-transform:scale(1);
	transform:scale(1);
	border-radius:0;
}

#news hr#news_title_line{
	margin:0 10px 15px 10px;
}
#news div{
	font-family:'メイリオ';
	height:233px;
	margin:10px 0;
	padding:0 10px;
	font-size:16px;
	color:white;
	overflow:auto;
}
#news p{
	padding-left:109px;
	text-indent:-109px;
	margin:0;
}
#news hr.news_line{
	margin:10px 0;
	border-top:1px dashed white;
	border-bottom:0;
}

/*********************************
	サークルメニュー
*********************************/
.circle{
	cursor:pointer;
	display:block;
	position:relative;
	width:350px;
	height:350px;
	line-height:350px;
	text-align:center;
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	margin:0 auto;
	font-size:40px;
	color:white;
	background-color:rgba(0,0,0,0.5);
	user-select:none;
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
}
.circle::before,
.circle::after{
	position:absolute;
	z-index:-1;
	display:block;
	content:'';
}
.circle,
.circle::before,
.circle::after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-transition:all .3s;
	transition:all .3s;
}
.circle:hover{
	color:#fff;
}
.circle::after{
	top:0;
	left:0;
	width:350px;
	height:350px;
	line-height:350px;
	text-align:center;
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	-webkit-transform:scale(.5);
	transform:scale(.5);
}
.circle:hover::after{
	background-color:rgba(0,0,255,1);
	-webkit-transform:scale(1);
	transform:scale(1);
	
}


/*********************************
	フッター
*********************************/
footer{
	font-family:'メイリオ';
	width:100%;
	min-width:1200px;
	height:40px;
	position:absolute;
	left:0;
	bottom:0;
	color:white;
	background-color:rgba(0,0,0,0.5);
}
#copylight{
	text-align:center;
	line-height:40px;
}


/*********************************
	その他
*********************************/
.clear{
	clear:both;
}

a,a:active{
	color:#009EFF;
}
a:hover{
	color:#81BEF7;
}

/* スクロールバー全体 */
::-webkit-scrollbar{
	width:10px;
}
/* スクロールバーの軌道 */
::-webkit-scrollbar-track{
	border-radius:10px;
	box-shadow:inset 0 0 6px rgba(0,0,0,0.1);
}
/* スクロールバーの動く部分 */
::-webkit-scrollbar-thumb{
	background-color:rgba(0,0,50,0.5);
	border-radius:10px;
	box-shadow:0 0 0 1px rgba(255,255,255,0.3);
}