.tag{
	display: inline-block;
	background: #b81b25;
	/* -moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px; */
	color: #fff;
	text-transform: uppercase;
	padding: 3px 10px;
	font-size: 14px;
	letter-spacing: 1px;
}
/*------------------------------標籤 tagbox------------------------------*/
.taglist {
	font-size: 0;
	letter-spacing: -4px;
	margin: 0 -3px;
	word-spacing: 0;
	display: inline-block;
	padding: 0;
	max-width: 100%;
}
/* 項目 */
.taglist__item {
	color: #bbbb;
	display: inline-block;
	*display: inline;
	font-size: 14px;
	letter-spacing: 0.05em;
	margin: 3px;
	word-spacing: normal;
	zoom: 1;
	padding: 1px;
	max-width: 100%;
	white-space: nowrap; 
	overflow: hidden;
}
/* 連結 */
.taglist__link,
.taglist__text,
.taglist__item > strong > a {
	/* background: #f0f0f0; */
	border: 1px solid #ddd; 
	color: #bbb;
	background: #fff;
	display: block;
	text-decoration: none;
	margin: -1px;
	padding: 1px 2px;
	font-size: 13px;
	max-width: calc(100% + 1em);
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 連結-active */
.taglist__link:focus,
.taglist__link:active,
.taglist__item > strong > a:active {
	background: #033e7c;
	background: var(--blue-light, #033e7c);
	border-color: #033e7c;
	border-color: var(--blue-light, #033e7c);
	color: #fff;
}

/* 間距開 */
.taglist--strong {
	margin: -6px -4px;
}
.taglist--strong .taglist__item {
	margin: 6px 4px;
}
.taglist--strong .taglist__link {
	color: #555;
}

.tag-event{
	color: #fff;
	display: block;
	font-size: 13px;
	padding: 5px 0 0 4px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}
.tag-event:after {
	content: " ";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 49px 57px 0 0;
	border-color: #b81b25 transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}


.tag-time {
	display: none;
	background: #b81b25;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	min-height: 69px;
	padding: 4px 0;
	font-size: 14px;
	text-align: center;
	font-weight: 600;
	pointer-events: none;
	z-index: 2;
}
.tag-time--show {
	display: block;
}
.tag-time__icon {
	font-size: 20px;
	margin-bottom: .25em;
	font-weight: normal;
	display: block;
}
.tag-time__text {

}
.tag-time__strong {
	font-size: 18px;
}

/* 商店類型 */
.tag-store {
	display: inline-block;
	/* color: #fff;
	background: #555;
	padding: 2px 4px;
	border-radius: 3px; */
	font-size: 0;
	width: 60px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
}
/* 廚房 */
.tag-store--kitchen {
	/* background: #0054ac; */
	background-image: url(../../images/store/tag_kitchen.svg?t=20180921v1);
}
/* outlet */
.tag-store--outlet {
	/* background: #bd0f0f; */
	background-image: url(../../images/store/tag_outlet.svg?t=20180921v1);
}
/*如果使用者之視窗寬度>=1024px，將會再載入這裡的 css。*/
@media screen and (min-width: 1024px) {
	/*------------------------------標籤 tagbox------------------------------*/
	.taglist__link {
		transition: .3s ease;
	}
	.taglist__link:active,
	.taglist__link:hover,
	.taglist__item > strong > a:active,
	.taglist__item > strong > a:hover {
		background: #033e7c;
		background: var(--blue-light, #033e7c);
		border-color: #033e7c;
		border-color: var(--blue-light, #033e7c);
		color: #fff;
	}

}