/* 頁籤 */
.tab {
	margin-bottom: 20px;
}
/* 頁籤-定上方 */
.tab.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 99;
}
/* 頁籤列表 */
.tab__list {
	font-size: 0;
	letter-spacing: -4px;
}
/* 項目 */
.tab__item{
	/* background: #fff; */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	letter-spacing: normal;
	word-spacing: normal;
	zoom: 1;
	line-height: 1.375;
	overflow: hidden;
}
/* 斷行 */
.tab__item-longtext br{
}
/* 項目-最末 */
.tab__item:first-child {
}
/* 項目-current */
.tab__item--current {
	color: #033e7c;
	color: var(--blue-light, #033e7c);
}
/* 連結 */
.tab__link {
	color: #6e6e6e;
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 7px;
}
/* 連結-第二項 */
.tab__item-longtext .tab__link {
	padding: 10px 8px;
}
/* 中文 */
.tab__text{
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.tab__text::after{
	position: absolute;
	content: "";
	width:0%;
	height: 3px;
	background: #033e7c;
	background: var(--blue-light, #033e7c);
	bottom: -5px;
	left: 0;
	transition: width .25s, opacity .2s linear;
	opacity: 0;
}
.tab__link:hover .tab__text::after,
.tab__item--current .tab__text::after{
	width: 100%;
	opacity: 1;
}
/* 中文 */
.tab__num{
	display: inline-block;
	vertical-align: middle;
	padding:1px 4px;
	margin-left: 10px;
	position:relative;
}
.tab__num:before, .tab__num::after{
	position: absolute;
	top: 0;
}
.tab__num:before{
	left: -3px;
	content: "(";
}
.tab__num::after{
	right: -3px;
	content: ")";
}
/* 連結*/
.tab__link:hover,
.tab__item--current .tab__link:active,
.tab__item--current .tab__link {
	/*background: #03a9b5;*/
	color: #033e7c;
	color: var(--blue-light, #033e7c);
}
/* ------------------------------二則------------------------------ */
.tabs--2 .tab__list {
	/*margin-left: -5px;
	margin-right: -5px;*/
}
.tabs--2 .tab__item{
	width:calc(50% - 10px);
	margin: 0 5px;
}
.tabs--3 .tab__item{
	width:calc(33.333% - 10px);
}
/* 頁籤內容 */
.tab__content {
	display: none;
}

/* 頁籤內容-顯示 */
.tab__content--show {
	display: block;
}
@media screen and (min-width: 768px) {
	/* 頁籤 */
	.tab {}
	.tab__list{
	}
	/* 項目*/
	.tab__item {
		font-size: 16px;
	}
	.tab__item,
	.tabs--2 .tab__item,
	.tabs--3 .tab__item{
		-webkit-border-bottom-right-radius: 0;
		-webkit-border-bottom-left-radius: 0;
		-moz-border-radius-bottomright: 0;
		-moz-border-radius-bottomleft: 0;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
		width: auto;
		margin: 0 10px;
	}
	.tab__item:first-child,
	.tabs--2 .tab__item:first-child,
	.tabs--3 .tab__item:first-child{
		margin-left: 0;
	}
	/* 連結 */
	.tab__link {

	}
	/* 連結-第二項 */
	.tab__link,
	.tab__item-longtext .tab__link {
		padding: 10px 15px 10px;
	}
	.tab__item-longtext br{
		display: none;
	}
	.tabs--2 .tab__list {
		margin-left: 0;
		margin-right: 0;
	}
	.tab__text::after{
		bottom: -3px;
	}
}
@media screen and (min-width: 1024px) {
	/* 頁籤-定上方 */
	.tab.fixed-top{
		position: static;
	}
	/* 頁籤列表 */
	.tab__list{
		padding: 0;
	}
}