@charset "Shift_JIS";
/*---------------------------------
	見出しスタイル
---------------------------------*/
ul.pageNavi
{
	display:flex;
	background: #edf2fa;
	padding: 1rem;
	border-radius: 10px;

}

ul.pageNavi li
{
	position: relative;
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin: auto;
}

ul.pageNavi li::before,
ul.pageNavi li::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}


ul.pageNavi li.arrow::before{
	width: 16px;
	height: 16px;
	border-radius: 3px;
	background: #769cd2;
	top: -4px;
}

ul.pageNavi li.arrow::after{
	left: 5px;
	top: -6px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg) ；
}



/*-----------------------
区分アイコン
-----------------------*/
/*-----------------------
区分アイコン（心理効果を意識した色分け）
-----------------------*/

/* 国家資格*/
.ic_kokka {
	border: solid 1px #e3aaaa;
	color: #e05858;
	background: #fef5f5;
	padding: 0px 5px;
	border-radius: 3px;
	font-size: 0.85em;
}

/* 民間資格*/
.ic_minkan {
	border: solid 1px #78bade;
	color: #0288d1;
	background: #e8f4fb;
	padding: 0px 5px;
	border-radius: 3px;
	font-size: 0.85em;
}

/* 公的資格・その他*/
.ic_sonota {
	border: solid 1px #a6cba7;
	color: #4CAF50;
	background: #f4f9f4;
	padding: 0px 5px;
	border-radius: 3px;
	font-size: 0.85em;
}



/*-----------------------
カテゴリーボタン
-----------------------*/

ul.category {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	justify-content: flex-start;
}

ul.category li {
	width: 220px; /* 幅を固定 */
	font-size:0.9rem;
	background: #13b8d4;
	color: #fff;
	border-radius: 5px;
	list-style: none;
	text-align: center;
	box-sizing: border-box;
	position: relative;
}

ul.category li:hover{
	background:#00a1bd;
}

/*下向き矢印*/
ul.category li ::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8ddae7; /* ▼色を白に（背景色と合わせて変更可） */
  pointer-events: none;
}

ul.category li a {
	display: block; 
	color: #fff;
	padding: 0.5rem 1.1rem 0.5rem 0.5rem;
	text-decoration:none;
}

@media screen and (max-width:767px) {
	ul.category li {
	flex-basis: calc(50% - 5px);
	font-size: 12px;
	}
}


/*-----------------------
ボタン
-----------------------*/

.btnBOX
{
	display: flex;
	gap:1rem;
}

@media screen and (max-width:767px) {
	.btnBOX
	{
	flex-direction:column;
	align-items: center;
	}
}










