/* お見積もり方法の選択 */

.select-estimate a {
	text-decoration: none;
	color: inherit;
}

.select-estimate {
	margin-top: 15px;
	padding-bottom: 100px;
	@media screen and (max-width: 768px) {
		margin-top: 8px;
	}
	.parts-pageTitle {
		margin-bottom: 40px !important;
		@media screen and (max-width: 768px) {
			margin-bottom: 19px !important;
		}
	}
}
.select-estimate__col {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 40px;
	@media screen and (max-width: 768px) {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 22px;
	}
}
.select-estimate__col-item {
	position: relative;
	border: 1px solid #BFBFBF;
	border-radius: 6px;
	padding: 32px 16px;
	@media screen and (max-width: 768px) {
		padding: 16px 16px 12px;
	}
}
.select-estimate__link {
	position: relative;
	font-size: 18px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid #7A6A56;
	border-radius: 50px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
}
.select-estimate__link:hover {
	background-color: #7A6A56;
	color: #fff;
	opacity: 1 !important;
}
.select-estimate__link::after {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	content: "";
	transform: translateY(-50%);
	background-image: url(/img/common/icon_btn_gray_02.svg);
}
.select-estimate__link:hover::after {
	background-image: url(/img/common/icon_btn_white_02.svg);
}
.select-estimate__link-subtitle {
	font-size: 14px;
	margin-top: 6px;
}
.select-estimate__img {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
	@media screen and (max-width: 768px) {
		position: absolute;
		top: -13px;
		left: 16px;
		width: 104px;
		height: 90px;
		pointer-events: none;
		img {
			display: block;
			width: 100%;
			height: 100%
		}
	}
}
.select-estimate__text {
	color: #FF0200;
	font-weight: 600;
	text-align: center;
	margin-bottom: 8px;
}
.select-estimate__list {
	list-style-type: disc;
	list-style-position: outside;
	padding-left: 1.5em;
	li {
		font-size: 15px;
		line-height: 2;
		font-weight: 600;
	}
}
.select-estimate__note {
	background-color: #FFCCCB;
	border-radius: 6px;
	padding: 25px 0 21px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	@media screen and (max-width: 768px) {
		padding: 70px 16px 20px;
	}
}
.select-estimate__note-txt {
	position: relative;
	line-height: normal;
	padding-left: 58px;
	@media screen and (max-width: 768px) {
		padding-left: 0
	}
	a {
		display: inline;
		text-decoration: underline;
	}
	a:hover {
		text-decoration: none;
	}
}
.select-estimate__note-txt::before {
	position: absolute;
	top: 2px;
	left: 16px;
	width: 32px;
	height: 39px;
	background: url(/img/mitsumori/icon_estimate_03.png) no-repeat center /cover;
	content: "";
	@media screen and (max-width: 768px) {
		top: -50px;
		left: 50%;
		transform: translateX(-50%);
	}
}
