/* common.css */
@charset "utf-8";

/*　=================================================================
　　　　　　　　　　　　　スマホ　の設定（599pxまで）
=================================================================　*/
/*
スマホ：599pxまで
タブレット・PC：600px以上
*/

/*共通の設定*/

html{
	background-image:url('../images/bg_grey.png');
	height:100%;
}
body{
}

/*　=================================================================
　　　　　　　　　　　　　　　スマホのスタイル　header
=================================================================　*/
#header_smp{
	width: 100%;
	height: 45px;
	background-color: rgba(30, 30, 71, 1);
}
.header_smp1{
	float: left;
	width: 59px;
}
.header_smp2{
	float: left;
	width: 198px;
}
.header_smp3{
	float: right;
	width: 62px;
}


/*ドロップダウンメニュー　＝＝＝＝＝＝＝＝＝header*/
.dropmenu{
	*zoom: 1;
	list-style-type: none;
}
.dropmenu:before, .dropmenu:after{
	content: "";
	display: table;
}
.dropmenu:after{
	clear: both;
}
.dropmenu li{
	position: relative;
	width: 180px;
	float: left;
}
.dropmenu li a{
	display: block;
}
.dropmenu li ul{
	list-style: none;
	position: absolute;
	top: 100%;
}
.dropmenu li ul li{
	width: 100%;
}
.dropmenu li ul li a{
	padding: 13px 15px;
	border-top: 1px solid #7EC4F0;
	background: #FFF;
	text-decoration: none;
	text-align: center;
	font-family: Shuei Mincho L;
	font-size: 14px;
}
.dropmenu li:hover > a{
	background: #FFF;
}
.dropmenu li a:hover{
	background: #DDD;
}
/*ドロップダウンメニュー　動き*/
#dropmenu { 
	position: relative; 
	z-index: 7; 
}
#dropmenu li ul li{
	overflow: hidden;
	height: 0;
	transition: .2s;
}
#dropmenu li:hover ul li{
	overflow: visible;
	height: 38px;
}
/*ドロップダウンメニュー　ここまで*/
/*スマホのスタイル　header　ここまで*/



/*===================toへ戻るボタン===================*/
#page-top{
	width:50px;
	height:50px;
	display:none;
	position:fixed;
	right:16px;
	bottom:16px;
}
#page-top p{
	margin:0;
	padding:0;
	text-align:center;
	/*background:#3b3b3b;*/
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
}
#page-top p:hover{
	background:#8b8b8b;
}
#move-page-top{
	color:#FFE57B;
	font-size: 50px;
	font-weight: bold;
	line-height:50px;
	text-decoration:none;
	display:block;
	cursor:pointer;
}
/*===================font===================*/
body{
	font-family: UD Shin Go Light, sans-serif;
}
h1{
	font-family: UD Shin Go Medium;
	font-weight: bold;
	font-size: 70px;
	line-height: 80px;
}
h2{
	font-family: UD Shin Go Regular;
	font-weight: bold;
	font-size: 44px;
}
h3{
	font-family: UD Shin Go Regular;
	font-weight: bold;
	font-size: 32px;
}
h4{
	font-family: UD Shin Go Regular;
	font-weight: bold;
	font-size: 24px;
	line-height: 30px;
}
h5{
	font-family:  UD Shin Go Regular;
	font-size: 18px;
}
h6{
	font-family: UD Shin Go Regular;
	font-size: 14px;
}
p{
	font-family: UD Shin Go Regular;
	font-size: 14px;
}


/*===================スマホでは　消しておく===================*/
header, #snsLink{
	display: none;
}

/*　=================================================================
　　　　　　　　　　　　　タブレット・PC　の設定（600px以上）
=================================================================　*/

@media all and (min-width: 600px){

	/*スマホ専用パーツを消す*/
		#header_smp{
			display: none;
		}

	/*消したパーツを出現させる*/
	header{
		display: block;
	}

	/*　=================================================================
	　　　　　　　　　　　　　　　PC・タブレット用　header
	=================================================================　*/
	header{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background-color: rgba( 9, 11, 105, 0.8 );
		z-index: 80;
	}
	header>h6{
		float: left;
		width: 260px;
		margin-left: 20px;
		margin-top: 5px;
		font-size: 18px;
		color: #fff;
	}
	header>ul>li{
		float: left;
	}
	header>ul>li>a{
		height: 32px;
		padding: 10px 10px 0 10px;
		display: block;
		text-align: center;
		text-decoration: none;
		color: #fff;
	}
	header>ul>li>.activ{
		color: #000;
	}
	header>ul>li>.member{
		color: #A9F5A9;
	}
	header>ul>li>.logOut{
		color: #FAAC58;
	}
	header>ul>li>a:hover{
		background-color: rgba( 255, 255, 255, 0.4 );
	}
	/*PC・タブレット用　header　ここまで*/


	#snsLink{
		display: block;
	}
	#snsLink{
		position: fixed;
		top: 50px;
		z-index: 80;
	}
	.wrapper03>.articleLeft{
		padding-top: 50px;
	}
}
