@charset "utf-8";

body {
	background: #fff;
}

.mainContents {
	overflow: hidden;
}

/* ===================================
   iot--kv1 : Key Visual
=================================== */
.iot--kv1 {
	position: relative;
	width: 100%;
	/*margin-left: calc(50% - 50vw);*/
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
}

/* --- Slide background --- */
.iot--kv1__slide1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.iot--kv1__slide1__unit1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.iot--kv1__slide1__unit1:first-child {
	opacity: 1;
}

.iot--kv1__slide1__unit1[aria-current="true"],
.iot--kv1__slide1__unit1.is-active {
	opacity: 1;
}

.iot--kv1__slide1__unit1:not([aria-current="true"]):not(.is-active):not(:first-child) {
	opacity: 0;
}

.iot--kv1__slide1__unit1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- Content overlay (shared) --- */
.iot--kv1__title1,
.iot--kv1__text1,
.iot--kv1__link1,
.iot--kv1__slide1--controller {
	position: relative;
	z-index: 2;
}

.iot--kv1__title1 {
	order: 1;
}

.iot--kv1__text1 {
	order: 2;
}

.iot--kv1__link1 {
	order: 3;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	background-color: #cf2c23;
	color: #fff;
	font-weight: 700;
	font-size: 1.429rem;
	line-height: 1.5;
	text-decoration: none;
	box-sizing: border-box;
}

.iot--kv1__link1::before,
.iot--kv1__link1::after {
	width: 28px;
	height: 28px;
}

.iot--kv1__link1::before {
	content: '';
	display: block;
	flex-shrink: 0;
	background: url(/business/iot_solution/images/ico_mail_01.svg) no-repeat center / contain;
}

.iot--kv1__link1::after {
	content: '';
	display: block;
	flex-shrink: 0;
	background: url(/business/iot_solution/images/ico_arrow_01.svg) no-repeat center / contain;
}

.iot--kv1__slide1--controller {
	order: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 44px;
}

.iot--kv1__slide1--prev,
.iot--kv1__slide1--next {
	border: none;
	background: url(/business/iot_solution/images/ico_play_01.svg) no-repeat center / contain;
	cursor: pointer;
	width: 20px;
	height: 20px;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
}

.iot--kv1__slide1--prev {
	transform: rotate(180deg);
}

.iot--kv1__slide1--dots {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.iot--kv1__slide1--dot {
	display: block;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	background: transparent;
	width: 10px;
	height: 10px;
	margin: 0 4px;
	padding: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: background-color 0.3s ease;
}

.iot--kv1__slide1--dot[aria-current="true"],
.iot--kv1__slide1--dot.is-active {
	background: #fff;
	border-color: #fff;
}

/* ---- PC ---- */
@media print, screen and (min-width: 768px) {
	.iot--kv1 {
		padding: 132px 0 166px;
	}

	.iot--kv1__title1 {
		margin: 0;
		font-weight: 900;
		font-size: 2.857rem;
		line-height: 1.5;
		color: #fff;
		text-align: center;
		text-shadow: 0 0 15px rgba(0, 10, 85, 0.75);
		white-space: nowrap;
	}

	.iot--kv1__text1 {
		margin: 16px 0 0;
		font-weight: 700;
		font-size: 1.286rem;
		line-height: 1.8;
		color: #fff;
		text-align: center;
		text-shadow: 0 0 15px rgba(0, 10, 85, 0.75);
	}

	.iot--kv1__link1 {
		margin-top: 40px;
		width: 360px;
		padding: 12px 8px;
		transition: opacity 0.3s ease;
	}
	.iot--kv1__link1:hover {
		opacity: 0.85;
	}

	.iot--kv1__slide1--controller {
		margin-top: 40px;
	}
}

/* ---- SP ---- */
@media only screen and (max-width: 767px) {
	.iot--kv1 {
		padding: 78px 0 70px;
	}

	.iot--kv1__title1 {
		font-weight: 900;
		font-size: 2rem;
		line-height: 1.5;
		color: #fff;
		text-align: center;
		text-shadow: 0 0 15px rgba(0, 10, 85, 0.75);
	}

	.iot--kv1__text1 {
		margin: 12px 0 0;
		font-weight: 700;
		font-size: 1.14rem;
		line-height: 1.8;
		color: #fff;
		text-align: center;
		text-shadow: 0 0 15px rgba(0, 10, 85, 0.75);
	}

	.iot--kv1__link1 {
		margin: 24px 24px 0;
		width: calc(100% - 48px);
		padding: 10px 8px;
	}
}

/* ===================================
   iot--sec1 : Section1
=================================== */
.iot--sec1 {
	position: relative;
}

.iot--sec1__head1 {
	position: relative;
	background: rgba(1, 12, 102, 0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}
.iot--sec1__head1::after {
	content: "";
	position: absolute;
	left: calc(50% - 42px);
	bottom: -18px;
	display: inline-block;
	width: 82px;
	height: 19px;
	background: #122274;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.iot--sec1__title1 {
	margin: 0;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
	text-align: center;
}

.iot--sec1__list1 {
	display: flex;
	gap: 16px;
	width: 100%;
	margin: 16px 0 0;
}
.iot--sec1__list1 > li {
	flex: 1 0 0;
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	box-shadow: 0 0 12px 0 rgba(57, 154, 203, 0.24);
	box-sizing: border-box;
	align-self: stretch;
}
.iot--sec1__list1__image1 {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.iot--sec1__list1__image1 img {
	display: block;
	max-width: 100%;
	height: auto;
}
.iot--sec1__list1__text1 {
	font-size: 1.14rem;
	line-height: 1.5;
	font-weight: 400;
}

.iot--sec1__body1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}
.iot--sec1__title2 {
	margin: 0;
	width: 100%;
	font-weight: 700;
	line-height: 1.5;
	color: #1238a1;
	text-align: center;
	position: relative;
}
/*
.iot--sec1__title2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #1238a1;
	margin: 12px auto 0;
}
*/

.iot--sec1__image1 {
	filter: drop-shadow(0 0 17.967px rgba(0, 0, 0, 0.20));
}

.iot--sec1__title3 {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 4px;
	background: #1238a1;
	border: 4px solid #f0fafd;
	box-sizing: border-box;
	font-weight: 700;
	font-size: 1.429rem;
	line-height: 1.5;
	color: #fff;
	text-align: center;
}

.iot--sec1__image2 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 144px;
	margin: 0;
	background: #f0fafd;
	overflow: hidden;
}
.iot--sec1__image2 img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.iot--sec1__text1 {
	flex: 1 0 0;
	margin: 0;
	padding: 24px;
	background: #fff;
	font-weight: 700;
	font-size: 1.571rem;
	line-height: 1.8;
	color: #1238a1;
}

@media only screen and (min-width: 768px) {
	.iot--sec1 {
		background: url(/business/iot_solution/images/index-bg01_01.webp) no-repeat 0 50%;
		background-size: cover;
	}

	.iot--sec1__head1 {
		top: -157px;
		width: 1200px;
		margin: 0 auto -157px;
		padding: 24px 40px 40px;
	}

	.iot--sec1__title1 {
		font-size: 1.71rem;
	}

	.iot--sec1__list1 > li {
		padding: 12px 28px 16px 12px;
	}
	.iot--sec1__list1__image1 {
		width: 80px;
		height: 120px;
	}

	.iot--sec1__body1 {
		width: 1200px;
		margin: 0 auto;
		padding: 93px 0 80px;
	}
	.iot--sec1__title2 {
		font-size: 2.571rem;
	}
	/*
	.iot--sec1__title2::after {
		content: '';
		display: block;
		width: 80px;
		height: 4px;
		background: #1238a1;
		margin: 12px auto 0;
	}*/
	.iot--sec1__image1 {
		position: absolute;
		top: 125px;
		left: calc(50% + 215px);
		width: 364px;
		height: 195px;
	}
	.iot--sec1__image1 img {
		display: block;
		max-width: 100%;
		height: auto;
	}
	.iot--sec1__row {
		display: flex;
		gap: 24px;
		width: 100%;
		margin-top: 80px;
	}
	.iot--sec1__row__item {
		flex: 1 0 0;
		display: flex;
		flex-direction: column;
		overflow: hidden;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.12);
	}

}

@media print, screen and (max-width: 767px) {
	.iot--sec1 {
		background: #D0EBF6 url(/business/iot_solution/images/index-bg01_01_sp.webp) no-repeat 50% 0;
		background-size: 100% auto;
	}

	.iot--sec1__head1 {
		top: -70px;
		margin: 0 24px -70px;
		padding: 24px;
	}

	.iot--sec1__title1 {
		font-size: 1.429rem;
	}

	.iot--sec1__list1 {
		flex-direction: column;
		gap: 8px;
	}
	.iot--sec1__list1 > li {
		padding: 12px 20px 12px 12px;
	}
	.iot--sec1__list1__image1 {
		width: 60px;
		height: 90px;
	}

	.iot--sec1__body1 {
		margin: 0 24px;
		padding: 40px 0 64px;
	}
	.iot--sec1__title2 {
		font-size: 1.71rem;
		padding-bottom: 10px;
	}

	.iot--sec1__row {
		display: flex;
		flex-direction: column;
		gap: 24px;
		width: 100%;
		margin-top: 14px;
	}
	.iot--sec1__row__item {
		display: flex;
		flex-direction: column;
		overflow: hidden;
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.12);
	}

}

/* ===================================
   iot--sec2 : Section
=================================== */
.iot--sec2 {
	position: relative;
	background: #fff;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.iot--sec2__head1 {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.iot--sec2__title1 {
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}
/*
.iot--sec2__title1::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #fff;
	margin: 12px auto 0;
}*/
.iot--sec2__text1 {
	font-size: 1.429rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}
.iot--sec2__body1 {
	position: relative;
	z-index: 1;
}
.iot--sec2__image1 img {
	width: 100%;
	height: auto;
	display: block;
}

@media only screen and (min-width: 768px) {
	.iot--sec2 {
		padding: 64px 0 80px;
	}
	.iot--sec2::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 444px;
		background:
			linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)),
			url(/business/iot_solution/images/index-bg02_01.webp) center / cover no-repeat;
		z-index: 0;
	}
	.iot--sec2__head1 {
		width: 1200px;
		padding-bottom: 40px;
	}
	.iot--sec2__title1 {
		font-size: 2.571rem;
	}

	.iot--sec2__body1 {
		width: 1230px;
	}
}

@media print, screen and (max-width: 767px) {
	.iot--sec2 {
		padding: 64px 0;
	}
	.iot--sec2::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 320px;
		background:
			linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)),
			url(/business/iot_solution/images/index-bg02_01_sp.webp) center / cover no-repeat;
		z-index: 0;
	}
	.iot--sec2__head1 {
		margin: 0 20px;
		padding-bottom: 40px;
	}
	.iot--sec2__title1 {
		font-size: 1.71rem;
	}

	.iot--sec2__image1 {
		margin: -15px 9px 0;
	}
}

/* ===================================
   iot--sec3 : Section
=================================== */
.iot--sec3 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
}
.iot--sec3::before {
	content: "";
	position: absolute;
	top: 0;
	display: inline-block;
	width: 820px;
	height: 1175px;
	background: #F2F4F9;
	clip-path: polygon(0 0, 100% 0%, 0 100%);
	mix-blend-mode: multiply;
}

.iot--sec3__head1 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding-bottom: 40px;
}
.iot--sec3__title1 {
	font-weight: 700;
	color: #000;
	text-align: center;
	line-height: 1.5;
}
/*
.iot--sec3__title1::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #1238a1;
	margin: 12px auto 0;
}*/

.iot--sec3__body1 {
	position: relative;
}

.iot--sec3__unit1::before {
	content: '';
	background-size: cover;
	background-position: center;
}
.iot--sec3__row1 > .iot--sec3__unit1:nth-child(1)::before {
	background-image: url(/business/iot_solution/images/index-img04_01.webp);
}
.iot--sec3__row1 > .iot--sec3__unit1:nth-child(2)::before {
	background-image: url(/business/iot_solution/images/index-img04_02.webp);
}
.iot--sec3__row1 > .iot--sec3__unit1:nth-child(3)::before {
	background-image: url(/business/iot_solution/images/index-img04_03.webp);
}
.iot--sec3__row1 > .iot--sec3__unit1:nth-child(4)::before {
	background-image: url(/business/iot_solution/images/index-img04_04.webp);
}

.iot--sec3__unit1__title1 {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding-bottom: 24px;
}
.iot--sec3__unit1__title1__label1 {
	text-align: center;
	color: #1238a1;
	text-shadow: 0 0 24px #fff;
	font-family: "Oswald", sans-serif;
	line-height: 1;
	font-weight: 500;
	font-size: 1.429rem;
}
.iot--sec3__unit1__title1__label1 > span {
	font-size: 3.429rem; /* 48px */
	vertical-align: baseline;
	line-height: 1;
}
.iot--sec3__unit1__title1__label1::after {
	content: '';
	display: block;
	width: 80px;
	height: 1px;
	background: #000;
	margin: 16px auto 0;
}
.iot--sec3__unit1__title1__label2 {
	font-size: 1.71rem;
	font-weight: 700;
	color: #000;
	line-height: 1.5;
}

.iot--sec3__unit1__list1 {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	gap: 8px;
	align-items: stretch;
	padding: 0 40px;
	list-style: none;
	margin: 0;
	box-sizing: border-box;
}
.iot--sec3__unit1__list1 > li {
	flex: 1 0 0;
	background: #fff;
	padding: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
	text-align: center;
	font-size: 1.14rem;
	font-weight: 400;
	line-height: 1.8;
	color: #000;
}
.iot--sec3__unit1__list1 > li > span {
	font-size: 0.857rem;
	line-height: 1.8;
}

@media only screen and (min-width: 768px) {
	.iot--sec3 {
		padding: 64px 0 80px;
	}
	.iot--sec3::before {
		left: 0;
	}

	.iot--sec3__head1 {
		width: 1200px;
	}
	.iot--sec3__title1 {
		font-size: 2.571rem;
	}
	/*
	.iot--sec3__title1::after {
		content: '';
		display: block;
		width: 80px;
		height: 4px;
		background: #1238a1;
		margin: 12px auto 0;
	}*/

	.iot--sec3__body1 {
		width: 100%;
	}
	.iot--sec3__row1 {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: center;
		row-gap: 24px;
		column-gap: 0;
		width: 1200px;
		margin: 0 auto;
		padding: 0;
	}
	.iot--sec3__unit1 {
		position: relative;
		width: 600px;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 300px; /* CASE 1, 3 */
	}
	/* CASE 2, 4 */
	.iot--sec3__unit1:nth-child(even) {
		padding-top: 380px;
	}
	.iot--sec3__unit1::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 337px;
		z-index: 0;
	}
	.iot--sec3__unit1:nth-child(even)::before {
		top: 80px;
	}
}

@media print, screen and (max-width: 767px) {
	.iot--sec3 {
		padding: 40px 0 64px;
	}
	.iot--sec3::before {
		left: -120px;
	}

	.iot--sec3__head1 {
		margin: 0 24px;
	}
	.iot--sec3__title1 {
		font-size: 1.71rem;
	}

	.iot--sec3__body1 {
		width: 100%;
		box-sizing: border-box;
		padding: 0 24px;
	}

	.iot--sec3__row1 {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.iot--sec3__unit1::before {
		display: block;
		width: 100%;
		padding-top: calc(100% * (184/327));
	}

	.iot--sec3__unit1__title1 {
		margin-top: -38px;
	}

	.iot--sec3__unit1__list1 {
		flex-direction: column;
		padding: 0;
	}
	.iot--sec3__unit1__list1 > li {
		flex: 1 0 0;
		background: #fff;
		padding: 8px;
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
		text-align: center;
		font-size: 1.14rem;
		font-weight: 400;
		line-height: 1.8;
		color: #000;
	}
	.iot--sec3__unit1__list1 > li > span {
		font-size: 0.857rem;
		line-height: 1.8;
	}
}

/* ===================================
   iot--sec4 : Section
=================================== */
.iot--sec4 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.iot--sec4__title1 {
	font-weight: 700;
	color: #000;
	text-align: center;
	line-height: 1.5;
}
/*
.iot--sec4__title1::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #1238a1;
	margin: 12px auto 0;
}
*/

.iot--sec4__body1 {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.iot--sec4__image1 {
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
	padding: 4px 4px 0;
	display: flex;
	flex-direction: column;
	margin: 0;
}
.iot--sec4__image1 figcaption {
	background: #1238a1;
	color: #fff;
	font-size: 1.429rem;
	font-weight: 700;
	text-align: center;
	padding: 4px;
	line-height: 1.5;
	flex-shrink: 0;
}
.iot--sec4__image1 img {
	width: 100%;
	flex: 1 0 0;
	display: block;
}

.iot--sec4__title2 {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	font-size: 1.71rem;
	font-weight: 700;
	color: #000;
	line-height: 1.5;
	margin: 0 0 16px;
}
.iot--sec4__title2 > span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #1238a1;
	color: #fff;
	font-family: "Oswald", sans-serif;
	font-size: 1.429rem;
	font-weight: 500;
	line-height: 1;
}

.iot--sec4__list1 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.iot--sec4__list1 > li {
	position: relative;
	padding-left: 36px;
	font-weight: 400;
	font-size: 1.429rem;
	line-height: 1.8;
	color: #000;
}
.iot--sec4__list1 > li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	display: block;
	width: 12px;
	height: 12px;
	background: #1238a1;
	border-radius: 100%;
}
@media only screen and (min-width: 768px) {
	.iot--sec4 {
		padding: 64px 0 80px;
	}

	.iot--sec4__head1 {
		width: 1200px;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-bottom: 40px;
	}

	.iot--sec4__title1 {
		font-size: 2.571rem;
	}

	.iot--sec4__body1 {
		width: 1200px;
		margin: 0 auto;
	}
	.iot--sec4__row1 {
		display: flex;
		gap: 40px;
		align-items: flex-start;
		width: 100%;
	}
	.iot--sec4__row1__unit1 {
		flex: 1 0 0;
		min-width: 0;
	}
}

@media print, screen and (max-width: 767px) {
	.iot--sec4 {
		padding: 40px 0 64px;
	}

	.iot--sec4__head1 {
		margin: 0 24px;
	}

	.iot--sec4__title1 {
		font-size: 1.71rem;
	}

	.iot--sec4__body1 {
		margin: 0 24px;
	}
	.iot--sec4__row1 {
		display: flex;
		flex-direction: column;
		gap: 40px;
		width: 100%;
	}
}

/* ===================================
   iot--sec5 : Section
=================================== */
.iot--sec5 {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.iot--sec5__head1,
.iot--sec5__body1 {
	position: relative;
	z-index: 1;
}

.iot--sec5__title1 {
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}
/*
.iot--sec5__title1::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #fff;
	margin: 12px auto 0;
}*/

.iot--sec5__flow1 {
	display: flex;
	align-items: stretch;
	width: 100%;
}
.iot--sec5__flow1__unit1 {
	flex: 1 0 0;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 40px 24px 20px;
	background: rgba(255, 255, 255, 0.88);
}

.iot--sec5__title2 {
	position: static;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	margin: 0;
	font-weight: 700;
}
.iot--sec5__title2 > span:first-child {
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	background: #1238a1;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 1.429rem;
	font-weight: 500;
	line-height: 1;
	padding: 4px 20px 8px;
	white-space: nowrap;
}
.iot--sec5__title2 > span:first-child > span {
	font-size: 2.286rem; /* 32px */
	line-height: 1;
}
.iot--sec5__title2 > span:last-child {
	font-size: 1.71rem;
	font-weight: 700;
	color: #000;
	text-align: center;
	line-height: 1.5;
}
.iot--sec5__title2 > span:last-child > span {
	font-size: 1.14rem;
	font-weight: 700;
}

.iot--sec5__list1 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.iot--sec5__list1 > li {
	position: relative;
	padding-left: 36px;
	font-weight: 400;
	font-size: 1.429rem;
	line-height: 1.8;
	color: #000;
}
.iot--sec5__list1 > li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	display: block;
	width: 12px;
	height: 12px;
	background: #1238a1;
	border-radius: 100%;
}

@media only screen and (min-width: 768px) {
	.iot--sec5 {
		padding: 60px 0 80px;
		background: url(/business/iot_solution/images/index-bg03_01.webp) center / cover no-repeat;
	}
	.iot--sec5::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		display: inline-block;
		width: 1148px;
		height: 1647px;
		background: rgba(18, 56, 161, 0.24);
		clip-path: polygon(0 0, 100% 0%, 100% 100%);
		mix-blend-mode: multiply;
	}
	.iot--sec5__head1,
	.iot--sec5__body1 {
		width: 1200px;
	}
	.iot--sec5__head1 {
		padding-bottom: 62px;
	}

	.iot--sec5__title1 {
		font-size: 2.571rem;
	}

	.iot--sec5__flow1__unit1 + .iot--sec5__flow1__unit1 {
		margin-left: 20px;
	}
	.iot--sec5__flow1__unit1 + .iot--sec5__flow1__unit1::after {
		content: '';
		position: absolute;
		left: -20px;
		top: calc(50%);
		transform: translateY(-50%);
		width: 0;
		height: 0;
		border-top: 17.5px solid transparent;
		border-bottom: 17.5px solid transparent;
		border-left: 19px solid rgba(255, 255, 255, 0.88);
		z-index: 2;
	}
}

@media print, screen and (max-width: 767px) {
	.iot--sec5 {
		padding: 40px 0 64px;
		background: url(/business/iot_solution/images/index-bg03_01_sp.webp) center 0 / cover no-repeat;
	}
	.iot--sec5::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		display: inline-block;
		width: 1148px;
		height: 1647px;
		background: rgba(18, 56, 161, 0.24);
		clip-path: polygon(0 0, 100% 0%, 100% 100%);
		mix-blend-mode: multiply;
	}

	.iot--sec5__head1,
	.iot--sec5__body1 {
		padding: 0 24px;
	}

	.iot--sec5__head1 {
		padding-bottom: 62px;
	}

	.iot--sec5__title1 {
		font-size: 1.71rem;
	}

	.iot--sec5__flow1 {
		flex-direction: column;
	}
	.iot--sec5__flow1__unit1 + .iot--sec5__flow1__unit1 {
		margin-top: 46px;
	}
	.iot--sec5__flow1__unit1 + .iot--sec5__flow1__unit1::after {
		content: '';
		position: absolute;
		left: 50%;
		top: -46px;
		transform: translateX(-50%);
		display: inline-block;
		width: 81px;
		height: 22px;
		background: rgba(255, 255, 255, 0.88);
		clip-path: polygon(0 0, 100% 0%, 50% 100%);
		z-index: 2;
	}
}

/* ===================================
   iot--cv1 : Conversion
=================================== */
.iot--cv1 {
	position: relative;
	background: #ebecf1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.iot--cv1__text {
	position: relative;
	margin: 0;
	font-weight: 700;
	font-size: 1.286rem;
	line-height: 1.5;
	text-align: center;
}
.iot--cv1__link {
	position: relative;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	padding: 12px;
	background: #cf2c23;
	color: #fff;
	font-weight: 700;
	font-size: 1.429rem;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}
.iot--cv1__link::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: url(/business/iot_solution/images/ico_mail_01.svg) no-repeat center / contain;
}

.iot--cv1__link::after {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: url(/business/iot_solution/images/ico_arrow_01.svg) no-repeat center / contain;
}

@media only screen and (min-width: 768px) {
	.iot--cv1 {
		padding: 32px 120px 40px;
	}
	.iot--cv1::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		display: inline-block;
		width: 820px;
		height: 1175px;
		background: #F2F4F9;
		clip-path: polygon(0 0, 100% 0%, 100% 100%);
		mix-blend-mode: multiply;
	}

	.iot--cv1__link {
		width: 600px;
		transition: opacity 0.3s ease;
	}
	.iot--cv1__link:hover {
		opacity: 0.85;
	}
}

@media print, screen and (max-width: 767px) {
	.iot--cv1 {
		padding: 32px 24px 40px 24px;
	}
	.iot--cv1::before {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		display: inline-block;
		width: 266px;
		height: 380px;
		background: #F2F4F9;
		clip-path: polygon(0 0, 100% 0%, 100% 100%);
		mix-blend-mode: multiply;
	}

	.iot--cv1__link {
		width: 100%;
	}
}

/* ===================================
   utility
=================================== */
@media print, screen and (min-width: 768px) {
	.hidden-pc {
		display: none!important;
	}
}
@media only screen and (max-width: 767px) {
	.hidden-sp {
		display: none!important;
	}
}

/* ===================================
   scroll trigger
=================================== */
.st1[data-scroll=fade1] {
	opacity: 0;
	translate: 0 10px;
	transition: opacity 0.5s ease, translate 0.5s ease;
}
.st1[data-scroll=fade1].is-enter {
	opacity: 1;
	translate: 0;
}
.st1[data-scroll=fade2] > * {
	opacity: 0;
	translate: 0 10px;
	transition: opacity 0.5s ease, translate 0.5s ease;
}
.st1[data-scroll=fade2] > *:nth-of-type(1) {
	transition-delay: 0.15s;
}
.st1[data-scroll=fade2] > *:nth-of-type(2) {
	transition-delay: 0.3s;
}
.st1[data-scroll=fade2] > *:nth-of-type(3) {
	transition-delay: 0.45s;
}
.st1[data-scroll=fade2] > *:nth-of-type(4) {
	transition-delay: 0.6s;
}
.st1[data-scroll=fade2] > *:nth-of-type(5) {
	transition-delay: 0.75s;
}
.st1[data-scroll=fade2] > *:nth-of-type(6) {
	transition-delay: 0.9s;
}
.st1[data-scroll=fade2] > *:nth-of-type(7) {
	transition-delay: 1.05s;
}
.st1[data-scroll=fade2] > *:nth-of-type(8) {
	transition-delay: 1.2s;
}
.st1[data-scroll=fade2] > *:nth-of-type(9) {
	transition-delay: 1.35s;
}
.st1[data-scroll=fade2] > *:nth-of-type(10) {
	transition-delay: 1.5s;
}
.st1[data-scroll=fade2] > *:nth-of-type(11) {
	transition-delay: 1.65s;
}
.st1[data-scroll=fade2] > *:nth-of-type(12) {
	transition-delay: 1.8s;
}
.st1[data-scroll=fade2] > *:nth-of-type(13) {
	transition-delay: 1.95s;
}
.st1[data-scroll=fade2] > *:nth-of-type(14) {
	transition-delay: 2.1s;
}
.st1[data-scroll=fade2] > *:nth-of-type(15) {
	transition-delay: 2.25s;
}
.st1[data-scroll=fade2] > *:nth-of-type(16) {
	transition-delay: 2.4s;
}
.st1[data-scroll=fade2] > *:nth-of-type(17) {
	transition-delay: 2.55s;
}
.st1[data-scroll=fade2] > *:nth-of-type(18) {
	transition-delay: 2.7s;
}
.st1[data-scroll=fade2] > *:nth-of-type(19) {
	transition-delay: 2.85s;
}
.st1[data-scroll=fade2] > *:nth-of-type(20) {
	transition-delay: 3s;
}
.st1[data-scroll=fade2].is-enter > * {
	opacity: 1;
	translate: 0 0;
}
.st1[data-scroll=fade3] {
	opacity: 0;
	translate: -10px 10px;
	transition: all 0.5s ease;
}
.st1[data-scroll=fade3].is-enter {
	opacity: 1;
	translate: 0;
}
.st1[data-scroll=fade4] > * {
	opacity: 0;
	translate: -10px 10px;
	transition: all 0.5s ease;
}
.st1[data-scroll=fade4] > *:nth-of-type(1) {
	transition-delay: 0.15s;
}
.st1[data-scroll=fade4] > *:nth-of-type(2) {
	transition-delay: 0.3s;
}
.st1[data-scroll=fade4] > *:nth-of-type(3) {
	transition-delay: 0.45s;
}
.st1[data-scroll=fade4] > *:nth-of-type(4) {
	transition-delay: 0.6s;
}
.st1[data-scroll=fade4] > *:nth-of-type(5) {
	transition-delay: 0.75s;
}
.st1[data-scroll=fade4] > *:nth-of-type(6) {
	transition-delay: 0.9s;
}
.st1[data-scroll=fade4] > *:nth-of-type(7) {
	transition-delay: 1.05s;
}
.st1[data-scroll=fade4] > *:nth-of-type(8) {
	transition-delay: 1.2s;
}
.st1[data-scroll=fade4] > *:nth-of-type(9) {
	transition-delay: 1.35s;
}
.st1[data-scroll=fade4] > *:nth-of-type(10) {
	transition-delay: 1.5s;
}
.st1[data-scroll=fade4] > *:nth-of-type(11) {
	transition-delay: 1.65s;
}
.st1[data-scroll=fade4] > *:nth-of-type(12) {
	transition-delay: 1.8s;
}
.st1[data-scroll=fade4] > *:nth-of-type(13) {
	transition-delay: 1.95s;
}
.st1[data-scroll=fade4] > *:nth-of-type(14) {
	transition-delay: 2.1s;
}
.st1[data-scroll=fade4] > *:nth-of-type(15) {
	transition-delay: 2.25s;
}
.st1[data-scroll=fade4] > *:nth-of-type(16) {
	transition-delay: 2.4s;
}
.st1[data-scroll=fade4] > *:nth-of-type(17) {
	transition-delay: 2.55s;
}
.st1[data-scroll=fade4] > *:nth-of-type(18) {
	transition-delay: 2.7s;
}
.st1[data-scroll=fade4] > *:nth-of-type(19) {
	transition-delay: 2.85s;
}
.st1[data-scroll=fade4] > *:nth-of-type(20) {
	transition-delay: 3s;
}
.st1[data-scroll=fade4].is-enter > * {
	opacity: 1;
	translate: 0 0;
}
.st2[data-scroll=fade1] .st2__item1 {
	opacity: 0;
	transition: opacity 0.5s ease;
}
.st2[data-scroll=fade1] .st2__item1.is-enter {
	opacity: 1;
}

