@charset "UTF-8";
/* CSS Document */

/* voice */

/*  */

body.voice div#page_kv {
	width: 1104px;
	height: 247px;
	position: relative;
	overflow: visible;

	& figure {
		width: 552px;
		border-radius: 12px 0 0 12px;
		overflow: hidden;
	}

	& .inner_text {
		margin-left: 40px;
	}

}

#page_kv::after {
	content: '';
	display: block;
	background-image: url(../img/icon_staff_female_a_01.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 102px;
	height: 102px;
	position: absolute;

	right: 30px;
	bottom: -40px;
}

main {
	width: 1102px;
	margin-inline: auto;
}

/*  */

#voice_summary {
	margin-top: 64px;
	counter-reset: voice_num_1 0;
}

.box_voice .box_ttl,
#voice_summary ul li {
	background-color: #EDF7FD;
	border-radius: 8px;
	display: flex;
	align-items: center;
	height: 128px;
	padding: 16px 16px 10px 16px;
	box-sizing: border-box;
}

#voice_summary ul li:hover {
	opacity: 0.6;
	transition: all 0.15s ease-in;
	cursor: pointer;
}

#voice_summary ul li:not(:first-child) {
	margin-top: 24px;
}

.box_voice .box_ttl p.ttl,
#voice_summary ul p.ttl {
	color: #00518E;
	font-size: 3.0rem;
	display: inline-flex;
	align-items: center;
	height: 100%;
	width: 124px;
	/* background-image: url(../img/tri_arrow.png);
	background-position: 100% 0;
	background-repeat: no-repeat;
	background-size: auto 100%; */
	box-sizing: border-box;
	padding-right: 1.4em;
	position: relative;
}

.box_voice .box_ttl p.ttl::before,
#voice_summary ul p.ttl::before {
	content: '';
	display: block;
	width: 57px;
	height: 110%;
	background-image: url(../img/tri_arrow.png);
	background-position: 100% 0;
	background-repeat: no-repeat;
	background-size: auto 100%;
	/* background-color: red; */
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
}

.box_voice .box_ttl p.ttl::after,
#voice_summary ul p.ttl::after {
	display: inline-block;
	font-size: 2.1em;
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	margin-left: 0.1em;
	position: relative;
	bottom: 0;
}

div.title_wrap {
	min-width: 346px;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;

}

#voice_summary ul p.ttl::after {
	counter-increment: voice_num_1 1;
	content: counter(voice_num_1) " ";
}

.box_voice .box_ttl div.wrap,
#voice_summary ul div.wrap {
	margin-left: 1.8em;
	white-space: nowrap;
}

.box_voice .box_ttl p.name,
#voice_summary ul p.name {
	font-size: 2.0rem;
	display: inline-flex;
	align-items: baseline;
	/* align-items: end; */
	line-height: 1;
	font-weight: 500;
}

.box_voice .box_ttl p.name span.initial,
#voice_summary ul p.name span.initial {
	font-family: "Roboto", sans-serif;
	font-size: 4.8rem;
	margin-inline: 0.1em;
	transform: translateY(.05em);
	font-weight: 400;
}

.box_voice .box_ttl p.name span.suffix,
#voice_summary ul p.name span.suffix {
	font-size: 1.4em;
}

.box_voice .box_ttl p.name+p,
#voice_summary ul p.name+p {
	font-size: 1.8rem;
}

.box_voice .box_ttl .box_comment,
#voice_summary ul .box_comment {
	display: flex;
	align-items: end;
	flex-wrap: wrap;
	gap: 16px;
	padding: 16px 0;
	font-size: 1.4rem;
	line-height: 1.6;
	margin-left: 16px;
}

.box_voice .box_ttl .box_comment img,
#voice_summary ul .box_comment img {
	width: 102px;
	height: 102px;
	flex-shrink: 0;
	object-fit: cover;
}

.box_voice .box_ttl .box_comment .text-bloc,
#voice_summary ul .box_comment .text-block {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.box_voice .box_ttl .box_comment p.comment,
#voice_summary ul .box_comment p.comment {
	font-size: 1.6rem;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
}

#voice_summary ul .more {
	margin-top: 8px;
	text-align: right;
}

#voice_summary ul .more a {
	color: #375a8c;
	font-size: 1.6rem;
	text-decoration: underline;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	position: relative;
	padding-left: 1em;
}

#voice_summary ul .more a:hover {
	opacity: 0.8;
}

#voice_summary ul .more a::before {
	content: '';
	margin-right: 4px;
	vertical-align: middle;
	background-image: url(/assets_common/icon_arrow_blue.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 0.8em;
	height: 0.8em;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0);
	transition: transform 0.2s ease;
}

#voice_summary ul .more a:hover::before {
	transform: translateY(-50%) translateX(2px);
}

/* #voice_summary ul {
	& li {
		background-color: #EDF7FD;
		border-radius: 8px;
		display: flex;
		align-items: center;
		height: 128px;
		padding: 16px 16px 10px 16px;
		box-sizing: border-box;
	}

	& li:not(:first-child) {
		margin-top: 24px;
	}

	& p.ttl {
		color: #00518E;
		font-size: 3.2rem;
		display: inline-flex;
		align-items: center;
		height: 100%;
		width: 124px;
		background-image: url(../img/tri_arrow.png);
		background-position: 100% 0;
		background-repeat: no-repeat;
		background-size: auto 100%;
		box-sizing: border-box;
		padding-right: 1.4em;
	}


	& p.ttl::after {
		counter-increment: voice_num_1 1;
		content: counter(voice_num_1) " ";
		display: inline-block;
		font-size: 1.6em;
		font-family: "Roboto", sans-serif;
		font-weight: 100;
		margin-left: 0.1em;
		position: relative;
		bottom: 0.0em;

	}

	& div.wrap {
		margin-left: 2.4em;
		white-space: nowrap;
	}

	& p.name {
		font-size: 2.0rem;
		display: inline-fle;
		align-items: end;
		line-height: 1;
	}

	& p.name span.initial {
		font-family: "Roboto", sans-serif;
		font-size: 4.8rem;
	}

	& p.name span.suffix {
		font-size: 1.4em;
	}

	& p.name+p {
		font-size: 1.8rem;
	}


	& .box_comment {
		display: flex;
		align-items: end;
		flex-wrap: wrap;
		gap: 16px;
		padding: 16px 0;
		font-size: 1.4rem;
		line-height: 1.6;
		margin-left: 16px;

		& img {
			width: 102px;
			height: 102px;
			flex-shrink: 0;
			object-fit: cover;
		}

		& .text-block {
			flex: 1;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
		}

		& p.comment {
			font-size: 1.6rem;
			margin: 0;
			flex: 1;
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 2;
			overflow: hidden;
			word-break: break-word;
		}

		& .more {
			margin-top: 8px;
			text-align: right;
		}

		& .more a {
			color: #375a8c;
			font-size: 1.6rem;
			text-decoration: underline;
			transition: 0.3s;
			display: inline-flex;
			align-items: center;

		}

		& .more a:hover {
			opacity: 0.8;
		}

		& .more a::before {
			content: '';
			margin-right: 4px;
			vertical-align: middle;
			background-image: url(/assets_common/icon_arrow_blue.svg);
			background-position: 0 0;
			background-repeat: no-repeat;
			background-size: auto 100%;
			display: inline-block;
			width: 0.8em;
			height: 0.8em;
		}

		& .more a:hover::before {
			transform: translateX(2px);
			transition: transform 0.2s ease;
		}
	}


} */


/*  */

#voices {
	counter-reset: voice_num_2 0;
}

article.box_voice {
	background-color: #EDF7FD;
	border-radius: 8px;
	margin-top: 84px;
	padding-bottom: 80px;
}


.box_voice .box_ttl {
	position: relative;
	padding-bottom: 0;
	padding-top: 0;
	padding-left: 20px;
}

.box_voice .box_ttl::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 96px;
	right: 0;
	height: 2px;
	background-color: #fff;
}

.box_voice .box_ttl p.ttl::after {
	counter-increment: voice_num_2 1;
	content: counter(voice_num_2) " ";
}

.box_voice div.point {
	margin-left: 12px;

	& p {
		font-size: 2.4rem;
		color: #25489C;
		line-height: 1.4;
		position: relative;
		padding-left: 66px;
		font-feature-settings: "palt" 1;
		letter-spacing: 0.05em;
		font-weight: bold;
		font-weight: 600;
	}

	& p strong {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 56px;
		height: 56px;
		background-image: url(../img/icon_point.svg);
		background-repeat: no-repeat;
		background-size: contain;
		text-indent: -9999px;
		overflow: hidden;
		display: inline-block;
	}

}

/*  */


div.voice_bubble {

	width: 1010px;
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 50px;

	& img {
		width: 142px;
		height: 142px;
	}

	& p {
		font-size: 2.0rem;
		font-feature-settings: "palt" 1;
		letter-spacing: 0.05em;
		font-weight: bold;
		font-weight: 500;
	}

	& p:not(:first-child) {
		margin-top: 0.8em;
	}

	& .speech_bubble {
		max-width: 830px;
		position: relative;
		background: #F9F7E5;
		border-radius: 8px;
		padding: 24px;
		/* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
		filter: drop-shadow(0px 2px 4px rgba(66, 81, 117, 0.2));
		border: 8px solid #ffffff;
		box-sizing: border-box;
		z-index: 1;
	}

	& .speech_bubble::before {
		content: "";
		position: absolute;
		top: 44px;
		left: -46px;
		background-image: url(../img/bubble_bg.svg);
		background-position: 0 0;
		background-repeat: no-repeat;
		background-size: 100% auto;
		width: 42px;
		height: 49px;


		/* width: 0;
		height: 0;
		border-top: 20px solid transparent;
		border-bottom: 20px solid transparent;
		border-right: 38px solid #fff;
		filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.05));
		filter: drop-shadow(0px 2px 4px rgba(66, 81, 117, 0.2));
		z-index: -1; */
	}
}

/*  */

.voice_staff_comment {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-radius: 12px;
	margin: 64px 0;
	position: relative;
	padding-left: 32px;
	padding-right: 64px;
	position: relative;
}

.voice_staff_comment:last-child {
	margin-bottom: 0;
}

.voice_staff_comment::after {
	content: "";
	position: absolute;
	top: 44px;
	left: -40px;
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 38px solid #fff;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.05));
}

/* 左側のスタッフ情報 */
.staff_info {
	flex: 0 0 130px;
	text-align: center;
	order: 1;
	position: relative;
	z-index: 99;
}

.staff_info::before {
	content: "";
	position: absolute;
	top: 44px;
	left: -47px;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 34px solid #fff;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.05));
	z-index: 999;
}


.staff_photo {
	width: 130px;
	height: 130px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

	border: 2.5px solid #4A72A2;
	border-radius: 50%;

}

.staff_meta {}

.staff_name {
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: center;
}

.staff_name span {
	font-size: 1.8rem;
}

/* コメントエリア */

.staff_comment {
	order: 0;
	width: 830px;
	padding: 32px 32px 48px;
	gap: 32px;
	background: #FFFFFF;
	border-radius: 8px;
	filter: drop-shadow(0px 2px 4px rgba(66, 81, 117, 0.2));
	box-sizing: border-box;
	position: relative;
}

/* .staff_comment::after {
	content: "";
	position: absolute;
	top: 44px;
	right: -30px;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 34px solid #fff;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.05));
} */

.staff_label {
	font-family: "Roboto", sans-serif;
	background-color: var(--sanei-green-dark);
	color: white;
	font-size: 1.4rem;
	font-weight: 400;
	padding: 6px 12px;
	margin-bottom: 4px;
	display: inline-flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: -1em;
	right: 38px;
}

.staff_label::before {
	content: 'chat_bubble';
	font-family: "Material Symbols Outlined";
	font-size: 1.2rem;
	color: #fff;
	position: static;
	display: inline-block;
	margin-right: 0.2em;
	font-variation-settings: 'FILL' 1;
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}

.staff_comment p {
	/* margin-bottom: 16px; */
	font-size: 1.6rem;
	line-height: 1.7;
}

.staff_comment p:not(:first-of-type) {
	margin-top: 1em;
}

.staff_comment p+p {
	margin-top: 0.4em;
}

.staff_comment figure {
	margin: 40px auto;
	text-align: center;
	max-width: 500px;
}

.staff_comment figure.fig_wide {
	max-width: initial;
	width: 90%;
	margin-top: 60px;

	& figcaption {
		text-align: center;
	}
}

.photo_pair {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.photo_pair figure {
	width: 348px;
	/* flex: 1 1 348px; */
	margin: 0 0 30px 0;
	max-width: initial;
}

.photo_pair img {
	width: 100%;
	height: auto;
	display: block;
}

.photo_pair figcaption {
	font-size: 1.4rem;
	margin-top: 8px;
	line-height: 1.6;
}

/*  */

.staff_comment img {
	max-width: 100%;
	height: auto;
	/* border-radius: 8px; */
	/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

.staff_comment figcaption {
	font-size: 1.4rem;
	color: #555;
	margin-top: 6px;
	line-height: 1.5;
}

/*  */

div.box_inq_buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 32px;
	margin-top: 64px;

	& p.btn_a_red {
		margin-inline: 0;
		margin-top: 0;
		font-size: 1.8rem;
	}

}

p.btn_a_menu_mng {
	font-size: 1.8rem;

	& a {
		background-color: #fff;
		border: var(--sanei-green-dark) solid 2px;
		color: var(--sanei-green-dark);
		padding: 1.3em 2.2em 1.4em;
	}
}

/*  */

div.staff_comment {
	& h3 {
		font-size: 1.8rem;
		font-weight: 700;
		margin-top: 1.8em;
	}

	& h4 {
		font-size: 1.8rem;
		font-weight: 700;
		margin-top: 1.8em;
	}

	& h4::before {
		content: '■';
		color: var(--sanei-green-dark);
	}

	& h4+p:not(:first-of-type) {
		margin-top: 0.6em;
	}

}

#reno_flow {

	& figure {
		max-width: none;
		margin-top: 0;
	}

	& img {
		width: 100%;
	}
}

#reno_slider {

	& p.note {
		color: #777777;
		font-size: 1.4rem;
		text-align: right;
	}

	& div.reno_slider_main {
		margin-top: 22px;
		width: 640px;
		margin-inline: auto;
		/* overflow: visible; */
	}

	& div.swiper_wrap {
		/* width: 100%;
		overflow: clip; */
	}

	& .reno_slider_main .swiper-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	& .reno_slider_thumb {
		width: 480px;
		margin-top: 20px;
		height: 70px;
		padding-bottom: 5px;
	}

	& .reno_slider_thumb .swiper-slide {
		/* width: 120px; */
		width: calc(100% / 5);
		opacity: 0.4;
		cursor: pointer;
		position: relative;
		padding-bottom: 5px;
	}

	& .reno_slider_thumb .swiper-slide-thumb-active {
		opacity: 1;
	}

	& .reno_slider_thumb .swiper-slide-thumb-active::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: var(--sanei-green-dark);
	}

	& .reno_slider_thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/*  */

.slider_wrapper {
	width: 640px;
	margin-inline: auto;
	position: relative;
}

.slider_buttons {
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 10;
	pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
	pointer-events: all;
	width: 42px;
	height: 42px;
	background-color: #12BFE2;
	border-radius: 50%;
	color: #fff;
	/* display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 18px;
	z-index: 10; */
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	background-color: #aaa;
	opacity: 1;
}

/* カスタム矢印（テキストアイコンを上書き） */
.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 18px;
	font-weight: bold;
	color: white;
}

/* ボタン位置（中央寄せ） */
.swiper-button-prev {
	left: -21px;
}

.swiper-button-next {
	right: -21px;
}

/*  */

section.table {
	/* width: 90%; */
	width: 698px;
	margin-inline: auto;
	margin-top: 40px;

	& h5 {
		font-size: 1.8em;
		font-weight: 600;
	}

	& figure {
		margin-top: 10px;
		display: block;
		max-width: none;
	}

	& figure img {
		width: 100%;
		image-rendering: -webkit-optimize-contrast;
	}

	/* & table {
		width: 100%;
		border-collapse: collapse;
		margin-top: 1em;
	}

	& th,
	& td {
		border: 1px solid #ccc;
		padding: 0.8em;
		vertical-align: top;
		text-align: left;

		font-size: 1.6rem;
		font-weight: 700;
		text-align: center;
		vertical-align: middle;
	}

	& thead th {
		text-align: center;
	}

	& tbody th {
		white-space: nowrap;

	}

	& strong {
		font-size: 1.8em;
	}

	& sup {
		font-size: 0.8em;
		vertical-align: super;
		margin-left: 0.2em;
	}

	& del {} */

}

.staff_comment div.note {
	margin-top: 2em;

	& p {
		padding-left: 1em;
		text-indent: -1em;
		margin-top: 0.6em;
	}
}


/*  */

@media screen and (max-width: 768px) {

	body#for_owners.voice main {
		padding-top: 0;
		width: 100%;
		margin-top: 6vw;
	}

	body.voice div#page_kv {
		width: 90vw;
		height: auto;
		flex-direction: column;
		flex-wrap: nowrap;

		& figure {
			width: 100%;
			border-radius: 0 0 2.5vw 2.5vw;
			order: 1;
		}

		& .inner_text {
			margin-left: 0;
			order: 0;
			padding: 5vw 4vw 7vw;
		}

		& h2+p {
			font-size: 3.125vw;
			/* 10px */
			font-size: 3.75vw;
			/* 12px */
			font-size: 3.4375vw;
			/* 11px */
		}

		& h2+p br {
			display: none;
		}

	}

	#page_kv::after {
		width: 20vw;
		height: 20vw;
		top: 30vw;
		right: 2vw;
	}

	/*  */

	#voices {
		overflow-x: hidden;
	}

	#voice_summary {
		margin-top: 8vw;
		width: 90%;
		margin-inline: auto;
	}

	#voices .box_voice,
	#voice_summary ul li {
		padding: 4vw 3vw 2vw;
		height: auto;
		align-items: flex-start;
		flex-direction: column;

		& .box_ttl {
			align-items: flex-start;
			flex-direction: column;
		}

		& .title_wrap {
			min-width: initial;
			min-width: none;
			width: 100%;
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-right: auto;
		}

		& p.ttl {
			font-size: 4.375vw;
			/* 14px */
			width: 14vw;
			flex: 0 0 14vw;
		}

		& p.ttl::after {
			font-size: 2em;
		}

		& p.ttl::before {
			width: 4vw;
			right: 0;
		}

		& div.wrap {
			padding-left: 15vw;
			position: relative;
			margin-left: 0;
			margin-right: auto;

			& img {
				width: 14vw;
				height: 14vw;
				position: absolute;
				left: 0;
				top: 50%;
				transform: translateY(-50%);
			}

			& p.name {
				font-size: 3.125vw;
				font-size: 3.75vw;
				/* 12px */
				font-size: 4.0625vw;
				/* 13px */

				& span.initial {
					font-size: 2em;
				}

				& span.suffix {
					font-size: 1em;
				}
			}

			& p.name+p {
				font-size: 2.5vw;
				/* 8px */
				font-size: 3.125vw;
				/* 10px */

				font-size: 3.0vw;
			}

		}

		& .more {
			margin-top: 0;
		}

		& .more a {
			font-size: 2.5vw;
			/* 8px */
			font-size: 3.125vw;
			/* 10px */
			white-space: nowrap;
		}

		& .box_comment {
			gap: 0;
			padding: 2em 0 1em;
			margin-left: 0;
			font-size: 2.5vw;

			& p.comment {
				font-size: 3.125vw;
				/* 10px */
			}
		}
	}

	/*  */

	#voices .box_voice {
		margin-top: 8vw;
		padding-top: 0;
		padding-bottom: 12vw;

		& .box_ttl {
			height: auto;
			padding-bottom: 6vw;
		}

		& .title_wrap {
			justify-content: flex-start;
			height: 16vw;

			& div.wrap {
				padding-left: 3vw;
				display: flex;
				justify-content: center;
				align-items: baseline;

				& p.name+p {
					margin-left: 1em;
				}
			}
		}

		& div.point {
			margin-left: 0;

			& p {
				font-size: 3.125vw;
				font-size: 3.4375vw;
				/* 11px */
				padding-left: 10vw;
			}

			& p br {
				display: none;
			}

			& p strong {
				width: 8vw;
				height: 8vw;
			}

		}

		& .box_ttl::after {
			width: 100vw;
			left: -4vw;
			bottom: 0;
		}

		div.voice_bubble {
			width: 100%;
			margin-top: 8vw;

			& img {
				width: 18vw;
				height: 18vw;
			}

			& .speech_bubble {
				max-width: none;
				border-radius: 2vw;
				padding: 1em;
				border-width: 0.4em;
				margin-left: 6vw;
			}

			& .speech_bubble::before {
				width: 5.4vw;
				height: 5vw;
				top: 4vw;
				left: -5.4vw;
				background-size: contain;

			}

			& p {
				font-size: 3.125vw;
				/* 10px */
				font-size: 3.4375vw;
				/* 11px */
			}

		}

		/*  */
	}

	/*  */

	.voice_staff_comment {
		margin: 8vw 0;
		padding-left: 0;
		padding-right: 0;
	}

	.staff_info {
		flex: 0 0 22vw;
	}

	.staff_info::before {
		border-top: 2vw solid transparent;
		border-bottom: 2vw solid transparent;
		border-left: 3.8vw solid #fff;
		left: -2.0vw;
		top: 6vw;
	}

	.staff_photo {
		width: 16vw;
		height: 16vw;
	}

	.staff_name {
		font-size: 2.5vw;
		/* 8px */
	}

	.staff_name span {
		font-size: 3.125vw;
	}

	div.staff_comment {
		width: 70vw;
		padding: 6vw 4vw 6vw;
	}

	/* div.staff_comment::after {
		border-top: 3vw solid transparent;
		border-bottom: 3vw solid transparent;
		border-left: 5vw solid #fff;
		right: -4.8vw;
		top: 6vw;
	} */

	.voice_staff_comment::after {
		display: none;
	}

	.staff_label {
		font-size: 2.2vw;
		padding: 0.4em 0.6em;
		right: 2em;
	}

	div.staff_comment p {
		font-size: 3.125vw;
		/* 10px */
		font-size: 3.4375vw;
		/* 11px */
	}

	div.staff_comment p:not(:first-of-type) {
		margin-top: 0.6em;
	}

	div.staff_comment figure {
		margin: 4vw auto;
		max-width: none;
	}

	div.staff_comment figure.fig_wide {
		width: 100%;
		margin-top: 6vw;
	}

	div.staff_comment .photo_pair {
		gap: 0;
		margin-top: 4vw;
	}

	div.staff_comment .photo_pair figure {
		width: 100%;
	}

	div.staff_comment .photo_pair figure:first-child {
		margin-bottom: 0;
	}

	div.staff_comment figcaption {
		font-size: 2.5vw;
		margin-top: 0.6em;
	}

	div.staff_comment h3 {
		font-size: 3.4375vw;
		/* 11px */
	}

	div.staff_comment h4 {
		font-size: 3.4375vw;
		/* 11px */
	}

	/*  */

	#reno_flow {
		& picture {
			margin-top: 4vw;
			margin-bottom: 0;
			display: block;
		}
	}

	/*  */

	.slider_wrapper {
		width: 100%;
	}

	.slider_buttons {
		display: none;
	}

	#reno_slider {
		& div.reno_slider_main {
			margin-top: 8vw;
			width: 100%;
		}

		& .reno_slider_thumb {
			width: 100%;
			margin-top: 2vw;
			height: calc(60vw * 0.1458333333333333);
			padding-bottom: 5px;
		}

		& p.note {
			font-size: 2.5vw;
			/* 8px */
		}
	}

	/*  */

	section.table {

		width: 100%;
		margin-top: 6vw;

		& h5 {
			font-size: 3.4375vw;
			/* 11px */
		}

		& figure {
			margin-top: 0.4vw;
		}

	}

	/*  */

	div.box_inq_buttons {
		margin-top: 12vw;
		flex-direction: column;
		gap: 6vw 0;
	}

	p.btn_a_menu_mng {
		font-size: 3.75vw;
		/* 12px */
	}

	div.box_inq_buttons {
		& p.btn_a_red {
			font-size: 3.75vw;
			/* 12px */
		}
	}
























	/*  */
}





















/*  */