@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
/* --------------------------------------------------------
* deal border
* -------------------------------------------------------*/
.mv {
	position: relative;
	z-index: 2;
}
.mv__inner {
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.mv__image {
	display: block;
	position: absolute;
	inset: 0;
	z-index: -1;
}
.mv__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mv__title {
	font-size: 2.3rem;
	line-height: 1.4;
	text-align: center;
	font-weight: 700;
	text-shadow: #fff 2px 1px 5px, #fff -2px 1px 10px, #fff 2px -1px 5px, #fff -2px -1px 10px, #fff 1px 1px 5px, #fff -1px 1px 10px, #fff 1px -1px 5px, #fff -1px -1px 10px;
}
.mv__title span {
	font-size: 1.8rem;
	font-weight: 400;
	display: block;
	margin-bottom: 8px;
}
@media (min-width: 768px), print {
	.mv__inner {
		height: 390px;
	}
	.mv__title {
		font-size: 4.2rem;
	}
	.mv__title span {
		font-size: 3rem;
		margin-bottom: 16px;
	}
}

.flow {
	background-color: #E4FBEA;
	border-radius: 20px;
	padding: 40px 20px;
}
.flow__item-inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 64px;
	border: #202020 solid 1px;
	border-radius: 10px;
	background-color: #FFF;
}
.flow__item a {
	border-color: var(--color-prim);
}
.flow__item-txt {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: var(--line-height-s);
	letter-spacing: 0.5px;
}
.flow__item-txt .icon {
	margin-left: 5px;
	vertical-align: -1px;
}
.flow__item + .flow__item::before {
	content: "";
	width: 33px;
	height: 16px;
	background-color: var(--color-prim);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	margin: 8px auto;
	display: block;
}
@media (min-width: 1025px), print {
	.flow__list {
		display: flex;
		justify-content: center;
		gap: 64px;
	}
	.flow__item {
		position: relative;
	}
	.flow__item-inner {
		width: 64px;
		min-height: 254px;
		border: #202020 solid 1px;
		border-radius: 10px;
		background-color: #FFF;
		writing-mode: vertical-rl;
	}
	.flow__item a {
		transition: background-color 0.2s;
	}
	.flow__item a:hover {
		background-color: var(--color-bg4);
	}
	.flow__item-txt .icon {
		margin-top: 8px;
	}
	.flow__item + .flow__item::before {
		margin: auto;
		transform: rotate(-90deg);
		position: absolute;
		left: -47px;
		top: 0;
		bottom: 0;
	}
}
/*# sourceMappingURL=cable.css.map */
