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

/* ------------------------------
人気のキーワードから探す
------------------------------ */
.top_keyword {
	background: var(--main-color);
	color: #fff;
}

.top_keyword_title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: var(--sub-color);
}

.top_keyword_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.top_keyword a {
	padding: .3em .8em;
	color: #fff;
	background: #fff;
	border-radius: 100px;
	color: var(--main-color);
}

.top_keyword a::before {
	content: "#";
	display: inline-block;
	margin-right: 2px;
}

@media (min-width:768px){
	.top_keyword {
		padding: 40px 0;
	}

	.top_keyword_inner {
		width: calc(1200px - 30px);
		margin: 0 auto;
	}
}

@media screen and (max-width:767px){
	.top_keyword {
		margin-top: 20px;
		padding: 20px 15px;
	}
	
	.top_keyword_title {
		font-size: 15px;
	}

	.top_keyword_list {
		margin-top: 20px;
	}
}





/* ------------------------------
検索
------------------------------ */
/*3連ボタン　白地に*/
.top_search .dl_list > p {
	background: #fff;
	color: inherit;
}

/*3連ボタン　アイコン色変更*/
/*元が白アイコンなのでフィルター1行目で黒アイコンに変更*/
.top_search .dl_list > p > span:nth-of-type(1):before{
	filter: 
		brightness(0) saturate(100%)
		var(--sub-color-filter);
}

@media (min-width:768px){
	.top_search {
		width: 100%;
		padding: 40px 0;
		background: #f6f6f6;
	}

	.top_search .box {
		width: calc(1200px - 30px);
		margin: 0 auto;
		padding: 20px 0 0;
		border: 0;
		border-radius: 0;
	}

	.top_search .dl_list > p {
		box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	}
	
	.top_search #searhtab {
		margin-bottom: 0;
	}
	
	.top_search #searhtab span {
		background: #ddd;
	}

	.top_search .dl_list > div > dl {
		padding: 20px;
		background: #fff;
	}
}

@media screen and (max-width:767px){
	.top_search .dl_list > p {
		border: 2px solid #eee;
	}
}

/* ------------------------------
バナー上余白
------------------------------ */
@media screen and (max-width:767px){
	.job_bnr_inner {
		padding-top: 0;
	}
}

/* ------------------------------
トップ　エリアから探す PC　アコーディオンに
------------------------------ */
@media (min-width:768px){
	.main .areamap_list {
		padding: 20px;
		background: #f3f3f3;
	}
	
	.main .areamap_list > * {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.main .areamap_list .acc_btn {
		position: relative;
		margin-bottom: 0;
		padding: 6px 15px;
		border: 1px solid #eee;
		border-radius: 8px;
		background: #fff;
		font-weight: normal;
		cursor: pointer;
	}
	
	.main .areamap_list .acc_btn::after {
		display: block;
		content: "";
		position: absolute;
		top: calc(50% - 6px);
		right: 15px;
		width: 8px;
		height: 8px;
		border-top: 2px solid #999;
		border-right: 2px solid #999;
		transform: rotate(135deg);
	}
	
	.main .areamap_list .acc_btn.active::after {
		top: calc(50% - 2px);
		transform: rotate(-45deg);
	}
	
	.main .areamap_list .acc_btn + * {
		display: none;
	}
	
	.main .areamap_list ul {
		margin-top: 10px;
	}
	
	.main .areamap_list li {
		margin: 0 !important;
	}
	
	.main .areamap_list li + li {
		border-left: 1px solid #ccc;
	}
	
	.main .areamap_list li a {
		width: auto;
		padding: 5px;
		border: 0;
		font-size: 14px;
		color: #1E88E5;
	}
	
	.main .areamap_list li a:hover {
		text-decoration: underline;
	}
}






















