@charset "utf-8";

@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}
@media only screen and (max-width:375px) {} /* iPhoneSE 375px / iPhone12mini 360px */

/*************************************************

 index

*************************************************/


/* estimate-title01
-------------------------*/
.estimate-title01 {
	margin-bottom: 5px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

@media only screen and (max-width:767px) {
	.estimate-title01 {
		font-size: 18px;
	}
}


/* estimate-icontitle
-------------------------*/
.estimate-icontitle {
	display: flex;
	margin-bottom: 25px;
}

.estimate-icontitle__flex {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	min-height: 45px;
	padding: 5px 15px;
	border-radius: 10px 0 10px 0;
	background-color: #E1251B;
}

.estimate-icontitle__icon {
	margin-right: 12px;
	line-height: 0;
}

.estimate-icontitle__text {
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
}

@media only screen and (max-width:767px) {
	.estimate-icontitle {
		margin-bottom: 25px;
	}

	.estimate-icontitle__flex {
		padding: 5px 12px;
	}

	.estimate-icontitle__icon {
		margin-right: 10px;
	}
}


/* estimate-select
-------------------------*/
.estimate-select {
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	background-color: #FAFAFA;
	border: #A8A8A8 solid 1px;
}

.estimate-select::before {
	position: absolute;
	top: 50%;
	right: 12px;
	display: block;
	content: '';
	margin-top: -2px;
	border-top: #000 solid 6px;
	border-left: transparent solid 4px;
	border-right: transparent solid 4px;
}

.estimate-select select {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 44px;
	margin: 0;
	padding: 0 30px 0 14px;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	appearance: none;
	cursor: pointer;
	z-index: 2;
}


/* estimate-textarea
-------------------------*/
.estimate-textarea {
	box-sizing: border-box;
	box-shadow: none;
	display: block;
	width: 100%;
	height: 180px;
	margin: 0;
	padding: 15px;
	border: #A8A8A8 solid 1px;
	resize: vertical;
	appearance: none;
}


/* estimate-file
-------------------------*/
.estimate-file {
	padding: 9px 14px 12px;
	border: #A8A8A8 solid 1px;
}


/* estimate-radios
-------------------------*/
.estimate-radios {
	display: flex;
	flex-wrap: wrap;
}

.estimate-radios__li {
	overflow: hidden;
	position: relative;
	margin: 10px 40px 0 0;
}

.estimate-radios__li label {
	cursor: pointer;
}

.estimate-radios__li input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	display: none;
}

.estimate-radios__txt {
	position: relative;
	display: block;
	padding-left: 40px;
}

.estimate-radios__txt::before,
.estimate-radios__txt::after {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	display: block;
	content: '';
	border-radius: 50%;
	transform: translateY(-50%);
}

.estimate-radios__txt::before {
	left: 0;
	width: 22px;
	height: 22px;
	border: #E1251B solid 1px;
}

.estimate-radios__txt::after {
	left: 4px;
	width: 14px;
	height: 14px;
	background-color: #E1251B;
	opacity: 0;
}

input:checked + .estimate-radios__txt::after {
	opacity: 1;
}


/* estimate-date
-------------------------*/
.estimate-date {
	display: flex;
	flex-wrap: wrap;
}

.estimate-date__item {
	display: flex;
	align-items: center;
	margin: 10px 40px 0 0;
}

.estimate-date__item .estimate-select {
	width: 190px;
	margin-right: 10px;
}

@media only screen and (max-width:767px) {
	.estimate-date {
		display: block;
	}

	.estimate-date__item {
		margin: 0;
	}

	.estimate-date__item + .estimate-date__item {
		margin-top: 15px;
	}

	.estimate-date__item .estimate-select {
		width: 190px;
		margin-right: 10px;
	}
}



.estimate-sendbtn {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 440px;
	min-height: 72px;
	margin: 0 auto;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	background-color: #E1251B;
	border: #E1251B solid 2px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.estimate-sendbtn__txt {
	position: relative;
	display: block;
	padding-right: 60px;
}

.estimate-sendbtn__txt::before,
.estimate-sendbtn__txt::after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/common/icon_arw06.svg) no-repeat center center / contain;
	transform: translateY(-50%);
	border-radius: 50%;
	transition: right 0.3s, opacity 0.3s;
}

.estimate-sendbtn__txt::after {
	/* background-image: url(../images/common/icon_arw02.svg); */
	opacity: 0;
}

@media only screen and (min-width:768px) {
	.estimate-sendbtn:hover {
		color: #E1251B;
		background-color: #fff;
	}

	.estimate-sendbtn:hover .estimate-sendbtn__txt::before,
	.estimate-sendbtn:hover .estimate-sendbtn__txt::after {
		right: -10px;
	}

	.estimate-sendbtn:hover .estimate-sendbtn__txt::before {
		position: 0;
	}

	.estimate-sendbtn:hover .estimate-sendbtn__txt::after {
		opacity: 1;
	}
}

@media only screen and (max-width:767px) {
	.estimate-sendbtn {
		min-height: 62px;
		font-size: 18px;
	}

	.estimate-sendbtn__txt {
		padding-right: 40px;
	}
}



/*************************************************

 estimate-selectarea

*************************************************/
.estimate-selectarea {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}

.estimate-selectarea__ttl {
	margin-bottom: 6px;
}

.estimate-selectarea__item__num input {
	box-sizing: border-box;
	position: relative;
	width: 100px;
	height: 44px;
	margin: 0;
	padding: 0 0 0 14px;
	background-color: #FAFAFA;
	border: #A8A8A8 solid 1px;
	border-radius: 3px;
	outline: none;
	appearance: none;
}

.estimate-selectarea__item__reset {
	position: relative;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 3px;
	padding: 12px 12px 12px 28px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	background: #A8A8A8;
	border: none;
	text-align: center;
	line-height: 1;
	border-radius: 0;
	outline: none;
	appearance: none;
	cursor: pointer;
}

.estimate-selectarea__item__reset::after,
.estimate-selectarea__item__reset::before {
	position: absolute;
	top: 50%;
	left: 8px;
	display: block;
	content: '';
	width: 14px;
	height: 2px;
	background-color: #fff;
	margin-top: -1px;
	border-radius: 2px;
}

.estimate-selectarea__item__reset::after {
	transform: rotate(45deg);
}

.estimate-selectarea__item__reset::before {
	transform: rotate(-45deg);
}

.estimate-selectarea__item {
	margin-top: 20px;
}

.estimate-selectarea__item.is-01 {
	width: 440px;
}

.estimate-selectarea__item.is-02 {
	width: 200px;
}

.estimate-selectarea__item.is-03 {
	width: 100px;
}

.estimate-selectarea__item.is-04 {
	width: 70px;
}

@media only screen and (max-width:767px) {
	.estimate-selectarea {
		display: block;
	}

	.estimate-selectarea__item {
		margin-top: 20px;
	}

	.estimate-selectarea__item.is-01 {
		width: auto;
	}

	.estimate-selectarea__item.is-02 {
		width: auto;
	}
}


/* estimate-selectarea__more
-------------------------*/
.estimate-selectarea__more {
	position: relative;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 270px;
	min-height: 40px;
	margin: 30px auto 0;
	padding: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	background: #000;
	border: none;
	text-align: center;
	line-height: 1;
	border-radius: 30px;
	outline: none;
	appearance: none;
	cursor: pointer;
}

.estimate-selectarea__more__text {
	display: block;
	position: relative;
	padding-left: 43px;
}

.estimate-selectarea__more__text::before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 22px;
	height: 22px;
	background: url(../images/common/icon_plus.svg) no-repeat center center / contain;
	transform: translateY(-50%);
}


/*************************************************

 estimate-points

*************************************************/
.estimate-points {
	display: flex;
	justify-content: space-between;
	margin: 0 -10px;
}

.estimate-points__item {
	box-sizing: border-box;
	width: calc(100% - 20px);
	margin: 0 10px;
	border: #E1251B solid 2px;
}

.estimate-points__item__ttl {
	padding: 10px 0;
	color: #fff;
	font-weight: 700;
	text-align: center;
	background-color: #E1251B;
}

.estimate-points__item__body {
	padding: 30px 15px;
}

@media only screen and (max-width:767px) {
	.estimate-points {
		display: block;
		margin: 0;
	}

	.estimate-points__item {
		width: auto;
		margin: 0;
	}

	.estimate-points__item + .estimate-points__item {
		margin-top: 30px;
	}
}




/*************************************************

 estimate-temples

*************************************************/
.estimate-temples {
	overflow: hidden;
	border: #EBEBEB solid 2px;
	border-radius: 5px;
}

.estimate-temples__btn {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 54px;
	margin: 0;
	padding: 0 15px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	background: #fff;
	border: none;
	text-align: center;
	line-height: 1;
	border-radius: 0;
	outline: none;
	appearance: none;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.estimate-temples__btn.is-on {
	color: #fff;
	background-color: #A8A8A8;
}

.estimate-temples__btn::before,
.estimate-temples__btn::after {
	position: absolute;
	top: 50%;
	right: 12px;
	display: block;
	content: '';
	width: 18px;
	height: 2px;
	margin-top: -1px;
	background-color: #A8A8A8;
	border-radius: 2px;
	transition: background-color 0.3s, transform 0.3s;
}

.estimate-temples__btn.is-on::before,
.estimate-temples__btn.is-on::after {
	background-color: #fff;
}

.estimate-temples__btn::after {
	transform: rotate(90deg);
}

.estimate-temples__btn.is-on::after {
	transform: rotate(0deg);
}

.estimate-temples__list {
	display: none;
}

.estimate-temples__list__li {
	display: flex;
	justify-content: space-between;
	padding: 17px 0;
}

.estimate-temples__list__li + .estimate-temples__list__li {
	border-top: #A8A8A8 dashed 1px;
}

.estimate-temples__list__thumb {
	width: 95px;
	text-align: center;
	line-height: 0;
}

.estimate-temples__list__text {
	width: calc(100% - 105px);
}

.estimate-temples__list__ttl {
	font-weight: 500;
	line-height: 1.5;
}

.estimate-temples__list__anchors {
	display: flex;
	flex-wrap: wrap;
}

.estimate-temples__list__anchors__anchor {
	display: block;
	margin: 10px 20px 0 0;
	line-height: 1.5;
}