@charset "utf-8";

@media all and (-ms-high-contrast:none) {
	/*IE11用*/
	*::-ms-backdrop,html{
		height: 100% !important;
		overflow: auto !important;
	}
	*::-ms-backdrop,body{
		height: 100% !important;
		overflow: auto !important;
	}
}

/* = メインビジュアル
-------------------------------------------------------------- */

#mainvisual {
	position: relative;
	color: #fff;
	overflow: hidden;
	/*background: url(../images/home/mv.png) no-repeat center / cover;*/
}
#mainvisual::before,
#mainvisual::after {
	content: '';
	display: block;
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	z-index: -1;
}
#mainvisual::before {
	background: url(../images/home/mv_01.png) no-repeat center / cover;
	left: 0;
}
#mainvisual::after {
	background: url(../images/home/mv_02.png) no-repeat center / cover;
	right: 0;
}
/*#mainvisual:before {
	content: '';
	display: block;
	background: rgba(0,0,0,0.6);
	position: absolute;
	width: 100%;
	height: 100%;
}*/
#mainvisual .mv-mask {
	background: rgba(0,0,0,0.6);
	position: absolute;
	width: 100%;
	height: 100%;
}
#mainvisual .inner {
	position: relative;
	padding-block: 50px 160px;
	text-align: center;
	color: #fff;
}
#mainvisual .inner h2 {
	font-size: 4.2rem;
	font-weight: var(--weight-bold);
	margin-bottom: 20px;
}
#mainvisual .inner p {
	margin-bottom: 40px;
}
#mainvisual .mv-points {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}
#mainvisual .mv-points li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 130px;
	aspect-ratio: 1/1;
	background: #fff url(../images/home/mv_point_bg.png) no-repeat center / cover;
	font-size: 1.8rem;
	line-height: 1.33;
	color: var(--color-main-green);
	font-weight: var(--weight-bold);
	border-radius: 100%;
}

.mv-cta {
	position: relative;
	margin-top: -120px;
}
.mv-cta-box {
	padding: 35px 30px;
	margin-inline: 50px;
	background: var(--color-bg-lightgreen);
	border: 2px solid #F3F1EE;
	border-radius: 30px;
	color: #fff;
	text-align: center;
}
.mv-cta-box h3 {
	font-size: 2.8rem;
	margin-block: 0 15px;
}
.mv-cta-box .cta-list {
	margin-top: 30px;
}

@media screen and (max-width: 736px) {
	.mv-cta-box {
		margin: 0;
	}
	.mv-cta-box h3 {
		margin-block: 0 15px;
	}
	.mv-cta-box .cta-list {
		margin-top: 0;
	}	
}