@charset "utf-8";


/*voice*/
.voice{
	width: 90%;
	margin: 50px auto 100px;
}
@media (min-width: 1200px){
	.voice{
		max-width: 1200px;
		margin: 100px auto 100px;
	}
}


/*voice__wrap*/
.voice__wrap{
	margin-top: 50px;
	padding: 30px;
	border-radius: 14px;
	box-shadow:
		0 4px 12px rgba(0,0,0,.10),
		0 -2px 6px rgba(0,0,0,.06),
		inset 0 1px 0 rgba(255,255,255,.6);
}

.voice__imagearea img{
	width: 200px;
	height: 200px;
	margin: auto;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.voice__contents-title{
	margin-top: 20px;
	padding-bottom: 10px;
	color: #0078c7;
	font-weight: bold;
	text-align: left;
	line-height:2;
	border-bottom: dashed 2px #0078c7;
}
.voice__contents-title span{
	width: 110px;
	margin-right: 5px;
	margin-bottom: 5px;
	padding: 0px 10px;
	color: #fff;
	background-color: #0078c7;
	text-align: center;
	border-radius:4px;
	display: inline-block;
	font-size: 14px;
}

.voice__company-name{
	margin-top: 10px;
	font-weight: bold;
	text-align: right;
}

.voice__textarea .text{
	text-align: justify;
}


@media (min-width: 1024px){
	.voice__wrap{
		padding: 50px;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		column-gap: 40px;
	}
	.voice__textarea{
		position: relative;
	}
	.voice__contents-title{
		margin-top: 0;
	}
}

@media (min-width: 1200px){
	.voice__contents-title br{
		display: none;
	}
	.voice__wrap:last-child{
		margin-bottom: 150px;
	}
	.voice__contents-title span{
		max-width: 120px;
		width: 100%;
		padding: 0px 10px;
	}
	.voice__company-name{
		position: absolute;
		top: 0;
		right: 0;
	}
	.voice__textarea .text{
	}
}


