/* Tab Bar */
.jquery-tab-pager-tabbar {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.jquery-tab-pager-tabbar li {
	float: left;
	padding: 10px 20px;
	list-style: none;
	cursor: pointer;
	background: #eee;
	border-radius: 10px 10px 0px 0px;
}

.jquery-tab-pager-tabbar li.current {
	background: #f90;
}

/* Page Navigation */
#jquery-tab-pager-navi {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#jquery-tab-pager-navi li {
	list-style: none;
	display: inline;
}

#jquery-tab-pager-navi li a {
	float: left;
	display: block;
	padding: 5px;
	margin-right: 10px;
	border: 1px solid #ccc;
	text-decoration: none;
	background: #fff;
	-webkit-transition: background 200ms linear;
	transition: background 200ms linear;
	border-radius: 3px;
}

#jquery-tab-pager-navi li:last-child a {
	margin-right: 0px;
}

#jquery-tab-pager-navi li a.current,
#jquery-tab-pager-navi li a.disable,
#jquery-tab-pager-navi li a:hover {
	background: #ebebeb;
	color: #000;
}





ul.blog_subinfo {
	display: flex;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

ul.blog_subinfo li {
	color: #c8c9c7;
	margin-right: 2rem;
}

ul.blog_subinfo li.category {
	border: 1px solid;
	padding: 0 2rem;
}

p.blog_ttl {
	font-weight: bold;
	color: #0a0a0a;
	line-height: 140%;
}
.tablist_inner {
	display: flex;
	justify-content: space-around;
	/* 	overflow: hidden; */
}
.stores {
	display: none;
}
.tab_item {
	cursor: default;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #aaa;
	line-height: 40px;
	width: 150px;
	max-width: 15%;
	padding: 20px 5px 5px;
	border-radius: 15px;
	font-size: 14px;
	position: relative;
}
.tab_item.is-active::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-top: 20px solid #137B3B;
	position: absolute;
	bottom: -20px;
}
/* li.tab_item:after {
content: "";
height: 5px;
width: 100%;
display: block;
position: absolute;
bottom: 0;
left: 0;
background-color: #fbe814;
opacity:0;
}

li.tab_item:hover::after {
content: "";
height: 5px;
width: 100%;
display: block;
position: absolute;
bottom: 0;
left: 0;
background-color: #fbe814;
transition: .7s;
opacity:1;
}
li.tab_item.is-active:hover {
border: none;
}
*/
.tab_item.is-active {
	background: #137B3B;
	transition: all 0.2s ease-out;
}
.stores.is-show {
	display: block;
}
.stores_all {
	margin-top: 35px;
	border: 6px solid #137B3B;
	border-radius: 50px;
	padding: 40px 20px 30px;
}
.tabs {
	margin-bottom: 30px;
}

.store_all {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.store_all .store_box {
	width: 400px;
	max-width: 45%;
	margin-bottom: 15px;
}

.store_all .store_box a .store_box_inner {
	display: flex;
	align-items: flex-start;
}

.store_all .store_box a .store_box_inner .store_img {
	width: 200px;
	max-width: 30%;
}

.store_all .store_box a .store_box_inner .store_info {
	max-width: 65%;
	padding-left: 25px;
}

.store_all .store_box a .store_box_inner .store_img img {
	width: 100%;
	border-radius: 20px;
}

.store_box_inner p.store_name {
	color: initial;
	font-weight: bold;
	margin-bottom: 5px;
}

.store_box_inner ul li {
	background-color: #aaa;
	color: #fff;
	text-align: center;
	padding: 0px 10px;
	border-radius: 15px;
	font-size: 14px;
	min-width: 85px;
}




@media only screen and (max-width:780px) {

	.tablist_inner {
		flex-wrap: wrap;
	}

	.tab_item {
		max-width: 33%;
		width: 300px;
		height: 60px;
		margin-bottom: 10px;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		padding: 5px 5px 5px 16px;
		font-size: 2vw;
	}

	.tab_item img {
		width: 25%;
		margin-right: 15px;
	}

	.tab_item.is-active::after {
		display: none;
	}

	.stores_all {
		margin-top: 10px;
		border-radius: 30px;
		border-width: 4px;
	}
	.store_all {
		flex-direction: column;
	}

	.store_all .store_box {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.store_box_inner p.store_name {
		font-size: 2.8vw;
	}

	.store_box_inner ul li {
		font-size: 2vw;
	}
	.store_all .store_box:last-child {
		margin-bottom: 0;
	}


}



@media only screen and (max-width:480px) {
	.tab_item {
		padding-left: 0px;
		height: 50px;
		line-height: 180%;
		flex-direction: column;
		justify-content: flex-end;
		margin-bottom: 5px;
		max-width: 32%;
	}

	.tab_item img {
		margin-right: 0px;
	}

	.stores_all {
		padding: 25px 15px;
	}

}