/* ----------------------------------------
基本
---------------------------------------- */
h2.ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
	&>img {
		margin-bottom: 15px;
	}
	& span {
		font-size: 32px;
		font-weight: 600;
	}
	& br {
		display: none;
	}
}
/* メイン main
---------------------------------------- */
.main {
	background: var(--main-color);
	padding: 20px 0 80px;
	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: 1200px;
	height: 550px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}
.main_box {
	position: relative;
	z-index: 1;
}
.main_catch {
	margin-bottom: 20px;
}
.main_catch_contact {
	display: flex;
	gap: 20px;
}
.main_image {
	margin-bottom: auto;
	padding-top: 50px;
}
.main_chara {
	position: absolute;
	bottom: -20px;
	right: 60px;
}
/* メリット merit
---------------------------------------- */
.merit {
	width: 1200px;
	background: #fff;
	margin: -60px auto 60px;
	padding: 50px 0;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	border-radius: 50px;
}
.merit_ttl {
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 60px;
	& span {
		background: linear-gradient(transparent 60%, var(--point-color) 60%);
	}
}
.merit_li {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	& li {
		width: 530px;
		box-sizing: border-box;
		background: #f6f6f6;
		border-radius: 10px;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
		padding: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.merit_heading {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
	height: 60px;
	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: 200px;
	padding-bottom: 80px;
	background: var(--main-bright-color);
	position: relative;
	&::before {
		content: "";
		display: block;
		position: absolute;
		width: 100%;
		height: 160px;
	}
	&:before {
		background: url(/scene/img/common/bg_wave_top.webp) 50% 0 no-repeat;
		top: -160px;
		left: 0;
	}
}
.features_arrow {
	position: absolute;
	width: 36px;
	top: -193px;
	left: calc(50% - 18px);
}
h2.features_ttl {
	text-align: center;
	margin-bottom: 60px;
}
.features_inner {
	width: 1200px;
	margin: 0 auto;
}
.features_li {
	border-radius: 20px;
	box-sizing: border-box;
	background: #fff;
	padding: 40px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	display: flex;
	align-items: flex-start;
	position: relative;
	&:not(:last-child) {
		margin-bottom: 40px;
	}
}
.features_image {
	flex-shrink: 0;
	margin-right: 30px;
}
.features_box {
	display: flex;
	align-items: flex-start;
}
.features_number {
	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;
	flex-shrink: 0;
	margin-right: 15px;
	& 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: 28px;
		display: block;
		margin-bottom: 20px;
		font-weight: 600;
		color: var(--main-color);
		line-height: 1.4;
	}
	& p {
		font-size: 16px;
		font-weight: 600;
	}
}
/* 動画事例 movie
---------------------------------------- */
.movie {
	padding: 80px 0;
}
.movie-Swiper .swiper-slide {
	width: 384px;
	& 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: 384px;
	height: 216px;
	background: #000;
	margin-bottom: 10px;
}
.movie_index {
	font-size: 17px;
	font-weight: bold;
	height: 55px;
	color: #111;
}
.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: 2% !important;
}
.movie-Swiper .swiper-button-next {
	right: 2% !important;
}