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

/*
	common
-----------------------------------------------------------------------------------------------*/
#cmnPageKvWrapper{
	margin-bottom: 100px;
}

/* リスト
============================== */
.listBase{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.listBase li{
	padding-left: 15px;
	position: relative;
	line-height: 1.0;
}
/* 装飾 丸 */
.listBase li::before{
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	top: 3px;
	left: 0;
}
/* 装飾 青 */
.listBlue li::before{
	background-color: var(--colorPrimary);
}

/* ボタン
============================== */
.guidelinePage .cmnPageCtsArea .btnArea{
	justify-content: center;
}
.guidelinePage .cmnPageCtsArea .btnArea .btnBase{
	width: 250px;
}

/* エントリーボタン
============================== */
.entry{
	justify-content: center;
	margin-top: 50px;
}
.guidelinePage .btnArea .btnBase.btnEntry{
	width: 330px;
	height: 80px;
	font-size: 1.8rem;
	border-radius: 50px;
}

/*
	recruit message
-----------------------------------------------------------------------------------------------*/
.rctMessagePageCtsBox{
	padding: 30px 100px 0;
}
/* タイトル */
.rctMessagePageTit{
	margin-bottom: 50px;
	text-align: center;
	color: var(--colorPrimary);
	font-size: 2.8rem;
	font-weight: 700;
}
/* 文章 */
.rctMessagePageTxtBox{
	display: flex;
	flex-direction: column;
	gap: 40px;
	text-align: justify;
}
/* 一同 */
.rctMessagePageName{
	margin-top:60px;
	text-align: right;
	font-weight: 700;
}

/*
	guideline
-----------------------------------------------------------------------------------------------*/
/* テーブル
============================== */
.tblGuideline{
	border-top: 1px solid var(--colorPoint03);
}
.tblGuideline tr{
	border-bottom: 1px solid var(--colorPoint03);
}
.tblGuideline tr > *{
	line-height: 1.6;
}
.tblGuideline th{
	width: 150px;
	padding: 30px 80px 30px 0;
	color: var(--colorPrimary);
	font-size: 1.4rem;
	font-weight: 700;
}
.tblGuideline td{
	padding: 30px 0;
	text-align: justify;
	vertical-align: middle;
}
.tblGuideline .listBase{
	margin-top: 5px;
}
.listUniv{
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/*
	faq
-----------------------------------------------------------------------------------------------*/
/* タイトル
============================== */
.faqTit{
	margin-bottom: 20px;
	padding-left: 15px;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.faqTit::before{
	content: "";
	width: 5px;
	height: 25px;
	background-color: var(--colorPrimary);
	position: absolute;
	translate: 0 -50%;
	top: 50%;
	left: 0;
}

/* リスト
============================== */
.faqBox{
	margin-bottom: 45px;
}
.faqBox:last-of-type{
	margin-bottom: 0;
}
.faqList{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.listBase li{
	padding-left: 14px;
	text-align: left;
}
/* ico */
.faqList li > p .icoQ,
.faqList li > p .icoA{
	display: block;
	padding-left: 35px;
	position: relative;
}
.faqList li > p .icoQ::before,
.faqList li > p .icoA::before{
	content: "";
	position: absolute;
	left: 0;
}
.faqList li > p .icoQ::before{
	top: -2px;
}
.faqList li > p .icoA::before{
	top: 2px;
}
/* 質問 */
.txtQ{
	display: flex;
	align-items: center;
	min-height: 70px;
	padding: 20px;
	border: 1px solid var(--colorPoint03);
	border-radius: 10px;
	position: relative;
}
@media (any-hover: hover){
	.txtQ:hover{
		cursor: pointer;
	}
}
.icoQ::before{
	width: 24px;
	height: 26px;
	background: url(../images/ico_faq_q.svg) no-repeat center center / contain;
}
/* 答え */
.txtA{
	padding: 25px 20px;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: justify;
	letter-spacing: -0.01rem;
}
.icoA::before{
	width: 22px;
	height: 22px;
	background: url(../images/ico_faq_a.svg) no-repeat center center / cover;
}
/* toggle */
.txtQ .icoToggle{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background-color: var(--colorPrimary);
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	right: 20px;
	transition: background-color 0.3s;
}
@media (any-hover: hover){
	.txtQ:hover .icoToggle {
		background-color: #000;
	}
}
.txtQ .icoToggle::before,
.txtQ .icoToggle::after{
	content: "";
	display: block;
	width: 9px;
	height: 1px;
	background-color: #fff;
	position: absolute;
    top: 13px;
    left: 9px;
	transition: all 0.3s;
}
.txtQ .icoToggle::after {
	rotate: 90deg;
}
.txtQ.jsToggleOpen .icoToggle{
	background-color: #000;
}
.txtQ.jsToggleOpen .icoToggle::after {
	rotate: 180deg;
	opacity: 0;
}

@media screen and (max-width:812px){
	/*
		common
	-----------------------------------------------------------------------------------------------*/
	#cmnPageKvWrapper{
		margin-bottom: 50px;
	}
	/* ボタン
	============================== */
	.guidelinePage .cmnPageCtsArea .btnArea .btnBase{
		width: 100%;
	}

	/* エントリーボタン
	============================== */
	.entry{
		margin-top: 30px;
	}
	.guidelinePage .btnArea .btnBase.btnEntry{
		width: 100%;
		height: 60px;
		font-size: 1.6rem;
	}
	/*
		recruit message
	-----------------------------------------------------------------------------------------------*/
	.rctMessagePageCtsBox{
		padding: 0;
	}
	/* タイトル */
	.rctMessagePageTit{
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	/* 文章 */
	.rctMessagePageTxtBox{
		gap: 15px;
	}
	/* 一同 */
	.rctMessagePageName{
		margin-top: 30px;
	}

	/*
		guideline
	-----------------------------------------------------------------------------------------------*/
	/* テーブル
	============================== */
	.tblGuideline tr{
		display: flex;
		flex-direction: column;
	}
	.tblGuideline th{
		width: 100%;
		padding: 15px 0 5px 0;
		font-size: 1.5rem;
	}
	.tblGuideline td{
		padding: 5px 0 15px 0;
	}
	.listUniv{
		gap: 10px;
	}

	/*
		faq
	-----------------------------------------------------------------------------------------------*/
	/* タイトル
	============================== */
	.faqTit{
		margin-bottom: 15px;
	}
	.faqTit::before{
		height: 22px;
	}

	/* リスト
	============================== */
	.faqBox{
		margin-bottom: 30px;
	}
	.faqList{
		gap: 10px;
	}
	/* ico */
	.faqList li > p .icoQ,
	.faqList li > p .icoA{
		padding-left: 28px;
		line-height: 1.5;
	}
	.faqList li > p .icoA{
		text-align: justify;
	}
	.faqList li > p .icoQ::before{
		translate: 0 -50%;
		top: 50%;
	}
	.faqList li > p .icoA::before{
		top: 2px;
	}
	/* 質問 */
	.txtQ{
		padding: 15px 45px 15px 15px;
		font-size: 1.5rem;
	}
	.icoQ::before{
		width: 20px;
		height: 22px;
	}
	/* 答え */
	.txtA{
		padding: 15px;
	}
	.icoA::before{
		width: 19px;
		height: 19px;
	}
	/* toggle */
	.txtQ .icoToggle{
		width: 22px;
		height: 22px;
		right: 15px;
	}
	.txtQ .icoToggle::before,
	.txtQ .icoToggle::after{
		width: 9px;
		height: 1px;
		top: 10px;
		left: 6px;
	}
}