@charset "UTF-8";

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

/*-- ヘッダー --*/
.h_container {
	display: flex;	/*中央揃えにはこれが必要*/
	align-items: center; /* 縦方向中央揃え */
	justify-content: center; /* 横方向中央揃え */
	height: 70px;
	background-color:#085661;
	color:#f0f0f0;
	margin-bottom: 5px;
	border-bottom: solid 3px #BF6A7A; /*下線を引く*/
}

h1 {
	font-size: 36px;
	letter-spacing: 0.1em;
	margin-left: 0.2em;
}

/*--スマホの画面では--*/
@media (max-width: 600px) {  
	.h_container {
		height: 40px;
	}

	h1 {
		font-size: 24px;
	}
}

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

/*-- パンくずリスト --*/
.pankuzu ol {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
	margin-right:10px;
	padding: 0;
	list-style: none;
}

.pankuzu li {
	font-size: 13px;
}

.pankuzu a {
	display: block;
	padding: 0 10px;
	color: #668099;
	text-decoration: none;
}

.pankuzu a::after {
	margin-left: 10px;
	content: ">";
}

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

/*-- コンテンツ --*/
.contents{
	padding: 0 10px 10px 10px;
}

h2 {
	font-size: 21px;
	color:#24433e;
	padding-left: 8px;
	border-left: solid 12px #BF6A7A;
	border-bottom: solid 1px #BF6A7A;/*下線を引く*/
	margin-top:30px;
	margin-bottom: 30px;
}

ul{
	list-style: none;
}

ul li{
	margin-bottom:0.7em;
}

a{
	text-decoration:none;
}

p {
	margin:1.5em 0px;
	margin-top:1em;
	line-height:1.5;
	padding-left:30px;
}

@media (max-width: 600px) {

}

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

.pagetop a{
	font-size:13px;
	color:#668099;
	text-decoration: none;
}

.pagetop 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;
}