/*persona*/
.persona-wrapper {
	display: flex;
	margin-top: 94px;
	gap: 24px;
	width: 100%;
	max-width: var(--max-width);
}
.persona {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: 0;
	transform: translateY(5%);
	transition: 0.4s ease opacity, 0.6s ease transform;
}
.persona.active {
	transform: translateY(0);
	opacity: 1;
}
.persona:nth-child(2) {
	transition-delay: 0.1s;
}
.persona:nth-child(3) {
	transition-delay: 0.2s;
}
.persona:nth-child(4) {
	transition-delay: 0.3s;
}
.persona:nth-child(5) {
	transition-delay: 0.4s;
}
.persona-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: -16px;
}
.persona .size {
	width: fit-content;
	height: 34px;
	padding: 0 12px;
	line-height: 34px;
	border-radius: 4px;
	background: var(--c_primary);
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}
.persona .name {
	margin: 8px auto 12px;
	font-size: 18px;
	font-weight: 600;
	color: #444;
}
.persona .worry {
	font-size: 16px;
	line-height: 1.7;
	color: #777;
}

/* feat */
.ff-feat {
	background: #222;
	color: #fff;
}
.ff-feat .txt-box {
	min-width: 382px;
}
.ff-feat .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8.1%;
	width: 100%;
	max-width: var(--max-width);
}
.ff-img {
	max-width: 800px;
	transform: scale(0);
	opacity: 0;
	transition: 0.3s 0.05s ease-in-out;
}
.ff-img.active {
	transform: scale(1);
	opacity: 1;
}
.ff-feat .txt-box p {
	margin: 20px 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.45;
	color: #e4e4e4;
}

/* benefit size */
.bubble {
	position: relative;
	margin-bottom: 34px;
	padding: 8px 32px;
	font-size: 22px;
	line-height: 1.4;
	font-weight: 500;
	background: var(--c_primary);
	color: #fff;
	border-radius: 24px;
}
.bubble::after {
	content: "";
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translateX(-50%);
	width: 29px;
	height: 29px;
	background: var(--c_primary);
	mask: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/polygon.svg) no-repeat center / 100% auto;
	-webkit-mask: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/polygon.svg) no-repeat center / 100% auto;
	mask-position: center;
	mask-size: 100%;
}
.ff-benefit {
	display: flex;
	/* align-items: stretch; */
	gap: 24px;
	margin: 60px 0;
	width: 100%;
	max-width: 1058px;
}
.benefit-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.statistics {
	padding-top: 20px;
	width: 100%;
	text-align: center;
	background: #fff;
	border-radius: 16px;
}
.statistics + .statistics {
	margin-top: 16px;
}
.statistics dt {
	font-size: 20px;
	line-height: 1.7;
	font-weight: 500;
}
.statistics dd {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -30px;
	font-size: 40px;
	font-weight: 700;
}
.statistics dd > strong {
	font-size: 70px;
	color: var(--c_primary);
}

/* benefit-list */
.benefit-list {
	background: var(--c_primary);
	color: #fff;
}
.benefit-list .inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 6.7%;
	width: 100%;
	max-width: var(--max-width);
}
.benefit-list .txt-box {
	min-width: 348px;
	padding-bottom: 56px;
}
.benefit-view {
	flex: 1;
	max-width: 848px;
	opacity: 0;
	transform: translateY(5%);
}
.benefit-view.active {
	animation: fadeup 0.45s linear forwards;
}
.benefit-list .btn_group {
	position: absolute;
	left: 0;
	bottom: 0;
	margin-top: 40px;
}
.benefit-list .txt-box p {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.7;
	font-weight: 400;
	color: #f1f4f8;
}
.nav_banefit {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 40px 0 60px;
}
.nav_banefit li {
	font-size: 24px;
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: -1px;
	opacity: 0.5;
	cursor: pointer;
}
.nav_banefit li.on {
	opacity: 1;
	font-weight: 700;
}
.benefit-view ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 16px;
}
.benefit-view li {
	overflow: hidden;
	text-align: center;
	color: #222;
	background: #fff;
	border-radius: 24px;
}
.benefit-view .benefit {
	padding: 14px 0;
	background: #f1f4f8;
}
.benefit-view .benefit .company {
	display: block;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 700;
}
.benefit-view .benefit .desc {
	font-size: 18px;
	color: #777;
}
.benefit-view .benefit .company::after {
	content: "";
	display: block;
	margin: 8px auto;
	width: calc(100% - 28px);
	height: 1px;
	background: #e4e4e4;
}
.benefit-view .company-logo {
	padding: 8px 26px;
}

/* survey */
.survey {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
}
.survey > p:first-child {
	margin-top: 20px;
	padding-right: 300px;
	background: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/icon_survey.png) no-repeat top right / 282px auto;
}
.survey > p span {
	color: var(--c_primary);
}
.survey .bubble {
	margin: 24px auto 0;
	width: fit-content;
	font-size: 16px;
	font-weight: 400;
	color: #222;
	background: #fff;
}
.survey .bubble::after {
	bottom: unset;
	top: -12px;
	transform: translateX(-50%) rotate(60deg);
	background: #fff;
}
/* space */
.ff-space {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: end;
	gap: 48px 24px;
	margin-top: 60px;
	width: 100%;
	max-width: 1062px;
}
.ff-space li:last-child {
	grid-column: 1 / 3;
}
.ff-space .space-info {
	display: flex;
}
.ff-space h5 {
	font-size: 24px;
	line-height: 1.4;
}
.ff-space .num {
	padding-right: 16px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--c_primary);
}
.ff-space h5 > p {
	margin-top: 4px;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	color: #777;
}
.ff-space .space-detail {
	position: relative;
	margin-top: 16px;
	border-radius: 16px;
	overflow: hidden;
}
.ff-space .space-detail img {
	width: 100%;
}
.ff-space .space-detail > span {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	padding: 14px 0;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	background: rgba(34, 34, 34, 0.6);
	color: #fff;
}
.ff-space .space-detail em {
	padding-left: 6px;
	font-size: 14px;
	font-weight: 400;
}

/* solution */
.six-solution-item-content {
	padding: 30px;
}
.six-solution-section .btn_group {
	margin-top: 60px;
}
.intro-section.slide-section {
	padding: 180px 0;
}
.six-solution-item-1 {
	background-image: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/solution_01.jpg);
}
.six-solution-item-2 {
	background-image: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/solution_02.jpg);
}
.six-solution-item-3 {
	background-image: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/solution_03.jpg);
}
.six-solution-item-4 {
	background-image: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/solution_04.jpg);
}
.six-solution-item-5 {
	background-image: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/solution_05.jpg);
}
.six-solution-item-6 {
	background-image: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/solution_06.jpg);
}
.six-solution-item-7 {
	background-image: url(/wp-content/themes/fastfive/assets/images/pages/member-benefit/solution_07.jpg);
}
.six-solution-item {
	margin-left: 30px;
	margin-right: 30px;
}
.six-solution-item-desc {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}
/* review */
.member-testimonials-section {
	margin-top: 0;
}
.six-solution-swiper {
	margin-top: 60px !important;
}
.member-testimonials-row {
	margin-top: 60px;
}
.member-testimonials-slider {
	padding-left: 0px !important;
}
.branch-real-testimonials-slide-content {
	padding: 30px 20px 54px;
}
.branch-real-testimonials-slide-content-comment {
	margin-bottom: 40px;
	min-height: unset;
}
.outro_sec .intro-title {
	padding-right: 20px;
}
/* media */
@media (max-width: 960px) {
	/* benefit-list */
	.benefit-list .inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.benefit-list .btn_group {
		position: static;
		margin-top: 32px;
	}
	/* persona */
	.persona-wrapper {
		justify-content: center;
		flex-wrap: wrap;
		gap: 24px 14px;
		margin-top: 40px;
		max-width: 510px;
	}
	.persona-wrapper .persona {
		flex: none;
		width: calc(50% - 7px);
		max-width: 160px;
	}
	.persona .size {
		height: 26px;
		line-height: 26px;
		font-size: 14px;
	}
	.persona .name {
		font-size: 16px;
	}
	.persona .worry {
		font-size: 14px;
	}
	/* feat */
	.ff-feat {
		text-align: center;
	}
	.ff-feat .inner {
		flex-direction: column;
		gap: 40px;
	}
	.ff-feat .txt-box p {
		margin: 16px 0;
		font-size: 22px;
	}
	/* ff-benefit */
	.ff-benefit {
		flex-direction: column;
		gap: 40px;
		margin: 40px 0;
	}
	.statistics dt {
		font-size: 18px;
	}
	.statistics dd {
		font-size: 32px;
	}
	.statistics dd > strong {
		font-size: 54px;
	}
	.benefit-list .txt-box p {
		margin-top: 16px;
		font-size: 16px;
		text-align: center;
	}
	.nav_banefit {
		justify-content: center;
		flex-direction: row;
		gap: 16px;
		margin-bottom: 0;
	}
	.benefit-list .inner {
		gap: 16px;
	}
	.nav_banefit li {
		font-size: 18px;
	}
	.benefit-view {
		max-width: 100%;
	}
	.benefit-view li {
		border-radius: 6px;
	}
	.benefit-view .benefit {
		padding: 6px;
	}
	.benefit-list .txt-box {
		padding-bottom: 0;
		min-width: unset;
	}
	.benefit-view .benefit .company {
		font-size: 14px;
		line-height: 1.7;
	}
	.benefit-view .benefit .company::after {
		margin: 4px auto;
		width: calc(100% - 20px);
	}
	.benefit-view .benefit .desc {
		font-size: 12px;
	}
	.benefit-view .company-logo {
		padding: 20px 0;
	}
	/* space */
	.survey > p:first-child {
		padding: 0 0 40px 0;
		text-align: center;
		background-size: 100% auto;
		background-position: center bottom;
	}
	.ff-space {
		display: flex;
		flex-direction: column;
		align-items: unset;
		gap: 40px;
		margin-top: 40px;
	}
	.ff-space .num,
	.ff-space h5 {
		font-size: 22px;
	}
	.ff-space .space-detail > span {
		padding: 11px 0 14px;
		font-size: 14px;
	}
	.ff-space .space-detail em {
		font-size: 12px;
	}
	/* solution */
	.six-solution-item-content {
		padding: 26px;
	}
	.six-solution-item {
		margin-left: 16px;
		margin-right: 16px;
	}
	.six-solution-swiper {
		margin-top: 40px !important;
	}
	.six-solution-item-headline {
		font-size: 22px;
	}
	.six-solution-item-desc {
		margin-top: 6px;
		font-size: 14px;
	}
	.intro-section.slide-section {
		padding: 130px 0;
	}
	.six-solution-section .btn_group {
		margin-top: 40px;
	}
	/* review */
	.member-testimonials-row {
		margin-top: 40px;
		padding: 0;
	}
	.member-testimonials-slide {
		margin-right: 20px;
	}
	.branch-real-testimonials-slide-content {
		padding: 20px 20px 32px 20px;
	}
	.branch-real-testimonials-slide-content-comment {
		min-height: 109px;
		line-height: 1.7;
	}
}
