@charset "utf-8";
/* CSS Document */
.costArea {
	padding: 50px 0;
}
/* costArea */
.costBox h1 {
	text-align: center;
}
.costBox .costList {
	width: 100%;
	max-width: 1000px;
	margin: 50px auto;
}
.costBox .costList > li {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 30px 5vw 10px;
	margin-bottom: 30px;
	background-color: #d7dfea;
}
.costBox .costList > li:nth-child(odd) {
	background-color: #f0f3f7;
}
.costBox .costList li .txtBox {
	width: 80%;
}
.costBox .costList li .imgBox {
	width: 20%;
	text-align: center;
}
.costBox .costList li .txtBox h2 {
	font-size: 22px;
	font-weight: bold;
	display: block;
	width: 90%;
	padding-left: 1.5em;
	color: #425B89;
	border-bottom: 2px solid #425B89;
	position: relative;
}
.costBox .costList li .txtBox h2 span {
	font-size: .8em;
	font-weight: bold;
}
.costBox .costList li .txtBox h2:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "■";
	font-size: 22px;
	color: #425B89;
	display: inline-block;
}
.costBox .costList li .txtBox .txtBox_s {
	width: 90%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
}
.costBox .costList li .txtBox .mark {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.costBox .costList li .txtBox .mark li {
	padding: 10px 5px;
}
.costBox .costList li .txtBox .price {
	font-size: 22px;
	line-height: 2;
	font-weight: bold;
}
.costBox .costList li .imgBox img {
	margin-top: -40px;
	max-width: 170px;
	width: 100%;
}
.costBox .txt {
	text-align: right;
	padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
	.costBox .costList li .txtBox {
		width: 70%;
	}
	.costBox .costList li .imgBox {
		width: 30%;
	}
}
@media screen and (max-width: 767px) {
	
	.costBox .costList li .txtBox h2 {
    font-size: 18px;
	}
	.costBox .txt {
		text-align: left;
		padding: 0 5vw;
		font-size: 13px;
	}
}
@media screen and (max-width: 650px) {
	.costBox .costList > li {
		padding: 30px 3vw 10px;
	}
	.costBox .costList li .txtBox {
		width: 60%;
	}
	.costBox .costList li .imgBox {
		width: 40%;
	}
	.costBox .costList li .txtBox .txtBox_s {
    display: block;
	}
}
@media screen and (max-width: 500px) {
	.costBox .costList > li {
    padding: 30px 5vw 10px;
	}
	.costBox .costList li .txtBox .txtBox_s {
    display: flex;
	}
	.costBox .costList li .txtBox {
		width: 100%;
	}
	.costBox .costList li .imgBox {
		width: 100%;
	}
	.costBox .costList li .imgBox img {
    margin-top: 0px;
	}
	.costBox .costList li .txtBox h2 {
    width: 100%;
		line-height: 1.2;
		font-size: 16px;
		padding-bottom: 5px;
	}
	.costBox .costList li .txtBox h2:before {
		font-size: 16px;
	}
	.costBox .costList li .txtBox .price {
		font-size: 16px;
	}
	.costBox .costList li .txtBox .mark li {
    padding: 10px 2px;
	}
	.costBox .costList li .txtBox .txtBox_s {
    width: 100%;
	}
	.costBox .costList li .txtBox .mark {
    justify-content: center;
	}
	.costBox .costList li .txtBox .price {
		text-align: center;
	}
}
