@charset "UTF-8";

/*-- 基本設定：ページ全体 --*/
body {
	margin: 0;
	font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
}

.wrap{
	overflow:hidden;  /*スマホで右に余白がでないように*/
}

h1{
	margin:0;
}

/*-- ヘッダー --*/
header {
	position: relative;
	height: 30vh; /*大きくすると画像の縦幅が大きく。38でGoogleサイトと同じ*/
	
	background: url(img_header.png) center / cover;
}

header h1{
	margin:0;
	color: #fff;
	
	position: absolute;
	top: 50%;
	width: 100%;
	margin: 0;
	padding: 0 .5em;
	font-size: 5rem;
	/*font-size: 48px;*/
	line-height: 1.4;
	/*font-family: "Dosis", sans-serif;*/
	letter-spacing: .1em;
	transform: translateY(-50%); /*これをはずすと文字が下に移動*/
	
	text-align: center; /*文字を左右の中央に*/

}

/*-- メイン --*/
.m_container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	/*padding-top:0px;*/
	padding-top: 15px;
}

.contents_area {
	margin-left:8px;
	margin-right:8px;
}

h2{
	font-size: 24px;
	margin-top: 40px;
	color: #335F8E; /*紺色*/
}

h3{
	color:#008B8B;
}

.setsumei {
	margin-left:20px;
}

p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 30px;
}

a{
	text-decoration: none;
	/*font-size:14px;*/
}

a:hover{
	color:#FF773E;
	text-decoration: underline;
}

ul{
	margin: 0px;
	padding: 0px;
	list-style: none;
	/*font-size: 16px;*/
}

ul li{
	margin-bottom: 10px;
	font-size: 16px;
}

ul a{
	text-decoration: none;
	font-size:16px;
}

a:hover{
	color:#FF773E;
	text-decoration: underline;
}

/*-- ページトップに戻る --*/
.pagetop_area {
	text-align:right;
	padding-top:20px;
	padding-bottom: 20px;
}

.pagetop_area a{
	margin-right:10px;
	font-size:13px;
	color:#668099;
	text-decoration: none;
}

.pagetop_area a:hover{
	color:#ccc;
}

/*--　フッター --*/
.f_container {
	color: #fff;
	background-color:#7A8D94;
	padding: 15px;
}

.copyright {
	margin-top: 0;
	margin-bottom: 0;
	text-align:center;
	font-size: 12px;
}

@media (max-width: 480px) {  /*スマホの場合*/
	
	header h1{
		/*font-size: 3.0rem;*/
		font-size: 42px;
	}
	
	.h_container h1 {
		margin-bottom: 0;
		font-size: 48px;
	}
	
	.m_container {
	padding-top:15px;
	}

	h2 {
		font-size: 21px;
	}
	
	p {
		font-size: 14px;
	}
		
	ul li{
		font-size: 14px;
	}
		
	ul li a{
		font-size:14px;
	}
}