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

/*
	募集要項
-----------------------------------------------------------------------------------------------*/
#ctsWrapper.guidelinesPage{
	padding-bottom: 0;
}

/* ページタイトル
============================== */
.guidelinesPage #cmnTitWrapper .item{
	right: 90px;
	bottom: -60px;
}

/* table
============================== */
.guidelinesPage .bgOutGray{
	padding: 100px 0;
}
.guidelinesPage .titBaseL{
	text-align: center;
}


/*
	求める人物像
-----------------------------------------------------------------------------------------------*/
/* ページタイトル
============================== */
.messagePage #cmnTitWrapper .item{
	right: 70px;
	bottom: -60px;
}

/* 人物像
============================== */
.messagePage #listNumWrapper{
	margin-bottom: 80px;
}
.messagePage #listNumWrapper.bgOutGray{
	padding: 100px 0;
}

/* clm2Area */
.messagePage #listNumWrapper .clm2Area{
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
.messagePage #listNumWrapper .clm2Area .box{
	width: calc((100% - 60px)/2);
}
.messagePage #listNumWrapper .clm2Area .cmnListNum li{
	width: calc((100% - 30px)/2);
	min-height: 180px;
	color: #7f8dcc;
	font-size: 1.9rem;
}
.messagePage #listNumWrapper .clm2Area .box:last-of-type .cmnListNum li{
	color: var(--clrBase);
}
.messagePage #listNumWrapper .clm2Area .cmnListNum li::before{
	content: none;
}
.messagePage #listNumWrapper .clm2Area .num{
	display: none;
}

/* 担当者からのメッセージ
============================== */
/* titItalicM */
.messagePage #messageWrapper .titItalicM > *{
	margin-left: 0;
}
.messagePage #messageWrapper .titItalicM .en{
	text-indent: -1.1rem;
}
.messagePage #messageWrapper .titItalicM .jp{
	font-size: 3.8rem;
	margin-top: -10px;
}

/* messageBox */
.messagePage .messageBox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.messagePage .messageBox .txtArea{
	width: 630px;
}
.messagePage .messageBox .txt{
	text-align: justify;
}

/* name */
.messagePage .messageBox .name{
	text-align: right;
	font-size: 1.3rem;
	line-height: 150%;
}
.messagePage .messageBox .name span{
	display: block;
	font-size: 1.8rem;
}

/* anm */
.messagePage .messageBox{
	opacity: 1;
}
@media print, screen and (min-width:813px){
	.messagePage #messageWrapper .titItalicM.jsAnmStart{
		animation: anmFadeLeft 1s ease 0.5s forwards;
	}
	.messagePage .messageBox.jsAnmStart .txtArea{
		animation: anmFadeLeft 1s ease 0.5s forwards;
	}
	.messagePage .messageBox.jsAnmStart img{
		animation: anmFadeRight 1s ease 0.5s forwards;
	}
}


/*
	採用Q&A
-----------------------------------------------------------------------------------------------*/
#ctsWrapper.qaPage{
	padding-bottom: 0;
}

/* ページタイトル
============================== */
.qaPage #cmnTitWrapper .item{
	right: 85px;
	bottom: -35px;
}

/* Q&A
============================== */
.qaPage .bgOutGray{
	padding: 80px 0 100px 0;
}
.qaPage .titBaseL{
	text-align: center;
	margin-bottom: 30px;
}

/* listQA */
.listQA{
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
.listQA li{
	background-color: #fff;
	box-shadow: 7px 7px 5px rgb(000 000 000 / 5%);
	position: relative;
}

/* titQ */
.listQA .titQ{
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 150%;
	padding: 30px 60px 30px 75px;
	position: relative;
}
.listQA .titQ::before,
.listQA .titQ::after{
	display: block;
	position: absolute;
}
.listQA .titQ::before{
	content: "Q";
	background: var(--clrGrd);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 5rem;
	font-family: var(--fEn);
	font-weight: 100;
	font-style: italic;
	line-height: 80%;
	top: 26px;
	left: 30px;
}
.listQA .titQ::after{
	content: " ";
	border: 5px solid transparent;
	border-bottom: 8px solid transparent;
	border-top: 8px solid #333;
	top: calc(50% + 4px);
	right: 30px;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.listQA .titQ.close_btn::after{
	top: calc(50% - 4px);
	transform: translateY(-50%) rotate(180deg);
}
.listQA .titQ:hover{
	cursor: pointer;
}

/* txtA */
.listQA .txtA{
	text-align: justify;
	padding: 0 30px 30px 30px;
}
.listQA .txtA::after{
	content: " ";
	display: block;
	width: 114px;
	height: 56px;
	background: url("../images/item_recruit_qa_bird_pc.png") no-repeat top left / 100% auto;
	position: absolute;
	top: -15px;
	right: -15px;
	opacity: 0;
	transition: all 0.3s;
}
.listQA .txtA.open::after{
	opacity: 1;
}


@media screen and (max-width:812px){
	/*
		募集要項
	-----------------------------------------------------------------------------------------------*/
	/* ページタイトル
	============================== */
	.guidelinesPage #cmnTitWrapper .item{
		width: 90px;
		right: 40px;
		bottom: -40px;
	}

	/* table
	============================== */
	.guidelinesPage .bgOutGray{
		padding: 60px 0;
	}


	/*
		求める人物像
	-----------------------------------------------------------------------------------------------*/
	/* ページタイトル
	============================== */
	.messagePage #cmnTitWrapper .item{
		width: 130px;
		right: 15px;
		bottom: -50px;
	}

	/* 人物像
	============================== */
	.messagePage #listNumWrapper{
		margin-bottom: 50px;
	}
	.messagePage #listNumWrapper.bgOutGray{
		padding: 60px 0;
	}

	/* clm2Area */
	.messagePage #listNumWrapper .clm2Area{
		flex-direction: column;
		gap: 50px 0;
	}
	.messagePage #listNumWrapper .clm2Area .box{
		width: 100%;
	}
	.messagePage #listNumWrapper .clm2Area .cmnListNum li{
		width: 100%;
		min-height: 100px;
		font-size: 1.8rem;
		padding: 30px 15px;
	}

	/* 担当者からのメッセージ
	============================== */
	/* titItalicM */
	.messagePage #messageWrapper .titItalicM .en{
		text-indent: 0;
		margin: 0 auto;
	}
	.messagePage #messageWrapper .titItalicM .jp{
		font-size: 2.6rem;
		margin: -5px auto 0 auto;
	}

	/* messageBox */
	.messagePage .messageBox{
		flex-direction: column-reverse;
		gap: 30px 0;
	}
	.messagePage .messageBox .txtArea{
		width: 100%;
	}

	/* name */
	.messagePage .messageBox .name{
		font-size: 1.2rem;
		margin-top: 15px;
	}
	.messagePage .messageBox .name span{
		font-size: 1.6rem;
	}


	/*
		採用Q&A
	-----------------------------------------------------------------------------------------------*/
	/* ページタイトル
	============================== */
	.qaPage #cmnTitWrapper .item{
		width: 140px;
		right: 15px;
		bottom: -20px;
	}

	/* Q&A
	============================== */
	.qaPage .bgOutGray{
		padding: 50px 0 60px 0;
	}
	.qaPage .titBaseL{
		margin-bottom: 20px;
	}

	/* listQA */
	.listQA{
		gap: 20px 0;
	}

	/* titQ */
	.listQA .titQ{
		font-size: 1.7rem;
		padding: 20px 35px 20px 55px;
	}
	.listQA .titQ::before{
		font-size: 4rem;
		top: 16px;
		left: 15px;
	}
	.listQA .titQ::after{
		border: 4px solid transparent;
		border-bottom: 6px solid transparent;
		border-top: 6px solid #333;
		top: calc(50% + 3px);
		right: 15px;
	}
	.listQA .titQ.close_btn::after{
		top: calc(50% - 3px);
	}

	/* txtA */
	.listQA .txtA{
		padding: 0 15px 15px 15px;
	}
	.listQA .txtA::after{
		width: 50px;
		height: 17px;
		background: url("../images/item_recruit_qa_bird_sp.png") no-repeat top left / 100% auto;
		top: -7px;
		right: -8px;
	}
}