
@charset "utf-8";

/*------------------------------------------ 

	employees__list

-------------------------------------------- */
.employees__list > li {
	background: #fff;
	border-radius: .8em;
	display: grid;
	gap: 0;
}
.employees__list > li + li {
	margin-top: 4rem;
}
.employees__list > li .txtbox {
	padding: 3rem;
}
.employees__list > li .txtbox .name__box {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px var(--color40) solid;
}

.employees__list > li .imgbox img{
	border-radius: .8em .8em 0 0;
}

@media screen and (min-width: 1024px) {
	.employees__list > li {
		grid-template-columns: 1fr 500px; /*repeat(2, 1fr);*/
	}
	.employees__list > li .imgbox {
		-webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
		clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	.employees__list > li .imgbox {
		order: 1;
	}
	.employees__list > li .imgbox img{
		border-radius: 0 .8em .8em 0;
		object-fit: cover;
		height: 100%;
		width: 100%;
	}
	.employees__list > li + li {
		margin-top: 80px;
	}
}



/* ----------------------------------------
	faq accordion
---------------------------------------- */
@media screen and (max-width: 1023px) {
	.faq > dd img{
		height: auto;
	}
}

.faq > dt {
	position: relative;
	margin-top: 2rem;
	padding: .8em 3.6rem .8em 4rem;
	font-size: 1.7rem;
	line-height: 1.4;
	border-bottom: 1px solid #000;
	cursor: pointer;
}
.faq > dt::before {
	content: "Q";
	position: absolute;
	top: .8rem;
	left: .5rem;
	font-size: 30px;
	color: #568383;
}
.faq > dt::after {
	content: "\E90c";
	position: absolute;
	top: 50%;
	right: .8rem;
	transform: translateY(-50%);
	font-family: HPIcons;
}
.faq > dt.open::after {
	content: "\E90b";
}
.faq > dd {
	background: #fff;
	display: none;
	padding: 2rem 1.6rem 2rem 4rem;
	position: relative;
}
.faq > dd::before {
	content: "A";
	position: absolute;
	top: .8rem;
	left: .8rem;
	font-size:30px;
	color: #ff5050;
}
@media screen and (min-width: 768px) {
	.faq > dt {
		padding: 20px 60px;
	}
	.faq > dd {
		padding: 40px 60px;
	}
	.faq > dt::before {
		transform: translateY(-50%);
		top: 50%;
		left: 12px;
		font-size: 40px;
	}
	.faq > dd::before {
		top: 20px;
		left: 15px;
		font-size:40px;
	}
}


@media screen and (min-width: 1024px) {
	.faq > dt {
		font-size: 23px;
	}
}


/*------------------------------------------------------
	employee_box
-----------------------------------------------------*/

.visid.no01 .employee_box > li:nth-child(1){
	display: none;
}
.visid.no02 .employee_box > li:nth-child(2){
	display: none;
}
.visid.no03 .employee_box > li:nth-child(3){
	display: none;
}
.visid.no04 .employee_box > li:nth-child(4){
	display: none;
}
.visid.no05 .employee_box > li:nth-child(5){
	display: none;
}

.employee_box p > span{
	font-size: 120%;
	line-height: 1.3;
}
.employee_box * + p{
	margin-top: 1em;
}
#visid .employee_box p + p{
	margin-top: .5rem;
}

.employee_box{
    display: grid;
    gap: 40px 20px;
	padding: 3rem 0;
}

@media screen and (min-width: 480px) {
	.employee_box{
	    grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (min-width: 768px) {
	.employee_box{
	    grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (min-width: 1280px) {
	.employee_box{
		padding: 30px 0 40px;
	    grid-template-columns: repeat(4, 1fr);
	}
}
