.point_wrap {
	margin-top: 40px;
	margin-bottom: 37px;
}
.point_title {
	margin-bottom: 43px;
	font-size: 18px;
}
.point_list {
	display: flex;
	flex-wrap: wrap;
	gap: 36px 11px;
}
.point_list .box {
	padding: 36px 15px;
	width: calc(100% / 3 - 8px);
	border: 2px solid #005BAC;
	position: relative;
	box-sizing: border-box;
	align-self: stretch;
}
.point_list .box::after {
	content: "";
	display: block;
	width: 44px;
	height: 44px;
	position: absolute;
	top: -22px;
	left: calc(50% - 22px);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
}
.point_list .box:nth-child(1)::after { background-image: url(/images/icon/point01.svg); }
.point_list .box:nth-child(2)::after { background-image: url(/images/icon/point02.svg); }
.point_list .box:nth-child(3)::after { background-image: url(/images/icon/point03.svg); }
.point_list .box:nth-child(4)::after { background-image: url(/images/icon/point04.svg); }
.point_list .box:nth-child(5)::after { background-image: url(/images/icon/point05.svg); }
.point_list .box dt {
	margin-bottom: 12px;
	text-align: center;
}
.point_list .box dt span {
	font-size: 18px;
	color: #005BAC;
	background: linear-gradient(to top, transparent 10%, #FDDE04 10%, #FDDE04 30%, transparent 30%);
}
.point_list .box dd {
	font-size: 16px;
}
.point_list .box dd p:not(:last-child) {
	margin-bottom: 25px;
}
.point_list .box dd p.notice {
	font-size: 14px;
}
.point_list .box dd a {
	color: #114AAE;
	text-decoration: underline;
}
.point_list .box dd a:hover {
	text-decoration: none;
}
@media screen and (max-width:767px) {
	.point_wrap {
		margin: 0 12px 44px;
	}
	.point_title {
		margin-bottom: 86px;
	}
	.point_list {
		flex-direction: column;
		gap: 32px;
	}
	.point_list .box {
		width: 100%;
	}
	.point_list .box::after {
		width: 40px;
		height: 40px;
		top: -20px;
		left: calc(50% - 20px);
	}
	.point_list .box dd p:not(:last-child) {
		margin-bottom: 38px;
	}
}
.voice_wrap {
	margin-bottom: 37px;
}
.voice_title {
	margin-bottom: 21px;
	font-size: 18px;
}
.voice_list .box {
	padding: 30px 60px 25px;
	background: #F6F6F6;
}
.voice_list .box:not(:last-child) {
	margin-bottom: 30px;
}
.voice_list .above {
	margin-bottom: 27px;
	border-bottom: 2px solid #333333;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.voice_list .above .avatar {
	width: 72px;
}
.voice_list .above .avatar img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.voice_list .above .profile {
	width: calc(100% - 84px);
}
.voice_list .above .name {
	font-size: 14px;
}
.voice_list .above .stars {
	font-size: 14px;
}
.voice_list .above .use {
	font-size: 18px;
}
.voice_list .below .unit:not(:last-child) {
	margin-bottom: 22px;
}
.voice_list .below .q {
	margin-bottom: 5px;
	padding-left: 15px;
	font-size: 18px;
	color: #005BAC;
	position: relative;
}
.voice_list .below .q::before {
	content: "";
	display: block;
	width: 10px;
	height: 3px;
	background: #005BAC;
	position: absolute;
	top: 11px;
	left: 0;
}
@media screen and (max-width:767px) {
	.voice_wrap {
		margin: 0 12px 41px;
	}
	.voice_list .box {
		padding: 30px 20px;
	}
	.voice_list .above .avatar {
		width: 50px;
	}
	.voice_list .above .profile {
		width: calc(100% - 60px);
	}
	.voice_list .below .q {
		font-size: 16px;
	}
	.voice_list .below .a {
		font-size: 14px;
	}
}
.faq_title {
	margin-bottom: 21px;
	font-size: 18px;
}
.faq_list .unit:not(:last-child) {
	margin-bottom: 16px;
}
.faq_list .q {
	padding: 18px 56px;
	font-size: 18px;
	color: #fff;
	background: #005BAC url(/images/icon/question.svg) no-repeat 12px center;
	background-size: 34px 34px;
	position: relative;
	cursor: pointer;
}
.faq_list .q::before,
.faq_list .q::after {
	content: "";
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: calc(50% - 1px);
	right: 22px;
	transition: .3s all;
}
.faq_list .q::after {
	transform: rotate(90deg);
}
.faq_list .q.show::after {
	transform: rotate(0deg);
}
.faq_list .a {
	padding: 16px 16px 25px;
	background: #F6F6F6;
}
.faq_list .a p:not(:last-child) {
	margin-bottom: 32px;
}
@media screen and (max-width:767px) {
	.faq_wrap {
		margin: 0 12px;
	}
}