
/*---------- result ----------*/
.result {
	width: 100%;
	padding: 0 0 60px;
	position: relative;
}

/*  */
.result-wrap{
	width: 100%;
	padding: 60px 0;
	border-bottom: 1px solid var(--color-white);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 50px;
}
.result-wrap:first-child {
	padding-top: 0;
}
.result-wrap:nth-child(2n) {
	flex-direction: row-reverse;
}

.result-txt-wrap {
	width: calc(62% - 50px);
}
.result-img-wrap {
	width: 38%;
	border-radius: 8px;
	overflow: hidden;
}


.result .cont-ttl-en {
	margin-bottom: 20px;
	font-size: 3.0rem;
	font-weight: 600;
	color: var(--color-gray);
}
.result-outline {
	width: 100%;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}
.result-outline dt {
	width: 100px;
	padding: 5px;
	border-radius: 4px;
	color: var(--color-white);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
}
.is-mg .result-outline dt { background: var(--color-navy);}
.is-amg .result-outline dt { background: var(--color-brown);}
.is-fbs .result-outline dt { background: var(--color-green);}
.is-sse .result-outline dt { background: var(--color-yellow);}
.is-financial .result-outline dt { background: var(--color-charcoal);}

.result-outline dd {
	width: calc(100% - 100px - 10px);
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
}
.result-outline dd span {
	font-size: 1.4rem;
}

.result .cont-txt {
	font-weight: 300;
}


/* voice */
.voice {
	padding-bottom: 70px;
}
.voice-wrap {
	width: 100%;
	margin-bottom: 30px;
	background: var(--color-white);
	border-radius: 16px;
	padding: 40px 50px 50px;
}

.voice-ttl-wrap {
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-black);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.voice .cont-head {
	margin: 10px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.voice-ttl-wrap .cont-ttl-tag {
	width: 110px;
	padding: 8px;
	border-radius: 8px;
	color: var(--color-white);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
}
.is-mg .voice-ttl-wrap .cont-ttl-tag { background: var(--color-navy);}
.is-amg .voice-ttl-wrap .cont-ttl-tag { background: var(--color-brown);}
.is-fbs .voice-ttl-wrap .cont-ttl-tag { background: var(--color-green);}
.is-sse .voice-ttl-wrap .cont-ttl-tag { background: var(--color-yellow);}
.is-financial .voice-ttl-wrap .cont-ttl-tag { background: var(--color-charcoal);}

.voice-ttl-wrap .cont-ttl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 0 20px;
	font-size: 3.0rem;
	line-height: 1;
}
.is-mg .voice-ttl-wrap .cont-ttl { color: var(--color-navy);}
.is-amg .voice-ttl-wrap .cont-ttl { color: var(--color-brown);}
.is-fbs .voice-ttl-wrap .cont-ttl { color: var(--color-green);}
.is-sse .voice-ttl-wrap .cont-ttl { color: var(--color-yellow);}
.is-financial .voice-ttl-wrap .cont-ttl { color: var(--color-charcoal);}

.voice-ttl-wrap .cont-ttl span {
	display: inline-block;
	margin-left: 10px;
	font-size: 1.6rem;
}

.voice-ttl-wrap .btn {
	margin: 10px 0;
}

.voice-ttl {
	font-size: 2.0rem;
	margin-bottom: 20px;
}
.voice-list li {
	width: 100%;
	margin-bottom: 10px;
	padding-left: 26px;
	position: relative;
	font-weight: 1.5rem;
	font-weight: 300;
}
.voice-list li:last-child { margin-bottom: 0;}
.voice-list li::before {
	content: '';
	width: 16px;
	height: 26px;
	background: url("../../img/case/icon_user.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0.2em;
	left: 0;
}


@media (max-width: 768px) {
	.result {
		width: 100%;
		padding: 0 0 10vw;
		position: relative;
	}

	/*  */
	.result-wrap{
		width: 100%;
		padding: 10vw 0;
		flex-direction: column;
		gap: 5vw;
	}
	.result-wrap:first-child {
		padding-top: 5vw;
	}
	.result-wrap:nth-child(2n) {
		flex-direction: column;
	}

	.result-txt-wrap {
		width: 100%;
	}
	.result-img-wrap {
		width: 100%;
		border-radius: 2vw;
	}


	.result .cont-ttl-en {
		margin-bottom: 2vw;
		font-size: var(--fs-sp-36);
	}
	.result-outline {
		width: 100%;
		margin-bottom: 3vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 2vw;
	}
	.result-outline dt {
		width: 25vw;
		padding: 1.5vw 2vw;
		border-radius: 1vw;
		font-size: var(--fs-sp-12);
	}
	.result-outline dd {
		width: calc(100% - 25vw - 2vw);
		font-size: var(--fs-sp-20);
		line-height: 1.6;
	}
	.result-outline dd span {
		font-size: var(--fs-sp-14);
	}


	/* voice */
	.voice {
		padding-bottom: 4vw;
	}
	.voice-wrap {
		width: 100%;
		margin-bottom: 8vw;
		border-radius: 3vw;
		padding: 8vw;
	}

	.voice-ttl-wrap {
		width: 100%;
		margin-bottom: 4vw;
		padding-bottom: 3vw;
		align-items: center;
	}
	.voice .cont-head {
		margin: 2vw 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
	}
	.voice-ttl-wrap .cont-ttl-tag {
		width: 25vw;
		margin-bottom: 2vw;
		padding: 1.5vw;
		border-radius: 2vw;
		font-size: var(--fs-sp-12);
	}

	.voice-ttl-wrap .cont-ttl {
		width: 100%;
		display: block;
		margin: 0;
		font-size: var(--fs-sp-30);
		line-height: 1.4;
	}
	.voice-ttl-wrap .cont-ttl span {
		margin-left: 0;
		font-size: var(--fs-sp-12);
	}
	.voice-ttl-wrap .btn {
		width: 100%;
		margin: 2vw 0;
	}

	.voice-ttl {
		font-size: var(--fs-sp-20);
		margin-bottom: 4vw;
	}
	.voice-list li {
		width: 100%;
		margin-bottom: 3vw;
		padding-left: 5vw;
		font-size: var(--fs-sp-15);
	}
	.voice-list li:last-child { margin-bottom: 0;}
	.voice-list li::before {
		content: '';
		width: 3vw;
		height: 5vw;
	}
}


