@charset "utf-8";

/* =============================================
	一般教育訓練給付金
============================================= */
.content_area{
	width: 94%;
	max-width: 1000px;
	margin: 1em auto;
}

/*****
ヘッダー
*****/
#content_ttl{
	font-size: clamp(2rem,2.6vw,2.6rem);
	color: #575f64;
	margin: 0 auto;
	padding: 0 0 0.5em;
	text-align: center;
	border-bottom: 1px solid #333;
}

.pamphlet_btn,
.issue_btn{
	font-size: 1.6rem;
	line-height: 1.4;
	text-align: center;
	width: 36%;
	margin: 1em 0 0 auto;
}
.pamphlet_btn a{
	height: auto;
}
.pamphlet_btn a,
.issue_btn a{
	display: block;
	color: #3e4e65;
	margin: 0 auto;
	padding: 0.5em 1em;
	border: solid 1px #d6d6d6;
}
.issue_btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #5fb3f5;
	transition: background 0.5s;
}
.issue_btn a::before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	margin-right: 0.5em;
	background-image: url("/nikken/img/dc-request.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
.pamphlet_btn a:hover,
.issue_btn a:hover{
	text-decoration: none;
}
.issue_btn a:hover{
	background-color: #1b6ec2;
}

.no_link{
	position: relative;
}
.no_link::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.25);
	z-index: 99;
}


/*****
詳細内容
*****/
.normal_section{
	font-size: clamp(1.4rem,1.5vw,1.5rem);
	line-height: 1.8;
	margin-top: 4em;
}

.ttl_lv3{
	margin-top: 3em;
}

.table_basic{
	margin: 1.5em auto 1em auto;
}

.table_basic .note_indent1 li:last-of-type,
.note_indent2 li:last-of-type{
	margin-bottom: 0;
}

ol.decimal > li:before{
	width: auto;
}

.table_decimal{
	counter-reset: li;
}
.table_decimal ol{
	padding-left: 0px;
}
.table_decimal ol li{
	margin-bottom: 5px;
	padding-left: 2.5em;
	position: relative;
	line-height: 1.3;
}
.table_decimal li:before{
	counter-increment: li;
	content:'（'counter(li) '）';
	margin: 0 5px 0 0;
	padding: 0;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

/***注意書き***/
.attention_cont{
	margin: 1em 0 1.5em;
	padding: 1.5em;
	border: 1px solid #ccc;
}
.attention_header{
	text-align: center;
}
.attention_ttl{
	display: inline-block;
	color: #ed5032;
	margin-bottom: 0.75em;
	padding: 0 1em;
	border-bottom: 2px solid #ed5032;
}
.attention_ttl_lv2{
	color: #575f64;
	margin: 1em 0 0.5em 0;
	padding: 1em 0 0.5em 0;
	border-bottom: 1px dotted #ccc;
}


/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media screen and (min-width: 768px){
	/*****
	ヘッダー
	*****/
	.content_area{
		padding: 2em;
		border: 1px solid rgba(0,0,0,0.1);
		box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
	}
	
	/*****
	詳細内容
	*****/
	.course_name{
		width: 25%;
	}
}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	/*****
	ヘッダー
	*****/
	.content_area{
		padding: 2em 0;
	}
	
	.pamphlet_btn,
	.issue_btn{
		width: 90%;
		margin: 1em auto 0 auto;
	}
	
	/*****
	詳細内容
	*****/
	.normal_section{
		line-height: 1.5;
		margin-top: 3em;
	}
	
	.course_name{
		width: 35%;
	}
}

