html {
	scroll-behavior: smooth;
}

#test_case_1>.inner>.container {
	display: flex;
	gap: 16px;
}

#test_case_1>.inner>.container>a {
	width: 25%;
	text-decoration: none;
	padding: 20px 16px;
	background: #FFFFFF;
	border-width: 2px 0px;
	border-style: solid;
	border-color: #E1A840;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 10px;
	position: relative;
}

#test_case_1>.inner>.container>a::after {
	display: block;
	content: '';
	position: absolute;
	width: 44px;
	height: 44px;
	bottom: 0px;
	right: 0px;
	border-radius: 2px;
	background: url(../images/icon_arrow_down.svg) no-repeat center center/12px #E1A840;
}

#test_case_1>.inner>.container>a .title {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #000000;
}

#test_case_1>.inner>.container>a .case {
	font-weight: 400;
	font-size: 20px;
	line-height: 175%;
	color: #000000;
}

#test_case_2 {
	position: relative;
}

#test_case_2>.inner>article {
	margin-bottom: 80px;
	border-radius: 8px;
	overflow: hidden;
}

#test_case_2>.inner>article .title {
	padding: 24px;
	background: #E1A840;
	font-weight: 700;
	font-size: 32px;
	line-height: 100%;
	color: #FFFFFF;
	text-align: center;
}

#test_case_2>.inner>article .body {
	margin: 0 auto;
	padding: 50px 0 80px;
	background: #FFFFFF;
	border-width: 0px 5px 5px 5px;
	border-style: solid;
	border-color: rgba(225, 168, 64, 0.3);
	border-radius: 0px 0px 8px 8px;
}

#test_case_2>.inner>article .body .inner {
	width: 75%;
	margin: 0 auto;
}

#test_case_2>.inner>article .body .h {
	font-weight: 700;
	font-size: 28px;
	line-height: 150%;
	color: #000000;
	padding-bottom: 16px;
	border-bottom: 1px solid #E1A840;
	margin-bottom: 32px;
}

#test_case_2>.inner>article .body .text {
	font-weight: 400;
	font-size: 20px;
	line-height: 175%;
	color: #000000;
	margin-bottom: 30px;
}

#test_case_2>.inner>article .body .result {
	display: flex;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #E1A840;
	margin-bottom: 36px;
}

#test_case_2>.inner>article .body .result .name {
	width: 20%;
	background: #E1A840;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	color: #FFFFFF;
}

#test_case_2>.inner>article .body .result .value {
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	background: #FFFAEF;
	padding: 10px;
}

#test_case_2>.inner>article .body .result .value em {
	font-style: normal;
	font-size: 28px;
	margin-left: 10px;
	margin-right: 5px;
}

#test_case_2>.inner>article .body .result .value span {
	font-size: 16px;
}

#test_case_2>.inner>article .body .result .value .before {
	padding: 10px 20px;
	background: #FFFFFF;
	border-radius: 4px;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	color: #1D1D1D;
}

#test_case_2>.inner>article .body .result .value .after {
	padding: 10px 20px;
	background: #8FB12C;
	border-radius: 4px;
	font-weight: 700;
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	color: #FFFFFF;
}

#test_case_2>.inner>article .body .result .value .arrow {
	width: 16px;
	height: 20px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	background: #E1A840;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

#test_case_2>.inner>article .body .h2 {
	font-weight: 700;
	font-size: 24px;
	line-height: 175%;
	color: #1D1D1D;
	margin-bottom: 20px;
}

#test_case_2>.inner>article .body .h2::before {
	content: '■';
	display: inline-block;
	margin-right: 5px;
}

#test_case_2>.inner>article .body .image {
	padding-left: 40px;
	margin-bottom: 30px;
}




/* SP */
@media screen and (max-width: 1200px) {
	#test_case_1>.inner>.container {
		flex-direction: column;
	}

	#test_case_1>.inner>.container>a {
		width: 100%;
		border-width: 1px 0px;
	}

	#test_case_1>.inner>.container>a .case {
		font-size: 16px;
	}


	#test_case_2>.inner>article {
		margin-bottom: 60px;
	}

	#test_case_2>.inner>article .title {
		font-size: 22px;
		line-height: 150%;
	}

	#test_case_2>.inner>article .body {
		padding: 30px 0;
	}

	#test_case_2>.inner>article .body .inner {
		width: 86%;
	}

	#test_case_2>.inner>article .body .h {
		font-size: 22px;
	}

	#test_case_2>.inner>article .body .text {
		font-size: 16px;
		line-height: 200%;
	}

	#test_case_2>.inner>article .body .result {
		flex-direction: column;
	}

	#test_case_2>.inner>article .body .result .name {
		width: 100%;
		padding: 16px;
	}

	#test_case_2>.inner>article .body .result .value {
		padding: 20px 31px;
		width: 100%;
		flex-direction: column;
		gap: 10px;
	}

	#test_case_2>.inner>article .body .result .value em {
		font-style: normal;
		font-size: 28px;
		margin-left: 10px;
		margin-right: 5px;
	}

	#test_case_2>.inner>article .body .result .value span {
		font-size: 16px;
	}

	#test_case_2>.inner>article .body .result .value .before {
		padding: 10px;
		width: 100%;
	}

	#test_case_2>.inner>article .body .result .value .after {
		padding: 10px;
		width: 100%;
	}

	#test_case_2>.inner>article .body .result .value .arrow {
		width: 20px;
		height: 16px;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
	}

	#test_case_2>.inner>article .body .h2 {
		font-size: 20px;
		margin-bottom: 16px;
	}


	#test_case_2>.inner>article .body .image {
		padding-left: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	#test_case_2>.inner>article .body .image img.sp {
		display: block;
		max-width: 100%;
		margin: 0 auto;
	}
}