@charset "utf-8";

#staffvoice {
	/* background: #fff; */
}
#staffvoice .tab{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
	margin: 0 auto 20px;
	max-width: var(--flex-90);
}
#staffvoice .tab a{
	background: var(--white);
	text-align: center;
	color: var(--black);
	border: none;
	text-decoration: none;
	padding: 8px 0 10px;
	border-radius: 5px;
	font-size: var(--font-em);
	box-shadow: 0 0 25px rgba(0,0,0,0.08);
}
#staffvoice .tab a.active {
	color: var(--white);
	background:var(--black);
}
#staffvoice .content {
	margin: 0 -2rem;
}
#staffvoice .content li{
	/* background: var(--white); */
	padding: 10px 0;
	/* box-shadow: 0 0 15px rgba(0,0,0,0.05); */
	border-radius: 5px;
	box-sizing: border-box;
	position: relative;
	margin: 0 0 10px;
	/* border: 1px solid var(--gray); */
}

#staffvoice .content li .contentbox {
	display: grid;
	grid-template-columns: 62% 37%;
	align-items: center;
	gap: 0;
	justify-content: space-between;
	padding: 0 0 10px 20px;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid var(--lightgray);
	margin: 0 0 10px;
}
#staffvoice .content li .contentbox:before {
	/* content:""; */
	position: absolute;
	background: var(--lightgray);
	height: 15%;
	width: 100%;
	bottom: 30%;
	z-index: 0;
	left: 0;
	right: 0;
}
#staffvoice .content li .contentbox dl{
	padding: 0;
	position: relative;
	margin: -5% auto 0;
}
#staffvoice .content li .contentbox dt{
	font-weight: 600;
	font-size: var(--font-h6);
}

#staffvoice .content li .contentbox dd p {
	font-size: var(--font-em);
	letter-spacing: 0;
}
#staffvoice .content li .contentbox figure{
	position: relative;
	margin: 0;
	width: 100%;
	height: 100%;
	border-radius: 100px 0 0 100px;
	overflow: hidden;
}
#staffvoice .content li .contentbox figure img {
	width:100%;
}

#staffvoice .content li:nth-child(2n) .contentbox {
	grid-template-columns: 37% 57%;
	padding: 0 30px 10px 0;
}
#staffvoice .content li:nth-child(2n) .contentbox dl {order: 2;}

#staffvoice .content li:nth-child(2n) .contentbox figure {
	order: 1;
	border-radius: 0 100px 100px 0;
}
#staffvoice .content li:nth-child(2n) .button {
	margin: -13% 0 0 59%;
}

#staffvoice .interview {
	position: relative;
	padding: 0 20px;
}

#staffvoice .button {
	width: 30px;
	height: 30px;
	border: 1px solid var(--black);
	max-width: var(--flex-100);
	border-radius: 100px;
	position: relative;
	margin: -13% 0 0 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
#staffvoice .button i{
	transition: .3s;
}
#staffvoice .button.active {
	background: var(--black);

}
#staffvoice .button.active i {
	transition: .3s;
	color: var(--white);
	transform: rotate(180deg);
}

#staffvoice .title{
	/* padding: 10px 20px; */
	font-size: var(--font-h6););
	line-height: var(--lh-sm);
	font-weight: 500;
	margin: 10px 0;
	width: 95%;
}
#staffvoice .interview .honbun{
	padding: 30px;
	font-size: var(--font-h6);
	line-height: var(--lh-md);
	background: #fff;
	border-radius: 10px;
	margin: 30px 0 0;
}
#staffvoice .honbun.active {
	display: block;
}