/* ----------------------------------------
アパレル apparel
---------------------------------------- */
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;
	}
}
/* アパレル 課題 problem
---------------------------------------- */
.problem {
	width: 100%;
	background: #fff;
	margin: 0 auto 40px;
	padding: 30px 3vw;
	position: relative;
	box-sizing: border-box;
}
.problem_ttl {
	width: 94vw;
	margin: 0 auto 20px;
	font-size: 5.5vw;
	font-weight: 600;
	text-align: center;
	color: var(--main-color);
}
.problem_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;
	}
}
.problem_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%);
	}
}
.problem_txt {
	margin-top: 20px;
	font-size: 16px;
}
/* アパレル 情報共有 share
---------------------------------------- */
.share {
	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;
	}
}
.share_arrow {
	position: absolute;
	width: 24px;
	top: -140px;
	left: calc(50% - 12px);
	& img {
		width: 24px;
	}
}
.share_ttl {
	width: 94vw;
	margin: 0 auto 40px;
}
.share_block {
	width: 94vw;
	margin: 0 auto;
	border-radius: 30px;
	box-sizing: border-box;
	background: #fff;
	padding: 5vw;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
	position: relative;
}
.share_circle {
	display: none;
}
.share_box {
	width: 100%;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
	background: #eee;
	&:not(:last-child) {
		margin-bottom: 4vw;
	}
	& .head {
		background: #fff;
		padding: 4vw 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		& h3 {
			font-size: 22px;
			line-height: 1.4;
		}
		& p {
			font-size: 15px;
			color: #666;
			font-weight: bold;
		}
	}
	& .txt {
		padding: 4vw;
		& img {
			display: block;
			margin: 0 auto 10px;
			width: 80px;
		}
		& p {
			font-size: 15px;
		}
	}
}
.share_blue {
	border-top: 10px solid #bcdae4;
	& h3, & .txt p span {
		color: #2783a1;
	}
}
.share_green {
	border-top: 10px solid #cddbba;
	& h3, & .txt p span {
		color: #689846;
	}
}
.share_orange {
	border-top: 10px solid #f5c9a6;
	& h3, & .txt p span {
		color: #ea893c;
	}
}
.share_red {
	border-top: 10px solid #f6c8ca;
	& h3, & .txt p span {
		color: #e28286;
	}
}
/* アパレル 2方向への動画活用 use
---------------------------------------- */
.use {
	width: 94vw;
	margin: 40px auto 60px;
	background: var(--main-color);
	border-radius: 30px;
	position: relative;
	padding: 4vw;
	box-sizing: border-box;
}
.use_ttl {
	font-size: 5.5vw;
	font-weight: bold;
	color: #fff;
	margin: 0 auto 40px;
	text-align: center;
	position: relative;
	& span {
		color: var(--point-color);
		background-position: top 12px left 0px;
		background-repeat: repeat-x;
		background-size: 1em .3em;
		background-image: radial-gradient(0.1em .1em at center center, var(--point-color), var(--point-color) 100%, transparent, transparent);
		padding-top: .6em;
	}
	&:after {
		content: "";
		display: block;
		position: absolute;
		left: calc(50% - 20px);
		bottom: -20px;
		width: 40px;
		height: 3px;
		background: var(--point-color);
	}
}
.use_plus {
	position: relative;
	z-index: 2;
	margin: -20px auto;
	display: block;
	width: 80px;
}
.use_block {
	width: 100%;
	margin: 0 auto;
	border-radius: 30px;
	box-sizing: border-box;
	background: #fff;
	padding: 4vw;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
	position: relative;
	z-index: 1;
	& .head {
		display: flex;
		flex-direction: column;
		align-items: center;
		border-bottom: 5px solid #eee;
		gap: 10px;
		margin-bottom: 20px;
		padding-bottom: 20px;
		& p {
			font-size: 17px;
			border-radius: 5px;
			padding: 3px 10px;
			font-weight: bold;
			text-align: center;
		}
		& h3 {
			font-size: 20px;
			line-height: 1.4;
			text-align: center;
		}
	}
	& .point {
		display: flex;
		flex-direction: column;
		gap: 4vw;
	}
	& .point_box {
		&:not(:last-child) {
			border-bottom: 5px solid #eee;
			padding-bottom: 4vw;
		}
		& .no {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			margin: 0 auto 10px;
			width: 40px;
			height: 40px;
			border-radius: 20px;
			color: #fff;
			font-weight: bold;
			font-family: "Jost", sans-serif;
			font-weight: 500;
			font-size: 20px;
		}
		& .ttl {
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 15px;
			& p {
				font-size: 18px;
				font-weight: bold;
				font-feature-settings: "palt";
				text-align: center;
				line-height: 1.4;
			}
			& span {
				background: linear-gradient(transparent 60%, var(--point-color) 60%);
			}
		}
		& img {
			display: block;
			margin: 0 auto 20px;
		}
		& .subttl {
			font-size: 15px;
			font-weight: bold;
			padding: 3px 10px;
			margin-bottom: 5px;
		}
		& .txt {
			font-size: 14px;
			&:not(:last-child) {
				margin-bottom: 15px;
			}
		}
	}
}
.use_open {
	& .head {
		& p {
			background: var(--main-bright-color);
		}
		& h3 span {
			color: var(--main-color);
		}
	}
	& .point_box {
		& .no {
			background: var(--main-color);
		}
		& .subttl {
			background: var(--main-bright-color);
		}
		& .txt span {
			color: var(--main-color);
		}
	}
}
.use_closed {
	& .head {
		& p {
			background: #cddbba;
		}
		& h3 span {
			color: #689846;
		}
	}
	& .point_box {
		& .no {
			background: #689846;
		}
		& .subttl {
			background: #cddbba;
		}
		& .txt span {
			color: #689846;
		}
	}
}
/* アパレル 情報共有 features
---------------------------------------- */
.features {
	position: relative;
	padding: 40px 0;
	background: var(--main-bright-color);
}
h2.features_ttl {
	text-align: center;
	margin-bottom: 40px;
}
.features_ttl_bubble {
	position: absolute;
	top: -60px;
	right: 0;
	width: 50vw;
	z-index: 1;
}
.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;
	}
}
/* アパレル 情報共有 function
---------------------------------------- */
.function {
	padding: 40px 0;
}
h3.function_ttl {
	width: 94vw;
	margin: 0 auto 30px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	& span {
		background: linear-gradient(transparent 60%, var(--point-color) 60%);
	}
}
.function_li {
	width: 94vw;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6vw;
	& li {
		width: 40vw;
		height: 120px;
		border-radius: 30px;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		& img {
			width: 50px;
			height: auto;
		}
		& span {
			height: 35px;
			font-size: 15px;
			line-height: 1.4;
			display: flex;
			align-items: center;
			text-align: center;
		}
	}
}
/* アパレル 情報共有 company
---------------------------------------- */
.company {
	padding-bottom: 40px;
}
.company_li {
	width: 92vw;
	margin: 0 auto 40px;
}
.company_box {
	&:not(:last-child) {
		margin-bottom: 6vw;
	}
	& p {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #eee;
		height: 45px;
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 10px;
	}
	& img {
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
	}
}
.company_note {
	width: 92vw;
	margin: 0 auto;
	font-size: 15px;
}
/* アパレル 動画事例 movie
---------------------------------------- */
.movie {
	padding: 40px 0;
	background: #f5f5f5;
}
.movie_li {
	display: flex;
	gap: 4vw;
	overflow-x: scroll;
	margin: 0 auto;
	padding: 0 3vw;
}
.movie_box {
	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;
}
.movie_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;
}