/* reset */
ul,
ol {
	list-style: none;
}
/* common */
body {
	--max-width: 1280px;
	--c_primary: #0095f8;
	color: #222;
}
.hidden-pc {
	display: none;
}
.hidden-mo {
	display: block;
}
.btn_group {
	margin: 0 auto;
	width: fit-content;
}
.btn_cta {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 48px;
	height: 56px;
	color: #fff;
	background: #222;
	font-size: 18px;
	font-weight: 600;
	text-indent: 12px;
	border-radius: 8px;
}
.btn_cta::after {
	content: "";
	display: inline-block;
	margin-left: 2px;
	width: 24px;
	height: 24px;
	background: #fff;
	mask: url(/wp-content/themes/fastfive/assets/images/common/btn_cta_arrow.svg) no-repeat;
	-webkit-mask: url(/wp-content/themes/fastfive/assets/images/common/btn_cta_arrow.svg) no-repeat;
	mask-position: center;
	mask-size: 100%;
}
.btn_cta.__white {
	background: #fff;
	color: #222;
}
.btn_cta.__prima {
	background: var(--c_primary);
	color: #fff;
}
.btn_cta.__prima::after {
	background: #fff;
}
.btn_cta.__white::after {
	background: #222;
}


/*	common aside section :: benefit, business		*/
.benefit-type {
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
}
.benefit-type > a {
	--bg_aside: rgba(0, 149, 248, 0.20);
	--txt_aside: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	width: fit-content;
	height: 47px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.7;
	color: var(--txt_aside);
	background: var(--bg_aside);
	padding: 0 24px;
	border-radius: 8px;
}
.benefit-type > a.active {
	--bg_aside: #0095F8;
	--txt_aside: #fff;
}

/* title */
.intro-header {
	height: 702px;
}
.intro-header .row {
	margin-top: -22px;
}
.intro-heading > span,
.intro-heading > strong {
	display: block;
	font-size: 18px;
	letter-spacing: 0;
}
.intro-heading > strong {
	margin-bottom: 12px;
	max-width: fit-content;
	border-bottom: 1px solid #fff;
}
.intro-heading > span {
	margin-top: 12px;
	font-weight: 400;
}
.intro-heading em {
	color: var(--c_primary);
}
.intro-heading + .btn_group {
	margin: 40px 0 0;
	max-width: 312px;
}

/*section*/
.intro-section {
	overflow: hidden;
	padding: 180px 50px;
	flex-direction: column;
	align-items: center;
}
.intro-section:nth-child(2n) {
	background: #f1f4f8;
}
.intro-title {
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: -1px;
	color: #222;
}
.intro-desc {
	margin-top: 20px;
	font-size: 24px;
	line-height: 1.4;
	color: #444;
	text-align: center;
}
.intro-title.__white {
	color: #fff;
}
.intro-title.__center {
	text-align: center;
}
.intro-title .highlight {
	width: fit-content;
	margin: 0 auto;
	z-index: 1;
}
.intro-title .highlight::after {
	position: absolute;
	bottom: -4px;
	border-radius: 14px;
	background: rgba(0, 149, 248, 0.2);
	z-index: -1;
	width: 0;
	transition: 0.6s ease width;
}
.intro-title .highlight.active::after {
	width: calc(100% + 0.22em);
}
.intro-title.__white .highlight::after {
	background: rgba(0, 149, 248, 0.5);
}
.intro-title.__dark .highlight::after {
	background: rgba(13, 110, 205, 0.8);
}


/* hover */
@media (min-width: 961px) and (hover: hover) {
	.btn_cta:hover {
		background: var(--c_primary);
		color: #fff;
	}
	.btn_cta:hover::after {
		background: #fff;
	}
	.btn_cta.__prima:hover,
	.benefit-list .btn_cta:hover {
		background: #fff;
		color: #222;
	}
	.btn_cta.__prima:hover::after ,
	.benefit-list .btn_cta:hover::after {
		background: #222;
	}
}

/* media */
@media (max-width: 960px) {
	/* common */
	.hidden-pc {
		display: block;
	}
	.hidden-mo {
		display: none;
	}
	.btn_cta {
		height: 56px;
		font-size: 16px;
		padding: 0 32px;
	}
	.intro-section {
		padding: 130px 18px;
		flex-direction: column;
		align-items: center;
	}
	.intro-title {
		font-size: 28px;
	}
	.intro-desc {
		margin-top: 16px;
		font-size: 22px;
		color: #222;
	}
	.bubble {
		text-align: center;
		font-size: 18px;
		border-radius: 64px;
	}

	/*	common aside section :: benefit, business		*/
	.benefit-type {
		margin-bottom: 20px;
	}
	.benefit-type > a {
		height: 35px;
		font-size: 16px;
		padding: 0 12px;
	}

	/* title */
	.intro-header {
		height: 442px;
	}
	.intro-header .row {
		margin-top: -20px;
	}
	.intro-heading > span,
	.intro-heading > strong {
		font-size: 16px;
	}
	.intro-heading > strong {
		margin-bottom: 10px;
	}
	.intro-heading > span {
		margin-top: 10px;
	}
}
/* keyframe */
@keyframes fadeup {
	0% {
		opacity: 0;
		transform: translateY(5%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes txt_color_em {
	0% {
		color: #fff;
	}
	100% {
		color: var(--c_primary);
	}
}
