@charset "utf-8";
/* font-family: 'Roboto', sans-serif; Medium 500 Bold 700  舊的*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap");
/* font-family: 'Noto Sans TC', sans-serif; Light 300 Regular 400 Medium 500*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500&display=swap");
/* font-family: 'Montserrat', sans-serif; Regular 400 Medium 500*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap");
@import url(mmenu.css);

/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
form,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
em,
img,
q,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li {
	margin: 0;
	padding: 0;
}
img,
svg {
	vertical-align: middle;
}
ul,
ol {
	list-style: none;
}
body {
	-webkit-text-size-adjust: 100%;
}
table {
	border-collapse: collapse;
}
p {
	line-height: 1.75em;
	margin-bottom: 2em;
}
select {
	padding: 0;
}
select,
input {
	vertical-align: middle;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	padding: 1px 4px;
	*padding: 0 4px;
	*overflow: visible;
}
input[type="text"],
textarea {
	padding: 2px;
}
input[type="checkbox"],
input[type="radio"] {
	margin: 0 3px;
	padding: 0;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
select {
	cursor: pointer;
	*cursor: hand;
}
input[type="text"]:disabled {
	background: #eee;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	border: none;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/* color */
:root {
	--main_color: #cb02ac;
	--color1: #ff7beb;
	--color2: #dbbf4d;
	--color3: #fec;
	--color4: #0073ff;
	--color5: #faedd4;
	--guide_title: #fdc147;
}

/* 字型設定 */
body,
input,
textarea,
select {
	font-family: "Microsoft JhengHei", "微軟正黑體", "Microsoft YaHei", "微软雅黑",
		"Noto Sans TC", "Roboto", sans-serif;
	color: #333;
	line-height: 1.5;
	letter-spacing: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333;
	line-height: 1.75em;
}

/* 共用 */
#Wrap {
	background-color: #f6f6f6;
}
a {
	color: #cb02ac;
}
a:hover,
a:focus {
	color: #e50012;
	text-decoration: none;
}
a:focus,
:focus {
	outline: 2px dashed #cb02ac;
}
.inner {
	max-width: 1624px;
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
}
body.fixed {
	overflow: hidden;
}
.imgBox img {
	max-width: 100%;
}
.sr-only {
	width: 1px;
	height: 1px;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	margin: -1px;
	padding: 0;
	position: absolute;
	overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

/* 無障礙樣式設定 */
.guide_title {
	display: inline-block;
	font-size: 0.75rem;
	color: #666;
	text-decoration: none;
	position: relative;
	z-index: 9998;
}
a.guide_title:hover,
a.guide_title:focus {
	font-weight: bold;
	color: #333;
}
.skip_to_content {
	width: 1px;
	height: 1px;
	background-color: #fff;
	font-size: 0.8125rem;
	color: #000;
	line-height: 24px;
	margin: -1px 0 0 -1px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9000;
	overflow: hidden;
}
.skip_to_content:focus {
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
}
.noscript {
	font-size: 0.9375rem;
	text-align: left;
}
#Footer .guide_title {
	color: #cb02ac;
	position: absolute;
	top: 0;
	left: 0;
}
.sr-only {
	width: 1px;
	height: 1px;
	border: 0;
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	white-space: nowrap;
	clip: rect(1px, 1px, 1px, 1px);
	margin: -1px;
	padding: 0;
	position: absolute;
	overflow: hidden;
}
.sr-only:focus {
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	overflow: visible;
}

/* Header */
#Header {
	width: 100%;
	position: relative;
	z-index: 6000;
}
#Header::after {
	display: block;
	content: "";
	clear: both;
}
#Header .header_top {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 30px;
	padding: 30px 54px 0 45px;
}

/* logo */
#Header .header_top .logo {
	width: 274px;
	flex-shrink: 0;
}
#Header .header_top .logo h1 {
	display: flex;
	justify-content: center;
	align-items: center;
}
#Header .header_top .logo a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}
#Header .header_top .logo img {
	width: 100%;
}

/* 上方導覽列 */
#Header .header_top .header_info {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: end;
	width: auto;
	font-size: 0.9375rem;
	color: #555;
}
#Header .header_top .header_info .header_links {
	display: flex;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	flex-direction: row;
	flex-wrap: nowrap;
}
#Header .header_top .header_info .header_links a {
	display: block;
	color: #555;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#Header .header_top .header_info .header_links a:hover,
#Header .header_top .header_info .header_links a:focus {
	color: #cb02ac;
}
#Header .header_top .header_info .header_links .active {
	color: #cb02ac;
}
#Header .header_top .header_info .header_links .guide_title {
	padding: 5px;
}
#Header .header_top .header_info .header_links ul {
	display: flex;
	margin-bottom: 9px;
}
#Header .header_top .header_info .header_links ul li {
	padding: 5px;
	position: relative;
	letter-spacing: 1px;
}
#Header .header_top .header_info .header_links ul li:last-of-type {
	margin-right: 0;
}
#Header .header_top .header_info .header_links ul li span {
	width: 22px;
	height: 22px;
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 6px;
	margin-bottom: -5px;
	display: inline-flex;
}

/* 全站搜尋 */
#Header .header_top .header_info .header_search {
	display: flex;
	align-items: center;
}
#Header .header_top .header_info .header_search .search_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 200px;
	height: 40px;
	background-color: #f4f5f9;
	border: 1px solid #cb02ac;
	border-radius: 5px;
	line-height: 30px;
	margin-right: 15px;
	box-sizing: border-box;
	position: relative;
}
#Header .header_top .header_info .header_search .search_box input {
	height: 38px;
	border: none;
}
#Header .header_top .header_info .header_search .search_box input[type="text"] {
	width: 100%;
	font-size: 1em;
	font-weight: 400;
	color: #555;
	padding: 0 14px;
	vertical-align: middle;
	box-sizing: border-box;
	background-color: transparent;
}
#Header
	.header_top
	.header_info
	.header_search
	.search_box
	input[type="text"]::-webkit-input-placeholder {
	color: #999999;
} /* Edge */
#Header
	.header_top
	.header_info
	.header_search
	.search_box
	input[type="text"]:-ms-input-placeholder {
	color: #999999;
} /* Internet Explorer 10-11 */
#Header
	.header_top
	.header_info
	.header_search
	.search_box
	input[type="text"]::placeholder {
	color: #999999;
}
#Header
	.header_top
	.header_info
	.header_search
	.search_box
	input[type="text"]:focus {
	background-color: #ffdffa;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	outline: 0;
}
#Header
	.header_top
	.header_info
	.header_search
	input[type="text"]:focus
	~ .btn
	input {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	outline: 0;
}
#Header .header_top .header_info .header_search .search_box .btn {
	height: 100%;
	position: absolute;
	top: 0;
	right: 5px;
}
#Header .header_top .header_info .header_search .search_box button {
	width: 44px;
	height: 38px;
	background-color: transparent;
	background-image: url(../images/btn_top_search.svg);
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	vertical-align: top;
	background-size: 60%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
#Header .header_top .header_info .header_search button:hover,
#Header .header_top .header_info .header_search button:focus {
	background-color: #cb02ac;
}
#Header .header_top .header_info .header_search label {
	width: 0;
	height: 0;
	font-size: 0;
	position: absolute;
	visibility: h idden;
}
#Header .header_top .header_info .header_search > a {
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	letter-spacing: 0;
}
#Header .header_top .header_info .header_search > span::before {
	content: "|";
	color: #000;
	padding: 0 6px;
}
#Header .header_top .header_info .header_search > a:hover,
#Header .header_top .header_info .header_search > a:focus {
	color: #cb02ac;
}

/* nav desktop */
@media screen and (min-width: 1024px) {
	.MenuBox {
		background: #cb02ac;
		clear: both;
		z-index: 6000;
	}
	#Menu {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 1440px;
		min-height: 79px;
		margin: auto;
	}
	#Menu a {
		transition: all 0.3s;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
	}
	#Menu > li {
		flex: 0 1 auto;
		line-height: 1.5em;
		position: relative;
		text-align: center;
		box-sizing: border-box;
	}
	#Menu > li > a {
		display: block;
		font-size: 1.15rem;
		font-weight: 500;
		color: #fff;
		letter-spacing: 1px;
		text-decoration: none;
		padding: 27px 15px;
	}
	html.fs3 #Menu > li > a {
		padding: 24px 15px;
	}
	#Menu > li > a:hover,
	#Menu > li > a:focus {
		background-color: #ff00d8;
	}
	#Menu > li > a .icon {
		display: inline-block;
		width: 26px;
		height: 26px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 50%;
		margin-right: 6px;
		margin-bottom: -5px;
	}
	/* #Menu > li > a::before {
					content: '';
					width: 26px;
					height: 26px;
					position: absolute;
					top: 26px;
					left: 14px;
				} */
	/* #Menu > li.navIcons01 > a::before {background-image: url(../images/icon_nav_01.svg);}
				#Menu > li.navIcons02 > a::before {background-image: url(../images/icon_nav_02.svg);}
				#Menu > li.navIcons03 > a::before {background-image: url(../images/icon_nav_03.svg);}
				#Menu > li.navIcons04 > a::before {background-image: url(../images/icon_nav_04.svg);}
				#Menu > li.navIcons05 > a::before {background-image: url(../images/icon_nav_05.svg);}
				#Menu > li.navIcons06 > a::before {background-image: url(../images/icon_nav_06.svg);}
				#Menu > li.navIcons07 > a::before {background-image: url(../images/icon_nav_07.svg);}
				#Menu > li.navIcons08 > a::before {background-image: url(../images/icon_nav_08.svg);} */
	/* 先隱藏子選單,等網頁載入完畢後再顯示 */
	#Menu.superfish {
		position: relative;
		overflow: hidden;
	}
	#Menu.superfish.sf-js-enabled {
		overflow: visible;
	}
	/*第二層底下共用*/
	#Menu ul {
		-webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
		-moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	}
	#Menu ul li {
		text-align: center;
		padding: 10px;
		position: relative;
	}
	#Menu ul li a {
		font-size: 1rem;
		font-weight: 300;
		color: #555;
		line-height: 1.5em;
		text-decoration: none;
		padding: 12px 15px;
	}
	#Menu ul li a:hover,
	#Menu ul li a:focus {
		font-weight: 400;
		color: #cb02ac;
	}
	#Menu ul li a::before {
		content: "";
		width: 0;
		height: 1px;
		background-color: #cb02ac;
		transition: all 0.3s;
		position: absolute;
		bottom: 7px;
		left: 50%;
	}
	#Menu ul li a:hover::before {
		width: 90%;
		opacity: 1;
		left: 5%;
	}
	#Menu.superfish ul a.sf-with-ul::after {
		content: "";
		width: 8px;
		height: 8px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		margin-top: -3px;
		position: absolute;
		top: 50%;
		right: 10px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	/*第二層*/
	#Menu > li > ul {
		display: none;
		width: 300px;
		background-color: #fff;
		/* margin-left: -90px; */
		position: absolute;
		top: 80px;
		left: 0;
		z-index: 2224;
	}
	/*第三層*/
	#Menu > li > ul > li > ul {
		display: none;
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		top: 0px;
		left: 100%;
		z-index: 2223;
	}
	/*第四層*/
	#Menu > li > ul > li > ul li > ul {
		display: none;
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		top: 0px;
		left: 100%;
		z-index: 2222;
	}
	/* 選單第1個的處理 */
	#Menu.superfish > li:nth-last-child(2) > ul,
	#Menu.superfish > li:first-child > ul {
		margin-left: 0;
		left: 0;
	}
	/* 選單倒數第1個的處理 */
	#Menu.superfish > li:nth-last-child(2) > ul,
	#Menu.superfish > li:last-child > ul {
		right: 0;
		left: auto;
	}
	#Menu.superfish > li:nth-last-child(2) > ul > li > ul,
	#Menu.superfish > li:last-child > ul > li > ul {
		right: 100%;
		left: auto;
	}
	#Menu.superfish > li:nth-last-child(2) ul a.sf-with-ul::after,
	#Menu.superfish > li:last-child ul a.sf-with-ul::after {
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
		right: auto;
		left: 10px;
	}
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
	#Menu > li > a {
		font-size: 1.2vw;
	}
	#Menu > li > a::before {
		width: 21px;
		height: 21px;
		top: 30px;
		left: 20px;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
	#Header .logo a {
		max-width: 350px;
	}
	.footer_info {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	#Menu > li > a {
		font-size: 1.3vw;
	}
	#Menu ul li a {
		font-size: 1.3vw;
	}
	#Menu > li {
		height: 60px;
	}
	#Menu > li > ul {
		top: 60px;
	}
	#Menu > li > a::after {
		height: 10px;
		bottom: -12px;
	}
	#Menu > li > a::before {
		width: 21px;
		height: 21px;
		top: 30px;
		left: 20px;
	}
}
/* 浮動效果 */
/* @media screen and (min-width: 1024px) {
	.MenuFix #Header {
		width: 100%;
		background-color: #fff;
		-webkit-box-shadow: 0 10px 10px rgba(0,0,0,0.2);
		-moz-box-shadow: 0 10px 10px rgba(0,0,0,0.2);
		box-shadow: 0 10px 10px rgba(0,0,0,0.2);
		animation: header 0.5s ease 1;
		position: fixed;
		top: 0;
		left: 0;
	}
	.MenuFix #Header .logo {width:190px;}
	.MenuFix #Header .logo h1 {height: 60px;}
	.MenuFix #Header .header_top {
		margin-bottom: 20px;
		padding: 15px 54px 0 45px;
	}
	.MenuFix #Header .header_top .header_info .header_links ul {margin-bottom: 5px;}
	.MenuFix #Header .header_top .header_info .header_search .search_box {height: 32px;}
	.MenuFix #Header .header_top .header_info .header_search .search_box input {height: 28px;}
	.MenuFix .MenuBox {height: 50px;}
	.MenuFix #Header #Menu > li {height: 60px;}
	.MenuFix #Menu > li > ul {top: 60px;}
	.MenuFix #Menu > li > a::after {
		height: 10px;
		bottom: -12px;
	}
	.MenuFix #Menu > li > a {
		padding: 13px 15px 13px 50px;
	}
	.MenuFix #Menu > li > a::before {top: 13px;}
} */
/* @-webkit-keyframes header {
	0% {top:-50px;}
	100% {top:0;}
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
	.MenuFix #Wrap {padding-top:141px;}
	.MenuFix.with_announce_bar #Wrap {padding-top:185px;}
	.MenuFix #Header .MenuBox {width:100%;}
}
@media screen and (min-width: 1280px) {
	.MenuFix #Wrap {padding-top:156px;}
	.MenuFix.with_announce_bar #Wrap {padding-top:200px;}
}
@media screen and (min-width: 1440px) {
	.MenuFix #Menu > li > a {font-size: 1.125em;}
} */

/* footer */
#Footer {
	background: #fff;
	color: #666;
	line-height: 1.5em;
	position: relative;
	box-shadow: #00000066 0 6px 10px;
	margin-top: 80px;
}
#Footer a {
	text-decoration: none; display:inline-block;
}
#Footer .footer_menu a:hover,
#Footer .footer_menu a:focus {
	color: #ff00d8;
}
#Footer .footer_info a:hover,
#Footer .footer_info a:focus {
	color: #ffc5f6;
}
#Footer .footer_info a:focus {
	outline: 2px dashed #ffc5f6;
}
/* footer選單 */
.footer_menu > ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1600px;
	margin: auto;
	box-sizing: border-box;
	padding: 40px 0;
}
.footer_menu a {
	color: #666;
}
.footer_menu > ul > li {
	max-width: 12.5%;
	border-right: 1px solid #ddd;
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 30px;
	padding-left: 25px;
	padding-right: 25px;
	flex: 0 0 12.5%;
}
@media screen and (min-width: 1424px) {
	.footer_menu > ul > li:nth-child(8n + 8) {
		border-right: none;
	}
}
@media screen and (min-width: 1264px) and (max-width: 1423px) {
	.footer_menu > ul {
		justify-content: flex-start;
	}
	.footer_menu > ul > li {
		max-width: 20%;
		flex: 0 0 20%;
	}
	.footer_menu > ul > li:nth-child(5n + 5) {
		border-right: none;
	}
}
@media screen and (max-width: 1263px) {
	.footer_menu > ul {
		justify-content: flex-start;
	}
	.footer_menu > ul > li {
		max-width: 25%;
		flex: 0 0 25%;
	}
	.footer_menu > ul > li:nth-child(4n + 4) {
		border-right: none;
	}
}
.footer_menu > ul > li:last-of-type {
	border-right: none;
}
.footer_menu > ul > li a p {
	font-size: 1.125rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 0;
	position: relative;
}
.footer_menu > ul > li a p::after {
	content: "";
	width: 60px;
	height: 2px;
	background-color: #ff7beb;
	margin-left: -30px;
	position: absolute;
	bottom: -5px;
	left: 50%;
}
.footer_menu > ul > li > ul {
	margin-top: 25px;
}
.footer_menu > ul > li > ul > li {
	text-align: left;
	margin-bottom: 10px;
}
.footer_menu > ul > li > ul > li:last-of-type {
	margin-bottom: 0;
}
/* footer資訊 */
.footer_info {
	width: 100%;
	background: #595a5e;
	font-weight: 300;
	color: #fff;
	padding: 35px 0 25px 0;
}
.footer_info a {
	color: #fff;
}
.footer_info .footer_links {
	margin-bottom: 30px;
}
.footer_info .footer_links .links_text {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	font-size: 1rem;
}
.footer_info .footer_links .links_text li::after {
	content: "|";
	padding: 0 10px;
}
.footer_info .footer_links .links_text li:last-of-type::after {
	display: none;
}
.footer_info .item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: end;
	max-width: 1600px;
	margin: auto;
	padding: 0 20px;
}
.footer_info .item .about li {
	color: #fff;
	line-height: 2rem;
}
.footer_info .item .copyright {
	color: #fff;
	text-align: right;
}
.footer_info .links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.footer_info .links li {
	height: 40px;
	margin: 0 0 10px 15px;
}
.footer_info .links li:first-child {
	margin-left: 0;
}
.footer_info .links a {
	height:100%;
}
.footer_info .links a:hover {
	opacity: 0.7;
}
.footer_info .links img {
	max-width: 100%;
	max-height: 100%;
}

/* Btn Top */
.BtnTop {
	display: none;
	text-align: center;
	right: 5px;
	bottom: 65px;
	position: fixed;
	z-index: 9994;
}
.MenuFix .BtnTop {
	display: block;
}
.MenuFix .BtnTop a {
	display: block;
	width: 60px;
	height: 60px;
	background-color: #cb02ac;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	font-size: 0.875em;
	color: #fff;
	text-decoration: none;
	padding-top: 26px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	box-sizing: border-box;
	position: relative;
	z-index: 9993;
}
.MenuFix .BtnTop a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	margin-left: -6px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	top: 28%;
	left: 50%;
}
.BtnTop a:hover,
.BtnTop a:focus {
	background-color: #000;
}

/* bxSlider_list共通設定 */
/* 不顯示子項目 */
.bxSlider_list li {
	display: none;
	list-style: none;
	float: left;
	position: relative;
}
.bxSlider_list li:first-child {
	display: block;
}
/* 當JS執行時顯示全部 */
.bx-viewport .bxSlider_list li {
	display: block;
}
.bx-wrapper {
	margin: auto;
	padding: 0;
	position: relative;
	zoom: 1;
}
.bx-viewport {
	position: relative;
	z-index: 5555;
	zoom: 1;
}
.bxSlider_list {
	clear: both;
	overflow: hidden;
	position: relative;
	z-index: 5580;
}
/* 修改Key visual圖片載入時Slider高度過高問題 */
.bxSlider_list {
	position: relative;
}
/* 載入時顯示loading動畫,載完後圖片淡入 */
.bxSlider_list {
	background: url("../../loader.gif") no-repeat center center;
	overflow: hidden;
}
.bxSlider_list li {
	opacity: 0;
	display: block;
	/* -webkit-transition: all 2s ease; */
	/* -moz-transition: all 2s ease; */
	/* transition: all 2s ease; */
}
.bxSlider_list.show {
	background-image: none;
}
.bxSlider_list.show li {
	opacity: 1;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
.bx-wrapper .bx-controls-direction a {
	display: block;
	font-size: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	z-index: 6666;
}
/* PAGER */
.bx-wrapper .bx-pager {
	position: absolute;
	z-index: 6666;
}
.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	display: block;
	text-indent: 10000px;
}

/* 表單 */
.FormGroup {
	background-color: #fff;
	border: none;
	box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.15);
	margin: 40px 0;
	padding: 30px;
	position: relative;
}
fieldset.FormGroup {
	box-sizing: border-box;
	max-width: 100%;
}
.FormGroup .FormGroupTitle {
	background-color: #fec;
	color: #fff;
	position: absolute;
	top: -1.25em;
	left: 30px;
}
.FormGroup .FormGroupTitle span {
	display: inline-block;
	font-size: 1.25em;
	font-weight: 400;
	letter-spacing: 0.2em;
	padding: 0.5em 0.75em 0.5em 0.95em;
}
.FormGroup legend.FormGroupTitle {
	display: block;
	margin: 0;
	padding: 0;
}
.FormGroup .last_info {
	border-top: 1px solid #949494;
	padding-top: 10px;
}
.FormTable {
	width: 100%;
	margin-bottom: 20px;
}
.FormTable > tbody > tr > th,
.FormTable > tbody > tr > td {
	font-size: 100%;
}
.FormTable > tbody > tr > th {
	font-weight: 400;
	color: #3a597b;
	line-height: 28px;
	position: relative;
}
.FormTable > tbody > tr > td {
	line-height: 35px;
}
.FormTable > tbody > tr > th.text-top {
	vertical-align: top;
}
/* 表單內按鈕 */
.FormElmt input.check_btn {
	height: 40px;
	background-color: #333;
	font-size: 1rem;
	color: #fff;
	line-height: 40px;
	padding: 0 8px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.FormElmt input.check_btn:hover {
	background-color: #1eb9ee;
}
.FormElmt .go_btn input {
	width: 60px;
	height: 46px;
	background-color: #f4a657;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	line-height: 46px;
}
.FormElmt .go_btn input:hover,
.FormElmt .go_btn input:focus {
	background-color: #7e4e2b;
}

/* 表單元件 */
.FormElmt input[type="text"],
.FormElmt input[type="password"],
.FormElmt input[type="file"],
.FormElmt input[type="number"],
.FormElmt input[type="date"],
.FormElmt input[type="month"],
.FormElmt input[type="week"],
.FormElmt input[type="time"],
.FormElmt input[type="datetime-local"],
.FormElmt input[type="email"],
.FormElmt input[type="search"],
.FormElmt input[type="tel"],
.FormElmt input[type="url"] {
	height: 35px;
	line-height: 35px;
}

.FormElmt input[type="text"],
.FormElmt input[type="password"],
.FormElmt input[type="file"],
.FormElmt input[type="number"],
.FormElmt input[type="date"],
.FormElmt input[type="month"],
.FormElmt input[type="week"],
.FormElmt input[type="time"],
.FormElmt input[type="datetime-local"],
.FormElmt input[type="email"],
.FormElmt input[type="search"],
.FormElmt input[type="tel"],
.FormElmt input[type="url"],
.FormElmt select,
.FormElmt textarea {
	vertical-align: top;
	margin-bottom: 8px;
}

.FormElmt input[type="text"],
.FormElmt input[type="password"],
.FormElmt input[type="number"],
.FormElmt input[type="date"],
.FormElmt input[type="month"],
.FormElmt input[type="week"],
.FormElmt input[type="time"],
.FormElmt input[type="datetime-local"],
.FormElmt input[type="email"],
.FormElmt input[type="search"],
.FormElmt input[type="tel"],
.FormElmt input[type="url"],
.FormElmt textarea,
.FormElmt select {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	box-sizing: border-box;
	font-size: 1em;
	color: #222;
}
.FormElmt input[type="text"],
.FormElmt input[type="password"],
.FormElmt input[type="file"],
.FormElmt input[type="number"],
.FormElmt input[type="date"],
.FormElmt input[type="month"],
.FormElmt input[type="week"],
.FormElmt input[type="time"],
.FormElmt input[type="datetime-local"],
.FormElmt input[type="email"],
.FormElmt input[type="search"],
.FormElmt input[type="tel"],
.FormElmt input[type="url"] {
	padding: 0 0.5em;
}
.FormElmt textarea {
	padding: 5px 10px;
}
.FormElmt select {
	max-width: 100%;
	height: 35px;
	line-height: 26px;
	color: #333;
	padding: 5px 0.25em;
}
.FormElmt input[type="text"]:focus,
.FormElmt input[type="password"]:focus,
.FormElmt input[type="file"]:focus,
.FormElmt input[type="number"]:focus,
.FormElmt input[type="date"]:focus,
.FormElmt input[type="month"]:focus,
.FormElmt input[type="week"]:focus,
.FormElmt input[type="time"]:focus,
.FormElmt input[type="datetime-local"]:focus,
.FormElmt input[type="email"]:focus,
.FormElmt input[type="search"]:focus,
.FormElmt input[type="tel"]:focus,
.FormElmt input[type="url"]:focus,
.FormElmt textarea:focus,
.FormElmt select:focus {
	border: 1px solid #dbb107;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	-webkit-transition: all ease-in 0.2s;
	-moz-transition: all ease-in 0.2s;
	transition: all ease-in 0.2s;
	outline: 0;
}
.FormElmt hr {
	margin: 25px 0;
}
.FormElmt input.addr {
	display: block;
	margin-top: 8px;
}
.FormElmt .gender {
	display: inline-block;
}
.FormElmt .gender input[type="radio"] {
	margin-left: 25px;
}
.FormElmt .w40 {
	width: 40px;
}
.FormElmt .w60 {
	width: 60px;
}
.FormElmt .w80 {
	width: 80px;
}
.FormElmt .w100 {
	width: 100px;
}
.FormElmt .w160 {
	width: 100%;
	max-width: 160px;
}
.FormElmt .w200 {
	width: 100%;
	max-width: 200px;
}
.FormElmt .w260 {
	width: 100%;
	max-width: 260px;
}
.FormElmt .w300 {
	width: 100%;
	max-width: 300px;
}
.FormElmt .w400 {
	width: 100%;
	max-width: 400px;
}
.FormElmt .w500 {
	width: 100%;
	max-width: 500px;
}
.FormElmt .w600 {
	width: 100%;
	max-width: 600px;
}
.FormElmt .fullwidth {
	width: 100%;
}
.FormElmt .dev-calendar {
	width: 100%;
	max-width: 150px;
}
.FormElmt .note {
	font-size: 0.875em;
	line-height: 160%;
	color: #e60000;
}
.FormElmt .desc {
	font-size: 0.875em;
	line-height: 160%;
	vertical-align: middle;
}
.FormElmt span.required {
	color: #e60000;
}
.FormElmt .Foreword {
	font-size: 0.875em;
	color: #e60000;
	padding: 5px 0;
}
.post_info + .FormGroup {
	margin-top: 60px;
}

/* checkbox/radio群組 */
.FormElmt .input_group.inline {
	display: flex;
	flex-wrap: wrap;
}
.FormElmt .input_group.inline > div {
	margin-right: 15px;
}
.FormElmt .input_group input[type="text"] {
	width: auto;
	margin-left: 8px;
}

/* 驗證碼 */
.FormElmt .randomcode {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.FormElmt .randomcode > div {
	margin-right: 1em;
}
.FormElmt .randomcode .input input[type="text"] {
	width: 120px;
}
.FormElmt .randomcode .img img {
	vertical-align: middle;
}
.FormElmt .randomcode .btn {
	display: flex;
	flex-wrap: wrap;
}
.FormElmt .randomcode .btn > * {
	height: 30px;
	background: url("../images/icon_randomcode.png") no-repeat;
	border: 0;
	line-height: 30px;
	margin: 0 15px 8px 0;
	padding: 0 5px 0 22px;
	cursor: pointer;
}
.FormElmt .randomcode .btn a {
	box-sizing: border-box;
	text-decoration: none;
}
.FormElmt .randomcode .btn input,
.FormElmt .randomcode .btn a,
.FormElmt .randomcode .btn button {
	border-bottom: 1px solid #e0e0e0;
	font-size: 0.875rem;
	color: #555;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.FormElmt .randomcode .btn input:hover,
.FormElmt .randomcode .btn a:hover,
.FormElmt .randomcode .btn button:hover {
	background-color: #e1eef8;
	border-bottom-color: #fec;
}
.FormElmt .randomcode .btn input:focus,
.FormElmt .randomcode .btn a:focus,
.FormElmt .randomcode .btn button:focus {
	background-color: #e1eef8;
	border-bottom-color: #fec;
}
.FormElmt .randomcode .btn .refresh {
	background-position: 5px;
}
.FormElmt .randomcode .btn .play {
	background-position: 5px -30px;
}

/* 按鈕 - 內元素只能 button 或 a */
.BtnCommon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px 0;
}
.BtnCommon > div {
	margin: 10px 15px;
}
.BtnCommon.tl {
	justify-content: flex-start;
}
.BtnCommon.tr {
	justify-content: flex-end;
}
.BtnCommon button,
.BtnCommon a {
	display: block;
}
.BtnCommon button,
.BtnCommon a {
	font-weight: 400;
}
.BtnCommon.large button,
.BtnCommon.large a {
	height: 50px;
	line-height: 50px;
}
.BtnCommon.mid button,
.BtnCommon.mid a {
	height: 40px;
	line-height: 40px;
}
.BtnCommon.small button,
.BtnCommon.small a {
	height: 36px;
	line-height: 36px;
}

.BtnCommon div[class] button:before {
	display: block;
	content: "";
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	margin-top: -9px;
	position: absolute;
	top: 50%;
	z-index: 5;
}
.BtnCommon.large div[class] button:before {
	right: 30px;
}
.BtnCommon.mid div[class] button:before {
	right: 20px;
}
.BtnCommon.small div[class] button:before {
	right: 15px;
}

.BtnCommon a,
.BtnCommon button {
	background-color: #004097;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}
.BtnCommon.large a,
.BtnCommon.large button {
	padding: 0 30px;
	font-size: 1em;
	letter-spacing: 0.2em;
}
.BtnCommon.mid a,
.BtnCommon.mid button {
	padding: 0 25px;
	font-size: 0.9375em;
}
.BtnCommon.small a,
.BtnCommon.small button {
	padding: 0 15px;
	font-size: 0.9375em;
}
.BtnCommon.large div[class] a,
.BtnCommon.large div[class] button {
	padding-right: 58px;
}
.BtnCommon.mid div[class] a,
.BtnCommon.mid div[class] button {
	padding-right: 45px;
}
.BtnCommon.small div[class] a,
.BtnCommon.small div[class] button {
	padding-right: 40px;
}
.BtnCommon button {
	border: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
}
.BtnCommon button::before {
	-webkit-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	transition: background 0.3s ease;
}
.BtnCommon div.submit button::before {
	/* background-image: url(../images/icon_menu_down.svg); */
	background-position: 0 0;
	transform: rotate(-90deg);
}
.BtnCommon div.submit button:hover::before {
	filter: grayscale(1) contrast(100);
}
.BtnCommon div.submit button:focus::before {
	filter: grayscale(1) contrast(100);
}
.BtnCommon div.reset button::before {
	/* background-image: url("../images/icon_reset.png"); */
	background-position: 0 4px;
}
.BtnCommon div.reset button:hover::before {
	filter: saturate(0) contrast(100) invert(1);
}
.BtnCommon div.reset button:focus::before {
	filter: saturate(0) contrast(100) invert(1);
}

.BtnCommon a:hover,
.BtnCommon button:hover {
	background-color: #dbb107;
}
.BtnCommon a:focus,
.BtnCommon button:focus {
	background-color: #dbb107;
	outline: none;
}

/* datepicker共通設定 */
.ui-datepicker {
	display: none;
	background-color: #fff;
	-webkit-box-shadow: 0 0 5px #b2b2b2;
	-moz-box-shadow: 0 0 5px #b2b2b2;
	box-shadow: 0 0 5px #b2b2b2;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-top: 5px;
	padding: 15px 8px 7px 8px;
	position: relative;
}
.ui-datepicker-prev,
.ui-datepicker-next {
	display: block;
	width: 12px;
	height: 12px;
	background: url("../images/icon_datepicker.png") no-repeat;
	text-indent: -10000px;
	cursor: pointer;
	position: absolute;
	top: 25px;
}
.ui-datepicker-prev {
	background-position: 0 0;
	left: 12px;
}
.ui-datepicker-next {
	background-position: 0 -12px;
	right: 12px;
}
.ui-datepicker-prev:hover {
	background-position: -12px 0;
}
.ui-datepicker-next:hover {
	background-position: -12px -12px;
}
.ui-datepicker-title {
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
}
.ui-datepicker-title select {
	height: 30px;
	border: 1px solid #ccc;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding: 5px;
}
.ui-datepicker-title select.ui-datepicker-year {
	margin-right: 6px;
}
.ui-datepicker-title select.ui-datepicker-month {
	margin-left: 6px;
}
.ui-datepicker-calendar {
	margin-top: 5px;
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
	width: 27px;
	padding: 0;
	font-family: Arial, Helvetica, "微軟正黑體", sans-serif;
	text-align: center;
}
.ui-datepicker-calendar th {
	font-size: 0.875rem;
	font-weight: bold;
}
.ui-datepicker-calendar td {
	font-size: 0.75rem;
}
.ui-datepicker-calendar th span,
.ui-datepicker-calendar td span,
.ui-datepicker-calendar td a {
	display: block;
	padding: 5px 0 5px;
}
.ui-datepicker-calendar td a {
	color: #333;
	text-decoration: none;
}
.ui-datepicker-unselectable {
	color: #cfcfcf;
}
.ui-datepicker-today {
	background-color: #098690;
}
.ui-datepicker-calendar td.ui-datepicker-today a {
	color: #fff !important;
}
.ui-datepicker-unselectable.ui-datepicker-today {
	background-color: #f0f0f0;
}
.ui-datepicker-calendar td a.ui-state-default:hover {
	color: #e60012;
}
.ui-datepicker-current-day a {
	border: 1px solid #21293c;
}

/* ColorBox Style - updata20210706 */
#colorbox,
#cboxOverlay,
#cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10001;
	overflow: hidden;
}
#cboxOverlay {
	width: 100%;
	height: 100%;
	position: fixed;
}
#cboxMiddleLeft,
#cboxBottomLeft {
	clear: left;
}
#cboxContent {
	font-size: 0.875em;
	text-align: center;
	position: relative;
}
#cboxLoadedContent {
	padding: 30px 5px 60px 5px;
	overflow: auto;
}
#cboxTitle {
	margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}
.cboxPhoto {
	display: block;
	max-width: none;
	border: 0;
	margin: auto;
	float: left;
}
.cboxIframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
	box-sizing: content-box;
}
/* 相關圖片 */
#colorbox_thum {
	display: flex;
	flex-wrap: wrap;
	padding-top: 10px;
	overflow: hidden;
}
#colorbox_thum a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	vertical-align: middle;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	margin: 10px;
}
#colorbox_thum a:hover,
#colorbox_thum a:focus {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05);
}
#colorbox_thum a * {
	vertical-align: middle;
}
#colorbox_thum a img {
	max-width: 100%;
	max-height: 100%;
}
#cboxOverlay {
	background: #000;
}
#cboxContent {
	margin-top: 20px;
}
.cboxIframe {
	background: #fff;
}
#cboxError {
	border: 1px solid #ccc;
	padding: 50px;
}
#cboxLoadedContent {
	background: #000;
	border: 5px solid #000;
}
#cboxTitle {
	width: 100%;
	box-sizing: border-box;
	color: #fff;
	line-height: 18px;
	padding: 0 10px;
	position: absolute;
	bottom: 10px;
	*bottom: 20px;
	left: 0;
}
#cboxCurrent {
	color: #ccc;
	position: absolute;
	top: -20px;
	right: 0px;
}
#cboxSlideshow {
	color: #fff;
	position: absolute;
	top: -20px;
	right: 90px;
}
#cboxPrevious {
	width: 28px;
	height: 65px;
	background: url("../images/colorbox_controls.png") no-repeat top left;
	text-indent: -9999px;
	margin-top: -32px;
	position: absolute;
	top: 50%;
	left: 5px;
}
#cboxPrevious:hover {
	background-position: bottom left;
}
#cboxNext {
	width: 28px;
	height: 65px;
	text-indent: -9999px;
	background: url("../images/colorbox_controls.png") no-repeat top right;
	margin-top: -32px;
	position: absolute;
	top: 50%;
	right: 5px;
}
#cboxNext:hover {
	background-position: bottom right;
}
#cboxLoadingOverlay {
	background: #000;
}
#cboxLoadingGraphic {
	background: url("../images/colorbox_loading.gif") no-repeat center center;
}
#cboxClose {
	display: block;
	width: 38px;
	height: 19px;
	background: url("../images/colorbox_controls.png") no-repeat top center;
	text-indent: -9999px;
	position: absolute;
	top: 5px;
	right: 5px;
}
#cboxClose:hover {
	background-position: bottom center;
}
/* popup box */
.popup_box {
	display: none;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10006;
}
.popup_box.show {
	display: block;
}
.popup_box .box_wrap {
	background-color: #fff;
	box-sizing: border-box;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
	position: relative;
}
.popup_box .box_wrap > div {
	overflow-y: auto;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	overflow-x: hidden;
}
.popup_box .box_wrap > div::-webkit-scrollbar {
	width: 14px;
	height: 14px;
	-webkit-appearance: none;
}
.popup_box .box_wrap > div::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border: 3px solid #fff;
	border-radius: 8px;
}
.popup_box .box_wrap > div::-webkit-scrollbar-thumb:hover {
	background-color: #000;
}
.popup_box .cont > *:last-child {
	margin-bottom: 0;
}
.popup_box .close {
	width: 28px;
	height: 28px;
	background-color: #bbb;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-indent: -10000px;
	cursor: pointer;
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 10000;
}
.popup_box .close::before,
.popup_box .close::after {
	display: block;
	content: "";
	width: 2px;
	height: 14px;
	background-color: #fff;
	margin: -7px 0 0 -1px;
	position: absolute;
	top: 50%;
	left: 50%;
}
.popup_box .close::before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.popup_box .close::after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.popup_box .close:hover {
	background-color: #333;
}

/*----------------------------------------------------------------------*/
/* 手機板選單 */
/* mmenu補丁 */
#MenuMobile { --mm-color-background:#fff; }
.mm-wrapper--opened .mm-wrapper__blocker { opacity:1; --mm-blocker-opacity-delay:0s; box-shadow:0 0 10px rgba(0,0,0,.5); }
#mm-1 .mm-navbar { display:none; }
.mm-btn--next:after, .mm-btn--prev:before { border-left:1px solid #35343e; border-top:1px solid #35343e; }
.mm-navbar__title { justify-content:flex-start; }
.mm-listitem:after { inset-inline-start:0; }
.mm-footer + .mm-listitem:before {
	content:""; display:block; position:absolute; top:0; inset-inline-start:0; inset-inline-end:0;
	border-color:inherit; border-bottom-width:1px; border-bottom-style:solid; 
	}
.mm-listitem__text { text-overflow:inherit; white-space:normal; overflow:hidden; }
.mm-menu a.mm-listitem__text:hover { color:#00005d; }
.mm-menu a.mm-btn--next:hover::after { border-color:#00005d; }

.mm-search { padding:20px; }
.mm-search .search_box { width:100%; position:relative; }
.mm-search .search_box input[type="text"] { 
	width:100%; height:48px; line-height:48px; padding:0 45px 0 8px; background-color:#fff; border:0; font-size:0.875rem; 
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
	}
.mm-search .search_box input[type="text"], .mm-search .search_box input[type="text"]::placeholder { color:#636363; }
.mm-search .search_box .btn { 
	position:absolute; top:0; right:0; width:40px; height:48px; text-indent:-999px; overflow:hidden; background-color:#deba29; cursor:pointer;
	}
.mm-search .search_box .btn::before { 
	content:''; display:block; position:absolute; top:50%; left:50%; width:16px; height:16px; margin:-8px 0 0 -8px; 
	background:url(../images/btn_form_search.svg) no-repeat 0 0; background-size:100%; 
	}

/* 針對iPhone的補丁 */
#MenuMobile.mm-menu { opacity:0; }
#MenuMobile.mm-menu.mm-menu--opened { opacity:1; }

/* follow us */
#MenuMobile .mm-footer section { width:100%; }
#MenuMobile .follow_us { padding:12px 0; }
#MenuMobile .follow_us ul { display:flex; align-items:center; justify-content:space-around; flex-wrap:wrap; }
#MenuMobile .follow_us li { padding:5px; }
#MenuMobile .follow_us li a { 
	display:block; width:48px; height:48px; background-color:#fff; border:1px solid #dcdcdc; border-radius:50%; text-indent:-999px; overflow:hidden; position:relative; 
	}
#MenuMobile .follow_us li a::before {
	content:''; display:block; position:absolute; top:50%; left:50%; width:24px; height:24px; margin:-12px 0 0 -12px; 
	background:url(../images/icon_follow_us.png) no-repeat; background-size:200%;
	}
	#MenuMobile .follow_us .fb a::before { background-position:0 0; }
	#MenuMobile .follow_us .yt a::before { background-position:0 50%; }
	#MenuMobile .follow_us .ig a::before { background-position:0 100%; }
	#MenuMobile .follow_us .fb a:hover, #MenuMobile .follow_us .fb a:focus { background-color:#1877f2; }
	#MenuMobile .follow_us .yt a:hover, #MenuMobile .follow_us .yt a:focus { background-color:#fe0000; }
	#MenuMobile .follow_us .ig a:hover, #MenuMobile .follow_us .ig a:focus { background: linear-gradient(to right, #ed0018 0%, #ba00b2 100%); }
	#MenuMobile .follow_us .fb a:hover::before, #MenuMobile .follow_us .fb a:focus::before { background-position:right 0; }
	#MenuMobile .follow_us .yt a:hover::before, #MenuMobile .follow_us .yt a:focus::before { background-position:right 50%; }
	#MenuMobile .follow_us .ig a:hover::before, #MenuMobile .follow_us .ig a:focus::before { background-position:right 100%; }

@media screen and (min-width: 1024px) {
#nav, #MenuMobile, .switch { display:none; }
}
@media screen and (max-width: 1023px) {
html.mm-open { overflow:hidden; }
#nav .switch a {
	display:block; position:fixed; top:5px; left:0; width:50px; height:50px; z-index:99999; background-color:#fff; transition-delay:0.3s;
	}
.menu-action { height:30px; left:50%; margin-left:-13px; overflow:hidden; }
.menu-action::after, .menu-action::before, .menu-action > i::before, .menu-action, .menu-action > i { width:26px; }
.menu-action::after, .menu-action::before, .menu-action > i::before {
	content:""; position:absolute; left:0; height:3px; background:#00005d none repeat scroll 0 0; transition:all 0.3s ease;
	}
.menu-action, .menu-action > i { position:absolute; top:50%; transform:translateY(-50%); }
.menu-action::after { bottom:6px; }
.menu-action::before { top:6px; }
.menu-action > i { height:3px; left:0; text-indent:-999px; overflow:hidden; }
.menu-action > i::before { top:0; }

.mm-wrapper--opened .menu-action > i { opacity:0; }
.mm-wrapper--opened .menu-action::after { bottom:13px; transform:rotate(45deg); }
.mm-wrapper--opened .menu-action::before { top:14px; transform:rotate(-45deg); }

.mm-wrapper--opened .mm-wrapper__blocker { opacity:0.8; }
}

/* 編輯器 */
.editable_content {
	padding-top: 10px;
}
.editable_content.content {
	margin-top: 20px;
	margin-bottom: 30px;
}

/* 為文字上稿區可能出現的元素做設定 */
.editable_content,
.editable_content p,
.editable_content li,
.editable_content div,
.editable_content blockquote {
	line-height: 2em;
}
.editable_content .district,
.editable_content div,
.editable_content table,
.editable_content iframe,
.editable_content blockquote {
	margin-top: 15px;
	margin-bottom: 15px;
}
.editable_content p,
.editable_content ul,
.editable_content ol {
	margin-top: 2em;
	margin-bottom: 2em;
}
.editable_content p {
	padding: 0;
}
.editable_content h4,
.editable_content h5,
.editable_content h6 {
	line-height: 1.5em;
	margin-bottom: 5px;
}
.editable_content h4 + *:not(h4):not(h5):not(h6),
.editable_content h5 + *:not(h4):not(h5):not(h6),
.editable_content h6 + *:not(h4):not(h5):not(h6) {
	margin-top: 10px;
}
.editable_content h4 + h4,
.editable_content h4 + h5,
.editable_content h4 + h6,
.editable_content h5 + h4,
.editable_content h5 + h5,
.editable_content h5 + h6,
.editable_content h6 + h4,
.editable_content h6 + h5,
.editable_content h6 + h6 {
	margin-top: 20px;
}
.editable_content h4 {
	font-size: 1.5rem;
	font-weight: 400;
	color: #cb02ac;
	overflow: hidden;
}
.editable_content h5 {
	font-size: 1.375rem;
	font-weight: 500;
	color: #222;
}
.editable_content h6 {
	font-size: 1.25rem;
	font-weight: 400;
}

.editable_content .district .imgleft ~ blockquote,
.editable_content .district .imgright ~ blockquote {
	margin-left: 0;
	margin-right: 0;
}
.editable_content blockquote {
	background: #fff;
	border-left: none;
	-webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	font-size: 1.125em;
	color: #000;
	margin: 0px 0 35px 0;
	padding: 35px 55px;
	position: relative;
	overflow: hidden;
}
.editable_content blockquote::before,
.editable_content blockquote::after {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 4.5rem;
	font-weight: 500;
	color: #ff00d8;
	line-height: 100%;
	position: absolute;
}
.editable_content blockquote::before {
	content: "“";
	top: 20px;
	left: 15px;
}
.editable_content blockquote::after {
	content: "”";
	top: 20px;
	right: 15px;
}

.editable_content ol {
	list-style-type: decimal;
	padding-left: 25px;
	overflow: hidden;
}
.editable_content ul {
	list-style-type: disc;
	padding-left: 25px;
	overflow: hidden;
}
.editable_content ul[type="disc"] {
	list-style-type: disc;
}
.editable_content ul[type="circle"] {
	list-style-type: circle;
}
.editable_content ul[type="square"] {
	list-style-type: square;
}
.editable_content li {
	margin-bottom: 10px;
}
.editable_content ol ol {
	list-style-type: lower-alpha;
}
.editable_content ul ul {
	list-style-type: circle;
}
.editable_content ul ul,
.editable_content ul ol,
.editable_content ol ul,
.editable_content ol ol {
	margin-top: 5px;
	margin-bottom: 0;
}
.editable_content ul li:last-child,
.editable_content li:last-child {
	margin-bottom: 0;
}
.editable_content hr {
	margin: 30px 0;
	border-color: #deba29;
	border-width: 1px 0 0 0;
	border-style: solid;
}

/* 影片、相關連結、相關檔案 */
.MsgModule_Download span,
.MsgModule_Link span {
	white-space: nowrap;
	font-weight: 500;
}
.MsgModule_Download + .MsgModule_Download,
.MsgModule_Download + .MsgModule_Link,
.MsgModule_Link + .MsgModule_Download,
.MsgModule_Link + .MsgModule_Link {
	margin-top: -10px;
}

.editable_content .MsgModule_Media {
	width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.editable_content .MsgModule_Media.left {
	margin-left: 0;
}
.editable_content .MsgModule_Media.right {
	margin-right: 0;
}
.editable_content .MsgModule_Media.landscape {
	width: 560px;
}
.editable_content .MsgModule_Media.portrait {
	width: 315px;
}
.editable_content .MsgModule_Media .media_wrap {
	text-align: left;
	margin-top: 0;
	margin-bottom: 0;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
}
.editable_content .MsgModule_Media.landscape.ratio_16by9 .media_wrap {
	padding-bottom: 56.25%;
}
.editable_content .MsgModule_Media.portrait.ratio_16by9 .media_wrap {
	padding-bottom: 177.77%;
}
.editable_content .MsgModule_Media.landscape.ratio_4by3 .media_wrap {
	padding-bottom: 75%;
}
.editable_content .MsgModule_Media.portrait.ratio_4by3 .media_wrap {
	padding-bottom: 133.33%;
}
.editable_content .MsgModule_Media .media_wrap iframe,
.editable_content .MsgModule_Media .media_wrap object,
.editable_content .MsgModule_Media .media_wrap embed {
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.editable_content .MsgModule_Media .describe {
	background-color: #f0f0f0;
	text-align: left;
	line-height: 150%;
	margin: 0;
	padding: 20px;
}
.editable_content .MsgModule_Media .describe span {
	display: block;
}
.editable_content .MsgModule_Media .describe .title {
	margin-bottom: 10px;
}
.editable_content .MsgModule_Media .describe .title strong {
	font-weight: 500;
}
.editable_content .MsgModule_Media .describe .desc {
	font-size: 0.9375rem;
}
.editable_content .MsgModule_Media .describe .desc strong {
	font-weight: 500;
}
.editable_content noscript div.ytlink {
	padding: 0;
	margin: 0;
	line-height: 18px;
} /* no script時影片區塊顯示的訊息 */

.editable_content .MsgModule_Media video {
	display: block;
	width: 100%;
}

/* 文繞圖設定 */
.editable_content .district::after {
	content: "";
	display: block;
	clear: both;
}
.editable_content .district .img_bg + * {
	margin-top: 0;
}
.editable_content .district > *:first-child {
	margin-top: 0;
}
.editable_content .district > *:last-child {
	margin-bottom: 0;
}
.editable_content .img_bg {
	margin-bottom: 15px;
}
.editable_content .imgleft {
	margin-right: 25px;
	float: left;
}
.editable_content .imgright {
	margin-left: 25px;
	float: right;
}
.editable_content .imgcenter {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}
.editable_content .imgleft,
.editable_content .imgright {
	max-width: 50%;
}
.editable_content .img_bg span {
	display: block;
	box-sizing: border-box;
	font-size: 0.875rem;
	color: #555;
	line-height: 1.5rem;
	text-align: left;
	margin: 0 auto;
	padding: 0 0 0 14px;
	position: relative;
}
.editable_content .img_bg span::after {
	content: "";
	display: block;
	border-right: 5px solid rgba(255, 255, 255, 0);
	border-bottom: 5px solid #818181;
	border-left: 5px solid rgba(255, 255, 255, 0);
	position: absolute;
	top: 0.55rem;
	left: 0;
}

/* 單篇延伸區塊 */
.editable_content h4.ext_title {
	display: flex;
	align-items: center;
	font-size: 1.125rem;
	letter-spacing: 0.1em;
	margin-top: 25px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
}
h4.ext_title:before {
	content: "";
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-image: url(../images/icon_module.png);
	background-repeat: no-repeat;
	background-size: 100%;
	margin-right: 5px;
}
h4.ext_title::after {
	content: "";
	width: 100%;
	border-top: 1px solid #e0e0e0;
	position: absolute;
	bottom: 13px;
	left: 120px;
}
h4.icon_file:before {
	background-position: 0 0;
}
h4.icon_link:before {
	background-position: 0 50%;
}
h4.icon_photo:before {
	background-position: 0 100%;
}
.editable_content + h4.ext_title {
	margin-top: 30px;
}
.prevNextLink + h4.ext_title {
	margin-top: 30px;
}

.editable_content ul.ext_list {
	list-style: none;
	margin-bottom: 0;
	padding: 5px 0;
	overflow: inherit;
}
.editable_content ul.ext_list li {
	line-height: 1.5em;
	margin-bottom: 20px;
	padding: 6px 10px;
	position: relative;
}
.editable_content ul.ext_list li a {
	color: #333;
	text-decoration: none;
	word-wrap: break-word;
}
.editable_content ul.ext_list li a:hover,
ul.ext_list li a:focus {
	color: #cb02ac;
	text-decoration: underline;
}
.editable_content ul.ext_list li span.file_ext {
	width: 24px;
	height: 24px;
	text-indent: -10000px;
	margin-left: 6px;
}
/* 雜湊值驗證 */
a.icon_lock {
	width: 23px;
	height: 23px;
	margin-left: 6px;
	font-size: 0;
	text-decoration: none;
	background: url(../images/icon_lock.png) no-repeat center;
	display: inline-block;
	vertical-align: middle;
	transition: 0.3s;
	border: 1px solid #dedede;
	border-radius: 50%;
	margin-bottom: 5px;
}
a.icon_lock:hover,
a.icon_lock:focus {
	opacity: 0.7;
}

/* html編輯區的表格預設樣式 */
.editable_content table[align="center"] {
	margin-right: auto;
	margin-left: auto;
}
.editable_content table caption {
	font-weight: bold;
	color: #333;
	text-align: left;
	line-height: 150%;
	margin: 5px 0;
	padding: 5px 0;
}
.editable_content .tableWrap {
	width: 100%;
	margin-bottom: 1em;
	position: relative;
	overflow-y: auto;
	_overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.editable_content .tableWrap table {
	margin: 0;
}
/*添加IOS下卷軸*/
.editable_content .tableWrap::-webkit-scrollbar {
	width: 14px;
	height: 14px;
	-webkit-appearance: none;
}
.editable_content .tableWrap::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border: 3px solid #fafafa;
	border-radius: 8px;
}
.editable_content .tableWrap::-webkit-scrollbar-thumb:hover {
	background-color: #005496;
}

/* html編輯區的表格外框樣式 */
.editable_content .table_style1 {
	width: 100%;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
.editable_content .table_style1 > tbody > tr > th,
.editable_content .table_style1 > tbody > tr > td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	line-height: 160%;
	padding: 5px 8px;
}
.editable_content .table_style1 > tbody > tr > th {
	background-color: #fec;
	font-weight: 500;
	color: #333;
	white-space: nowrap;
}
.editable_content .table_style1 > tbody > tr > td {
	background-color: #fff;
	color: #333;
}
/* 移除第一個物件的上邊界、上間距避免過大的空白 */
.editable_content > *:first-child,
.editable_content blockquote > *:first-child,
.editable_content td > *:first-child {
	margin-top: 0;
}
/* 移除最後一個物件的下邊界、下間距避免過大的空白 */
.editable_content > *:last-child,
.editable_content blockquote > *:last-child,
.editable_content td > *:last-child {
	margin-bottom: 0;
}
/* 避免爆版 */
.editable_content iframe,
.editable_content img,
.editable_content div,
.editable_content p,
.editable_content span {
	max-width: 100%;
	box-sizing: border-box;
}
.editable_content * {
	word-wrap: break-word;
}
/* 取消圖片的高度設定避免RWD時不等比例縮放 */
.editable_content img {
	height: auto;
}

.tl {
	text-align: left;
}
.tc {
	text-align: center;
}
.tr {
	text-align: right;
}

/* 客製樣式 */
.font_biger {
	font-size: 1.333333em;
	font-weight: 700;
	color: #000;
}
.editable_content ol.sitemap_list,
.editable_content ul.sitemap_list {
	list-style-type: none;
	padding-left: 0;
}
.editable_content ol.sitemap_list ul {
	margin-left: 1em;
}

.editable_content p.s_title {
	font-size: 1.125em;
	font-weight: 400;
	color: #415a7b;
	margin-bottom: 0;
}
.editable_content p.s_title + p {
	margin-top: 0;
}

.editable_content .district + h4.ext_title {
	padding-top: 35px;
	position: relative;
}

/* 內頁標題 */
.PageTitle {
	text-align: center;
	padding-bottom: 40px;
}
.PageTitle h2 {
	font-size: 2.5rem;
	color: #666;
	letter-spacing: 0.15em;
	padding-left: 0.15em;
	position: relative;
}
.PageTitle h2::after {
	content: "";
	width: 60px;
	height: 2px;
	background-color: #ff7beb;
	margin-left: -30px;
	position: absolute;
	bottom: -5px;
	left: 50%;
}

/*測試用menu*/
.ifun_text_menu {
	font-family: "微軟正黑體";
	font-weight: normal;
	font-size: 0.875em;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10004;
}
.ifun_text_menu a {
	display: block;
	text-decoration: none;
}
.ifun_text_menu a:hover {
	color: #304fb0;
}
.ifun_text_menu li {
	position: relative;
}
.ifun_text_menu > ul > li > a {
	width: 30px;
	height: 30px;
	text-indent: -10000px;
}
.ifun_text_menu > ul ul {
	display: none;
	width: 140px;
	position: absolute;
	top: 30px;
	left: 0;
}
.ifun_text_menu > ul ul > li:hover > ul {
	display: block;
}
.ifun_text_menu > ul ul li {
	background-color: rgba(255, 255, 255, 0.75);
}
.ifun_text_menu > ul ul a {
	color: #222;
	line-height: 180%;
	padding: 5px 10px;
}
.ifun_text_menu > ul ul .text {
	padding: 5px 10px;
	line-height: 180%;
	color: #222;
}
.ifun_text_menu li.with::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #333;
	position: absolute;
	right: 5px;
	top: 14px;
}
.ifun_text_menu > ul > li:hover > ul {
	display: block;
}
.ifun_text_menu > ul ul ul {
	top: 0;
	left: 140px;
}
.ifun_text_menu > ul ul > li:hover > .text {
	background: #fec;
	color: #000;
}
.ifun_text_menu > ul ul > li:hover > a {
	background: #fec;
	color: #000;
}

/* RWD */
/* width_narrow */
@media screen and (max-width: 639px) {
	/* Header */
	.header_info,
	.header_search,
	.MenuBox {
		display: none;
	}
	#Header .logo {
		margin: 7px auto;
	}
	#Header .logo a {
		height: 50px;
	}
	#Header {
		background-color: #fff;
		box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
		box-sizing: border-box;
		margin-bottom: 30px;
	}
	#Header .header_top {
		margin-bottom: 0;
		padding-top: 0;
	}
	#Header .header_top .logo h1 {
		max-width: 180px;
		margin: auto;
	}
	#Header .header_cont {
		width: 100%;
		box-sizing: border-box;
	}
	.PageTitle h2 {
		font-size: 1.5em;
	}

	/* footer */
	.footer_info {
		padding: 20px 0;
	}
	.footer_menu_box {
		padding-top: 20px;
	}
	.footer_menu {
		display: none;
	}
	.footer_info .about {
		margin-bottom: 10px;
	}

	/* Btn Top */
	.BtnTop a {
		width: 50px;
		height: 50px;
		letter-spacing: 0.05em;
		padding-top: 22px;
	}
	.BtnTop a::after {
		top: 26%;
	}

	/* 編輯器 */
	.editable_content blockquote {
		padding: 45px 20px 20px;
	}
	.editable_content blockquote::before,
	.editable_content blockquote::after {
		top: 10px;
	}
	.editable_content ol {
		padding-left: 20px;
	}
	.editable_content ul {
		padding-left: 20px;
	}
	.editable_content .imgleft,
	.editable_content .imgright {
		max-width: 100%;
		text-align: center;
		margin-top: 0;
		margin-right: auto;
		margin-bottom: 20px;
		margin-left: auto;
		float: none !important;
		clear: both;
	}
	ul.ext_list {
		margin-top: 5px;
		padding-left: 30px;
	}
	.mob_hide {
		display: none;
	}
	.dep_hide {
		display: block;
	}
	.post_info.below span {
		font-size: 0.875em;
		letter-spacing: 0;
		padding-left: 0.5em;
	}
	.editable_content h4.ext_title {
		margin-bottom: 10px;
	}
	#colorbox_thum a {
		width: 120px;
		height: 90px;
		margin: 0 5px 5px;
	}

	/* 表單 */
	.FormGroup {
		margin-bottom: 15px;
		padding: 25px 12px;
	}
	.FormTable,
	.FormTable > tbody,
	.FormTable > tbody > tr,
	.FormTable > tbody > tr > th,
	.FormTable > tbody > tr > td {
		display: block;
	}
	.FormTable > tbody > tr > th {
		text-align: left;
	}
	.FormTable > tbody > tr {
		padding: 5px 10px 0;
	}

	.input_table li {
		width: 50%;
	}

	/* 驗證碼 */
	.FormElmt .randomcode .img img {
		margin-bottom: 11px;
	}

	/* 表單元件 */
	.FormElmt input[type="text"],
	.FormElmt input[type="password"],
	.FormElmt input[type="file"],
	.FormElmt input[type="number"],
	.FormElmt input[type="date"],
	.FormElmt input[type="month"],
	.FormElmt input[type="week"],
	.FormElmt input[type="time"],
	.FormElmt input[type="datetime-local"],
	.FormElmt input[type="email"],
	.FormElmt input[type="search"],
	.FormElmt input[type="tel"],
	.FormElmt input[type="url"] {
		line-height: 40px;
		height: 40px;
	}
	.FormElmt select {
		height: 40px;
	}

	.FormElmt .go_btn input {
		height: 40px;
		line-height: 40px;
	}
	.form_box.FormElmt .go_btn input {
		width: 40px;
	}

	/* 按鈕 */
	.BtnCommon.large a,
	.BtnCommon.large input {
		font-size: 1em;
		padding: 0 15px;
	}
	.BtnCommon.large div[class] a,
	.BtnCommon.large div[class] input {
		padding-left: 36px;
	}
	.BtnCommon.large div[class] span:before {
		left: 13px;
	}
	.BtnCommon.btn_form {
		margin-bottom: 0;
	}

	/* popup box */
	.popup_box {
		padding: 12px;
	}
	.popup_box .box_wrap {
		padding: 10px;
	}
	.popup_box .box_wrap > div {
		height: calc(100vh - 44px);
	}
}
@media screen and (max-width: 559px) {
	.editable_content .imgleft,
	.editable_content .imgright {
		width: 100%;
		text-align: center;
	}
}
@media screen and (max-width: 479px) {
	#Header .header_top {
		justify-content: center;
	}
	#Header .logo {
		max-width: 100%;
		margin: 7px 0;
	}
	#Header .logo h1 {
		width: 180px;
	}
}
@media screen and (max-width: 430px) {
	.footer_info .footer_links .links_text {
		flex-direction: column;
		align-items: center;
	}
	.footer_info .footer_links .links_text li::after {
		content: "";
	}
}
/* @media screen and (max-width: 330px) {
	#Header .header_top {justify-content: end;}
} */
/* width_wide */
@media screen and (max-width: 1023px) {
	#Header .header_top {
		width: initial;
		margin-bottom: 0;
		padding: 5px 10px;
	}
	#Header .header_top .logo {
		width: 180px;
	}
	#Header .header_top .header_info {
		display: none;
	}
	.footer_info .item {
		justify-content: center;
		align-items: center;
	}
	.footer_info .item .col_left,
	.footer_info .item .col_center,
	.footer_info .item .col_right {
		width: 80%;
		flex: 0 0 80%;
	}
	.footer_info .links {
		justify-content: start;
	}
	.footer_info .item .copyright {
		text-align: left;
	}
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
	.header_info,
	.header_search,
	.MenuBox {
		display: none;
	}
	#Header {
		margin-bottom: 30px;
	}
	#Header .logo {
		margin: 7px auto;
	}
	#Header .logo a {
		height: 50px;
	}
	#Header {
		display: flex;
		flex-direction: column-reverse;
		background-color: #fff;
		box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
		box-sizing: border-box;
		position: relative;
		z-index: 9990;
	}
	.PageTitle h2 {
		font-size: 1.5em;
	}

	/* footer */
	.footer_info {
		padding: 20px 0;
	}
	.footer_menu_box {
		padding-top: 20px;
	}
	.footer_menu {
		display: none;
	}

	/* 編輯器 */
	.editable_content ul.ext_list {
		padding-left: 30px;
	}
	#colorbox_thum a {
		width: 160px;
		height: 120px;
		margin: 0 10px 20px;
	}

	/* 表單 */
	.FormTable > tbody > tr > th,
	.FormTable > tbody > tr > td {
		vertical-align: top;
	}
	.FormTable > tbody > tr > th {
		width: 125px;
		text-align: right;
		padding: 15px;
	}
	.FormTable > tbody > tr > th:empty::after {
		display: none;
	}
	.FormTable > tbody > tr > td {
		padding: 10px 15px 4px 0;
	}
	.FormTable.lectureForm > tbody > tr > th {
		padding: 18px 15px 18px 0;
	}
	.FormTable.lectureForm > tbody > tr > td {
		padding: 14px 15px 7px 0;
	}

	/* 表單元件 */
	.FormElmt input + input,
	.FormElmt input + select,
	.FormElmt select + input,
	.FormElmt select + select {
		margin-left: 4px;
	}

	/* 表單元件 */
	.FormElmt input[type="text"],
	.FormElmt input[type="password"],
	.FormElmt input[type="file"],
	.FormElmt input[type="number"],
	.FormElmt input[type="date"],
	.FormElmt input[type="month"],
	.FormElmt input[type="week"],
	.FormElmt input[type="time"],
	.FormElmt input[type="datetime-local"],
	.FormElmt input[type="email"],
	.FormElmt input[type="search"],
	.FormElmt input[type="tel"],
	.FormElmt input[type="url"] {
		height: 40px;
		line-height: 40px;
	}
	.FormElmt select {
		height: 40px;
	}

	.FormElmt .go_btn input {
		height: 40px;
		line-height: 40px;
	}
	.form_box.FormElmt .go_btn input {
		width: 40px;
	}
}
/* width_desktop */
@media screen and (min-width: 1024px) {
	/* 字體設定 */
	body,
	select,
	input,
	button {
		font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體",
			"Microsoft YaHei", "微软雅黑", sans-serif;
		font-weight: 300;
	}
	.index_title .sub_title,
	.index_about_box h3,
	.PageTitle h2 {
		font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體",
			"Microsoft YaHei", "微软雅黑", sans-serif;
		font-weight: 500;
	}
	.CatTitle .cat_select .btn,
	.ListTable td,
	h2.articleTitle,
	h3.articleTitle,
	#Menu li a {
		font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體",
			"Microsoft YaHei", "微软雅黑", sans-serif;
		font-weight: 400;
	}

	/* Header */
	#Header .header_cont {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#Header .logo h1 {
		height: 80px;
	}
	#Header .logo a {
		max-width: 442px;
	}
	.header_search::after {
		content: "";
		display: block;
		clear: both;
	}
	.MenuBox {
		width: 100%;
	}

	/* footer */
	.footer_info::after {
		content: "";
		display: block;
		clear: both;
	}
	.footer_info .item .col_left,
	.footer_info .item .col_center,
	.footer_info .item .col_right {
		flex-basis: 0;
		flex-grow: 1;
	}

	.inner {
		padding-right: 30px;
		padding-left: 30px;
	}

	/* 編輯器 */
	#colorbox_thum a {
		width: calc(100% / 5 - 20px);
		margin-bottom: 30px;
	}

	/* 表單 */
	.FormTable > tbody > tr > th,
	.FormTable > tbody > tr > td {
		vertical-align: top;
	}
	.FormTable > tbody > tr > th {
		text-align: right;
		line-height: 1.5rem;
		padding: 20px 15px;
	}
	.FormTable > tbody > tr > th:empty::after {
		display: none;
	}
	.FormTable > tbody > tr > td {
		line-height: 40px;
		padding: 12px 15px 4px 0;
	}

	/* 表單元件 */
	.FormElmt input + input,
	.FormElmt input + select,
	.FormElmt select + input,
	.FormElmt select + select {
		margin-left: 4px;
	}
	.FormElmt .randomcode {
		align-items: center;
	}
	.FormElmt .randomcode .input input[type="text"] {
		margin-bottom: 0;
	}
	.FormElmt .randomcode .btn > * {
		margin-bottom: 0;
	}
	.control_indicator {
		top: 0.1em;
	}
	.privacy_agree .control_indicator {
		top: 0;
	}
	.control {
		padding-left: 1.75em;
	}

	/* 表單元件 */
	.FormElmt input[type="text"],
	.FormElmt input[type="password"],
	.FormElmt input[type="file"],
	.FormElmt input[type="number"],
	.FormElmt input[type="date"],
	.FormElmt input[type="month"],
	.FormElmt input[type="week"],
	.FormElmt input[type="time"],
	.FormElmt input[type="datetime-local"],
	.FormElmt input[type="email"],
	.FormElmt input[type="search"],
	.FormElmt input[type="tel"],
	.FormElmt input[type="url"] {
		height: 40px;
		line-height: 40px;
	}
	.FormElmt select {
		height: 40px;
	}

	.FormElmt .go_btn input {
		height: 40px;
		line-height: 40px;
	}
	.form_box.FormElmt .go_btn input {
		width: 40px;
	}

	.BtnCommon.large a,
	.BtnCommon.large button {
		height: 70px;
		font-size: 1.125em;
		line-height: 70px;
		padding: 0 72px;
	}
	.BtnCommon.large div[class] a,
	.BtnCommon.large div[class] button {
		padding-right: 81px;
	}
	.BtnCommon.large div[class] button:before {
		right: 50px;
	}
	.BtnCommon.mid a,
	.BtnCommon.mid button {
		height: 45px;
		line-height: 45px;
	}

	/* 標題 */
	.PageTitle h2 {
		font-size: 2.5em;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
	.footer_info .item .col_left,
	.footer_info .item .col_center {
		width: 60%;
		max-width: 60%;
		flex: 0 0 60%;
		flex-grow: 1;
	}
	.footer_info .item .col_right {
		width: 40%;
		max-width: 40%;
		flex: 0 0 40%;
		flex-grow: 1;
	}
}
@media screen and (max-width: 1474px) {
	.footer_menu > dl dt {
		font-size: 1.1rem;
	}
}
@media screen and (min-width: 1440px) {
	ul.footer_menu {
		justify-content: space-between;
	}
}
@media screen and (max-width: 1366px) {
	#Header .header_top {
		margin-bottom: 20px;
		padding-top: 20px;
	}
	#Header .header_top .logo {
		width: 250px;
	}
	#Menu {
		min-height: 60px;
	}
	#Menu > li > ul {
		margin-left: -78px;
		top: 60px;
	}
	html.fs3 #Menu > li > a {
		padding: 15px 15px;
	}
	#Menu > li > a {
		padding: 17px 15px;
	}
}
@media screen and (max-width: 1321px) {
	.footer_menu > dl {
		flex-basis: 0;
	}
	.footer_menu > dl dt {
		font-size: 1rem;
	}
}
@media screen and (max-width: 1282px) {
	.footer_menu > dl {
		flex-basis: 0;
		flex-grow: 1;
		flex: 0 0 25%;
		max-width: 25%;
		margin-bottom: 30px;
	}
	.footer_menu > dl:nth-of-type(4) {
		border: none;
	}
}
@media screen and (max-width: 1176px) {
	#Menu {
		min-height: 55px;
	}
	#Menu > li > a {
		padding: 16px 15px;
	}
	html.fs1 #Menu {
		min-height: 55px;
	}
	html.fs1 #Menu > li > a {
		padding: 17px 15px;
	}
}
.SubMenuList {
	padding: 50px;
}
.SubMenuList > dl {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
.SubMenuList > dl dd {
	width: 25%;
	padding: 15px;
	flex: 0 0 25%;
	box-sizing: border-box;
}
.SubMenuList > dl dd a {
	display: block;
	height: 100%;
	padding: 10px 20px;
	background-color: #ffd8f9;
	border: 2px solid #cb02ac;
	color: #cb02ac;
	text-decoration: none;
	-webkit-box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.14);
	box-shadow: 2px 2px 17px rgba(0, 0, 0, 0.14);
}
.SubMenuList dd a:hover,
.SubMenuList dd a:focus {
	background-color: #cb02ac;
	color: #fff;
}
@media screen and (max-width: 1023px) {
	.SubMenuList > dl dd {
		width: 33.3333333%;
		flex: 0 0 33.3333333%;
	}
}
@media screen and (max-width: 767px) {
	.SubMenuList > dl dd {
		width: 50%;
		flex: 0 0 50%;
	}
}
@media screen and (max-width: 576px) {
	.SubMenuList > dl dd {
		width: 100%;
		flex: 0 0 100%;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#Header .header_top .header_info .header_search {
		justify-content: flex-end;
	}
}
