@charset "UTF-8";

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

/*-- ヘッダー --*/
.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_area{
	width:330px;
	margin-top:20px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	text-align:center;
}

.wrap{
	display:flex;
	flex-direction:row;
	justify-content:center;
}

.numArea{

}

.numArea p{
	margin:5px;
}

span{
    display:inline-block; /*textboxの大きさを一定に*/
	width:70px;
	background-color:#F6FCA0;
	border-style: inset;
	text-align:right;
	padding-right:5px;
}

.dkArea{
	width:100px;
	margin-top:20px;
	margin-left:10px;
	text-align:center;
}

.menu0{
	width:100px;
	height:70px;
	background-color:#b0e0e6;
	border-radius:4px;
	color:black;
	font-size:16px;
	cursor:pointer;	
	box-shadow:2px 2px 2px #555;	
	display:table-cell; /*vertical-alignのために必要*/
	vertical-align:middle;
}

a{
	text-decoration:none;
}

.menuArea{
	width:300px;
	margin-top:20px;
	margin-right:auto;
	margin-left:auto;
}

.menuArea p{
	margin-top:5px;
	margin-right:10px;
	margin-bottom:5px;
	margin-left:10px;
	display:inline-block;
}

.menu{
	width:120px;
	height:60px;
	background-color:#b0e0e6;
	border-radius:4px;
	color:black;
	font-size:16px;
	cursor:pointer;	
	box-shadow:2px 2px 2px #555;	
	text-align:center;
	display:table-cell; /*vertical-alignのために必要*/
	vertical-align:middle;
}

@media (max-width: 600px) {
	.contents_area{
		/*width:100%;*/
	}
	.menuArea{
		/*width:100%;　まん中にいかなくなる*/
	}
	.menu{
		/*width:100%; ボタンが縮まる*/
	}
}

/*-- ページトップに戻る --*/
.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;
}