@charset "UTF-8";

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

p {
	margin: 0;
}

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

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

/*--PCの画面では--*/
@media (max-width: 600px) {  
	.h_container {
		height: 54px;
	}

	h1 {
		font-size: 24px;
	}
}

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

/*-- パンくずリスト --*/
.pankuzu_area{
	/*padding-top:0px;
	padding-bottom:0px;*/
}

.pankuzu_area ol {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
	margin-right:10px;
	padding: 0;
	list-style: none;
}

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

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

.pankuzu_area a::after {
	margin-left: 10px;
	content: ">";
	opacity: 0.3;
}

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

/*-- コンテンツ --*/
.contents_area {
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	text-align:center;
}

.contents_area p {
	font-size: 16px;
	line-height: 2;
}

#alertarea{
	height:30px;
	margin-bottom:10px;
	color:red;
	line-height:30px;/*上下中央に*/
}

form{
	display:inline-block;
	margin-bottom: 25px;
}

#height, #weight{
	height:20px;
	font-size:16px;
	text-align:center;
}

#button1{
	width:80px;
	border-radius:4px;
	margin:10px 10px 0px 30px;
	padding:5px 10px; /*ボタンの高さと幅*/
	background-color:#b0e0e6;
	font-size:14px;
}

#button2{
	width:80px;
	border-radius:4px;
	margin:10px 10px 0px 10px;
	padding:5px 10px; /*ボタンの高さと幅*/
	background-color:#b0e0e6;
	font-size:14px;
}

.resultDisp{
	display:inline-block;
	text-align:left;
	margin-left:30px;
	margin-bottom: 20px;
}

.resultDisp td {
	padding:4px;
}

.hantei{
	display:inline-block;
	border-collapse:collapse;/*表を二重線にしない*/ 
}

.hantei th{
	border:solid 1px  #a9a9a9;
	background:gainsboro;
}

.hantei td{
	width:130px;
	border:solid 1px #a9a9a9;
	padding-left:0.5em;
	padding-right:0.5em;
}

tfoot {
	border-left:none;
	border-right:none;
	border-bottom:none;
}

tfoot tr td {
	text-align:right;
}

.note{
	font-size:15px;
	text-align:left;
}

@media (max-width: 600px) {
	.contents_area{
		width:100%;
	}
	
	.contents_area p {
		font-size: 14px;
	}
}

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