@charset "utf-8";
/*******************************************************************************
 * version 1.0 release;
 * copyright 2017
 ******************************************************************************/
/*======================================== 共用 */

.listtext__item * {
	font-size: medium;/*for ie*/
	font-weight: normal;/*for ie*/
	font-size: initial;
	font-weight: initial;
}

/* 文字列表-大閒距 */
.listtext--gap > .listtext__item {
	margin-bottom: 1.5em;
}
/* 文字列表-大字 */
.listtext--lg > .listtext__item {
	font-size: 1.125em;/*18/16*/
	font-weight: bold;
}

/*------------------------------有序列項目------------------------------*/

/*序列項目列表-數字+括號[(1),(2),(3)]*/
.listtext--decimal-arc {
	counter-reset: counter;
}
.listtext--decimal-arc > .listtext__item {
	list-style: none;
	position: relative;
}
.listtext--decimal-arc > .listtext__item::before {
	counter-increment: counter;
	content: '('counter(counter)')';
	position: absolute;
	left: -1.5em;
}

/*序列項目列表-中文數字+括號[(一),(二),(三)]*/
.listtext--cjk-arc {
	counter-reset: counter;
	padding-left: 1.5em;
}
.listtext--cjk-arc > .listtext__item {
	list-style: none;
	position: relative;
	padding-left: .3em;
}
.listtext--cjk-arc > .listtext__item::before {
	counter-increment: counter;
	content: '('counter(counter, cjk-ideographic)')';
	position: absolute;
	left: -1.5em;
}

/*faqbody*/
.faqbody {
	background: #fff;
	margin-bottom: 8px;
	padding: 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.faqbody a {
	color: #b81b25;
}
/* 右側標題 */
.box-faq .box__heading {
	display: none;
}

/*------------------------------內文區------------------------------ */
.text-article{
	line-height: 1.625;
	overflow-wrap: break-word ;
	word-wrap: break-word;
}
/* 內文標題 */
.text-article__heading {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: .833em;/*15/18*/
}
/* 內文標題-間距小 */
.text-article__heading--gap-sm {
	margin-bottom: .333em;/*6/18*/
}
/* 內文段落 */
.text-article__paragraph {
	margin: 0 0 1em;
}
/* 內文段落-間距上 */
.text-article__paragraph--gap-top {
	margin-top: 1em;
}
/* 內文 > 中文有序列表 */
.text-article .listtext--cjk{
	padding-left: 2.5em;
}
/* 內文 > 無序列表-實心圓形 */
.text-article .listtext--disc {
	padding-left: 1.5em;
}

/* 發票表格 */
.table-invoice {
	overflow: visible;
	font-size: 14px;
}
.table-invoice__head {
	background: #888;
	color: #fff;
	font-weight: bold;
}
.table-invoice__cell {
	text-align: center;
	vertical-align: middle;
	padding: 2px;
	border: 1px solid #ccc;
}
.table-invoice__cell-left {
	text-align: left;
}
/* 寬度 */
.table-invoice__head .table-invoice__cell:first-child {
	width: 15%;
}
.table-invoice__head .table-invoice__cell:nth-child(2) {
	width: 12%;
}
.table-invoice__head .table-invoice__cell:nth-child(3),
.table-invoice__head .table-invoice__cell:nth-child(4) {
	width: 36.5%;
}
.table-invoice__cell-inner {
	width: 10.5%;
}
/* 還原initial */
.tablebox .table__tips * {
	font-size: 1em;
}

/*如果使用者之視窗寬度>=768px，將會再載入這裡的 css。*/
@media screen and (min-width: 768px) {
	/*faqbody*/
	.faqbody {
		margin: 10px 0;
	}
	/* 發票表格 */
	.table-invoice {
		font-size: 1em;
	}
	.table-invoice__cell {
		padding: 8px;
	}
}
/*如果使用者之視窗寬度>=1024px，將會再載入這裡的 css。*/
@media screen and (min-width: 1024px) {
	/*faqbody*/
	.faqbody{
		padding: 0;
		margin: 0;
	}
	/* 右側標題 */
	.box-faq .box__heading{
		/* display: block; */
	}
	/* 內文段落 */
	.text-article__paragraph {
		margin-bottom: 1.5em;
	}
	/* 內文段落-間距上 */
	.text-article__paragraph--gap-top {
		margin-top: 1.5em;
	}
}