@charset "utf-8";
/* CSS Document */
#fv {
	padding: 10px 0 40px;
	margin-bottom: 0;
	background-color: #e8ecdf;
}

/*==============================
Price
==============================*/
#price .more_btn {
	display: none;
}

/*==============================
Structure
==============================*/
#structure {
	padding: 0 0 40px;
}
#structure h2,
#conditions h2,
#necessary_info h2 {
	text-align: center;
	font-size: 34px;
	padding-bottom: 5px;
}
#structure h2 span,
#conditions h2 span,
#necessary_info h2 span {
	padding: 0 10px;
	border-bottom: 2px solid #007943;
}
#structure .cate_txt {
	margin-top: 20px;
	text-align: center;
	line-height: 1.8;
}
#structure .flexbox {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}
#structure .flexbox .img_box {
	width: 42%;
}
#structure .flexbox .img_box img {
	height: auto;
}
#structure .flexbox .txt_box {
	width: calc(58% - 20px);
	margin-left: 20px;
}
#structure .flexbox .txt_box dl {
	border: 1px solid #ccc;
	border-bottom: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#structure .flexbox .txt_box dl:last-of-type {
	border-bottom: 1px solid #ccc;
}
#structure .flexbox .txt_box dl dt,
#structure .flexbox .txt_box dl dd {
	padding: 10px;
}
#structure .flexbox .txt_box dl dt {
	width: 30%;
	font-weight: bold;
	background-color: #E8ECDF;
	color: #007943;
}
#structure .flexbox .txt_box dl dd {
	width: 70%;
	font-size: 16px;
}

/*==============================
Conditions
==============================*/
#conditions {
	padding: 40px 0;
	background-color: #e8ecdf;
}
#conditions .cate_box {
	margin-top: 30px;
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
}
#conditions .cate_box h3 {
	font-size: 24px;
	font-weight: bold;
	color: #70952e;
	text-wrap: auto;
	line-height: 1.3;
}
#conditions .cate_box .flexbox {
	flex-wrap: wrap;
}
#conditions .cate_box .flexbox .img_box {
	width: calc(40% - 40px);
	margin-right: 40px;
	border-radius: 10px;
	overflow: hidden;
}
#conditions .cate_box:nth-of-type(odd) .flexbox .img_box {
	order: 2;
	margin-right: 0;
	margin-left: 40px;
}
#conditions .cate_box .flexbox .img_box img {
	height: auto;
}
#conditions .cate_box .flexbox .txt_box {
	width: 60%;
}
#conditions .cate_box:nth-of-type(odd) .flexbox .txt_box {
	order: 1
}
#conditions .cate_box .flexbox .txt_box p {
	line-height: 1.8;
	margin-top: 10px;
}

/*==============================
Necessary_info
==============================*/
#necessary_info {
	padding: 40px 0;
	border-bottom: 1px solid #ccc;
}
#necessary_info .cate_txt {
	margin-top: 20px;
	text-align: center;
	line-height: 1.8;
}
#necessary_info ul {
	margin: 20px auto 0;
	padding: 0;
	border: 2px solid #70952e;
	border-radius: 10px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
#necessary_info ul li {
	font-size: 20px;
	font-weight: bold;
	padding: 10px 10px 10px 35px;
	border-bottom: 1px solid #ccc;
	position: relative;
	width: 50%;
	border-right: 1px solid #ccc;
}
#necessary_info ul li:nth-child(even) {
	border-right: none;
}
#necessary_info ul li:last-child {
	border-bottom: none;
}
#necessary_info ul li::before {
	content: "\f14a";
	font-family: Fontawesome;
	color: #007943;
	position: absolute;
	top: 10px;
	left: 10px;
}
#necessary_info ul li p {
	font-size: 18px;
	font-weight: normal;
}

@media only screen and (max-width: 768px) {
	#fv {
		padding: 10px 0 20px;
	}
	#structure h2,
	#conditions h2,
	#necessary_info h2 {
		font-size: 24px;
	}
	#conditions h2 {
		border-bottom: 2px solid #007943;
		padding: 0 10px;
		line-height: 1.3;
	}
	#conditions h2 span {
		border: none;
		padding: 0;
	}
	#structure .cate_txt {
		text-align: left;
	}
	#structure .flexbox .img_box {
		width: 100%;
	}
	#structure .flexbox .txt_box {
		margin-top: 20px;
		width: 100%;
		margin-left: 0;
	}
	#structure .flexbox .txt_box dl dt {
		width: 100%;
	}
	#structure .flexbox .txt_box dl dd {
		width: 100%;
	}
	#conditions .cate_box h3 {
		font-size: 22px;
	}
	#conditions .cate_box .flexbox .txt_box {
		width: 100%;
	}
	#conditions .cate_box:nth-of-type(odd) .flexbox .txt_box {
		order: 2;
	}
	#conditions .cate_box .flexbox .img_box {
		width: 100%;
		margin-right: 0;
		margin-top: 10px;
	}
	#conditions .cate_box:nth-of-type(odd) .flexbox .img_box {
		order: 1;
		margin-left: 0;
	}
	
	#necessary_info .cate_txt {
		text-align: left;
		line-height: 1.5;
	}
	#necessary_info ul li {
		width: 100%;
		border-right: none;
		font-size: 18px;
	}
	#necessary_info ul li p {
		font-size: 16px;
	}
}