@charset "UTF-8";

/* 店舗一覧
======================================================*/

/* タブ切り替え */
ul.tab {
	display: flex;
	justify-content: space-between;
	margin: 0 0 30px;
}
	ul.tab li {
		background: #E8E8E8;
		width: calc((100%/6) - 5px);
		height: 56px;
		line-height: 56px;
		cursor: pointer;
		color: #BCBCBC;
		font-weight: 500;
		text-align: center;
	}
	ul.tab li:hover,
	ul.tab li.select{
		background: #19823d;
		color: #fff;
		position: relative;
	}
	ul.tab li:hover:after,
	ul.tab li.select:after{
		content: "";
		position: absolute;
		right: 0;
		bottom: -10px;
		left: 0;
		width: 0px;
		height: 0px;
		margin: auto;
		border-style: solid;
		border-color: #19823d transparent transparent transparent;
		border-width: 10px 10px 0 10px;
	}

p.tab,
.hide {
	display: none;
}

/* .page_nav */
.page_nav {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	text-align: center;
	margin: 0 0 45px;
}
	.page_nav li{
		display: inline-block;
		border-right: 1px solid #DEDEDE;
	}
	.page_nav li:last-child{
		border: none;
	}
	.page_nav li a{
		padding: 0 20px 10px;
		color: #19823d;
		position: relative;
	}
	.page_nav li a:after{
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		border-bottom: 2px solid #19823d;
		border-right: 2px solid #19823d;
		-ms-transform: rotate(45deg)translateX(-50%);
		transform: rotate(45deg)translateX(-50%);
		position: absolute;
		left: 50%;
		bottom: 0;
	}


/* 店舗リスト */
.tab_inner{
	text-align: center;
	background: #fff;
	border-radius: 30px;
}
.tab_inner h2{
	border-bottom: 1px solid #000;
	font-size: 22px;
	color: #19823d;
	font-weight: 500;
	padding: 0 0 10px;
}
.list_area{
	margin: 0 0 50px;
}
.list_area:last-of-type{
	margin: 0;
}

.shop_list{
	border-bottom: 1px dashed #BBBBBB;
	padding: 20px 0;
}
.shop_list dl{
	display: flex;
	overflow: hidden;
}
.shop_list dt{
	width: 300px;
	line-height: 1.4;
	margin-right: 20px;
}
.shop_list dd.add{
	width: 400px;
	line-height: 1.4;
	margin-right: 20px;
}
.shop_list dd.add + dd{
	flex-shrink: 0;
	margin-left: auto;
	text-align: right;
}
.tab_inner .tel-moji{
	text-align: right;
	line-height: 1.4;
	flex-shrink: 0;
}
.tab_inner .tel-moji::before{
	display: inline-block;
	content: "";
	background: url(../images/tel_icon.png) no-repeat center/contain;
	width: 12px;
	height: 16px;
	vertical-align: middle;
	margin-right: 2px;
}
.shop_list dd.url a{
	color: #000;
	text-decoration: underline;
}
.shop_list dd.url a:hover{
	text-decoration: none;
}
.tel-moji a{
	color: #000;
	text-decoration: none;
}

/* ▼▼▼ 480px〜768px
======================================================*/
@media screen and (max-width: 768px) {
	/* タブ切り替え */
	ul.tab{
		display: none;
		}
		.open{
			display: none;
		}
		p.tab{
			background: #E8E8E8;
			font-size: 18px;
			font-weight: 500;
			text-align: center;
			height: 60px;
			line-height: 60px;
			width: 100%;
			margin: 0 0 10px;
			color: #383231;
		}
		p.tab.close{
			background: #19823d;
			color: #fff;
		}
		p.tab,
		.hide {
			display: block;
		}
		.tab_inner{
			display: none;
			border-radius: 15px;
			text-align: center;
			margin: 0 0 40px;
			padding: 25px 15px;
		}


	/* .page_nav */
	.page_nav {
		flex-wrap: wrap;
		font-size: 15px;
		padding: 0;
	}
	.page_nav li{
		width: 33%;
		margin-bottom: 5px;
	}
	.page_nav li:last-child{
		border-right: 1px solid #DEDEDE;
	}
	.page_nav li:nth-child(3n+1){
		border-left: 1px solid #DEDEDE;
	}
	.page_nav li a{
		width: 100%;
		padding: 0 0 10px;
		text-align: center;
	}

	/* 店舗リスト */
	.tab_inner h2{
		border-bottom: 1px solid #000;
		font-size: 15px;
		padding: 0 0 5px;
	}
	.list_area{
		margin: 0 0 20px;
	}
	.shop_list{
		border-bottom: 1px dashed #BBBBBB;
		padding: 10px 0;
	}
	.shop_list dl{
		display: block;
		font-size: 12px;
	}
	.shop_list dt{
		width: 100%;
	}
	.shop_list dd.add{
		width: 100%;
	}
	.shop_list dd.add + dd{
		width: 100%;
		flex-shrink: 0;
	}
	.tab_inner .tel-moji{
		text-align: right;
	}
	.tab_inner .tel-moji::before{
		display: inline-block;
		content: "";
		background: url(../images/tel_icon.png) no-repeat center/contain;
		width: 8px;
		height: 11px;
		vertical-align: middle;
	}

	.tel-moji a{
		color: #000;
		text-decoration: none;
	}

}