@charset "UTF-8";

/* ------------------------------------------------
                    TOP
--------------------------------------------------- */
/*---------- Page Title ----------*/
.sec-page-ttl {
	width: 100%;
	margin-bottom: 100px;
	padding: 110px 0 140px;
	text-align: center;
	background: url("../../img/common/bg_page_ttl.jpg") top center no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.page-ttl {
	font-size: 5.8rem;
	font-weight: 700;
	line-height: 1.4;
}
.page-ttl-txt {
	margin-top: 65px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}

@media (max-width: 1050px) {
	.page-ttl {
		font-size: 5.0vw;
	}
}

@media (max-width: 768px) {
	.sec-page-ttl {
		width: 100%;
		margin-bottom: 14vw;
		padding: 12vw 0;
	}
	.page-ttl {
		margin-top: 4vw;
		font-size: 5.8vw;
	}
    
}

/*---------- Simulation ----------*/
.sec-simulation {
	width: 100%;
	margin-bottom: 20px;
	padding: 80px 0;
	background: #f5f5f5;
}
.simulation-ttl {
	width: 100%;
	margin-bottom: 40px;
	padding-bottom: 15px;
	border-bottom: 2px solid #80a398;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
}


/* checkbox, radio */

input[type="radio"], 
input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}
.is-disable {
	opacity: 0.5;
	pointer-events: none;
}

/* button */
.simulation-btn-wrap {
	align-items: center;
	justify-content: space-between;
}

.simulation-btn {
	width: calc((100% - 80px) / 5);
}
.simulation-btn span {
	padding: 25px;
	display: block;
	background: #fff;
	border: 2px solid #80a398;
	border-radius: 40px;
	color: #80a398;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
.simulation-btn input:checked + span {
	background: #004831;
	border: 2px solid #004831;
	color: #fff;
}


/* checkbox */
.simulation-check-wrap {
	width: 100%;
	margin-bottom: 30px;
	position: relative;
}
.simulation-check-wrap.is-unpublished::before {
	content: 'Coming soon';
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-size: 3.8rem;
	font-weight: 500;
	font-style: normal;
	line-height: 1;
	background: rgba(20, 29, 29, 0.75);
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}

.simulation-check-wrap:last-child {
	margin: 0;
}
.simulation-check {
	width: 100%;
	display: flex;
	background: #fff;
	border: 2px solid #80a398;
	border-radius: 20px;
	overflow: hidden;
}
.simulation-check-ttl-wrap {
	width: 310px;
}
.simulation-check-ttl-wrap label {
	width: 100%;
	height: 100%;
	display: flex;
}
.simulation-check-ttl-wrap label span.simulation-check-ttl {
	width: 100%;
	padding: 40px 0 40px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 2px solid #80a398;
	box-sizing: border-box;
	color: #80a398;
	cursor: pointer;
    position: relative;
	transition: 0.3s ease-in-out;
}

.simulation-check-ttl-wrap label span.simulation-check-ttl::before {
    content: '';
    display: block;
    width: 23px;
    height: 20px;
	background: url("../../img/top/icon_check.svg") center center no-repeat;
	background-size: 100%;
    position: absolute;
    top: calc(50% - 10px);
    left: 20px;
}


.simulation-check-ttl-en {
	margin-bottom: 10px;
	display: block;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1;
}
.simulation-check-ttl-ja {
	display: block;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1;
}

/* cont */
.simulation-check-cont {
	width: calc(100% - 310px);
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.check-trigger {
	cursor: pointer;
}

.simulation-check-txt {
	color: #80a398;
	font-size: 1.6rem;
	font-weight: 700;
}

.simulation-check-cont .simulation-btn-wrap {
	width: 100%;
	margin-top: 30px;
	align-items: center;
	justify-content: space-between;
}

.simulation-check-cont .simulation-btn {
	width: calc((100% - 30px) / 4);
}

/* checked */
.simulation-check:has(input:checked) {
	border: 2px solid #004831;
}
.simulation-check-ttl-wrap label input:checked + span.simulation-check-ttl {
	color: #fff;
	background: #004831;
	border-right: 2px solid #004831;
}
.simulation-check-ttl-wrap label input:checked + span.simulation-check-ttl::before {
	background: url("../../img/top/icon_check_checked.svg") center center no-repeat;
	background-size: 100%;
}
.simulation-check:has(input:checked) .simulation-check-txt {
	color: #141d1d;
}

@media (max-width: 768px) {
	.sec-simulation {
		width: 100%;
		margin-bottom: 5vw;
		padding: 10vw 0 8vw;
	}
	.simulation-ttl {
		width: 100%;
		margin-bottom: 8vw;
		padding-bottom: 3vw;
		font-size: 4.6vw;
	}
	

	/* button */
	.simulation-btn-wrap {
		align-items: center;
		justify-content: flex-start;
	}

	.simulation-btn {
		width: 30%;
		margin: 0 5% 4vw 0;
	}
	.simulation-btn:nth-of-type(3n) {
		margin-right: 0;
	}
	
	.simulation-btn span {
		padding: 4vw 2vw;
		border-radius: 8vw;
		font-size: 3.4vw;
	}


	/* checkbox */
	.simulation-check-wrap {
		width: 100%;
		margin-bottom: 6vw;
	}
	.simulation-check-wrap.is-unpublished::before {
		font-size: 8.6vw;
		border-radius: 4vw;
	}

	.simulation-check {
		border-radius: 4vw;
	}
	.simulation-check-ttl-wrap {
		width: 100%;
	}
	.simulation-check-ttl-wrap label {
		width: 100%;
		height: 100%;
		display: flex;
	}
	.simulation-check-ttl-wrap label span.simulation-check-ttl {
		width: 100%;
		padding: 5vw 0 5vw 20vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
		border-right: none;
		border-bottom: 2px solid #80a398;
	}

	.simulation-check-ttl-wrap label span.simulation-check-ttl::before {
		content: '';
		display: block;
		width: 5vw;
		height: 4.6vw;
		background: url("../../img/top/icon_check.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2.3vw);
		left: 8vw;
	}

	.simulation-check-ttl-en {
		margin-bottom: 2vw;
		font-size: 5.8vw;
	}
	.simulation-check-ttl-ja {
		font-size: 3.6vw;
	}

	/* cont */
	.simulation-check-cont {
		width: 100%;
		padding: 5vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.simulation-check-txt {
		font-size: 3.4vw;
	}

	.simulation-check-cont .simulation-btn-wrap {
		width: 100%;
		margin-top: 5vw;
		align-items: center;
		justify-content: flex-start;
	}

	.simulation-check-cont .simulation-btn {
		width: 30%;
		margin: 0 5% 4vw 0;
	}
	.simulation-check-cont .simulation-btn:nth-of-type(3n) {
		margin-right: 0;
	}

	/* checked */
	.simulation-check-ttl-wrap label input:checked + span.simulation-check-ttl {
		border-right: none;
		border-bottom: 2px solid #004831;
	}
	.simulation-check-ttl-wrap label input:checked + span.simulation-check-ttl::before {
		background: url("../../img/top/icon_check_checked.svg") center center no-repeat;
		background-size: 100%;
	}
}



/*---------- Result ----------*/
.sec-result {
	width: 100%;
	margin-bottom: 110px;
	padding: 80px 0;
	background: url("../../img/service/bg_point.jpg") center center no-repeat;
	background-size: cover;
}

.result-wrap {
	width: 100%;
	margin-bottom: 80px;
	padding: 70px 40px 70px 80px;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 20px;
}
.result-ttl {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1;
}
.result-txt {
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1;
}
.result-cost {
	padding-right: 10px;
	color: #e95501;
	font-size: 5.8rem;
	font-weight: 500;
}

.result-bottom-wrap {
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.result-note-txt {
	width: 50%;
	color: #fff;
	font-weight: 700;
	line-height: 2;
}
.result-bottom-wrap .btn-lightgreen {
	width: 45%;
	max-width: 488px;
}

@media (max-width: 768px) {
	.sec-result {
		width: 100%;
		margin-bottom: 10vw;
		padding: 12vw 0;
	}

	.result-wrap {
		width: 100%;
		margin-bottom: 10vw;
		padding: 6vw;
		border-radius: 4vw;
	}
	.result-ttl {
		width: 100%;
		margin-bottom: 5vw;
		text-align: center;
		font-size: 5.2vw;
	}
	.result-txt {
		width: 100%;
		text-align: right;
		font-size: 5.2vw;
	}
	.result-cost {
		padding-right: 2vw;
		font-size: 8.2vw;
	}

	.result-bottom-wrap {
		width: 100%;
		align-items: center;
		justify-content: space-between;
	}
	.result-note-txt {
		width: 100%;
		margin-bottom: 8vw;
	}
	.result-bottom-wrap .btn-lightgreen {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
	}
}



/*---------- Document ----------*/
.sec-document {
	width: 100%;
	margin-bottom: 100px;
	padding: 80px 0;
	position: relative;
}
.sec-document::before {
	content: '';
	width: 70%;
	height: 100%;
	background: url("../../img/download/bg_download.jpg") center center no-repeat;
	background-size: cover;
	border-radius: 40px 0 0 40px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.sec-document .cont-inn {
	position: relative;
	flex-direction: row-reverse;
	z-index: 2;
}

.document-ttl-wrap {
	width: 45%;
	text-align: right;
}

.document-ttl-en {
	margin-bottom: 40px;
	font-size: 7.4rem;
	line-height: 1;
}

.document-ttl-txt {
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1;
}
.document-img-wrap {
	width: 100%;
	margin: 70px auto 0;
}



.document-txt-wrap {
	width: 61%;
	margin-right: -9%;
	position: relative;
	z-index: 5;
}
.document-copy {
	width: 100%;
	margin-bottom: 60px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2.2;
}
.document-txt {
	width: 80%;
	max-width: 600px;
	margin-bottom: 70px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}

.document-list-wrap {
	width: 100%;
	max-width: 380px;
	margin-bottom: 60px;
	padding: 0 40px 40px;
	background: #fff;
	border: 2px solid #141d1d;
	border-radius: 20px;
	position: relative;
}

.document-list-ttl {
	display: inline-block;
	padding: 12px 40px;
	background: #141d1d;
	border-radius: 20px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	top: -20px;
	
}
.document-list li {
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
	font-weight: 700;
	line-height: 1.2;
}
.document-list li:last-child {
	margin-bottom: 0;
}
.document-list li.is-checked::before {
	content: '';
	width: 17px;
	height: 15px;
	background: url("../../img/download/icon_check_checked.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.document-txt-wrap .btn-download-lightgreen {
	max-width: 488px;
	margin-right: auto;
}

@media (max-width: 1500px) {
	.document-copy {
		font-size: 1.6vw;
	}
	.document-txt {
		font-size: 1.3vw;
	}
}

@media (max-width: 1200px) {
	.document-ttl-wrap {
		width: 45%;
	}
	.document-txt-wrap {
		width: 50%;
		margin-right: auto;
	}
	.document-copy {
		font-size: 1.9vw;
	}
	.document-txt {
		width: 100%;
		max-width: initial;
		font-size: 1.7vw;
	}
}

@media (max-width: 768px) {
	.sec-document {
		width: 100%;
		margin-bottom: 8vw;
		padding: 12vw 0;
		position: relative;
	}
	.sec-document::before {
		content: '';
		width: 80%;
		height: 100%;
		border-radius: 8vw 0 0 8vw;
	}
	
	.document-ttl-wrap {
		width: 100%;
		margin-bottom: 10vw;
	}
	.document-ttl-en {
		margin-bottom: 8vw;
		font-size: 12.8vw;
	}

	.document-ttl-txt {
		font-size: 5.4vw;
	}

	.document-img-wrap {
		width: 100%;
	}

	.document-txt-wrap {
		width: 100%;
		margin-right: auto;
	}
	
	.document-copy {
		width: 100%;
		margin-bottom: 6vw;
		font-size: 4.8vw;
	}
	.document-txt {
		font-size: 3.8vw;
	}

	.document-list-wrap {
		width: 100%;
		max-width: initial;
		padding: 0 8vw 5vw;
		border-radius: 4vw;
		position: relative;
		text-align: center;
	}

	.document-list-ttl {
		display: inline-block;
		padding: 2.2vw 8vw;
		background: #141d1d;
		border-radius: 6vw;
		color: #fff;
		font-size: 3.6vw;
		top: -4vw;

	}
	.document-list li {
		margin-bottom: 2.2vw;
		padding-left: 5vw;
		text-align: left;
	}
	.document-list li:last-child {
		margin-bottom: 0;
	}
	.document-list li.is-checked::before {
		content: '';
		width: 3.2vw;
		height: 4vw;
		top: 0;
		left: 0;
	}

	.document-txt-wrap .btn-download-lightgreen {
		max-width: initial;
		margin: 0 auto;
	}
}

