/* main */
main {
	color: #402d2d;
}

/*  見出し */
h2 {
	font-size: 200%;
	padding-bottom: 15px;
	border-bottom: 1px solid #d9d4d4;
	text-align: center;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 25px;
}
h2:after {
	content: "";
	display: block;
	width: 200px;
	height: 1px;
	background: #e5a501;
	margin: 16px auto -16px;
}

h3 {
	background: #f2f2f2;
	padding: 13px 17px;
	font-size: 123.1%;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

h4 {
	border-bottom: 1px solid #d9d4d4;
	padding: 10px 0;
	margin: -10px 20px 20px;
	font-size: 108%;
	font-weight: 500;
	letter-spacing: 1px;
	padding-left: 15px;
	background: url(../img/common/bg_h4.png) no-repeat left center;
}

/* テキスト */
main p {
	font-size: 108%;
	line-height: 1.8;
	letter-spacing: 1px;
	color: #402d2d;
}

main a {
	border-bottom: 1px solid #dfa50e;
}

.txt_box {
	margin: 0 20px 30px;
}


/* 表 */
main table {
	box-sizing: border-box;
	width: 100%;
	max-width: 680px;
	font-size: 108%;
	margin: 0 20px 30px;
	box-sizing: border-box;
}
main table caption {
	background: url(../img/common/bg_midashi.gif);
	padding: 10px;
	font-weight: 500;
}
main table th {
	border: 4px solid #ffffff;
	text-align: center;
	background: #e9f1f1;
	padding: 15px 10px;
}
main table th:first-child,
main table td:first-child {
	border-left: none;
}
main table th:last-child {
	border-right: none;
}
main table td {
	border-bottom: 1px solid #d9d4d4;
	border-left: 4px solid #ffffff;
	padding: 15px 10px;
}



/* ボタン */
.btn_link {
	text-align: center;
}
.btn_link a {
	display: block;
	margin: 0 auto 30px;
	text-align: center;
	background: #ffffff url(../img/common/icon_arrow02.png) no-repeat 93% center;
	border: 1px solid #402d2d;
	color: #402d2d;
	padding: 13px 30px;
	width: 230px;
	max-width: 500px;
	box-sizing: border-box;
}

/* ttl_txt_block */
.ttl_txt_block {
	margin: 0 20px 30px;
}
.ttl_txt_block h4 {
	background: url(../img/common/bg_midashi.gif);
	padding: 10px;
	margin: 0;
	border: none;
	text-align: center;
}
.ttl_txt_block .txt_box {
	padding: 20px;
	border: 1px solid #d9d4d4;
	border-top: none;
	margin: 0;
}

/* qa_area */
.qa_area {
	margin: 0 20px 30px;
}
.qa_area article {
	margin-bottom: 40px;
}
.qa_area article h4 {
	background: url(../img/common/icon_q.png) no-repeat left center;
	font-size: 138.5%;
	margin: 0;
	padding-left: 40px;
	position: relative;
	cursor: pointer;
}
.qa_area article h4::before,
.qa_area article h4::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 9px;
	background: #e6a809;
	position: absolute;
	top: 45%;
	right: 15px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
}
.qa_area article h4::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
}
.qa_area article h4.open::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}
.qa_area article h4.open::before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-moz-transform: rotate(135deg);
}
.qa_area article p {
	display: none;
	padding: 30px 20px;
	background: #fafafa;
}
