.voice {
	background-color: #FFFDE9;
	padding: 50px 0;
	box-sizing: border-box;
}

.voice .inner {
	max-width: 1000px;
	width: 90%;
	margin: 1em auto;
}

.voice .title-box .title {
	color: #0075C2;
	font-weight: bold;
	font-size: 3rem;
	line-height: 1.2;
}

.voice .title-box .sub {
	font-weight: bold;
	font-size: 2rem;
	color: #DB0635;
}

.voice .title-box .wrap {
	display: flex;
	justify-content: space-between;
	margin: 1rem auto;
}

.voice .title-box .wrap .desc {
	width: 67%;
}

.voice .title-box .wrap .desc p.info {
	font-weight: 600;
	font-size: 1.25rem;
	margin-top: 0;
	margin-bottom: 1rem;
}

.voice .title-box .wrap .desc p:last-child {
	margin-bottom: 0;
}

.voice .title-box .wrap .img {
	width: 30%;
}

.voice .title-box .wrap .img img {}

.voice .questionnaire {
	margin: 3rem auto;
}

.voice .questionnaire .ttl-wrap {
	display: flex;
	align-items: center;
	column-gap: 1rem;
}

.voice .questionnaire .ttl-wrap .ttl {
	color: #0075C2;
	font-size: 1.75rem;
	font-weight: 600;
	display: flex;
    align-items: center;
}

.voice .questionnaire .ttl-wrap .ttl img {
	margin-right: 0.5rem;
}

.voice .questionnaire .ttl-wrap .desc {}

.voice .questionnaire .list .box {
	margin: 1rem auto;
	padding: 6px;
    border-radius: 1.25rem;
	box-sizing: border-box;
	background: linear-gradient(330deg,rgba(219, 6, 53, 1) 17%, rgba(0, 117, 194, 1) 17%);
}

.voice .questionnaire .list .box .border {
	background-color: #fff;
	border-radius: 1rem;
	padding: 0 1rem;
	box-sizing: border-box;
}

.voice .questionnaire .list .box p {
	padding: 0.75rem 1rem 0.5rem;
	box-sizing: border-box;
	line-height: 1.6;
}

.voice .questionnaire .list .box .ttl {
	position: relative;
	border-bottom: 1px solid #0075C2;
}

.voice .questionnaire .list .box .ttl::before,
.voice .questionnaire .list .box .ttl::after {
	content: '';
	display: inline-block;
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #0075C2;
	bottom: -3px;
}

.voice .questionnaire .list .box .ttl::before {
	left: 0;
}
.voice .questionnaire .list .box .ttl::after {
	right: 0;
}


/* --- SP ---------- */
@media screen and (max-width: 740px) {
	.voice {
		padding: 25px 0;
	}

	.voice .title-box .title {
		font-size: 1.5rem;
	}

	.voice .title-box .sub {
		font-size: 1.25rem;
	}

	.voice .title-box .wrap {
		display: block;
	}

	.voice .title-box .wrap .desc p.info {
		font-size: 1rem;
		letter-spacing: 0;
	}

	.voice .title-box .wrap .desc {
		width: 100%;
	}

	.voice .title-box .wrap .img {
		width: 100%;
		text-align: center;
		margin: 1rem auto;
	}

	.voice .questionnaire .ttl-wrap {
		display: block;
	}

	.voice .questionnaire .ttl-wrap .ttl {
		justify-content: center;
	}

	.voice .questionnaire .ttl-wrap .desc {
		margin: 1rem auto;
	}
}