/* ----------------------------------------
基本
---------------------------------------- */
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_txt {
	color: #fff;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	text-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.main_catch_contact {
	& a {
		margin-bottom: 10px;
	}
}
.main_image {
	width: 70vw;
}
.main_chara {
	margin: -60px 0 0 auto;
	& img {
		width: 30vw;
	}
}
/* 方向性 kind
---------------------------------------- */
.kind {
	width: 100%;
	background: #fff;
	margin: 0 auto 40px;
	padding: 30px 3vw;
	position: relative;
	box-sizing: border-box;
}
.kind_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%);
	}
}
.kind_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;
	}
}
.kind_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%);
	}
}
.kind_box {
	padding: 15px;
	background: #fff;
	margin-top: 15px;
	& li {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		&:not(:last-child) {
			margin-bottom: 10px;
		}
		& .item {
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 13px;
			font-weight: bold;
			color: #fff;
			background: #000;
			width: 80px;
			height: 26px;
			border-radius: 13px;
			flex-shrink: 0;
		}
		& .txt {
			font-size: 14px;
		}
	}
}
.kind_txt {
	margin-top: 20px;
	font-size: 15px;
	color: #666;
}
/* 特徴 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;
	}
}
/* プラットフォーム事例 case
---------------------------------------- */
.case {
	padding: 40px 0;
}
.case_li {
	width: 92vw;
	margin: 0 auto;
}
a.case_box {
	display: block;
	border-radius: 20px;
	box-sizing: border-box;
	background: #fff;
	padding: 3vw 4vw;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
	&:not(:last-child) {
		margin-bottom: 4vw;
	}
	&:hover {
		outline: 2px solid var(--main-color);
		outline-offset: -2px;
		&.ttl {
			color: var(--main-color);
		}
		&.more {
			background: #fff;
			color: var(--main-color);
		}
	}
	& img {
		display: block;
		margin: 0 auto 4vw;
		width: 200px;
		height: auto;
	}
}
.case_txt {
	& .ttl {
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 10px;
		color: #111;
	}
	& .company {
		font-size: 17px;
		font-weight: bold;
		color: #999;
		margin-bottom: 4vw;
	}
	& .description {
		background: #f5f5f5;
		padding: 4vw;
		font-size: 15px;
		margin-bottom: 4vw;
		color: #111;
	}
	& .more {
		margin-left: auto;
		width: 140px;
		height: 30px;
		border-radius: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		color: #fff;
		background: var(--main-color);
		border: 1px solid var(--main-color);
		font-weight: bold;
	}
}