/* ----------------------------------------
基本
---------------------------------------- */
h2.ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
	text-align: center;
	&>img {
		width: 40px;
		height: auto;
		margin-bottom: 15px;
	}
	& span {
		font-size: 6vw;
		font-weight: 600;
	}
}
/* メイン main
---------------------------------------- */
.main {
	background: var(--main-color);
	padding: 30px 0;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0px -5px 10px rgba(0, 0, 0, .1);
	&:before, &:after {
		content: "";
		display: block;
		position: absolute;
	}
	&:before {
		background: url(/scene/img/common/main_shape01.webp) 0 0 no-repeat;
		width: 420px;
		height: 270px;
		top: -40px;
		left: -60px;
	}
	&:after {
		background: url(/scene/img/common/main_shape02.webp) 0 0 no-repeat;
		width: 490px;
		height: 280px;
		bottom: -20px;
		right: -20px;
	}
}
.main_inner {
	width: 94vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}
.main_catch {
	margin-bottom: 20px;
}
.main_catch_contact {
	& a {
		margin-bottom: 10px;
	}
}
.main_image {
	width: 70vw;
}
.main_chara {
	margin: -60px 0 0 auto;
	& img {
		width: 30vw;
	}
}
/* メリット merit
---------------------------------------- */
.merit {
	width: 100%;
	background: #fff;
	margin: 0 auto 40px;
	padding: 30px 3vw;
	position: relative;
	box-sizing: border-box;
}
.merit_ttl {
	width: 94vw;
	margin: 0 auto 20px;
	font-size: 5.5vw;
	font-weight: 600;
	text-align: center;
	& span {
		background: linear-gradient(transparent 60%, var(--point-color) 60%);
	}
}
.merit_li {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	& li {
		width: 100%;
		box-sizing: border-box;
		background: #f6f6f6;
		border-radius: 10px;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
		padding: 4vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.merit_heading {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	text-align: center;
	& span {
		background: linear-gradient(transparent 60%, #f0c274 60%);
	}
}
.merit_txt {
	margin-top: 20px;
	font-size: 16px;
}
/* 特徴 features
---------------------------------------- */
.features {
	margin-top: 140px;
	padding-bottom: 40px;
	background: var(--main-bright-color);
	position: relative;
	&::before {
		content: "";
		display: block;
		position: absolute;
		width: 100%;
		height: 100px;
	}
	&:before {
		background: url(/scene/img/common/bg_wave_top.webp) 50% 0 no-repeat;
		background-size: auto 100px;
		top: -100px;
		left: 0;
	}
}
.features_arrow {
	position: absolute;
	width: 24px;
	top: -140px;
	left: calc(50% - 12px);
	& img {
		width: 24px;
	}
}
h2.features_ttl {
	text-align: center;
	margin-bottom: 40px;
}
.features_li {
	width: 94vw;
	margin: 0 auto;
	border-radius: 20px;
	box-sizing: border-box;
	background: #fff;
	padding: 6vw;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	position: relative;
	&:not(:last-child) {
		margin-bottom: 40px;
	}
}
.features_image {
	width: 100%;
	text-align: center;
	margin: 15px 0;
	& img {
		width: 60vw;
	}
}
.features_number {
	position: absolute;
	top: -20px;
	left: calc(50% - 28px);
	background: var(--main-color);
	width: 56px;
	height: 56px;
	border-radius: 56px;
	color: #fff;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	& span:nth-child(1) {
		font-size: 12px;
		font-weight: 600;
	}
	& span:nth-child(2) {
		font-family: "Jost", sans-serif;
		font-weight: 600;
		font-size: 22px;
	}
}
.features_txt {
	& span {
		font-size: 22px;
		line-height: 1.4;
		display: block;
		margin-bottom: 15px;
		font-weight: 600;
		color: var(--main-color);
	}
	& p {
		font-size: 15px;
	}
}
/* 動画事例 movie
---------------------------------------- */
.movie {
	padding: 40px 0;
}
.movie-Swiper .swiper-slide {
	width: 70vw;
	flex-shrink: 0;
	& a:hover {
		.movie_img {
			outline: 2px solid var(--main-color);
			outline-offset: -2px;
			;
		}
		.movie_index {
			color: var(--main-color);
		}
		.movie_more {
			background: #fff;
			color: var(--main-color);
		}
	}
}
.movie_img {
	object-fit: scale-down;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	background: #000;
	margin-bottom: 10px;
}
.movie_index {
	font-size: 17px;
	font-weight: bold;
	height: 55px;
	color: #111;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.movie_name {
	color: #999;
	font-size: 15px;
	margin-top: 5px;
}
.movie-Swiper .swiper-button-prev,
.movie-Swiper .swiper-button-next {
	background: #fff;
	border: 2px solid var(--main-color);
	border-radius: 999px;
	svg {
		width: 20px;
		height: 20px;
		stroke: var(--main-color);
	}
	&:hover {
		background: var(--main-pale-color);
	}
}
.movie-Swiper .swiper-button-prev {
	left: 3% !important;
}
.movie-Swiper .swiper-button-next {
	right: 3% !important;
}