@charset "UTF-8";
main {
	background-color: #f9f8f6;
	padding-bottom: 90px;
}
.c-mainimg {
	background: -moz-linear-gradient(50% 99.1% 90deg,rgba(248, 196, 25, 1) 0%,rgba(239, 156, 0, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(248, 196, 25, 1) 0%, rgba(239, 156, 0, 1) 100%);
	background: -webkit-gradient(linear,50% 99.1% ,50% 0.29% ,color-stop(0,rgba(248, 196, 25, 1) ),color-stop(1,rgba(239, 156, 0, 1) ));
	background: -o-linear-gradient(90deg, rgba(248, 196, 25, 1) 0%, rgba(239, 156, 0, 1) 100%);
	background: -ms-linear-gradient(90deg, rgba(248, 196, 25, 1) 0%, rgba(239, 156, 0, 1) 100%);
	background: linear-gradient(0deg, rgba(248, 196, 25, 1) 0%, rgba(239, 156, 0, 1) 100%);
	overflow: hidden;
}
.c-mainimg .inner {
	margin: 0 auto;
	width: 1050px;
	height: 306px;
	display: flex !important;
	align-items: flex-end;
}
.c-mainimg .inner img {
	max-width: none;
	width: 1170px;
	display: block;
}
.secBox {
	margin: 0 auto;
	width: 1050px;
	background-color: #fff;
	border: 1px solid #efeeed;
	border-top: none;
	border-radius: 0 0 20px 20px;
	box-sizing: content-box;
	padding-bottom: 90px;
}
.secBox .topTxt {
	padding: 20px 0 75px;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.78;
	color: #434D72;
	font-weight: 500;
}
.secBox .btnList {
	display: flex;
	justify-content: center;
}
.secBox .btnList li {
	margin: 0 30px;
	border-radius: 10px;
	overflow: hidden;
}
.secBox .btnList a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 405px;
	height: 81px;
	border-radius: 10px;
	border: 2px solid #F8B419;
	font-size: 2.3rem;
	color: #ef9c00;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	z-index: 2;
}
.secBox .btnList a:after {
	position: absolute;
	right: 15px;
	top: 50%;
	width: 25px;
	height: 25px;
	transform: translateY(-50%);
	background: url(../../img/cost-simulator/icon01.png) no-repeat center / 100% 100%;
	content: "";
}
.secBox .btnList a::before {
	position: absolute;
	left: -1px;
	top: -1px;
	width: 0;
	height: calc(100% + 2px);
	z-index: -1;
	content: "";
	background-color: #F8B419;
	transition: width .3s;
}
.secBox .formList {
	margin: 0 auto;
	padding: 77px 0 80px;
	width: 958px;
}
.secBox .formList li {
	display: flex;
	padding: 25px 0 25px 15px;
	justify-content: space-between;
	border-bottom: 1px solid #EAE5DF;
	align-items: center;
}
.secBox .formList li p {
	font-size: 2.2rem;
	color: #434D72;
	font-weight: 700;
}
.secBox .formList li .right {
	display: flex;
	align-items: center;
	width: 398px;
}
.secBox .formList li .right p {
	letter-spacing: -2px;
}
.secBox .formList li input {
	margin-right: 20px;
	width: 320px;
	height: 60px;
	border-radius: 10px;
	background-color: rgba(248, 180, 25, 0.08);
	border: none;
	font-size: 2.6rem;
	-webkit-appearance: none;
	appearance: none;
	outline: 0 !important;
	font-family: inherit;
	font-weight: bold;
	color: #000;
}
.secBox .formList li input::placeholder {
	font-size: 2.2rem;
	color: #bfbfbf;
}
.secBox .formList li input:focus {
	background-color: rgba(248, 180, 25, 0.08) !important;
	border: 2px solid rgba(248, 180, 25, 0.5) !important;
}
.secBox .formList li input::-webkit-outer-spin-button,
.secBox .formList li input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
.secBox .formList li input[type="number"]{
	-moz-appearance: textfield;
}
.secBox .submit input {
	width: 410px;
	height: 80px;
	display: block;
	margin: 0 auto;
	background: #F8B419 url(../../img/cost-simulator/icon03.png) no-repeat right 15px center / 25px auto;
	border-radius: 10px;
	font-size: 2.4rem;
	color: #fff;
	font-weight: bold;
	font-family: inherit;
}
.secBox form {
	display: none;
}
.secBox .btnList a.on {
	color: #fff;
	opacity: 1;
}
.secBox .btnList a.on:after {
	background-image: url(../../img/cost-simulator/icon02.png);
}
.secBox .btnList a.on::before {
	width: 110%;
}
@media screen and (min-width:769px) {
	.secBox .btnList a:hover {
		color: #fff;
		opacity: 1;
	}
	.secBox .btnList a:hover:after {
		background-image: url(../../img/cost-simulator/icon02.png);
	}
	.secBox .btnList a:hover::before {
		width: 110%;
	}
	.secBox .submit input:hover {
		background-color: #ef9c00;
	}
}
@media screen and (max-width:768px) {
	main {
		padding-bottom: 90px;
	}
	.c-mainimg {
		height: 145px;
	}
	.c-mainimg .inner {
		display: none !important;
	}
	.secBox {
		margin: -130px 20px 0;
		width: auto;
		border-radius: 10px;
		padding-bottom: 45px;
	}
	.secBox .topTxt {
		padding: 20px 0 30px;
		font-size: 1.4rem;
	}
	.secBox .btnList {
		display: flex;
		justify-content: center;
	}
	.secBox .btnList li {
		margin: 0 5px;
		border-radius: 5px;
	}
	.secBox .btnList a {
		width: 150px;
		height: 60px;
		border-radius: 5px;
		border: 1px solid #F8B419;
		font-size: 1.5rem;
		line-height: 1.5;
		text-align: center;
		letter-spacing: 0;
	}
	.secBox .btnList a:after {
		right: 10px;
		width: 14px;
		height: 14px;
	}
	.secBox .formList {
		margin: 0 14px;
		padding: 27px 0 45px;
		width: auto;
	}
	.secBox .formList li {
		display: block;
		padding: 10px 0 15px;
	}
	.secBox .formList li p {
		margin: 0 5px 9px;
		font-size: 1.5rem;
		line-height: 1.67;
		font-weight: normal;
	}
	.secBox .formList li .right {
		width: auto;
	}
	.secBox .formList li .right p {
		margin: 0;
		font-weight: 700;
		font-size: 1.4rem;
		padding-left: 10px;
		flex-shrink: 0;
		width: 55px;
		letter-spacing: 0;
	}
	.secBox .formList li input {
		margin-right: 0;
		width: 100%;
		height: 44px;
		border-radius: 5px;
		font-size: 1.6rem;
	}
	.secBox .formList li input::placeholder {
		font-size: 1.6rem;
	}
	.secBox .submit input {
		width: 266px;
		height: 54px;
		background: #F8B419 url(../../img/cost-simulator/icon03.png) no-repeat right 10px center / 15px auto;
		border-radius: 7px;
		font-size: 1.5rem;
	}
}

/* result */
.cost-result {
	padding-bottom: 0;
}
.cost-result .c-mainimg .bg {
	background-color: #fff;
	border-radius: 20px 20px 0 0;
	width: 100%;
	height: 270px;
	text-align: center;
	position: relative;
	padding-top: 35px;
}
.cost-result .c-mainimg .bg::before {
	position: absolute;
	left: 30px;
	top: 24px;
	width: 241px;
	height: 36px;
	content: "";
	background: url(../../img/cost-simulator/result/main_img01.png) no-repeat center / 100% auto;
}
.cost-result .c-mainimg .bg::after {
	position: absolute;
	right: 72px;
	top: -14px;
	width: 53px;
	height: 149px;
	content: "";
	background: url(../../img/cost-simulator/result/main_img02.png) no-repeat center / 100% auto;
}
.cost-result .c-mainimg h2 {
	margin-bottom: 24px;
	font-size: 4rem;
	letter-spacing: 2.8px;
	color: #434D72;
	font-weight: 900;
}
.cost-result .c-mainimg h2 span {
	display: flex;
	margin: 0 auto 6px;
	justify-content: center;
	align-items: center;
	width: 290px;
	height: 40px;
	border-radius: 20px;
	font-size: 1.9rem;
	color: #fff;
	background-color: #F8B419;
	letter-spacing: 0;
	font-weight: 500;
	line-height: 1;
}
.cost-result .c-mainimg p {
	font-size: 1.8rem;
	color: #434D72;
	letter-spacing: 0;
}
.cost-result .resultBox {
	display: flex;
	margin: 0 auto 62px;
	width: 900px;
	letter-spacing: 0;
	justify-content: space-between;
	background: url(../../img/cost-simulator/line.png) repeat-y center / 1px auto;
}
.cost-result .resultBox > div {
	width: 370px;
	margin: 0 10px;
}
.cost-result .resultBox h3 {
	margin-bottom: 21px;
	padding-bottom: 11px;
	display: inline-block;
	font-size: 2.4rem;
	font-weight: bold;
	color: #434D72;
	letter-spacing: 0.96px;
	position: relative;
	top: -2px;
	border-bottom: 2px solid #434D72;
	line-height: 1;
}
.cost-result .resultBox h3:after {
	position: absolute;
	top: 100%;
	right: 30px;
	width: 30px;
	height: 17px;
	content: "";
	background: url(../../img/cost-simulator/result/icon_ttl.jpg) no-repeat top center / 30px auto;
}
.cost-result .resultBox .borderTxt {
	border-bottom: 1px solid #E2E2E2;
	font-size: 2.8rem;
	letter-spacing: 1.12px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: right;
}
.cost-result .resultBox .borderTxt .num {
	font-size: 5rem;
	color: #0270BA;
	letter-spacing: 0;
	line-height: 1;
}
.cost-result .resultBox .animteBox {
	margin: 0 10px 55px auto;
	width: 320px;
	position: relative;
}
.cost-result .resultBox .animteBox .itemList {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 180px;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	flex-direction: column;
	transition: 1s;
}
.cost-result .resultBox .animteBox .itemList li {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0270BA;
	font-size: 1.4rem;
	letter-spacing: 0.56px;
	color: #fff;
	overflow: hidden;
}
.cost-result .resultBox .animteBox .cutText {
	position: absolute;
	bottom: 100%;
	width: 180px;
	text-align: center;
	z-index: 2;
	font-size: 2.4rem;
	line-height: 1;
	font-weight: bold;
	padding-bottom: 70px;
	background: url(../../img/cost-simulator/result/cut01.png) no-repeat center bottom 10px / 42px auto;
	visibility: hidden;
	transition: bottom 1s;
}
.cost-result .resultBox .left .animteBox .cutText {
	background-image: url(../../img/cost-simulator/result/cut02.png);
}
.cost-result .resultBox .animteBox .cutText.show {
	visibility: visible;
}
.cost-result .resultBox .animteBox .cutText:before {
	position: absolute;
	left: calc(50% - 60px);
	top: 15px;
	width: 120px;
	height: 16px;
	background-color: rgba(248, 180, 25, 0.2);
	content: "";
	z-index: -1;
}
.cost-result .resultBox .left .animteBox .cutText:before {
	background-color: #0270BA;
	opacity: 0.2;
}
.cost-result .resultBox .animteBox .cutText .small {
	font-size: 1.9rem;
}
.cost-result .resultBox .animteBox .cutText .num {
	font-size: 2.8rem;
}
.cost-result .resultBox .resultList {
	margin-bottom: 16px;
}
.cost-result .resultBox .resultList li {
	margin-bottom: 13px;
	padding: 0 10px 6px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #E2E2E2;
	color: #434D72;
	font-size: 1.6rem;
	font-weight: 500;
}
.cost-result .resultBox .allPrice {
	text-align: right;
	font-size: 1.6rem;
	font-weight: bold;
}
.cost-result .resultBox .allPrice .num {
	font-size: 2.2rem;
	line-height: 1;
}
.cost-result .secBox {
	padding-bottom: 44px;
	margin-bottom: 30px;
}
.cost-result .secBox .note {
	margin: 0 auto 35px;
	width: 900px;
	font-size: 1.4rem;
	line-height: 2;
	color: #434D72;
	letter-spacing: 0.48px;
}
.cost-result .secBox .largenote {
	margin: 0 auto;
	width: 900px;
	font-size: 1.3rem;
	line-height: 1.875;
	color: #434D72;
	letter-spacing: 0.48px;
}
.cost-result .back {
	text-align: center;
	margin-bottom: 90px;
}
.cost-result .back a {
	padding: 0 50px;
	font-size: 2.2rem;
	color: #434D72;
	font-weight: bold;
	text-decoration: none;
	background: url(../../img/cost-simulator/icon04.png) no-repeat right center;
	background-size: 25px 25px;
}
.cost-result .productSec {
	padding: 60px 0 85px;
	background-color: #F8B419;
	text-align: center;
	color: #f9f8f6;
	letter-spacing: 0;
}
.cost-result .productSec h2 {
	margin-bottom: 38px;
	font-size: 4.2rem;
	letter-spacing: 1.68px;
	font-weight: 900;
}
.cost-result .productSec p {
	margin-bottom: 72px;
	font-size: 1.8rem;
	line-height: 2;
}
.cost-result .productSec .btnList {
	display: flex;
	justify-content: center;
}
.cost-result .productSec .btnList li {
	margin: 0 45px;
}
.cost-result .productSec .btnList a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	background-color: #fff;
	border-radius: 10px;
	width: 410px;
	height: 80px;
	text-decoration: none;
	color: #ef9c00;
	font-size: 2.2rem;
	font-weight: 700;
	overflow: hidden;
	border: 1px solid #fff;
}
.cost-result .productSec .btnList a img {
	position: absolute;
	display: block;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.cost-result .productSec .btnList a img.over {
	display: none;
}
.cost-result .productSec .btnList a::after {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	content: "";
	background: url(../../img/cost-simulator/result/icon_arrow.png) no-repeat center / 100% auto;
}
.cost-result .sec03 {
	text-align: center;
	padding: 70px 0 135px;
	background-color: #fff;
}
.cost-result .sec03 h2 {
	margin-bottom: 25px;
	font-size: 4.2rem;
	letter-spacing: 1.68;
	color: #434D72;
	font-weight: 900;
}
.cost-result .sec03 h3 {
	margin-bottom: 30px;
	font-size: 3rem;
	letter-spacing: 1.2px;
	line-height: 1.53;
	color: #ef9c00;
	font-weight: 900;
}
.cost-result .sec03 .topTxt {
	margin-bottom: 45px;
	font-size: 1.8rem;
	color: #434D72;
	letter-spacing: 0px;
}
.cost-result .sec03 ul {
	display: flex;
	justify-content: center;
	margin-bottom: 82px;
}
.cost-result .sec03 li {
	width: 206px;
	margin: 0 40px;
}
.cost-result .sec03 li .img {
	width: 160px;
	margin: 0 auto 10px;
}
.cost-result .sec03 li .ttl {
	margin-bottom: 7px;
	color: #ef9c00;
	font-size: 2.5rem;
	font-weight: 700;
}
.cost-result .sec03 li .txt {
	font-size: 1.6rem;
	line-height: 1.75;
	letter-spacing: 0;
}
.cost-result .sec03 .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
	width: 410px;
	height: 80px;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0 auto;
	border-radius: 10px;
	text-decoration: none;
	transition: .3s;
	background: #f8b419;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.cost-result .sec03 .btn a:after {
	position: absolute;
	right: 15px;
	width: 25px;
	height: 100%;
	top: 0;
	background: url(../../img/cost-simulator/result/icon_arrow_on.png) no-repeat center / 25px auto;
	content: "";
	z-index: 2;
}
@media screen and (min-width:769px) {
	.cost-result .back a:hover {
		text-decoration: underline;
		opacity: 1;
	}
	.cost-result .productSec .btnList a::before {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		z-index: -1;
		transition: .3s;
		width: 0;
		content: "";
		background-color: #ef9c00;
	}
	.cost-result .productSec .btnList a:hover {
		opacity: 1;
		color: #fff;
	}
	.cost-result .productSec .btnList a:hover img {
		display: none;
	}
	.cost-result .productSec .btnList a:hover .over {
		display: block;
	}
	.cost-result .productSec .btnList a:hover::before {
		width: 100%;
	}
	.cost-result .productSec .btnList a:hover::after {
		background-image: url(../../img/cost-simulator/result/icon_arrow_on.png);
	}
	.cost-result .sec03 .btn a:hover {
		background-color: #ef9c00;
		opacity: 1;
	}
	.cost-result .sec03 .btn a:before {
		position: absolute;
		left: 0;
		width: 0;
		height: 100%;
		top: 0;
		background: #ef9c00;
		content: "";
		transition: .3s;
		z-index: -1;
	}
	.cost-result .sec03 .btn a:hover:before {
		width: 100%;
	}
}
@media screen and (max-width:768px) {
	.cost-result {
		padding-bottom: 0;
	}
	.cost-result .c-mainimg {
		overflow: visible;
	}
	.cost-result .c-mainimg .inner {
		display: block !important;
		width: auto;
		margin: 0 20px;
		padding-top: 15px;
	}
	.cost-result .c-mainimg .bg {
		border-radius: 10px 10px 0 0;
		margin: 0;
		padding: 0 22px;
		height: auto;
		padding-top: 35px;
	}
	.cost-result .c-mainimg .bg::before {
		left: 10px;
		top: 10px;
		width: 124px;
		height: 16px;
	}
	.cost-result .c-mainimg .bg::after {
		right: 18px;
		top: -5px;
		width: 34px;
		height: 95px;
	}
	.cost-result .c-mainimg h2 {
		margin-bottom: 21px;
		font-size: 2rem;
		letter-spacing: 1.4px;
	}
	.cost-result .c-mainimg h2 span {
		margin: 0 auto 6px;
		width: 174px;
		height: 24px;
		border-radius: 12px;
		font-size: 1.2rem;
	}
	.cost-result .c-mainimg p {
		font-size: 1.4rem;
		text-align: left;
		line-height: 1.78;
	}
	.cost-result .secBox {
		margin-top: 0;
		padding-top: 83px;
		padding-bottom: 39px;
		margin-bottom: 13px;
	}
	.cost-result .resultBox {
		display: block;
		margin: 0 20px 35px;
		width: auto;
		background: none;
	}
	.cost-result .resultBox > div {
		width: auto;
		margin: 0;
	}
	.cost-result .resultBox h3 {
		margin: 0 30px 14px;
		padding-bottom: 7px;
		font-size: 1.5rem;
		letter-spacing: 0.6px;
		top: 0;
		border-bottom: 1px solid #434D72;
	}
	.cost-result .resultBox h3:after {
		right: 30px;
		width: 15px;
		height: 9px;
		background-size: 15px auto;
	}
	.cost-result .resultBox .borderTxt {
		font-size: 1.6rem;
		letter-spacing: 0.66px;
		margin: 0 40px 24px 30px;
	}
	.cost-result .resultBox .borderTxt .num {
		font-size: 3rem;
	}
	.cost-result .resultBox .animteBox {
		margin: 0 auto 24px;
		width: 210px;
	}
	.cost-result .resultBox .animteBox .itemList {
		width: 119px;
	}
	.cost-result .resultBox .animteBox .itemList li {
		font-size: 0.9rem;
		letter-spacing: 0.36px;
	}
	.cost-result .resultBox .animteBox .cutText {
		width: 119px;
		font-size: 1.6rem;
		padding-bottom: 50px;
		background-size: 27px auto;
	}
	.cost-result .resultBox .animteBox .cutText .small {
		font-size: 1.3rem;
	}
	.cost-result .resultBox .animteBox .cutText .num {
		font-size: 1.8rem;
	}
	.cost-result .resultBox .animteBox .cutText:before {
		left: calc(50% - 40px);
		top: 10px;
		width: 80px;
		height: 10px;
	}
	.cost-result .resultBox .resultList {
		margin-bottom: 16px;
	}
	.cost-result .resultBox .resultList li {
		margin-bottom: 8px;
		padding: 0 5px 4px;
		font-size: 1.4rem;
	}
	.cost-result .resultBox .allPrice {
		font-size: 1.5rem;
	}
	.cost-result .resultBox .allPrice .num {
		font-size: 2rem;
	}
	.cost-result .resultBox .left {
		border-bottom: 1px solid #E2E2E2;
		padding-bottom: 35px;
		margin-bottom: 25px;
	}
	.cost-result .secBox .note {
		margin: 0 20px 18px;
		width: auto;
		font-size: 1.3rem;
		line-height: 1.69;
		letter-spacing: 0;
	}
	.cost-result .secBox .largenote {
		margin: 0 20px;
		width: auto;
		font-size: 1.2rem;
		line-height: 1.92;
		letter-spacing: 0;
	}
	.cost-result .back {
		margin-bottom: 35px;
	}
	.cost-result .back a {
		padding: 0 25px;
		font-size: 1.5rem;
		background-size: 16px 16px;
	}
	.cost-result .productSec {
		padding: 30px 23px 15px;
	}
	.cost-result .productSec h2 {
		margin-bottom: 17px;
		font-size: 2rem;
		letter-spacing: 0.8px;
	}
	.cost-result .productSec p {
		margin-bottom: 31px;
		font-size: 1.4rem;
		line-height: 1.78;
		text-align: left;
	}
	.cost-result .productSec .btnList {
		flex-direction: column;
		justify-content: center;
	}
	.cost-result .productSec .btnList li {
		margin: 0 auto 20px;
	}
	.cost-result .productSec .btnList a {
		border-radius: 5px;
		width: 267px;
		height: 51px;
		font-size: 1.5rem;
	}
	.cost-result .productSec .btnList a img {
		left: 10px;
		width: 43px;
	}
	.cost-result .productSec .btnList a::after {
		right: 10px;
		width: 16px;
		height: 16px;
	}
	.cost-result .sec03 {
		padding: 30px 29px 125px;
	}
	.cost-result .sec03 h2 {
		margin-bottom: 15px;
		font-size: 2.2rem;
		letter-spacing: 0.88px;
	}
	.cost-result .sec03 h3 {
		margin-bottom: 22px;
		font-size: 1.5rem;
		letter-spacing: 0.6px;
	}
	.cost-result .sec03 .topTxt {
		margin-bottom: 36px;
		font-size: 1.4rem;
		text-align: left;
		line-height: 1.78;
	}
	.cost-result .sec03 ul {
		display: block;
		margin-bottom: 62px;
	}
	.cost-result .sec03 li {
		max-width: 309px;
		width: 100%;
		margin: 0 auto 25px;
		display: flex;
		text-align: left;
	}
	.cost-result .sec03 li .img {
		width: 120px;
		flex-shrink: 0;
		margin: 0 25px 0 0;
	}
	.cost-result .sec03 li .ttl {
		margin-bottom: 0px;
		font-size: 1.7rem;
	}
	.cost-result .sec03 li .txt {
		font-size: 1.4rem;
		line-height: 1.78;
		letter-spacing: 0;
		font-weight: 500;
	}
	.cost-result .sec03 .btn a {
		width: 266px;
		height: 51px;
		font-size: 1.5rem;
		border-radius: 5px;
		background-size: 16px auto;
		background-position: right 10px center;
	}
}
.cost-result .resultBox .borderTxt .num.bigNum {
	font-size: 3.3rem;
}
@media screen and (max-width:768px) {
	.cost-result .resultBox .borderTxt .num.bigNum {
		font-size: 2rem;
	}
}