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

/*
=========================================
fade-in animation
=========================================
*/

/*fadein*/
.fade-in{
	opacity: 0;
	transition: opacity 1s ease, transform 1s ease;
}

/*fadein up*/
.fade-in-up{
	transform: translateY(60px);
}

.fade-in-up.show{
	opacity: 1;
	transform: translateY(0);
}

/*fadein left*/
.fade-in-left{
	transform: translateX(-60px);
}

.fade-in-left.show{
	opacity: 1;
	transform: translateX(0);
}

/*fadein right*/
.fade-in-right{
	transform: translateX(60px);
}

.fade-in-right.show{
	opacity: 1;
	transform: translateX(0);
}

/*
=========================================
Original Layout
=========================================
*/

.header__inner{
	position: relative;
}
.header__inner .header__guide{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(1.0rem, calc(0.789rem + 0.563vw), 1.6rem);
	line-height: 1.4;
	text-align: center;
}
@media (max-width: 767px){
	.header__inner .header__guide{
		line-height: 1.1;
	}
}
.header__logo{
	max-width: clamp(9.5rem, 20vw, 22.0rem);
}

h3{
	font-family: "ryo-gothic-plusn", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.about-effect h3,.about-detail h3,.about-voice h3{
	color: #3a4e75;
	font-size: 2.3rem;
	text-align: center;
	margin-bottom: 3.5rem;
	display: flex;
	align-items: center;
	position: relative;
}
@media (max-width: 767px){
	.about-effect h3,.about-detail h3,.about-voice h3{
		font-size: 2.0rem;
	}
}
.about-effect h3::before,.about-detail h3::before,.about-voice h3::before{
	display: inline-block;
	background-image: url("../img/about/blue_waves.gif");
	background-size: contain;
	background-repeat: no-repeat;
	padding-left: 6.0rem;
	font-size: 1.6rem;
	color: #4b4b4b;
	font-family: "abril-titling-condensed", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 5.5rem;
}
@media (max-width: 767px){
	.about-effect h3::before,.about-detail h3::before,.about-voice h3::before{
		padding: 0rem 1rem;
		background-size: cover;
		background-position: center;
		font-size: 1.4rem;
		line-height: 9.5rem;
	}
}
.about-heading{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 767px){
	.about-heading{
		width: 100%;
	}
}
section:not(.order){
	font-weight: 300;
	font-size: var(--font-lower-base);
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: 14.0rem;
}
@media (max-width: 767px){
	section:not(.order){
		margin-bottom: 8.0rem;
	}
}

/*
=========================================
page-heading-img
=========================================
*/
.page-heading-img{
	margin-bottom: 5.2rem;
}
.page-heading-img h2{
	position: relative;
	aspect-ratio: 2000 / 1301;
	max-width: 100%;
}
.page-heading-img-kv{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-heading-img-txt{
	position: absolute;
	top: 50%;
	right: 11%;
	transform: translateY(-50%);
	max-width: 39.5%;
	height: auto;
}
@media (max-width: 767px){
	.page-heading-img-txt{
		right: 5%;
		max-width: 52%;
	}
}

/*
=========================================
about-message
=========================================
*/
.about-message__intro{
	position: relative;
	margin-bottom: clamp(8.2rem, 11.4vw, 16.4rem);
}
.about-message__intro::after{
	position: absolute;
	content: '';
	display: inline-block;
	width: 33.2%;
	height: 134.1%;
	background-image: url("../img/about/about_accent_01.png");
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 0;
	right: 0;
	transform: translate(-30%, 74%);
}
@media (max-width: 767px){
	.about-message__intro::after{
		content: none;
	}
}
.about-message h3,.about-message h4{
	font-size: 2.4rem;
	line-height: 2;
	letter-spacing: 0.12em;
}
@media (max-width: 767px){
	.about-message h3,.about-message h4{
		font-size: 2.0rem;
	}
}
.about-message__haeding{
	margin-bottom: 3.0rem;
}
.about-message__intro p{
	line-height: 1.765;
}
.about-message__intro p:first-of-type{
	margin-bottom: 4.5rem;
}


.about-message__concept,.about-message__philosophy{
	padding: 0 3.6rem;
}
@media (max-width: 767px){
	.about-message__concept,.about-message__philosophy{
		padding: 0;
	}
}

.about-message__concept{
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10.0rem;
	margin-bottom: clamp(10.0rem, 13.9vw, 20.0rem);
}
@media (max-width: 767px){
	.about-message__concept{
		flex-direction: column;
		row-gap: 3.0rem;
	}
}
.about-message__concept-img{
	position: relative;
	z-index: -1;
	flex-shrink: 1;
}
.about-message__concept-img img{
	max-width: 33.5rem;
	height: auto;
}
@media (max-width: 767px){
	.about-message__concept-img img{
		max-width: initial;
		width: 60%;
		margin-inline: auto;
	}
}
.about-message__concept-img::after{
	position: absolute;
	content: '';
	display: inline-block;
	width: 141.5%;
	height: 71.1%;
	bottom: 0;
	left: 0;
	background-image: url("../img/about/about_accent_02.png");
	background-size: contain;
	background-repeat: no-repeat;
	transform: translate(-81%, 76%)
}
@media (max-width: 767px){
	.about-message__concept-img::after{
		content: none;
	}
}
.about-message__concept-txt{
	flex-shrink: 1;
}
.about-message__concept-txt h4{
	margin-bottom: 7.2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4.8rem;
}
@media (max-width: 767px){
	.about-message__concept-txt h4{
		margin-bottom: 4.0rem;
	}
}
.about-message__concept-txt span,.about-message__philosophy-txt span{
	display: block;
	position: relative;
	text-align: center;
}
.about-message__caption{
	font-family: "abril-titling-condensed", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 2.1rem;
	letter-spacing: 0.03em;
}
.about-message__caption::after{
	position: absolute;
	content: "";
	bottom: -14px;
	left: 0;
	right: 0;
	background-color: #4b4b4b;
	margin-inline: auto;
	height: 2px;
	width: 42px;
}
.about-message__concept-txt .vertical{
	writing-mode: vertical-rl;
	text-align: left;
	margin-inline: auto; 
}


.about-message__philosophy{
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 3.8rem;
}
@media (max-width: 767px){
	.about-message__philosophy{
		flex-direction: column-reverse;
		row-gap: 3.0rem;
	}
}
.about-message__philosophy-img{
	flex: 1 1 44%;
	z-index: -2;
}
.about-message__philosophy-img img{
	max-width: 38.6rem;
	height: auto;
}
@media (max-width: 767px){
	.about-message__philosophy img{
		max-width: initial;
		width: 70%;
		margin-inline: auto;
	}
}
.about-message__philosophy-txt{
	flex: 1 1 56%;
}
.about-message__philosophy-txt h4{
	margin-bottom: 2.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.0rem;
}
.about-message__philosophy-txt p{
	text-align: justify;
}
@media (max-width: 767px){
	.about-message__philosophy-txt p{
		width: 90%;
		margin-inline: auto;
	}
}
/*
=========================================
about-effect
=========================================
*/
.about-effect{
	overflow-x: hidden;
}
@media (max-width: 767px){
	.about-effect h3{
		margin-bottom: 7.0rem;
		padding-top: 2.0rem;
	}
}
.about-effect h3::before{
	content: "Effect";
}

.about-effect h3 .about-heading{
	width: 100%;
}
.about-effect h3 .about-heading span{
	font-family: futura-pt-condensed, sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 5.5rem;
	line-height: 1;
	vertical-align: middle;
	padding: 0 0.1em;
}
@media (max-width: 767px){
	.about-effect h3 .about-heading span{
		font-size: 4.8rem;
	}
}


.about-effect__link{
	display: flex;
	margin-bottom: 5.4rem;
	overflow-x: auto;
}
@media (max-width: 767px){
	.about-effect__link{
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		gap: 1.0rem;
		padding: 0 2.0rem;
	}
}
.about-effect__link li{
	background-size: cover;
	aspect-ratio: 2 / 3;
	width: 33.33333rem;
}
@media (max-width: 767px){
	.about-effect__link li{
		flex: 0 0 80%;
		scroll-snap-align: center;
		background-size: cover;
		background-position: center;
		position: relative;
		aspect-ratio: auto;
		width: 100%;
		height: auto;
	}
}
.about-effect__link li.about-effect__01{
	background-image: url("../img/about/effect_img_01.jpg");
}
.about-effect__link li.about-effect__01:hover{
	background-image: url("../img/about/effect_img_01_hover.jpg");
	transition: 0.3s;
}
.about-effect__link li.about-effect__02{
	background-image: url("../img/about/effect_img_02.jpg");
}
.about-effect__link li.about-effect__02:hover{
	background-image: url("../img/about/effect_img_02_hover.jpg");
	transition: 0.3s;
}
.about-effect__link li.about-effect__03{
	background-image: url("../img/about/effect_img_03.jpg");
}
.about-effect__link li.about-effect__03:hover{
	background-image: url("../img/about/effect_img_03_hover.jpg");
	transition: 0.3s;
}
.about-effect__link li a{
	display: flex;
	flex-direction: column;
	row-gap: 14.0rem;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 2.0rem 2.5rem;
}
@media (max-width: 899px){
	.about-effect__link li a{
		row-gap: 8.0rem;
	}
}
@media (max-width: 767px){
	.about-effect__link li a{
		width: 100%;
		height: auto;
	}
}
.about-effect__link .effect__num{
	font-family: futura-pt-condensed, sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 16.0rem;
	color: #fff;
	line-height: 1;
}
.about-effect__link li:hover .effect__num{
	color: #000;
}
.about-effect__link .effect__title{
	display: inline-block;
	font-size: 1.7rem;
	font-weight: 500;
	border: 1px solid #fff;
	border-radius: 20px;
	color: #fff;
	padding: 0.1em 0.8em;
	letter-spacing: 0.01em;
}
.about-effect__link li:hover .effect__title{
	color: #4b4b4b;
	border-color: #4b4b4b;
}
.about-effect__link .about-effect__caption{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-family: "futura-pt", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.about-effect__link .about-effect__caption p{
	font-size: 1.0rem;
	color: #fff;
}
.about-effect__link li:hover .about-effect__caption p{
	color: #4b4b4b;
}
.about-effect__link .about-effect__caption img{
	width: auto;
	height: 4.5rem;
}
.about-effect__link .about-effect__03 .about-effect__caption img{
	max-width: 5.0rem;
	height: auto;
	margin-bottom: -1.0rem;
}


.about-effect__list{
	display: flex;
	flex-direction: column;
	row-gap: 6.0rem;
}

.about-effect__list li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 6.0rem;
}
@media (max-width: 767px){
	.about-effect__list li{
		flex-direction: column;
	}
}
.about-effect__list li:nth-child(even){
	flex-direction: row-reverse;
}
@media (max-width: 767px){
	.about-effect__list li:nth-child(even){
		flex-direction: column;
	}
}
.about-effect__txt{
	flex: 1 1 45%;
}
.about-effect__list li h4{
	display: inline-block;
	font-size: clamp(2.0rem, calc(1.647rem + 1.176vw), 2.4rem);
	color: var(--color-about-effect);
	border: solid 1px var(--color-about-effect);
	padding: .03em 1em;
	border-radius: 20px;
	margin-bottom: 3.0rem;
}
.about-effect__list .about-effect__summary{
	font-size: clamp(1.8rem, calc(1.529rem + 0.725vw), 2.1rem);
	margin-bottom: 3.0rem;
	font-weight: 400;
}
.about-effect__list .about-effect__02 .about-effect__detail{
	margin-bottom: 1.6rem;
}
.about-effect__img{
	flex: 1 1 55%;
}
.about-effect__img img{
	width: 100%;
	height: auto;
}
.about-effect__01 .about-effect__img{
	max-width: 54.8rem;
}
.about-effect__02 .about-effect__img{
	max-width: 46.5rem;
}
.about-effect__03 .about-effect__img{
	max-width: 43.6rem;
}
@media (max-width: 767px){
	.about-effect__01 .about-effect__img,.about-effect__02 .about-effect__img,.about-effect__03 .about-effect__img{
		max-width: initial;
		width: 100%;
		height: auto;
	}
}
.about-effect__03 .about-effect__img img{
	margin-bottom: 1.6rem;
}
.about-effect__03 .about-effect__img p{
	font-size: 1.1rem;
	color: var(--color-about-effect);
	font-weight: 500;
}
.about-effect__list .about-effect__detail{
	font-size: 1.3rem;
	text-align: justify;
}
@media (max-width: 767px){
	.about-effect__list .about-effect__detail{
		margin-bottom: 2.0rem;
	}
}
.about-effect__list .about-effect__thermography{
	font-size: 1.1rem;
	color: var(--color-about-effect);
	font-weight: 500;
}
@media (max-width: 767px){
	.about-effect__list .about-effect__thermography{
		margin-bottom: 2.0rem;
	}
}


/*
=========================================
about-detail
=========================================
*/
section.about-detail{
	margin-bottom: 0;
}
.about-detail h3::before{
	content: "Detail";
}
.about-detail .section-intro{
	margin-bottom: 3.6rem;
}

.about-detail__list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 1.0rem;
	row-gap: 4.0rem;
	margin-bottom: 10.0rem;
}
@media (max-width: 767px){
	.about-detail__list{
		flex-direction: column;
		flex-wrap: nowrap;
		margin-bottom: 6.0rem;
	}
}
.about-detail__list li{
	flex: 1 1 calc(25% - 1.0rem);
}
@media (max-width: 999px){
	.about-detail__list li{
		flex: 1 1 calc(50% - 1.0rem);
	}
}
@media (max-width: 767px){
	.about-detail__list li{
		flex: 1 1 100%;
	}
}
.about-detail__list li img{
	margin-bottom: 1.0rem;
}
@media (max-width: 999px){
	.about-detail__list li img{
		margin-bottom: .3rem;
		width: 80%;
		margin-inline: auto;
	}
}
@media (max-width: 767px){
	.about-detail__list li img{
		width: 70%;
	}
}
.about-detail__list li p{
	font-size: 1.3rem;
	text-align: center;
}


.about-detail-wrapper{
	position: relative;
	padding: 6.0rem 5.0rem;
}
.about-detail-wrapper::before{
	content: "";
	position:absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background-color: var(--color-drawer-hover);
	z-index: -1;
}
@media (max-width: 767px){
	.about-detail-wrapper{
		padding: 6.0rem 0;
	}
}

.about-detail__styling-copy{
	font-family: "fatfrank", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--color-drawer-hover);
	font-size: 6.5rem;
	line-height: 0.7;
}
@media (max-width: 999px){
	.about-detail__styling-copy{
		font-size: clamp(2.4rem, calc(-0.064rem + 6.57vw), 6.5rem);
	}
}
.about-detail__styling-copy span{
	font-size: 15.0rem;
}
@media (max-width: 999px){
	.about-detail__styling-copy span{
		font-size: clamp(5.0rem, calc(-1.01rem + 16.03vw), 15.0rem);
	}
}
.about-detail__styling-concept{
	color: #fff;
	font-size: 2.1rem;
	margin-bottom: 5.0rem;
}
@media (max-width: 767px){
	.about-detail__styling-concept{
		font-size: 1.8rem;
	}
}


/*styling-slider*/
.about-detail__styling-slider{
	position: relative;
	aspect-ratio: 1800 / 1100;
	max-width: 100%;
	margin-bottom: 4.0rem;
}
.about-detail__styling-slider .styling-slider-img{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.about-detail__styling-slider .styling-slider-img.active{
	opacity: 1;
	z-index: 1;
}

.about-detail__styling-slider .styling-caption{
	position: absolute;
	top: 34%;
	left: 5%;
	font-size: 1.2rem;
	text-align: left;
	line-height: 2.0;
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
@media (max-width: 899px){
	.about-detail__styling-slider .styling-caption{
		top: 30%;
		font-size: 1.0rem;
	}
}
@media (max-width: 599px){
	.about-detail__styling-slider .styling-caption{
		top: 27%;
		font-size: 0.7rem;
		line-height: 1.6;
		letter-spacing: 0.04em;
	}
}

.about-detail__styling-slider .styling-caption.show{
	opacity: 1;
	transform: translateX(0);
}

.about-detail__styling-slider .styling-caption img{
	height: 5.1rem;
	width: auto;
	margin-bottom: 1.8rem;
}
@media (max-width: 767px){
	.about-detail__styling-slider .styling-caption img{
		width: 30%;
		height: auto;
		margin-bottom: 1.2rem;
	}
}

.about-detail__styling-slider .styling-caption p:first-of-type{
	margin-bottom: 4.0rem;
}
@media (max-width: 767px){
	.about-detail__styling-slider .styling-caption p:first-of-type{
		margin-bottom: 1.5rem;
	}
}

/*styling-txt*/
.about-detail__styling-txt{
	margin-bottom: 6.0rem;
}
@media (max-width: 767px){
	.about-detail__styling-txt{
		text-align: left;
	}
}

/*products-link{*/
.about-detail__products-link{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 1.8rem;
	color: #627050;
	font-size: 1.8rem;
}
@media (max-width: 767px){
	.about-detail__products-link{
		justify-content: center;
	}
}
.about-detail__products-link .circle-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 9.5rem;
	height: 9.5rem;
	border-radius: 50%;
	background-color: var(--color-drawer-bg);
	transition: background 0.3s;
}
@media (max-width: 767px){
	.about-detail__products-link .circle-btn{
		width: 6.5rem;
		height: 6.5rem;
	}
}
.about-detail__products-link .circle-btn:hover{
	background-color: #627050;
}
.about-detail__products-link .circle-btn__arrow{
	display: inline-block;
	width: 2.2rem;
	height: 2.2rem;
	border-right: 6px solid #627050;
	border-bottom: 6px solid #627050;
	transform: rotate(-45deg) translateX(-3px) translateY(-1px);
	transition: border-color 0.3s;
}
@media (max-width: 767px){
	.about-detail__products-link .circle-btn__arrow{
		width: 1.6rem;
		height: 1.6rem;
		border-right: 4px solid #627050;
		border-bottom: 4px solid #627050;
	}
}
.about-detail__products-link:hover .circle-btn__arrow{
	border-color: var(--color-drawer-bg);
}


/*
=========================================
about-voice
=========================================
*/
section.about-voice{
	position: relative;
	padding-top: 4.8rem;
	padding-bottom: 7.0rem;
}
.about-voice::before{
	content: "";
	position:absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background-color: var(--color-drawer-bg);
	z-index: -1;
}
.about-voice h3::before{
	content: "Voice";
}
.about-voice>p{
	margin-bottom: 5.5rem;
}
@media (max-width: 767px){
	.about-voice>p{
		text-align: justify;
	}
}

/*graph*/
.about-voice__realization{
	position: relative;
	margin-bottom: 10.0rem;
}
.about-voice__graph{
	padding: 0 5.2rem;
}
@media (max-width: 767px){
	.about-voice__graph{
		padding: 0;
		display: flex;
		flex-direction: column-reverse;
	}
}
.about-voice__graph img.graph{
	width: 39.8rem;
	height: auto;
	margin-inline: auto;
	padding-top: 5.0rem;
}
@media (max-width: 767px){
	.about-voice__graph img.graph{
		width: 80%;
		padding-top: 1.0rem;
		padding-bottom: 2.0rem;
		margin-top: -4.0rem;
	}
}
.about-voice__graph .realization-percent{
	position: absolute;
	top: 0;
	right: 8%;
	overflow-x: hidden;
}
@media (max-width: 767px){
	.about-voice__graph .realization-percent{
		position: relative;
		right: 0;
	}
}
.about-voice__graph .realization-percent img.bubble{
	position: relative;
	width: 30.0rem;
	height: auto;
}
@media (max-width: 767px){
	.about-voice__graph .realization-percent img.bubble{
		width: 55%;
		margin-left: auto;
	}
}
@media (max-width: 599px){
	.about-voice__graph .realization-percent img.bubble{
		width: 80%;
	}
}
.about-voice__graph .realization-percent div.bubble-txt{
	position: absolute;
	width: 80%;
	top: 32%;
	left: 50%;
	transform: translate(-50%,-30%);
	margin-left: 0.8rem;
}
@media (max-width: 767px){
	.about-voice__graph .realization-percent div.bubble-txt{
		transform: translate(-20%,-30%);
		margin-left: 0;
	}
}
@media (max-width: 599px){
	.about-voice__graph .realization-percent div.bubble-txt{
		transform: translate(-34%,-30%);
	}
}
.about-voice .label{
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 1.2;
}
.about-voice .label img{
	max-width: 8.0rem;
	height: auto;
	margin: 0 auto 0.5rem;
}
.about-voice .percent{
	font-size: 4.8rem;
	color: var(--color-about-effect);
	font-weight: 900;
}
@media (max-width: 414px){
	.about-voice .percent{
		font-size: 3.6rem;
	}
}
.about-voice .percent span{
	font-family: "fatfrank", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15.0rem;
	line-height: 0.8;
	margin-right: -0.3rem;
}
@media (max-width: 414px){
	.about-voice .percent span{
		font-size: 12.0rem;
	}
}
.about-voice .percent img{
	display: inline-block;
	width: 20%;
	height: auto;
}
@media (max-width: 767px){
	.about-voice .percent img{
		width: 12%;
	}
}
@media (max-width: 599px){
	.about-voice .percent img{
		width: 18%;
	}
}

/*graph-comments*/
@media (max-width: 767px){
	.about-voice__graph-comments{
		display: flex;
		flex-direction: column;
		row-gap: 1.4rem;
		width: 100%;
		text-align: center;
		margin-top: -11.0rem;
	}
}
.about-voice__graph-comments .comment{
	position: absolute;
	font-size: 1.6rem;
	font-weight: 600;
	background-color: #fff;
	border: solid 1px #3c3c3c;
	border-radius: 10px;
	padding: 0.2em 0.5em;
	opacity: 0;
	transform: translateX(-60px);
}
@media (max-width: 767px){
	.about-voice__graph-comments .comment{
		position: static;
		font-size: 1.4rem;
		width: 80%;
	}
	.about-voice__graph-comments .comment:nth-child(odd){
		margin-right: auto;
	}
	.about-voice__graph-comments .comment:nth-child(even){
		margin-left: auto;
	}
	.about-voice__graph-comments .comment.c-left-bottom{
		width: 90%;
	}
}
.about-voice__graph-comments .c-left-top{
	top: 10%;
	left: 14%;
}
.about-voice__graph-comments .c-left-mid01{
	top: 27%;
	left: 8%;
}
.about-voice__graph-comments .c-left-mid02{
	top: 44%;
	left: 5%;
}
.about-voice__graph-comments .c-left-mid03{
	top: 61%;
	left: 6%;
}
.about-voice__graph-comments .c-left-mid04{
	top: 78%;
	left: 10%;
}
.about-voice__graph-comments .c-left-bottom{
	top: 95%;
	left: 4%;
}
.about-voice__graph-comments .c-right-top{
	top: 65%;
	right: 11%;
}
.about-voice__graph-comments .c-right-mid{
	top: 80%;
	right: 5%;
}
.about-voice__graph-comments .c-right-bottom{
	top: 95%;
	right: 9%;
}

/*fadein*/
.about-voice__realization.inview .c-left-top{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: .15s;
}
.about-voice__realization.inview .c-left-mid01{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: .35s;
}
.about-voice__realization.inview .c-left-mid02{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: .55s;
}
.about-voice__realization.inview .c-left-mid03{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: .75s;
}
.about-voice__realization.inview .c-left-mid04{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: .95s;
}
.about-voice__realization.inview .c-left-bottom{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: 1.15s;
}
.about-voice__realization.inview .c-right-top{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: 1.35s;
}
.about-voice__realization.inview .c-right-mid{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: 1.55s;
}
.about-voice__realization.inview .c-right-bottom{
	animation: fadeInLeft .7s ease forwards;
	animation-delay: 1.75s;
}

@keyframes fadeInLeft{
	from{
		opacity: 0;
		transform: translateX(-60px);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}


/*recommend*/
.about-voice__recommend{
	display: flex;
	align-items: center;
}
@media (max-width: 767px){
	.about-voice__recommend{
		flex-direction: column;
		row-gap: 4.0rem;
	}
}
.about-voice__recommend .recommend-percent{
	width: 30%;
}
@media (max-width: 767px){
	.about-voice__recommend .recommend-percent{
		width: 100%;
	}
}
.about-voice__recommend .recommend-percent .label img{
	max-width: 6.7rem;
}
.about-voice__recommend .recommend-percent .percent span{
	font-size: 12.0rem;
	line-height: 1;
	margin-right: 0.6rem; 
}
.about-voice__recommend .recommend-percent .percent img{
	width: 16%;
}
@media (max-width: 767px){
	.about-voice__recommend .recommend-percent .percent img{
		width: 10%;
	}
}
@media (max-width: 599px){
	.about-voice__recommend .recommend-percent .percent img{
		width: 14%;
	}
}
.about-voice__recommend .loop-wrap{
	width: 70%;
	overflow-x: hidden;
	overflow-y: visible;
	position: relative;
	padding-top: 4.0rem
}
@media (max-width: 767px){
	.about-voice__recommend .loop-wrap{
		width: 100%;
	}
}
.about-voice__recommend .recommend-loop{
	display: inline-flex;
	column-gap: 2.6rem;
	animation: loop-scroll 30s linear infinite;
	animation-play-state: paused;
}
.recommend-loop.play{
	animation-play-state: running;
}
/*.recommend-loop:hover{
	animation-play-state: paused;
}*/

.about-voice__recommend .recommend-loop .recommend-comment{
	font-size: 1.3rem;
	font-weight: 500;
	background-color: var(--color-drawer-hover);
	padding: 6.0rem 1.6rem 1.2rem;
	width: 23.0rem;
	height: 23.0rem;
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
.about-voice__recommend .recommend-loop .recommend-comment div{
	text-align: right;
}
.about-voice__recommend .recommend-loop .recommend-comment img{
	position: absolute;
	top: -4.0rem;
	left: 50%;
	transform: translateX(-50%);
	width: 8.0rem;
	height: auto;
}

@keyframes loop-scroll{
	from{
		transform: translateX(10%);
	}
	to{
		transform: translateX(-40%);
	}
}

/*
=========================================
about-faq
=========================================
*/
section.about-faq{
	padding: 0 4.0rem;
	margin-bottom: 7.0rem;
}
@media (max-width: 767px){
	section.about-faq{
		padding: 0;
	}
}
.about-faq__heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4.5rem;
}
@media (max-width: 767px){
	.about-faq__heading{
		display: block;
	}
}
.about-faq__heading h3{
	font-size: 2.3rem;
}
@media (max-width: 767px){
	.about-faq__heading h3{
		margin-bottom: 1.0rem;
	}
}
.about-faq__heading img{
	max-width: 26.6rem;
	height: auto;
}
@media (max-width: 767px){
	.about-faq__heading img{
		margin-left: auto;
	}
}
.about-faq__list{
	overflow-x: hidden;
}
.about-faq__question{
	display: flex;
	column-gap: 1.2rem;
	align-items: center;
	color: var(--color-about-effect);
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.about-faq__question span{
	border: 1.5px solid var(--color-about-effect);
	border-radius: 20px;
	padding: .3em 1em;
}
.about-faq__question::before{
	content: '';
	width: 7.0rem;
	height: 7.0rem;
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}
.about-faq__question:nth-of-type(3n+1)::before{
	background-image: url("../img/about/icon_question01.png");
}
.about-faq__question:nth-of-type(3n+2)::before{
	background-image: url("../img/about/icon_question02.png");
}
.about-faq__question:nth-of-type(3n+3)::before{
	background-image: url("../img/about/icon_question03.png");
}

.about-faq__answer{
	display: flex;
	justify-content: flex-end;
	column-gap: 1.2rem;
	align-items: center;
	font-weight: 400;
	margin-bottom: 3.0rem;
}
.about-faq__answer span{
	max-width: 68.0rem;
	border: 1.5px solid #46dcc8;
	border-radius: 20px;
	padding: .5em 1em;
}
.about-faq__answer span a{
	color: #46dcc8;
	font-weight: 500;
}
.about-faq__answer span a:hover{
	text-decoration: underline;
	text-underline-offset: 0.3em;
}
.about-faq__answer::after{
	content: '';
	width: 7.0rem;
	height: 7.0rem;
	background-image: url("../img/about/icon_answer01.png");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}
.about-faq__answer:nth-of-type(even)::after{
	background-image: url("../img/about/icon_answer02.png");
}
