@charset "UTF-8";

.price-change-box {
	margin: 25px 0;
}
.price-change-box .title {
	cursor: pointer;
	border-left: 8px solid #00aebb;
	background: #fffde8;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding: 10px 20px;
}
.price-change-box .title::after {
    content: "";
    background-image: url(/images/result/ico-plus.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
}
.price-change-box .title.open::after {
	background-image: url(/images/result/ico-minus.png);
}
.price-change-box .inner {
	text-align: center;
	padding: 25px;
	/*background: #f7f7f7;*/
}
.price-change-box .inner .img-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.price-change-box .inner img {
	margin-bottom: 25px;
	width: 49%;
	height: auto;
}
.price-change-box .inner p {
	font-size: 16px;
	text-align: left;
	margin-bottom: 25px;
	line-height: 1.5;
}
@media screen and (max-width: 667px){
	.price-change-box {
		padding: 0 10px;
	}
	.price-change-box .title {
		padding-right: 40px;
		font-size: 14px;
		border-left: 4px solid #00aebb;
	}
	.price-change-box .inner {
		padding: 15px;
	}
	.price-change-box .inner .img-box {
		display: block;
	}
	.price-change-box .inner img {
		margin-bottom: 25px;
		width: 100%;
		height: auto;
	}
	.price-change-box .title::after {
		width: 20px;
		height: 20px;
	}
	.price-change-box .inner p {
		margin-bottom: 15px;
		font-size: 14px;
	}
}