/*---------------導入施設様の声*/
.voice_detail {
	overflow: hidden;
}
.voice_detail .detail_header {
	margin-bottom: 50px;
}
.voice_detail .detail_header .headerimage {
	border-radius: 10px;
	overflow: hidden;
}
.voice_detail .detail_header .header_desc {
	width: 94%;
	max-width: 1000px;
	padding: 40px;
	margin: -40px auto 0;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(0, 150, 255, 0.2);
	position: relative;
}
.voice_detail .detail_header .header_desc .title {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 30px
}
.voice_detail .detail_header .header_desc .dl_casedetail {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #efefef;
}
.voice_detail .detail_header .header_desc .dl_casedetail:first-of-type {
	border-top: 1px solid #efefef;
}
.voice_detail .detail_header .header_desc .dl_casedetail dt {
	width: 300px;
	font-size: 1.6rem;
	font-weight: 600;
	color: #0077ff;
}
.voice_detail .detail_header .header_desc .dl_casedetail dd {
	width: calc(100% - 300px);
}
.voice_detail .detail_contents {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto 30px;
}
.voice_detail .detail_contents ul.tour_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.voice_detail .detail_contents ul.tour_img li {
	width: 24%;
	margin: 0 0.5% 20px;
}
.voice_detail .detail_contents ul.tour_img li a img {
	border-radius: 10px;
	transition: .2s;
}
.voice_detail .detail_contents ul.tour_img li a:hover img {
	opacity: .7;
}
.voice_detail .detail_contents .zoom {
	text-align: center;
}
.voice_detail .detail_contents .zoom span {
	padding-left: 1.8em;
	position: relative;
}
.voice_detail .detail_contents .zoom span::before {
	font-family: 'Material Icons';
  content: "zoom_in";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 120%;
	line-height: 1;
}

.voice_detail .comment_area {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px 30px;
	border: 2px solid #ffe60a;
}
.voice_detail .commentbox {
	width: 100%;
	margin: 0 auto 30px;
}
.voice_detail .commentbox:last-child {
	margin: 0 auto;
}
.voice_detail .commentbox .catch2 {
	font-weight: 600;
	padding-left: 16px;
	margin-bottom: 20px;
	border-left: 6px solid #0077ff;
}
.voice_detail .commentbox .commentbox_inner {
	display: flex;
	flex-wrap: wrap;
}
.voice_detail .commentbox .commentbox_inner .imagebox {
	width: 150px;
}
.voice_detail .commentbox .commentbox_inner .imagebox .comment_img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
}
.voice_detail .commentbox.customer .commentbox_inner .imagebox .comment_img {
	background-color: #ffd2d2;
}
.voice_detail .commentbox.facility .commentbox_inner .imagebox .comment_img {
	background-color: #ffe60a;
}
.voice_detail .commentbox.tabisuke .commentbox_inner .imagebox .comment_img {
	background-color: #d2eaf9;
}
.voice_detail .commentbox .commentbox_inner .textbox {
	width: calc(100% - 150px);
	padding-left: 40px;
}

.voice_detail .tour_contents {
	max-width: 800px;
	margin: 30px auto 0;
}
.voice_detail .tour_contents .catch2 {
	font-weight: 600;
	padding-left: 1.5em;
	margin-bottom: 10px;
	position: relative;
}
.voice_detail .tour_contents .catch2::before {
	font-family: 'Material Icons';
  content: "article";
	position: absolute;
	left: 0;
	top: 0;
	color: #0077ff; 
}
.voice_detail .tour_contents .dl_tour_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.voice_detail .tour_contents .dl_tour_wrap .dl_tour {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	font-size: 1.3rem;
	padding: 10px 0;
	border-bottom: 1px dashed #cccccc;
}
.voice_detail .tour_contents .dl_tour_wrap .dl_tour.col-2 {
	width: 48%;
}
.voice_detail .tour_contents .dl_tour_wrap .dl_tour dt {
	width: 190px;
	font-weight: 600;
}
.voice_detail .tour_contents .dl_tour_wrap .dl_tour dd {
	width: calc(100% - 190px);
}


.voice_detail .news_pagenation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px auto 0;
}
.voice_detail .news_pagenation li {
	margin: 0 10px;
}
.voice_detail .news_pagenation li a {
	display: block;
	padding: 10px;
	width: 200px;
	background-color: #ffffff;
	border: 2px solid #ffe60a;
	color: #0077ff;
	border-radius: 5px;
	font-weight: 600;
	text-align: center;
	position: relative;
	transition: .2s;
}
.voice_detail .news_pagenation li a:hover {
	opacity: .7;
}
.voice_detail .news_pagenation li a::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
}
.voice_detail .news_pagenation li.pre a::after {
	border-bottom: 2px solid #0077ff;
	border-left: 2px solid #0077ff;
	top: 50%;
	left: 10px;
	transform: rotate(45deg) translateY(-50%);
}
.voice_detail .news_pagenation li.next a::after {
	border-bottom: 2px solid #0077ff;
	border-right: 2px solid #0077ff;
	top: 50%;
	right: 10px;
	transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
	.voice_detail .detail_header {
		margin-bottom: 40px;
	}
	.voice_detail .detail_header .header_desc {
		padding: 30px;
	}
	.voice_detail .detail_header .header_desc .title {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
	.voice_detail .detail_header .header_desc .dl_casedetail {
		flex-direction: column;
		padding: 20px 10px;
	}
	.voice_detail .detail_header .header_desc .dl_casedetail dt {
		width: 100%;
		margin-bottom: 10px;
		font-size: 1.5rem;
	}
	.voice_detail .detail_header .header_desc .dl_casedetail dd {
		width: 100%;
	}
	.voice_detail .detail_contents  {
		margin: 0 auto 20px;
	}
	.voice_detail .detail_contents ul.tour_img li {
		width: 48%;
		margin: 0 1% 20px;
	}
	.voice_detail .tour_contents .dl_tour_wrap .dl_tour {
		flex-direction: column;
	}
	.voice_detail .tour_contents .dl_tour_wrap .dl_tour dt {
		width: 100%;
		margin-bottom: 5px;
	}
	.voice_detail .tour_contents .dl_tour_wrap .dl_tour dd {
		width: 100%;
	}
	.voice_detail .commentbox .commentbox_inner {
		flex-direction: column;
	}
	.voice_detail .commentbox .commentbox_inner .imagebox {
		margin: 0 auto 20px;
	}
	.voice_detail .commentbox .commentbox_inner .textbox {
		width: 100%;
		padding-left: 0;
	}
	.voice_detail .news_pagenation li {
		margin: 0 10px 10px;
	}
	.voice_detail .news_pagenation li a {
		width: 140px;
	}
}
@media screen and (max-width: 480px) {
	.voice_detail .tour_contents .dl_tour_wrap .dl_tour {
		font-size: 1.2rem;
	}
	.voice_detail .detail_contents ul.tour_img {
		flex-direction: column;
	}
	.voice_detail .detail_contents ul.tour_img li {
		width: 100%;
		margin: 0 0 20px;
	}
}



/*③ストーリーが分かるようにしたいパターン*/
.voice_detail .detail_header .header_desc > .commentbox.customer {
	margin-top: 30px;
}
.voice_detail .tabisuke_area {
	width: 94%;
	max-width: 1000px;
	padding: 20px 40px 40px;
	margin: 40px auto 0;
	background-color: #ffffff;
	border-radius: 10px;
	border: 2px solid #ffe60a;
	position: relative;
}
.voice_detail .tabisuke_area .tour_point {
	margin: 0 auto 50px;
}
.voice_detail .tabisuke_area .tour_point .dl_casedetail {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #efefef;
}
.voice_detail .tabisuke_area .tour_point .dl_casedetail dt {
	width: 260px;
	font-size: 1.6rem;
	font-weight: 600;
	color: #0077ff;
}
.voice_detail .tabisuke_area .tour_point .dl_casedetail dd {
	width: calc(100% - 260px);
}
.voice_detail .tabisuke_area .tour_point .tabisukepoint {
	padding: 20px;
	background-color: #ffeff0;
	border-radius: 10px;
	margin-top: 20px;
}
.voice_detail .tabisuke_area .tour_point .tabisukepoint .catch3 {
	font-weight: 600;
	padding-left: 1.5em;
	margin-bottom: 10px;
	position: relative;
}
.voice_detail .tabisuke_area .tour_point .tabisukepoint .catch3::before {
	font-family: 'Material Icons';
  content: "star";
	position: absolute;
	left: 0;
	top: 0;
	color: #ff5050; 
}
.voice_detail .tabisuke_area .tour_contents.pattern3 {
	max-width: 100%;
	margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
	.voice_detail .tabisuke_area {
		padding: 20px 30px 30px;
	}
	.voice_detail .tabisuke_area .tour_point {
		margin: 0 auto 30px;
	}
	.voice_detail .tabisuke_area .tour_point .dl_casedetail {
		flex-direction: column;
		padding: 20px 0;
	}
	.voice_detail .tabisuke_area .tour_point .dl_casedetail dt {
		width: 100%;
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
	.voice_detail .tabisuke_area .tour_point .dl_casedetail dd {
		width: 100%;
	}
	.voice_detail .tabisuke_area .tour_contents.pattern3 {
		max-width: 100%;
		margin: 0 auto 30px;
	}
}




