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

/*市町村選択ボタン*/
.city-description-btn {
	width:90%;
	max-width:960px;
	margin:20px auto;
}
.city-description-btn ul{
	padding-left:0;
	list-style:none;
	display:flex;
	justify-content:space-between;
	margin:0;
}
.city-description-btn ul li{
	width:50%;
	border:solid 1px #fff;
}
.city-description-btn ul li a{
	text-align:center;
	display:block;
	width:100%;
	background-color:#E95513;
	padding:7px 0;
	color:#fff;
}

/*近くの求人カード*/
.city {
	width:90%;
	margin:auto auto 50px auto;
	max-width:960px;
}
.city h3{
	border-bottom:dotted 1px #ACACAC;
	padding:0;
	margin:30px 0;
	position:relative;
	padding-left:15px;
	margin-bottom:20px;
}
.city h3::before{
	content:"";
	display:inline-block;
	background-color:#E95513;
	width:5px;
	height:30px;
	position:absolute;
	left:0;
	bottom:0;
}

.city-flex {
	margin-top:10px;
	margin-bottom:30px;
	flex-wrap:wrap;
}

.description-card {
	background-color:#fff;
	padding:20px;
	border:solid 2px #e95513;
	border-radius:3px;
	width:32%;
	box-sizing:border-box;
	min-width:280px;
}
.description-card p{
	margin:0 0 10px 0;
}
.description-card .shop-name{
	font-weight:bold;
	font-size:17px;
}
.description-card .shop-add{
}
.description-card .detail-btn{
	width:100%;
}
.description-card .detail-btn a{
	width:100%;
	display:block;
	color:#fff;
	font-weight:bold;
	background-color:#e95513;
	text-align:center;
	border-radius:50px;
	padding:5px 5px;
	box-sizing: border-box;
}
@media(max-width:480px){
	.description-card {
	background-color:#fff;
	padding:20px;
	border:solid 2px #e95513;
	border-radius:3px;
	width:100%;
}
}
