﻿@charset "utf-8";
/* CSS Document */
/* color: #6552f7; */
/* ======================= */
/* -------------------------
1. Container-Custom
2. 表單 ( form-control / input / Label )
3. 內頁左邊選單 / 內頁上邊選單
4. 自訂 共用 - 按鈕
5. 自訂 Model ( 互動視窗 )
6. 自訂 麵包屑 ( Breadcrumb )
7. 首頁 HEADER --> Header_Box
8. LOGO Name
9. Toggler Menu
10. Carousel_Slide
11. Contact-us .row
12. layout_padding set 
13. Fullpage-wrapper
14. 標準標題 STYLE-0
15. 自訂標題 STYLE-1
16. 新聞公告 - STYLE-0 / STYLE-1 / STYLE-2 / STYLE-3
17. 活動花絮 + 學生作品
18. 頁尾 FOOTER
19. GO-TO-TOP
20. H1~H6
21. 內頁分頁按鍵
22. 教師Members
23. 服務區塊Service_block
-------------------------- */
/* ======================= */


@import url(https://fonts.googleapis.com/css?family=Roboto);


* {
	font-family: "open sans","微軟正黑體",sans-serif;
}

a, 
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
    outline: 2px solid rgb(80,4,0,0.02);
	outline-offset: -2px;
}
[tabindex="-1"]:focus:not(:focus-visible) {
	text-decoration: none;
    outline: 2px solid rgb(80,4,0,0.02) !important;
	outline-offset: -2px;
}
img {
    max-width: 100%;
    height: auto;
}
.list-group {
    list-style: none;
}
/* ============================================= */
/* ****** Container-Custom  ********************* */
/* ============================================= */
@media (min-width: 1200px) {
  .container-custom {
    max-width: 1200px; /*1170 / 1500*/
  }
}

.container-custom {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/* ============================================= */
/* ****** Container-Custom  ********************* */
/* ============================================= */
.bg_area {
	position: relative; 
	z-index: 16; 
	background-color: #efefef; 
	background-size: auto; 
	background-repeat: no-repeat; 
	/*background-image: url(images/bg/main_background-image_1903x4000.png)*/
}

/*.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}*/

/* ============================================= */
/* ****** 表單所有 ( 以下 ) ********************** */
/* ============================================= */
.required {
	color: red;
	font-size: 87.5%; /*0.875em*/
	margin-left: 5px;
}

.y-required {
	color: yellow;
	font-size: 87.5%; /*0.875em*/
	margin-left: 5px;
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.form-control:not(.form-control-lg):not(.form-control-sm), 
.swal-modal input.swal-content__input:not(.form-control-lg):not(.form-control-sm) {
    height: -webkit-calc(1.5em + .75rem + 3px);
    height: -moz-calc(1.5em + .75rem + 3px);
    height: calc(1.5em + .75rem + 3px);
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: rgba(255, 255, 255, 0.6);
    background-clip: padding-box;
    border: 1px solid #ffffff;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control.border-red{
	border: 1px solid #500400;
}
.form-control::placeholder {
	color: #ffffff;
}

/* ============================================= */
/* ------ 自訂 勾選開關 ------------------------- */
.form-check-input {
    position: absolute;
    margin-top: 0.65rem; /*.3rem*/
    margin-left: 0rem; /*-1.25rem*/
}

.form-check-input {
	padding-top: calc(.375rem + 1px);
	padding-bottom: calc(.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5;
	width: 18px;
	height: 18px;
}

.custom-check-label {
	padding-top: calc(.375rem + 1px);
	padding-bottom: calc(.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5;
}

.custom-check-label span.check-txt {
    margin-left: 1.5rem;
}
/* ------ 自訂 勾選開關 ------------------------- */
/* ============================================= */


/* ============================================= */
/* ------ 自訂 輸入區 --------------------------- */
textarea.custom-form-control-height-lg {
    height: auto !important;
}
/* ------ 自訂 輸入區 --------------------------- */
/* ============================================= */

.questionnaire-block-box {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 100%; /*1em*/
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.block-linebox {
    display: block;
    width: 100%;    
    padding: .375rem .75rem;
    font-size: 100%; /*1em*/
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


/* ============================================= */
/* ****** 表單所有 ( 以上 ) ********************* */
/* ============================================= */



/* ============================================= */
/* ****** 內頁左邊選單 ( 以下 )******************* */
/* ============================================= */
.page-leftmenu {
	position: relative;
    display: block;
}

.page-leftmenu .list-group {
	display: inline-block;
	padding-left: 0px;
	margin-bottom: 20px
}

.page-leftmenu ul.list-group li {
    position: relative;
    list-style: none;
    z-index: 1;
    float: left;
    margin: 0;
	width: 100%;
	margin-bottom: 5px;
}

@media (min-width: 320px) and (max-width: 992px) {
	.page-leftmenu ul.list-group li {
		width: 50%;
	}
}

.page-leftmenu .list-group-item {
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid #ddd;
	width: 100%;
}

.page-leftmenu .list-group-item:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px
}

.page-leftmenu .list-group-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px
}

.page-leftmenu a.list-group-item,button.list-group-item {
	color: #555
}

.page-leftmenu a.list-group-item .list-group-item-heading,
.page-leftmenu button.list-group-item .list-group-item-heading {
	color: #333
}

.page-leftmenu a.list-group-item:focus,
.page-leftmenu a.list-group-item:hover,
.page-leftmenu button.list-group-item:focus,
.page-leftmenu button.list-group-item:hover {
	color: #fff;
	text-decoration: none;
	background-color: #ff8c04; /*#343a40*/
	border-color: #ff8c04; /*#343a40*/
}

.page-leftmenu .list-group-item.active,
.page-leftmenu .list-group-item.active:focus,
.page-leftmenu .list-group-item.active:hover {
	z-index: 2;
	color: #fff;
	background-color: #ff8c04; /*#343a40*/
	border-color: #ff8c04; /*#343a40*/
}

.page-leftmenu .list-group-item a.active,
.page-leftmenu .list-group-item a.active:focus,
.page-leftmenu .list-group-item a.active:hover {
	z-index: 2;
	color: #fff;
	background-color: #ff8c04; /*#343a40*/
	border-color: #ff8c04; /*#343a40*/
}

.page-leftmenu button.list-group-item {
	width: 100%;
	text-align: left
}

.page-leftmenu .list-group-item.disabled,
.page-leftmenu .list-group-item.disabled:focus,
.page-leftmenu .list-group-item.disabled:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #eee
}

.page-leftmenu .list-group-item.disabled .list-group-item-heading,
.page-leftmenu .list-group-item.disabled:focus .list-group-item-heading,
.page-leftmenu .list-group-item.disabled:hover .list-group-item-heading {
	color: inherit
}

.page-leftmenu .list-group-item.disabled .list-group-item-text,
.page-leftmenu .list-group-item.disabled:focus .list-group-item-text,
.page-leftmenu .list-group-item.disabled:hover .list-group-item-text {
	color: #777
}

.page-leftmenu .list-group-item.active .list-group-item-heading,
.page-leftmenu .list-group-item.active .list-group-item-heading > .small,
.page-leftmenu .list-group-item.active .list-group-item-heading > small,
.page-leftmenu .list-group-item.active:focus .list-group-item-heading,
.page-leftmenu .list-group-item.active:focus .list-group-item-heading > .small,
.page-leftmenu .list-group-item.active:focus .list-group-item-heading > small,
.page-leftmenu .list-group-item.active:hover .list-group-item-heading,
.page-leftmenu .list-group-item.active:hover .list-group-item-heading > .small,
.page-leftmenu .list-group-item.active:hover .list-group-item-heading > small {
	color: inherit
}

.page-leftmenu .list-group-item.active .list-group-item-text,
.page-leftmenu .list-group-item.active:focus .list-group-item-text,
.page-leftmenu .list-group-item.active:hover .list-group-item-text {
	color: #c7ddef
}
/* ============================================= */
/* ****** 內頁左邊選單 ( 以上 ) ****************** */
/* ============================================= */


/* ============================================= */
/* ****** 內頁上邊選單 ( 以下 )******************* */
/* ============================================= */
.page-topmenu {
	position: relative;
    display: block;
}

.page-topmenu .list-group {
	display: inline-block;
	padding-left: 0px;
	margin-bottom: 20px
}

.page-topmenu ul.list-group li {
    position: relative;
    list-style: none;
    z-index: 1;
    float: left;
    margin: 0;
	width: auto;
	margin-bottom: 5px;
}

@media (min-width: 320px) and (max-width: 992px) {
	.page-topmenu ul.list-group li {
		width: auto;
	}
}

.page-topmenu .list-group-item {
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid #ddd;
	width: 100%;
}

.page-topmenu .list-group-item:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px
}

.page-topmenu .list-group-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px
}

.page-topmenu a.list-group-item,button.list-group-item {
	color: #555
}

.page-topmenu a.list-group-item .list-group-item-heading,
.page-topmenu button.list-group-item .list-group-item-heading {
	color: #333
}

.page-topmenu a.list-group-item:focus,
.page-topmenu a.list-group-item:hover,
.page-topmenu button.list-group-item:focus,
.page-topmenu button.list-group-item:hover {
	color: #fff;
	text-decoration: none;
	background-color: #ff8c04; /*#343a40*/
	border-color: #ff8c04; /*#343a40*/
}

.page-topmenu .list-group-item.active,
.page-topmenu .list-group-item.active:focus,
.page-topmenu .list-group-item.active:hover {
	z-index: 2;
	color: #fff;
	background-color: #ff8c04; /*#343a40*/
	border-color: #ff8c04; /*#343a40*/
}

.page-topmenu .list-group-item a.active,
.page-topmenu .list-group-item a.active:focus,
.page-topmenu .list-group-item a.active:hover {
	z-index: 2;
	color: #fff;
	background-color: #ff8c04; /*#343a40*/
	border-color: #ff8c04; /*#343a40*/
}

.page-topmenu button.list-group-item {
	width: 100%;
	text-align: left
}

.page-topmenu .list-group-item.disabled,
.page-topmenu .list-group-item.disabled:focus,
.page-topmenu .list-group-item.disabled:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #eee
}

.page-topmenu .list-group-item.disabled .list-group-item-heading,
.page-topmenu .list-group-item.disabled:focus .list-group-item-heading,
.page-topmenu .list-group-item.disabled:hover .list-group-item-heading {
	color: inherit
}

.page-topmenu .list-group-item.disabled .list-group-item-text,
.page-topmenu .list-group-item.disabled:focus .list-group-item-text,
.page-topmenu .list-group-item.disabled:hover .list-group-item-text {
	color: #777
}

.page-topmenu .list-group-item.active .list-group-item-heading,
.page-topmenu .list-group-item.active .list-group-item-heading > .small,
.page-topmenu .list-group-item.active .list-group-item-heading > small,
.page-topmenu .list-group-item.active:focus .list-group-item-heading,
.page-topmenu .list-group-item.active:focus .list-group-item-heading > .small,
.page-topmenu .list-group-item.active:focus .list-group-item-heading > small,
.page-topmenu .list-group-item.active:hover .list-group-item-heading,
.page-topmenu .list-group-item.active:hover .list-group-item-heading > .small,
.page-topmenu .list-group-item.active:hover .list-group-item-heading > small {
	color: inherit
}

.page-topmenu .list-group-item.active .list-group-item-text,
.page-topmenu .list-group-item.active:focus .list-group-item-text,
.page-topmenu .list-group-item.active:hover .list-group-item-text {
	color: #c7ddef
}
/* ============================================= */
/* ****** 內頁上邊選單 ( 以上 ) ****************** */
/* ============================================= */



/* ============================================= */
/* ------ 自訂 按鈕 ----------------------------- */
.btn {
    position: relative;	
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn.btn-rounded {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.btn.btn-custom-0 {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0);
	border-color: #ffffff;
	border-radius: 0;
	transition: 0.7s;
}

.btn.btn-custom-0:hover {
    /*color: #333;*/ /*標準*/
    /*background-color: #e6e6e6;*/ /*標準*/
    /*border-color: #adadad;*/ /*標準*/	
	color: #FFF;
	background-color: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0em 0em 5px 0px #ffffff;
	transition: 0.7s;
}

.btn.btn-custom-1 {
    color: #ff8c04;
    background-color: #FFFFFF;
	border-color: #ff8c04;
	padding: 10px 60px;
}

.btn.btn-custom-1:focus {
	text-decoration: none;
	outline: 2px solid rgb(80,4,0,0.02);
	outline-offset: -2px;
}

.btn.btn-custom-1:hover {
    /*color: #333;*/ /*標準*/
    /*background-color: #e6e6e6;*/ /*標準*/
    /*border-color: #adadad;*/ /*標準*/	
	color: #FFF;
	background-color: #ff8c04;
	border-color: #ff8c04;
}
/* ------ 自訂 按鈕 ----------------------------- */
/* ============================================= */



/* ============================================= */
/* ------ 自訂 Model --------------------------- */
.custom-model-box {
	position: relative;
	display: block;
}

.custom-model-box .modal-open {
	overflow: hidden
}

.custom-model-box .modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0
}

.custom-model-box .modal.fade .modal-dialog {
	-webkit-transition: -webkit-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out;
	-webkit-transform: translate(0,-25%);
	-ms-transform: translate(0,-25%);
	-o-transform: translate(0,-25%);
	transform: translate(0,-25%)
}

.custom-model-box .modal.in .modal-dialog {
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0)
}

.custom-model-box .modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto
}

.custom-model-box .modal-dialog {
	position: relative;
	width: auto;
	margin: 10px
}

.custom-model-box .modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.custom-model-box .modal-content {
	position: relative;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
	box-shadow: 0 3px 9px rgba(0,0,0,.5)
}

.custom-model-box .modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000
}

.custom-model-box .modal-backdrop.fade {
	filter: alpha(opacity=0);
	opacity: 0
}

.custom-model-box .modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: .5
}

.custom-model-box .modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.custom-model-box .modal-header {
	padding: 15px;
	border-bottom: 1px solid #e5e5e5
}

.custom-model-box .modal-header .close {
	font-size: 131.25%; /*1.3125em; /*21*/
	font-weight: 400;
	line-height: 0.5;
	color: #959595;
	text-shadow: 0 1px 0 #fff;
	margin-top: -2px;
	opacity: 1;
}

.custom-model-box .modal-header button.close {
	padding: 5px;
	border-radius: 50px;
	background-color: #fff;
	border: 1px solid #ccc;
}

.custom-model-box .modal-header button.close:hover {
    background-color: #e6e6e6;
    border-color: #adadad;
}

.custom-model-box .modal-header button.close span {
	display: block;
	width: 15px;
	height: 15px;
}

.custom-model-box .modal-header h3 {
	font-size: 125%; /*1.25em*/
}

.custom-model-box .modal-header h3 i {
	font-size: 150%; /*1.5em*/
	color: #FFB300;
}

.custom-model-box .modal-title {
	font-size: 125%; /*1.25em*/
	line-height: 1.42857143;
	margin: 0;
}

.custom-model-box .modal-body {
	position: relative;
	padding: 15px
}

.custom-model-box .modal-body h4 {
    font-size: 112.5%; /*1.125em*/
	color: #FF0000;
}

.custom-model-box .modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.custom-model-box .modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5
}

.custom-model-box .modal-footer .btn+.btn {
	margin-bottom: 0;
	margin-left: 5px
}

.custom-model-box .modal-footer .btn-group .btn+.btn {
	margin-left: -1px
}

.custom-model-box .modal-footer .btn-block+.btn-block {
	margin-left: 0
}

.custom-model-box .modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

@media (min-width:768px) {
	.custom-model-box .modal-dialog {
		width: 600px;
		margin: 30px auto
	}

	.custom-model-box .modal-content {
		-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
		box-shadow: 0 5px 15px rgba(0,0,0,.5)
	}

	.custom-model-box .modal-sm {
		width: 300px
	}
}
/* ------ 自訂 Model --------------------------- */
/* ============================================= */



/* ============================================= */
/* ------ 自訂 麵包屑 ( Breadcrumb ) ------------ */
.custom_breadcrumb {
    display: block;
}

.custom_breadcrumb ol.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    
    border-radius: 0; /*.25rem*/
	background-color: transparent;
	border-bottom: 1px solid #6c757d;
	align-items: center;
}

.custom_breadcrumb .breadcrumb-item a {
	font-size: 90%;
    color: #6c757d;
	font-weight: bold;
    text-decoration: none;
    background-color: transparent;
}

.custom_breadcrumb .breadcrumb-item a:hover {
	color: #333333;
	color: #aa210f; /* JESS重要 - 變更顏色*/
}

.custom_breadcrumb .breadcrumb-item+.breadcrumb-item {
	padding-left: .5rem
}

.custom_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	float: left;
	padding-right: .5rem;
	color: #6c757d;
	content: "/"
}

.custom_breadcrumb .breadcrumb-item+.breadcrumb-item:hover::before {
	text-decoration: underline
}

.custom_breadcrumb .breadcrumb-item+.breadcrumb-item:hover::before {
	text-decoration: none
}

.custom_breadcrumb .breadcrumb-item.active {
	font-size: 95%;
	font-weight: bold;
	color: #333333;
	color: #ff8c04; /* JESS重要 - 變更顏色*/
}

/* ------ 自訂 麵包屑 ( Breadcrumb ) ------------ */
/* ============================================= */



/* ============================================= */
/* ------ 首頁 HEADER -------------------------- */
.header_section {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	/*
	background-image: url(../images/hero-bg.svg);
	background-size: cover;
	background-position: bottom;
	*/
}

@media (max-width: 992px) {
  .header_section {
    height: auto;
  }
}

.header_section.fixed-top {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;	
	
	background-color: #f8f8f8;
	border-color: #e7e7e7;	
}

.header_section.nav-fixed {
	padding: 0px;
	border-bottom: none;
	background-color: rgba(0,0,0,0.75); /*background-color: rgba(255,255,255,1);*/
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25); 
}

/* ------ Header_Box -------------------------- */
.header_Box {
    position: relative;
    display: block;
		z-index: 10;
}

.header_Box .navsBox {
    position: relative;
    display: block;
		border-bottom: 13px solid #6a1523;
		box-shadow: 0px 4px 16px 6px rgb(0 0 0 / 70%);
}

.header_Box .custom_nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px 0;
    margin: 0;
    list-style: none;
	border-radius: 0;
	background-color: transparent;
	/*border-bottom: 1px solid #6c757d;*/
}

.header_Box .justify-content-start {
	-webkit-box-pack: start!important;
	-ms-flex-pack: start!important;
	justify-content: flex-start!important;
}

.header_Box .justify-content-end {
	-webkit-box-pack: end!important;
	-ms-flex-pack: end!important;
	justify-content: flex-end!important;
}

.header_Box .justify-content-center {
	-webkit-box-pack: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
}

.header_Box .nav-item+.nav-item::before {
	float: left;	
	color: rgba(255,255,255,0.5); /*6c757d*/
	content: "/";
	/*padding-top: .5rem;
	padding-bottom: .5rem;*/
}

.header_Box .nav-item {
	display: flex;
	justify-content: center;
	align-items: center;
	/*height: 30px;*/
}

.header_Box .nav-link {
	font-size: 93.75%; /*0.9375em*/
    display: block;
	
	padding-top: 0.25rem;
	padding-left: 0.35rem;
	padding-right: 0.35rem;
	padding-bottom: 0.25rem;
}

@media (max-width: 992px) {	
	.header_Box .nav-link {
		padding-top: 0.125rem;
		/*padding-left: .75rem;
		padding-right: .75rem;*/
		padding-bottom: 0.25rem;
	}
}
/*.header_Box .nav-item+.nav-item a.nav-link {	
	
}*/

.header_Box .nav-item a.nav-link,
.header_Box .nav-item+.nav-item a.nav-link,
.header_Box .nav-item+.nav-item a.nav-link.disabled {
    color: #500400;
		transition: 0.5s;
		border-bottom: 1px solid #ffffff;
    /*pointer-events: none;*/ /*滑鼠無作用*/
    /*cursor: default;*/ /*預設-滑鼠無作用*/
}

.header_Box .nav-item a:hover.nav-link,
.header_Box .nav-item+.nav-item a:hover.nav-link,
.header_Box .nav-item+.nav-item a:hover.nav-link.disabled {
    /* color: #003709; */
    /*pointer-events: none;*/ /*滑鼠無作用*/
    /*cursor: default;*/ /*預設-滑鼠無作用*/
		border-bottom: 1px solid #500400;
		transition: 0.5s;
}

.header_Box .nav-item a.nav-link.active {	
	color: #500400;
	border-bottom: 1px solid #ffffff;
	transition: 0.5s;
}

.header_Box .nav-item a:hover.nav-link.active {
	border-bottom: 1px solid #500400;
	transition: 0.5s;
}

.header_Box .nav-item a.nav-link i {
	margin-right: 5px;
}
/* ----- .search-box STYLE-標準 ------------------- */
.header_Box .search-box input.form-control:not(.form-control-lg):not(.form-control-sm) {
    height: -webkit-calc(1em + .75rem + 3px);
    height: -moz-calc(1em + .75rem + 3px);
    height: calc(1em + .75rem + 3px);
}

.header_Box input.form-control {
		width: 65% !important;
}

@media (max-width:1467px) {
	.header_Box input.form-control {
		width: 64% !important;
	}
}

@media (max-width:1429px) {
	.header_Box input.form-control {
		width: 63% !important;
	}
}

@media (max-width:1393px) {
	.header_Box input.form-control {
		width: 62% !important;
	}
}

@media (max-width:1359px) {
	.header_Box input.form-control {
		width: 61% !important;
	}
}

@media (max-width:1326px) {
	.header_Box input.form-control {
		width: 60% !important;
	}
}

@media (max-width:1295px) {
	.header_Box input.form-control {
		width: 59% !important;
	}
}

@media (max-width:1266px) {
	.header_Box input.form-control {
		width: 58% !important;
	}
}

@media (max-width:1238px) {
	.header_Box input.form-control {
		width: 57% !important;
	}
}

@media (max-width:1211px) {
	.header_Box input.form-control {
		width: 56% !important;
	}
}

@media (max-width:1186px) {
	.header_Box input.form-control {
		width: 55% !important;
	}
}

@media (max-width:1161px) {
	.header_Box input.form-control {
		width: 54% !important;
	}
}

@media (max-width:1138px) {
	.header_Box input.form-control {
		width: 53% !important;
	}
}

@media (max-width:1116px) {
	.header_Box input.form-control {
		width: 52% !important;
	}
}

@media (max-width:1094px) {
	.header_Box input.form-control {
		width: 51% !important;
	}
}

@media (max-width:1074px) {
	.header_Box input.form-control {
		width: 50% !important;
	}
}

@media (max-width:1054px) {
	.header_Box input.form-control {
		width: 49% !important;
	}
}

@media (max-width:1035px) {
	.header_Box input.form-control {
		width: 48% !important;
	}
}

@media (max-width:1017px) {
	.header_Box input.form-control {
		width: 47% !important;
	}
}

@media (max-width:999px) {
	.header_Box input.form-control {
		width: 46% !important;
	}
}

@media (max-width:991px) {
	.header_Box input.form-control {
		width: 40% !important;
	}
}

@media (max-width:480px) {
	.header_Box input.form-control {
		width: 72% !important;
		margin-right: 5px;
	}
}

@media (max-width:479px) {
	.header_Box input.form-control {
		width: 66% !important;
		margin-right: 5px;
	}
}

@media (max-width:405px) {
	.header_Box input.form-control {
		width: 65% !important;
		margin-right: 5px;
	}
}

@media (max-width:395px) {
	.header_Box input.form-control {
		width: 64% !important;
		margin-right: 5px;
	}
}

@media (max-width:386px) {
	.header_Box input.form-control {
		width: 63% !important;
		margin-right: 5px;
	}
}

@media (max-width:377px) {
	.header_Box input.form-control {
		width: 62% !important;
		margin-right: 5px;
	}
}

@media (max-width:369px) {
	.header_Box input.form-control {
		width: 61% !important;
		margin-right: 5px;
	}
}

@media (max-width:361px) {
	.header_Box input.form-control {
		width: 60% !important;
		margin-right: 5px;
	}
}

@media (max-width:353px) {
	.header_Box input.form-control {
		width: 59% !important;
		margin-right: 5px;
	}
}

@media (max-width:346px) {
	.header_Box input.form-control {
		width: 58% !important;
		margin-right: 5px;
	}
}

@media (max-width:339px) {
	.header_Box input.form-control {
		width: 57% !important;
		margin-right: 5px;
	}
}

@media (max-width:333px) {
	.header_Box input.form-control {
		width: 56% !important;
		margin-right: 5px;
	}
}

@media (max-width:327px) {
	.header_Box input.form-control {
		width: 55% !important;
		margin-right: 5px;
	}
}

@media (max-width:321px) {
	.header_Box input.form-control {
		width: 54% !important;
		margin-right: 5px;
	}
}

.header_Box .search-box .btn {
    position: relative;
	padding: 2.5px 30px !important;
}
/* ----- .search-box STYLE-標準 ------------------- */

/* ----- .search-box STYLE-01 ------------------- */
.search_box {
    position: relative;
}

.search_box label {
    position: absolute;
    left: 28px;
	top: 10px;
}

.search_box label i {
	font-size: 125%;
}

.search_box .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.search_box .search-input {
    padding-left: 43px;
    padding-right: 43px;
    border-radius: 23px;
}
.search_box .search-input::placeholder { /* CSS 3 標準色 */
  color: #999999;
}
.search_box .search-input::-webkit-input-placeholder { /* Chrome, Safari */
  color: #999999;
}
.search_box .search-input:-ms-input-placeholder { /* IE 10+ */
  color: #999999;
}
.search_box .search-input::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
  opacity: 1;
}

@media (min-width: 320px) and (max-width: 992px) {
	.search_box {
		padding-top: 0;
		padding-bottom: 15px;
	}
}
/* ----- .search-box STYLE-01 ------------------- */
/* ------ Header_Box -------------------------- */



/* ------ LOGO Name -------------------------- */
.header_section h1,
.menu_section h1 {
	margin-bottom: 0;
	font-size: inherit;
}

.header_section .navbar-brand,
.header_section h1 .navbar-brand,
.menu_section .navbar-brand,
.menu_section h1 .navbar-brand {
	display: inline-block;
	font-size: 150%; /*1.5em*/
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	margin-right: 1rem;
	margin-bottom: 0;
	color: #4e0607;
	text-shadow: 0.15em 0.15em 0.05em rgba(0, 0, 0, 0.1);
}
@media (max-width:500px) {
	.header_section .navbar-brand,
	.header_section h1 .navbar-brand,
	.menu_section .navbar-brand,
	.menu_section h1 .navbar-brand {
		font-size: 120%;
	}
}
.header_section .navbar-brand img,
.menu_section .navbar-brand img {
  max-width: 40px; /*300*/
	height: auto;
}

/* @media (max-width: 991px) {
	.header_section .navbar-brand img,
	.menu_section .navbar-brand img {
		max-width: 270px; 
		height: auto;
	}
}

@media (min-width: 320px) and (max-width: 435px) {
	.header_section .navbar-brand img,
	.menu_section .navbar-brand img {
		max-width: 225px; 
		height: auto;
	}
} */
/* ------ LOGO Name -------------------------- */



/* ------ MENU Toggler Menu ------------------ */
.menu_section {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	/*
    background-image: url(../images/hero-bg.svg);
    background-size: cover;
    background-position: bottom;
	*/
}

.menu_section .customMENU_Box {
    position: relative;
    display: block;
}

.menu_section .navbar-toggler {
    padding: .25rem .25rem;
    font-size: 125%; /*1.25em*/
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
	border-radius: .25rem;
}
@media (min-width: 320px) and (max-width: 435px) {
	.menu_section .navbar-toggler {
		font-size: 112.5%;
	}
}

.menu_section .navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.5);
    border: none;
}

.menu_section .navbar-dark .navbar-toggler-icon {
    background-image: url("../images/navbar-toggler-icon.svg");
}
.menu_section .navbar-dark .navbar-toggler-icon:hover {
    background-image: url("../images/navbar-toggler-icon_hover.svg");
}

.menu_section .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50%/100% 100% no-repeat;
	background-image: none;
}

.menu_section .navbar-toggler > .close {
    display:inline;
}

.menu_section .navbar-toggler > .close {
	width: 30px; /*0.75em*/
    float: right;
    font-size: 150%; /*1.5em*/
    font-weight: 700;
    line-height: 1;
    color: #333333;
    text-shadow: none; /*0 1px 0 #fff;*/
    opacity: 0.5; /*0.5*/	
}

.menu_section .navbar-toggler > .close:hover {
    color: #ff8c04;
    opacity: 0.75;
}

.menu_section .navbar-toggler.collapsed > .close, .navbar-toggler:not(.collapsed) > .navbar-toggler-icon {
    display:none;
}

.menu_section .navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}
/* ------ MENU Toggler Menu ------------------ */



/* ============================================= */
/* ------ Carousel_Slide ----------------------- */
.carousel_slide_section a:focus {
	display: block;
	text-decoration: none;
	outline: 2px solid rgb(80,4,0,0.02);
	outline-offset: -2px;
}

.carousel_slide_section {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	/*background-image: url(../images/hero-bg.svg);
	background-size: cover;
	background-position: bottom;*/
	
	/*padding-top: 120px;*/
}
/*
@media (min-width: 1322px) and (max-width: 1920px) {
  .carousel_slide_section {
    padding-top: 120px;
    padding-bottom: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1321px) {
  .carousel_slide_section {
    padding-top: 139px;
    padding-bottom: 0px;
  }
}
@media (min-width: 770px) and (max-width: 991px) {
  .carousel_slide_section {
    padding-top: 104px;
    padding-bottom: 0px;
  }
}

@media (min-width: 522px) and (max-width: 769px) {
  .carousel_slide_section {
    padding-top: 132px;
    padding-bottom: 0px;
  }
}
*/
@media (max-width: 521px) {
  .carousel_slide_section {
    padding-top: 132px;
    padding-bottom: 0px;
  }
}

/* ==   prev + next 按鈕   ===== */
/* ============================= */
.carousel_slide_section .carousel_btn-icon-prev,
.carousel_slide_section .carousel_btn-icon-next {
	position: absolute;
	/*width: 48px;*/
	/*height: 48px;*/

	top: calc(50% - 24px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	z-index: 999;
	/*-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;*/
	
	/*-webkit-transform: translateX(50%);
	transform: translateX(50%);*/
}
.carousel_slide_section .carousel_btn-icon-prev {
	left: 1.5%;
}
.carousel_slide_section .carousel_btn-icon-next {
	right: 1.5%;
}

@media (max-width:768px) {
	.carousel_slide_section .carousel_btn-icon-prev,
	.carousel_slide_section .carousel_btn-icon-next {
		top: calc(50% - 16px);
	}
}

.carousel_slide_section .carousel_btn-icon-prev .carousel-control-prev,
.carousel_slide_section .carousel_btn-icon-next .carousel-control-next {
	position: relative;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 100%;
	opacity: 1;
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.35);
}

.carousel_slide_section .carousel-control-next-icon, 
.carousel_slide_section .carousel-control-prev-icon {
    display: inline-block;
    width: 48px;
	height: 48px;
    
	background-position-x: 50%;
	background-position-y: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	/*background-image: none;*/
	background-size: 100% 100%;
	background-origin: padding-box;
	background-clip: border-box;
	
	/*background-color: rgba(0, 0, 0, 0);*/
}

.carousel_slide_section .carousel-control-prev-icon {
	/*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");*/	
	/*background-image: url(../images/banner/prev.png);*/
	background-image: url(../images/banner/arrow-left-circle-fill.svg);
	opacity: .85;
}

.carousel_slide_section .carousel-control-next-icon {
    /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");*/
	/*background-image: url(../images/banner/next.png);*/
	background-image: url(../images/banner/arrow-right-circle-fill.svg);
	opacity: .85;
}

.carousel_slide_section .carousel_btn-icon-prev .carousel-control-prev:hover,
.carousel_slide_section .carousel_btn-icon-next .carousel-control-next:hover {
	opacity: 1;
	background-color: #ff8c04;
}

.carousel_slide_section .carousel_btn-icon-prev .carousel-control-prev:focus, 
.carousel_slide_section .carousel_btn-icon-next .carousel-control-next:focus {
    text-decoration: none;
    outline: 2px solid rgb(80,4,0,0.02);
	outline-offset: -2px;
	background-color: #ff8c04;
}

@media (max-width:768px) {
	.carousel_slide_section .carousel_btn-icon-prev .carousel-control-prev,
	.carousel_slide_section .carousel_btn-icon-next .carousel-control-next,
	.carousel_slide_section .carousel-control-next-icon, 
	.carousel_slide_section .carousel-control-prev-icon {
		width: 32px;
		height: 32px;
	}
}
/*------------------------------------------------*/
/* ------ 輪播 標題文字 -------------------------- */
.carousel_slide_section .text-area {
	position: absolute;
    right: 0%;	/*15%*/
    bottom: 0%; /*20px*/
    left: 0%;	/*15%*/
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
	padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
}

.carousel_slide_section .carousel-caption {
    position: relative;
    right: 0%;	/*15%*/
    bottom: 20px;
    left: 0%;	/*15%*/
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 5px;
	padding-left: 150px;
    padding-right: 150px;
    color: #fff;
    text-align: center;
}

.carousel_slide_section .carousel-caption h3 {
    font-size: calc(100% + 50%);	/*1.5rem/24*/
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 0rem;
}

.carousel_slide_section .carousel-caption p {
	font-size: calc(100% + 12.5%);	/*1.125rem/18*/
	font-weight: inherit;
	line-height: inherit;
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (max-width:576px) {
	.carousel_slide_section .text-area {
		padding-top: 15px;
		padding-bottom: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.carousel_slide_section .carousel-caption {
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 0;
		padding-right: 0;
		bottom: 0px;
	}
	
	.carousel_slide_section .carousel-caption h3 {
		font-size: calc(100% + 12.5%);	/*1.125rem/18*/
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
		height: 25px;
	}
	
	.carousel_slide_section .carousel-caption p {
		font-size: calc(93.75%);	/*0.9375rem/15*/
	}
}
/* ------ 輪播 標題文字 -------------------------- */
/*------------------------------------------------*/

/*------------------------------------------------*/
/* ------ 輪播 點點點 ---------------------------- */
.carousel_slide_section dl, 
.carousel_slide_section ol, 
.carousel_slide_section ul {
	margin-top: 0;
	margin-bottom: 1rem;
}

@media (max-width:768px) {
	.carousel_slide_section dl, 
	.carousel_slide_section ol, 
	.carousel_slide_section ul {
		margin-top: 0;
		margin-bottom: 0rem;
	}
}

.carousel_slide_section .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15; /*15*/
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel_slide_section .carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 5px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #aaaaaa;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
	border-radius: 10.75px;
}

.carousel_slide_section .carousel-indicators .active {
    opacity: 1;
	background-color: #ff8c04;
}
/* ------ 輪播 點點點 ---------------------------- */
/*------------------------------------------------*/

/*------------------------------------------------*/
/* ------ 輪播 暫停/撥放 ------------------------- */
.carousel_slide_section .control-box {	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	
	
	position: absolute;
    right: 0%;	/*15%*/
    top: 0%; /*20px*/
    left: 0%;	/*15%*/
    z-index: 10;
    padding-top: 10px;    
	padding-left: 20px;
    padding-right: 20px;
	padding-bottom: 10px;
    color: #fff;
    text-align: center;
	/*background-color: rgba(0, 0, 0, 0.5);*/
}

.carousel_slide_section .control-start,
.carousel_slide_section .control-pause {
	position: relative;
	/*width: 48px;*/
	/*height: 48px;*/
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 999;
}
.carousel_slide_section .control-start {
	right: calc(1.5% - 20px + 10px);
}
.carousel_slide_section .control-pause {
	right: calc(1.5% - 20px);
}

.carousel_slide_section .control-start a,
.carousel_slide_section .control-pause a {
	position: relative;
	display:inline-block;
	/*right: 18%;*/
	width: 48px;
	height: 48px;

	border-radius: 100%;
    background-color: rgba(0,0,0,0.25);
	color: #FFFFFF; /*c33c70*/
}

.carousel_slide_section .control-start-icon,
.carousel_slide_section .control-pause-icon {
	display: inline-block;
	width: 48px;
	height: 48px;
	background-position-x: 50%;
	background-position-y: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-image: none;
	background-size: 100% 100%;
	background-origin: padding-box;
	background-clip: border-box;
}

.carousel_slide_section .control-start-icon {
    background-image: url(../images/banner/control-start-icon.svg);
    opacity: .85;
}

.carousel_slide_section .control-pause-icon {
    background-image: url(../images/banner/control-pause-icon.svg);
    opacity: .85;
}

.carousel_slide_section .control-start a:hover,
.carousel_slide_section .control-pause a:hover {
	opacity: 1;
	background-color: #ff8c04;
}

.carousel_slide_section .control-start a:focus, 
.carousel_slide_section .control-pause a:focus {
    text-decoration: none;
    outline: 2px solid rgb(80,4,0,0.02);
	outline-offset: -2px;
	background-color: #ff8c04;
}

@media (max-width:768px) {
	.carousel_slide_section .control-start a,
	.carousel_slide_section .control-pause a,
	.carousel_slide_section .control-start-icon,
	.carousel_slide_section .control-pause-icon {
		width: 32px;
		height: 32px;
	}
	
	.carousel_slide_section .control-box {	
		padding-top: 5px;    
		padding-left: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
	}

	.carousel_slide_section .control-start {
		right: calc(1.5% + 5px);
	}
	.carousel_slide_section .control-pause {
		right: 1.5%;
	}
}
/* ------ 輪播 暫停/撥放 ------------------------- */
/*------------------------------------------------*/

/* ------ Carousel_Slide ----------------------- */
/* ============================================= */



/* ============================================= */
/* ------ contact-us .row ---------------------- */
.custom-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	
	margin-bottom: 1rem;
}
/* ------ contact-us .row ---------------------- */
/* ============================================= */



/* ============================================= */
/* ------ layout_padding set ------------------- */
.layout_padding {
	padding-top: 100px;
	padding-bottom: 100px;
}
.layout_padding-top {
	padding-top: 100px;
}
.layout_padding-bottom {
	padding-bottom: 100px;
}
@media (max-width:768px) {
	.layout_padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}	
	.layout_padding-top {
		padding-top: 50px;
	}	
	.layout_padding-bottom {
		padding-bottom: 50px;
	}
}
/* ============================= */
.layout_padding0 {
	padding-top: 0px;
	padding-bottom: 0px;
}
.layout_padding0-top {
	padding-top: 0px;
}
.layout_padding0-bottom {
	padding-bottom: 0px;
}
@media (max-width:768px) {
	.layout_padding0 {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.layout_padding0-top {
		padding-top: 0px;
	}
	.layout_padding0-bottom {
		padding-bottom: 0px;
	}
}
/* ============================= */
.layout_padding1 {
	padding-top: 90px;
	padding-bottom: 90px;
}
.layout_padding1-top {
	padding-top: 90px;
}
.layout_padding1-bottom {
	padding-bottom: 90px;
}
@media (max-width:768px) {
	.layout_padding1 {
		padding-top: 45px;
		padding-bottom: 45px;
	}	
	.layout_padding1-top {
		padding-top: 45px;
	}	
	.layout_padding1-bottom {
		padding-bottom: 45px;
	}
}
/* ============================= */
.layout_padding2 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.layout_padding2-top {
	padding-top: 60px;
}
.layout_padding2-bottom {
	padding-bottom: 60px;
}
@media (max-width:768px) {
	.layout_padding2 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.layout_padding2-top {
		padding-top: 30px;
	}
	.layout_padding2-bottom {
		padding-bottom: 30px;
	}
}
/* ============================= */
.layout_padding3 {
	padding-top: 45px;
	padding-bottom: 45px;
}
.layout_padding3-top {
	padding-top: 45px;
}
.layout_padding3-bottom {
	padding-bottom: 45px;
}
@media (max-width:768px) {
	.layout_padding3 {
		padding-top: 22.5px;
		padding-bottom: 22.5px;
	}
	.layout_padding3-top {
		padding-top: 22.5px;
	}
	.layout_padding3-bottom {
		padding-bottom: 22.5px;
	}
}
/* ============================= */
.layout_padding4 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.layout_padding4-top {
	padding-top: 30px;
}
.layout_padding4-bottom {
	padding-bottom: 30px;
}
@media (max-width:768px) {
	.layout_padding4 {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.layout_padding4-top {
		padding-top: 15px;
	}
	.layout_padding4-bottom {
		padding-bottom: 15px;
	}
}
/* ------ layout_padding set ------------------- */
/* ============================================= */



/* ============================================= */
/* ------ Fullpage-wrapper --------------------- */
.fullpage-wrapper { 
	position: relative; 
	width: 100%;
	/* height: 100%;  */
	transform: translate3d(0px, 0px, 0px);
	/*z-index: 16;*/
	
}
.bg-color{
	background-color: #500400 !important;
}
.fullpage-wrapper.paddingtop-120 { 
	padding-top: 120px;
}
.paddingtop-150{
	padding-top: 150px;
}
@media (max-width:992px) {
	.paddingtop-150{
		padding-top: 0px;
	}
}
@media (min-width: 1322px) and (max-width: 1920px) {
  .fullpage-wrapper.paddingtop-120 {
    padding-top: 120px;
  }
}

@media (min-width: 992px) and (max-width: 1321px) {
  .fullpage-wrapper.paddingtop-120 {
    padding-top: 139px;
  }
}
@media (min-width: 770px) and (max-width: 991px) {
  .fullpage-wrapper.paddingtop-120 {
    padding-top: 104px;
  }
}

@media (min-width: 522px) and (max-width: 769px) {
  .fullpage-wrapper.paddingtop-120 {
    padding-top: 132px;
  }
}

@media (max-width: 521px) {
  .fullpage-wrapper.paddingtop-120 {
    padding-top: 132px;
  }
}

/* for life_theme_section 作用 */
.life_theme {
	position: relative;
    top: -176px; /*-183px;*/
}

@media (max-width: 991px) {
	.life_theme {
		position: relative;
		top: 15px;
	}
}
/* ------ Fullpage-wrapper --------------------- */
/* ============================================= */



/* ================================== */
/* ==  標準標題 STYLE-0 ============== */
/* ================================== */
.customstyle-title {
	display: inline-block;
	border-bottom: 1px solid rgba(0,0,0,0.25);
	padding-bottom: 8px;
	width: 100%;
}

.customstyle-title .language-tw {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	
	justify-content: center;
	align-items: center;
}

.customstyle-title .language-tw .tle-size {
    font-size: 165%;
    font-weight: 900;
	letter-spacing: 0.085em;
	color: #333333;
	text-transform: uppercase;
}

.customstyle-title .language-tw a .more {
	font-size: 90%;
	font-weight: 600;
	letter-spacing: normal;
	text-transform: uppercase;
}

.customstyle-title .language-tw a .more i {
	position: relative;
	font-size: 68.8%; /*0.688em/*11*/
	margin-left: 5px;
	bottom: 1.5px;
}

.customstyle-title .language-tw a {
	color: #333333;
	text-decoration: none;
}
.customstyle-title .language-tw a:hover {
	color: #007bff;
	text-decoration: underline;
}

.customstyle-title .language-en {
    margin: auto; /*auto auto 50px*/
    position: relative;
    text-align: center;
    width: 100%;
}

.customstyle-title .language-en .en-word { 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: flex-start ;
    align-items: center;
}

.customstyle-title .language-en .en-word { 
    font-size: 100%;
	font-weight: 600;
	letter-spacing: 0.1em;
    text-align: left;
    text-transform: capitalize;
	color: #0a0a0a;
}

.customstyle-title .language-en .tle-size-2 {
    font-size: 100%;
    font-weight: normal;
	letter-spacing: 0.085em;
	color: #333333;
	text-transform: uppercase;
}

.customstyle-title .language-en > .en-word::before {
	display: inline-block;
	position: relative; /*原本沒有，須加才能調整 線條位置*/
	content: " ";
	width: 40px;
	height: 32px;
	top: 0; /*19*/
	z-index: 0;
	background-image: url("../images/title_icon/title_icon.svg");
	/* [disabled]background: #8a8a8a none repeat scroll 0 0; */
}
.customstyle-title .language-en > .en-word::before {
    margin-right: 10px;
}

@media (max-width:320px) {
	.customstyle-title .language-en > .en-word::after, 
	.customstyle-title .language-en > .en-word::before {
		width: 35px;
	}
}
/* ================================== */
/* ==  標準標題 STYLE-0 ============== */
/* ================================== */



/* ================================== */
/* ==  自訂標題 STYLE-1 ============== */
/* ================================== */
.customstyle1-title {
	position: relative;
}

.customstyle1-title h3 {
	font-size: 175%; /*1.75em*/
	line-height: 1.5;
	font-weight: 600;
    color: #333333;
	margin-bottom: 0;
}

.customstyle1-title .separator_line {
    bottom: 0;
    clear: both;
    display: inline-block;
    height: 3px;
    position: relative;
    width: 150px; /*264px*/
	background: #ff7004;
}

.customstyle1-title .separator_line::before {
    /*background: #ffffff none repeat scroll 0 0;*/
    content: "";
    height: 30px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 46px;
}

.customstyle1-title .separator_line span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	
    border-radius: 50%;
    bottom: -15px;
    height: 30px;
    left: 0;
    line-height: 29px;
    margin: auto;
    position: absolute;
    right: 0;
    width: 30px;
}

.customstyle1-title .separator_line span {
	background: #800000;
}

.customstyle1-title .mt-20 {
    margin-top: 20px;
}

.customstyle1-title .mb-20 {
    margin-bottom: 20px;
}

.customstyle1-title h4 {
	font-size: 112.5%; /*1.125em*/
	line-height: 1.5;
	font-weight: 600;
    color: #959595; /*777777*/
	margin-bottom: 0;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.customstyle1-title h3 {
		font-size: 150%; /*1.5em*/
	} 
	.customstyle1-title h4 {
		font-size: 100%; /*1em*/
	}
}
/* ================================== */
/* ==  自訂標題 STYLE-1 ============== */
/* ================================== */



/* ================================== */
/* ==  自訂標題 STYLE-2 ============== */
/* ================================== */
.customstyle2-title {
	position: relative;
}

.customstyle2-title h3 {
	font-size: 175%; /*1.75em*/
	line-height: 1.5;
	font-weight: 600;
    color: #FFFFFF;
	margin-bottom: 0;
}

.customstyle2-title .separator_line {
    bottom: 0;
    clear: both;
    display: inline-block;
    height: 3px;
    position: relative;
    width: 264px;
	background: #FFFFFF;
}

.customstyle2-title .separator_line::before {
    /*background: #ffffff none repeat scroll 0 0;*/
    content: "";
    height: 30px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 46px;
}

.customstyle2-title .separator_line span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	
    border-radius: 50%;
    bottom: -15px;
    height: 30px;
    left: 0;
    line-height: 29px;
    margin: auto;
    position: absolute;
    right: 0;
    width: 30px;
}

.customstyle2-title .separator_line span {
	background: #FFFFFF;
}

.customstyle2-title .mt-20 {
    margin-top: 20px;
}

.customstyle2-title .mb-20 {
    margin-bottom: 20px;
}

.customstyle2-title h4 {
	font-size: 112.5%; /*1.125em*/
	line-height: 1.5;
	font-weight: 600;
    color: #FFFFFF;
	margin-bottom: 0;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.customstyle2-title h3 {
		font-size: 150%; /*1.5em*/
	} 
	.customstyle2-title h4 {
		font-size: 100%; /*1em*/
	}
}
/* ================================== */
/* ==  自訂標題 STYLE-2 ============== */
/* ================================== */



/* ================================== */
/* ==  新聞公告 - STYLE-0 ============ */
/* ================================== */

/* ==  標籤 tab Li  ================= */
.new-divbox {
	position: relative; 
	display: block;
}

.tab_ulbox {
	position: relative; 
	display: block;
	border-bottom: 1px solid #aaaaaa;
}

.new-divbox .nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: space-between;
}

.new-divbox .nav-justified .nav-item,
.new-divbox .nav-justified > .nav-link {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

@media (max-width: 480px) {
	.new-divbox .nav-justified .nav-item,
	.new-divbox .nav-justified > .nav-link {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		text-align: center;
	}
}

.new-divbox .nav-link {
	display: block;
	padding: 8px 8px; /*8px 16px*/
}

.new-divbox .nav-link:focus,
.new-divbox .nav-link:hover {
	text-decoration: none
}

.new-divbox .nav-link.disabled {
	color: #6c757d;
	pointer-events: none;
	cursor: default;
}

.new-divbox .nav-tabs {
	padding: 35px 0 0 0;
	border-bottom: none;
}
/*------------------------------------------------------*/
.new-divbox .nav-tabs .nav-link {
	margin-bottom: 0px;
	border-radius: 0;
	/*border-bottom: 2px solid #aaaaaa;*/ /*transparent*/ /*底線顏色*/
	/*border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	border-bottom-left-radius: .25rem;
	border-bottom-right-radius: .25rem;*/
}

.new-divbox .nav-tabs a.nav-link {
	color: #333333;						/*字顏色*/
}

.new-divbox .nav-tabs a.nav-link:focus,
.new-divbox .nav-tabs a.nav-link:hover {
	color: #ff8c04;						/*滑過時變色*/
	background-color: transparent;
	
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	border-bottom: 2px solid #ff8c04;	/*滑過時 底線變色*/
	
}
.new-divbox .nav-tabs li.active a,
.new-divbox .nav-tabs li.active a:hover,
.new-divbox .nav-tabs li.active a:focus {
	background-color: transparent;
}

.new-divbox .nav-tabs .nav-link.disabled {
	color: #6c757d;
	background-color: transparent;
	border-color: transparent;
}

.new-divbox .nav-tabs .nav-item.show .nav-link,
.new-divbox .nav-tabs .nav-link.active {
	color: #ff8c04;
	background-color: transparent;
	
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	border-bottom: 2px solid #ff8c04;   /*底線*/
}
/* 20211119 JESS NEW ADD */
/*.new-divbox .nav-tabs .nav-link.active::before {
    content: '';
	position: absolute;
	width: 0;
	height: 0;
	
	left: 35%;/*42.5%*
	bottom: -11px;
	
	border-style: solid;
	border-width: 9px 12px 0 12px;/*17px 14px 0 14px*
	border-color: #ff8c04 transparent transparent transparent;
	line-height: 0px;
	_border-color: #ff8c04 #000000 #000000 #000000;
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}*/
/* 20211119 JESS NEW ADD */
/*------------------------------------------------------*/

.new-divbox .nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.new-divbox .nav-pills .nav-link {
	border-radius: .25rem;
}

.new-divbox .nav-pills .nav-link.active,
.new-divbox .nav-pills .show > .nav-link {
	color: #FFFFFF;
	background-color: #ff8c04;
}

.new-divbox .nav-fill .nav-item,
.new-divbox .nav-fill > .nav-link {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	text-align: center;
}

.new-divbox .nav-justified .nav-item,
.new-divbox .nav-justified > .nav-link {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

.new-divbox .nav-tabs li a {
	position: relative;
    font-size: 112.5%; /*1.125em*/ /*1rem*/ /*18*/
    font-weight: 600;
    color: #333333;
    text-align: center;
	margin-bottom: 0rem;
	
    /*display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    max-height: 45px;*/
}

.new-divbox .nav-tabs li a h3 {
	position: relative;
    font-size: 112.5%; /*1.125em*/ /*1rem*/ /*18*/
    font-weight: 600;
    text-align: center;
	margin-bottom: 0rem;
	
    /*display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    max-height: 45px;*/
}

.col-custom ,
.col-lg-custom,
.col-md-custom,
.col-sm-custom,
.col-xl-custom {
	position: relative;
	/*width: 100%;*/
	padding-right: 15px;
	padding-left: 15px
}

.col-custom {
	-ms-flex: 0 0 11.333333%;
	flex: 0 0 11.333333%;
	max-width: 11.333333%
}

@media (min-width:576px) {
	.col-sm-custom {
		-ms-flex: 0 0 11.333333%;
		flex: 0 0 11.333333%;
		max-width: 11.333333%
	}
}

@media (min-width:768px) {
	.col-md-custom {
		-ms-flex: 0 0 11.333333%;
		flex: 0 0 11.333333%;
		max-width: 11.333333%
	}
}

@media (min-width:992px) {
	.col-lg-custom {
		-ms-flex: 0 0 11.333333%;
		flex: 0 0 11.333333%;
		max-width: 11.333333%
	}
}

@media (min-width:1200px) {
	.col-xl-custom {
		-ms-flex: 0 0 11.333333%;
		flex: 0 0 11.333333%;
		max-width: 11.333333%
	}
}
/* ==  標籤 tab Li  ================= */


/* ==  內容區塊  ===================== */
.new-divbox .tab-content > .tab-pane {
	display: none;
}

.new-divbox .tab-content > .active {
	display: block;
	padding: 0 15px;
    margin: 30px 0 0 0;
}

.new-divbox .tab-content > .tab-pane > div.titlebox {	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	align-items: flex-start;
	justify-content: flex-start;
	
	font-size: inherit;
	font-weight: 400;
	color: #333333;	
	
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid #dddddd;
}

.new-divbox .tab-content > .tab-pane > div.titlebox .d_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	
	padding-right: 1.5rem;
}
@media (max-width:991px) {
	.new-divbox .tab-content > .tab-pane > div.titlebox .d_box {
		flex-direction: row;
		justify-content: space-between;
		padding-right: 0rem
	}
}

.new-divbox .tab-content > .tab-pane > div.titlebox .date {
	display: inline-block;
	font-weight: 400;
	/*width: 130px;*/
}

/*--------------------------------------------*/
.new-divbox .tab-content > .tab-pane > div.titlebox .customstyle-hotop {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 85px;
	position: relative;
}

.new-divbox .tab-content > .tab-pane > div.titlebox .customstyle-hotop .icon-small {
	font-size: 87.5%; /*0.9375em*/
	line-height: 1.25;
	font-weight: 900;	
	width: 100%;
	text-align: center;
}

.new-divbox .tab-content > .tab-pane > div.titlebox .customstyle-hotop .icon-small.hot-bg {
	color: #FFFFFF;
	background: #ce1800;
}
.new-divbox .tab-content > .tab-pane > div.titlebox .customstyle-hotop .icon-small.top-bg {
	color: #FFFFFF;
	background: #004aa5;
}
.new-divbox .tab-content > .tab-pane > div.titlebox .customstyle-hotop .icon-small.new-bg {
	color: #000000;
	background: #fda601;
}
/*--------------------------------------------*/




@media (max-width: 991px) {
	.new-divbox .tab-content > .tab-pane > div.titlebox {	
		display: inline-block;
	}
}

.new-divbox .tab-content > .tab-pane > div.titlebox .title_name {
	display: inline-block;
	font-weight: 400;
}

.new-divbox .tab-content > .tab-pane > div.titlebox .date a, 
.new-divbox .tab-content > .tab-pane > div.titlebox .title_name a {
	color: #333333;						/*字顏色*/
}

.new-divbox .tab-content > .tab-pane > div.titlebox .date a:hover, 
.new-divbox .tab-content > .tab-pane > div.titlebox .title_name a:hover {
	color: #ff8c04;						/*滑過時變色*/
}

.new-divbox span {	
	font-size: inherit;
	line-height: 34px;
	font-weight: 300;
	color: #333333;
}
/* ==  內容區塊  ===================== */

/* ================================== */
/* ==  新聞公告 - STYLE-0 ============ */
/* ================================== */



/* ================================== */
/* ==  新聞公告 - STYLE-1 ============ */
/* ================================== */

/* ==  內容區塊  ===================== */
.new-divbox .tab-content > .tab-pane {
	display: none;
}

.new-divbox .tab-content > .active {
	display: block;
	padding: 0 15px;
    margin: 30px 0 0 0;
}

.new-divbox .tab-pane.container {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
	/*margin-right: -15px !important;
	margin-left: -15px !important;*/
}

.new-divbox ul.m-news_list {
	/*margin: 0 0 -40px;*/
	padding-left: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.new-divbox ul.m-news_list {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -15px; /*0 -30px -72px*/
	}
}

.new-divbox .m-news_item {
	margin-bottom: 15px; /*40*/
}

@media (min-width: 768px) {
	.new-divbox .m-news_item {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 0 15px; /*0 30px*/
		margin-bottom: 15px; /*72px*/
	}
}

.new-divbox .m-news_link {
	display: flex;
	flex-wrap: wrap;
	color: #333333;
}

.new-divbox .m-news_link:hover .m-news_date {
	transform: translateY(-8px); /*-15px*/
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.new-divbox .m-news_link:hover .m-news_date:before {
	transform: scale(3);
}

.new-divbox .m-news_date {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 85px;
	max-width: 85px;
	height: 85px;
	background-color: #f9f7f8;
	transition: transform .5s ease,box-shadow .5s ease;
	overflow: hidden;
	
	position: relative;
	top: 7%;
	right: 0%;
}

.new-divbox .m-news_date:before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background-color: #aa210f;
	border-radius: 50%;
	transform: scale(0);
	transition: transform .5s ease;
	z-index: -1;
}

.new-divbox .m-news_date h3.d-big {
	font-size: 175%; /*1.75em*/
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 0.25rem;
	color: #333333;
}

.new-divbox .m-news_date h4.d-small {
	font-size: 93.75%; /*0.9375em*/
	line-height: 1.25;
	font-weight: 700;
	color: #333333;
}

.new-divbox .m-news_link:hover .m-news_date h3.d-big,
.new-divbox .m-news_link:hover .m-news_date h4.d-small {
	color: #FFFFFF;
}


.new-divbox .m-news_content {
	flex: 1;
	padding: 5px 0 20px 0;
	margin-left: 25px;
	border-bottom: 1px solid #ececec;
}

@media (min-width: 768px) {
	.new-divbox .m-news_content {
		    padding: 5px 20px 5px 0;
	}
}

.new-divbox .m-news_title {
	margin-bottom: 12px;
}

.new-divbox .m-news_title h4.link-text {
	font-size: inherit;
	font-weight: 600;
	color: #333333;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 2;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 55px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

.new-divbox .m-news_link:hover .m-news_title h4.link-text {
	color: #aa210f;
}

@media (min-width: 576px) {
	.new-divbox .m-news_detail {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 -11px;
	}
}

@media (max-width: 575px) {
	.new-divbox .m-news_detail.m-news_detail--full {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 -11px 10px;
	}
}
/*--------------------------------------------*/
.new-divbox .m-news_category {
	display: flex;	
	float: left;
	padding: 0 11px;
}

.new-divbox .m-news_category h4 {
	font-size: 93.75%; /*0.9375em;*/
	line-height: 1.5;
	font-weight: 500;
	color: #aa210f;
}

.new-divbox .m-news_category img+h4 {
	margin-left: 8px;
}

.new-divbox .m-news_time {
	display: flex;
	float: left;
	padding: 0 11px;
}

@media (max-width: 576px) {
	.new-divbox .m-news_category {
		padding: 0 11px 0 0;
	}

	.new-divbox .m-news_time {
		padding: 0 0 0 11px;
	}
}


.new-divbox .m-news_time h4 {
	font-size: 93.75%; /*0.9375rem*/
	line-height: 1.5;
	font-weight: 500;
	color: #777;
}

.new-divbox .m-news_time img+h4 {
	margin-left: 8px;
}

.new-divbox .m-news_category i,
.new-divbox .m-news_time i {
	font-size: 93.75%; /*0.9375em*/
	line-height: 1.75;
	margin-right: 10px;
}

.new-divbox .m-news_category i {
	color: #aa210f;
}	
.new-divbox .m-news_time i {
	color: #777;
}
/*--------------------------------------------*/
/* ==  內容區塊  ===================== *

/* ================================== */
/* ==  新聞公告 - STYLE-1 ============ */
/* ================================== */

/* ================================== */
/* ==  新聞公告 - STYLE-2 ============ */
/* ================================== */
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: inherit;
    font-weight: 400;
    color: #333333;
	padding-top: 0px;
	padding-left: 0;
	padding-right: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #dddddd;
}

@media (max-width: 991px) {
	.new-divbox .tab-content > .tab-pane > div.titlebox-style2 {	
		display: flex;
		align-items: flex-start;
    	justify-content: flex-start;
	}
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .left-custombox {
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 85px;
	max-width: 85px;
	height: 75px;
	background-color: #f9f7f8;
}
/*--------------------------------------------*/
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-hotop {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-hotop .icon-small {
	font-size: 87.5%; /*0.9375em*/
	line-height: 1.25;
	font-weight: 900;	
	width: 100%;
	text-align: center;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-hotop .icon-small.hot-bg {
	color: #FFFFFF;
	background: #ce1800;
}
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-hotop .icon-small.top-bg {
	color: #FFFFFF;
	background: #004aa5;
}
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-hotop .icon-small.new-bg {
	color: #000000;
	background: #fda601;
}

/*--------------------------------------------*/
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-news_date {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 65px; /*0 0 85px;*/
	/*max-width: 85px;*/ /*85px*/
	width: 100%;
	height: 65px; /*85px*/
	background-color: #f9f7f8;
	/*background: #ff8c04;*/
	
	position: relative;
	top: 0; /*7%;*/
	right: 0%;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-news_date h3.d-big {
	font-size: 175%; /*1.75em*/
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 0.25rem;
	color: #888888;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .left-custombox .customstyle-news_date h4.d-small {
	font-size: 93.75%; /*0.9375em*/
	line-height: 1.25;
	font-weight: 700;
	color: #888888;
}
/*--------------------------------------------*/
/*--------------------------------------------*/

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .custom_content_box {
    flex: 1;
    padding: 5px 0 20px 0;
    margin-left: 25px;
    border-bottom: none;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .custom_content_box {
    padding: 5px 20px 5px 0;
}
@media (max-width: 991px) {
	.new-divbox .tab-content > .tab-pane > div.titlebox-style2 > .custom_content_box {
		padding: 0;
	}
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .title_name {
	display: inline-block;
	font-weight: 400;
	margin-bottom: 8px;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .date a, 
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .title_name a {
	color: #333333;						/*字顏色*/
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .date a:hover, 
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .title_name a:hover {
	color: #ff8c04;						/*滑過時變色*/
}

/*--------------------------------------------*/
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -11px;
}

@media (max-width: 576px) {
	.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_detail {
		margin: 0;
	}
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_category {
	display: flex;	
	float: left;
	padding: 0 11px;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_category h4 {
	font-size: 87.5%; /*0.9375em;*/
	line-height: 1.5;
	font-weight: 500;
	color: #ff8c04;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_category img+h4 {
	margin-left: 8px;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_time {
	display: flex;
	float: left;
	padding: 0 11px;
}

@media (max-width: 576px) {
	.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_category {
		padding: 0 11px 0 0;
	}

	.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_time {
		padding: 0 0 0 11px;
	}
}


.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_time h4 {
	font-size: 87.5%; /*0.9375rem*/
	line-height: 1.5;
	font-weight: 500;
	color: #777;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_time img+h4 {
	margin-left: 8px;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_category i,
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_time i {
	font-size: 87.5%; /*0.9375em*/
	line-height: 1.75;
	margin-right: 10px;
}

.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_category i {
	color: #ff8c04;
}	
.new-divbox .tab-content > .tab-pane > div.titlebox-style2 .box_time i {
	color: #777;
}
/* ================================== */
/* ==  新聞公告 - STYLE-2 ============ */
/* ================================== */


/* ================================== */
/* ==  新聞公告 - STYLE-3 ============ */
/* ================================== */
/* ==  內容區塊 圖文  ================= */
.news_section .tab-content > .tab-pane {
	display: none;
}

.news_section .tab-content > .active {
	display: block;
	padding: 0 15px;
    margin: 0;
}

.news_section .tab-content .titlebox-style3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 35px 0 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;	
	
	-webkit-box-pack: start;  /*center*/ /*end*/
	-ms-flex-pack: start;  /*center*/ /*end*/
	justify-content: flex-start; /*center*/ /*flex-end*/
	-webkit-box-align: flex-start; /*center*/ /*flex-end*/
	-ms-flex-align: start;  /*center*/ /*end*/
	align-items: flex-start; /*center*/ /*flex-end*/	
}

.news_section .tab-content .titlebox-style3 a .box {
	/*margin: 25px 1%;*/
	-ms-flex-preferred-size: 31%;
	flex-basis: 31%;
	border: 1px solid #d7d6d6;
	/*padding: 45px 25px 25px;*/
	padding: 5px 5px 5px 5px;
	border-radius: 0px;
	background: #FFFFFF;
	
	margin: 0 0 30px 0;
}

.news_section .tab-content .titlebox-style3 a .box .img-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;	
	
	border-radius: 0px;
	overflow: hidden;
	background-color: #FFFFFF;
}

.news_section .tab-content .titlebox-style3 a .box .img-box img {
	width: 100%;
}

.news_section .tab-content .titlebox-style3 a .box .detail-box {
	padding: 25px 20px 5px 20px;
	/*margin-top: 25px;*/	
}

.news_section .tab-content .titlebox-style3 a .box .detail-box h4 {
	position: relative;
	font-size: inherit;
	font-weight: 900;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 1;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 45px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

.news_section .tab-content .titlebox-style3 a .box .detail-box h4:hover {
	color: #ff8c04;
}

.news_section .tab-content .titlebox-style3 a .box .detail-box p {	
	position: relative;
	font-size: 87.5%;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 2;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 55px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}
/* ==  內容區塊  ===================== */

/* ================================== */
/* ==  新聞公告 - STYLE-3 ============ */
/* ================================== */



/* ================================== */
/* ==  活動花絮 + 學生作品 ============ */
/* ================================== */
/* ------// 左邊 //--------------------*/
/* 底色 */
.activity_student_section .as_box-left-0,
.activity_student_section .as_box-left-2 {
	position: relative !important;
	/*min-height: 20em;*/
	display: flex;
	align-items: baseline;
	justify-content: center;	
	
	padding: 20px 0 0 0;
	border-top-right-radius: 60px;	
	background-color: #d08856;
}
/* 底色 */

/* 白線 */
.activity_student_section .as_box-left-1,
.activity_student_section .as_box-left-3 {
	position: relative !important;
	/*min-height: 20em;*/
	display: flex;
	align-items: baseline;
	justify-content: center;
	
	padding: 7px 0 0 0;
	border-top-right-radius: 60px;
	
	background-color: #FFFFFF;	
}
/* 白線 */

.activity_student_section .as_box-left-content {
	position: relative !important;
	/*min-height: 35em;*/
	display: flex;
	align-items: baseline;
	justify-content: center;
	
	padding: 10px 0 0 0;
	border-top-right-radius: 60px;
	background-color: #d08856;	
}

@media (max-width: 576px) {
	.activity_student_section .as_box-left-0,
	.activity_student_section .as_box-left-2,
	.activity_student_section .as_box-left-1,
	.activity_student_section .as_box-left-3,
	.activity_student_section .as_box-left-content {
		border-bottom-left-radius: 60px;
	}
}

.activity_student_section .as_box-left-0 .container {
	max-width: 550px;
	position: relative !important;
	margin-right: 12.5px;
}

@media (max-width: 768px) {
	.activity_student_section .as_box-left-0 .container {
		margin-right: auto !important;
	}
}

.activity_student_section .as_box-left-0 .container-left {
	right: 0;	
}
/* ------// 左邊 //--------------------*/

/* ------// 右邊 //--------------------*/
/* 底色 */
.activity_student_section .as_box-right-0,
.activity_student_section .as_box-right-2 {
	position: relative !important;
	/*min-height: 20em;*/
	display: flex;
	align-items: baseline;
	justify-content: center;	
	
	padding: 20px 0 0 0;
	border-top-left-radius: 60px;	
	background-color: #d08856;
}
/* 底色 */

/* 白線 */
.activity_student_section .as_box-right-1,
.activity_student_section .as_box-right-3 {
	position: relative !important;
	/*min-height: 20em;*/
	display: flex;
	align-items: baseline;
	justify-content: center;
	
	padding: 7px 0 0 0;
	border-top-left-radius: 60px;
	
	background-color: #FFFFFF;	
}
/* 白線 */

.activity_student_section .as_box-right-content {
	position: relative !important;
	/*min-height: 35em;*/
	display: flex;
	align-items: baseline;
	justify-content: center;
	
	padding: 10px 0 0 0;
	border-top-left-radius: 60px;
	background-color: #d08856;	
}

.activity_student_section .as_box-right-0 .container {
	max-width: 550px;
	position: relative !important;
	margin-left: 12.5px;
}

@media (max-width: 768px) {
	.activity_student_section .as_box-right-0 .container {
		margin-left: auto !important;
	}
}

.activity_student_section .as_box-right-0 .container-right {
	left: 0;
}
/* ------// 右邊 //--------------------*/

.activity_student_section .mt-6,
.activity_student_section .my-6 {
	margin-top: 4rem!important
}
.activity_student_section .mb-6,
.activity_student_section .my-6 {
	margin-bottom: 4rem!important;
}
.activity_student_section .mt-7,
.activity_student_section .my-7 {
	margin-top: 5rem!important
}
.activity_student_section .mb-7,
.activity_student_section .my-7 {
	margin-bottom: 5rem!important;
}

@media (max-width: 576px) {
	.activity_student_section .mt-6,
	.activity_student_section .my-6 {
		margin-top: 7rem!important
	}
}
/* ================================== */
/* ==  活動花絮 + 學生作品 ============ */
/* ================================== */



/* ================================== */
/* ==  頁尾 FOOTER ================== */
/* ================================== */
.footer-black {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
	
	background: #7f9a00; /*#e8e8e8*/
}

/*.footer-black:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #41403c;
	content: "";
	opacity: 0.90;
}*/

.footer-black .widgets-box {
	position: relative;
	padding: 60px 0 10px 0;
}

.footer-black.alternate .widgets-box {
	margin-top: 0;
	padding-top: 95px;
}

.footer-black .footer-widget {
	position: relative;
}

/*-------------------------------------*/
/*----- about-widget ------------------*/
.footer-black .about-widget {
	position: relative;
	padding-right: 10px;	
}

.footer-black .footer-logo {
	position: relative;
	margin-bottom: 15px;
	padding-left: 10px;
}

.footer-black .footer-logo figure {
	margin: 0;
	margin-top: -5px;
}

.footer-black .footer-logo img {
	display: block;
	max-width: 85%; /*100%*/
}

.footer-black .about-widget ul.list {
	padding-left: 10px;
	margin-bottom: 1.5rem;
}

.footer-black .about-widget .list li {
	position: relative;
	display: block;
	line-height: 1.5;
	font-size: 93.75%; /*0.9375em*/
	color: #FFFFFF;
	font-weight: 400;
	/*padding-left: 30px;*/
	margin-bottom: 5px;
}

.footer-black .about-widget .list li a {
	color: #FFFFFF;
}

.footer-black .about-widget .list li a:hover {
	color: #003709;
}

.footer-black .about-widget .text {
	position: relative;
	font-size: 93.75%; /*0.9375em*/
	line-height: 1.85;
	color: #FFFFFF;
	font-weight: 600;
	text-align: left;
	margin-bottom: 25px;
	padding-left: 10px;
}

.footer-black .about-widget .text a {
	color: #FFFFFF;
}

.footer-black .about-widget .text a i {
	font-size: inherit;
}

.footer-black .about-widget .text a .icon {
	position: relative;
	display: inline-block;
	top: 5px;
	width: 24px;
	height: 24px;
	font-size: inherit;
	color: inherit;
	content: url("../images/footer/small_icon/map-custom.svg");
}
.footer-black .about-widget .text a .icon:hover {
	content: url("../images/footer/small_icon/map-custom-hover.svg");
}

.footer-black .about-widget .text a:hover {
	color: #003709;
}

@media (max-width: 1140px) {
	.footer-black .footer-logo {
		padding-left: 2.5px;
	}
	.footer-black .about-widget ul.list {
		padding-left: 2.5px;
	}
	.footer-black .about-widget .text {
		padding-left: 2.5px;
	}
}
/*----- about-widget -------------------/
/*-------------------------------------*/

/*-------------------------------------*/
/*----- 聯絡資訊 -----------------------*/
.footer-black h5.widget-title {
	position: relative;
	font-size: 112.5%; /*1.125em*/
	font-weight: 500;
	color: #FFFFFF;
	line-height: 30px;
	padding-left: 15px; /*25px*/
	padding-bottom: 5px;
	margin-bottom: 30px; /*25*/
	border-bottom: 1px solid #fba061;
}

.footer-black h5.widget-title:before {
	position: absolute;
	left: -7px; /*0*/
	top: 0;
	font-size: 100%; /*1em*/
	line-height: 30px;
	color: #003709;
	font-weight: 400;
	content: "\f141";
	font-family: "FontAwesome";
	transform: rotate(90deg);
}

.footer-black span.widget-english {
	position: relative;
	font-size: 87.5%; /*0.875em*/
	font-weight: 500;
	color: #FFFFFF;
	line-height: 30px;
	padding-left: 10px;
	padding-bottom: 5px;
}

.footer-black .info-widget {
	position: relative;
}

.footer-black .info-widget ul.list {
	padding-left: 2.5px;
	margin-bottom: 1.5rem;
}

.footer-black .info-widget .list li {
	position: relative;
	/*display: block;*/
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: row;
	
	line-height: 1.5;
	font-size: 93.75%; /*0.9375em*/
	color: #FFFFFF;
	font-weight: 400;
	/*padding-left: 30px;*/
	margin-bottom: 5px;
}

.footer-black .info-widget .list li a {
	color: #FFFFFF;
}

.footer-black .info-widget .list li a:hover {
	color: #003709;
}

.footer-black .info-widget .list li a i {
	font-size: 87.5%; /*0.875em*/
	color: #3f4d00; /*#FFFFFF*/
	margin-right: 5px;
}

.footer-black .info-widget .text {
	position: relative;
	font-size: 93.75%; /*0.9375em*/
	line-height: 1.5;
	color: #FFFFFF;
	font-weight: 400;
}
/*----- 聯絡資訊 -----------------------*/
/*-------------------------------------*/

/*-------------------------------------*/
/*----- FB + LINE+ 相關連結 ------------*/
.footer-black .info-widget .social_box {
	margin-top: 0px;
	width: 100%;
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;*/	
	display: inline-block;
}

.footer-black .info-widget .social_box a {
	width: 64px; /*cara 原32*/
	height: 64px; /*cara 原32*/
	margin-right: 5px; /*25*/
	
	display: inline-block;
	margin-bottom: 8px; /*25*/
}

.footer-black .info-widget .social_box a .img1,
.footer-black .info-widget .social_box a .img2 {
    max-width: 100%;
    height: auto;
}

.footer-black .info-widget .social_box a .img2 {
	display: none;
}

.footer-black .info-widget .social_box a:hover .img1 {
	display: none;
}

.footer-black .info-widget .social_box a:hover .img2 {
	display: inline-block;
}

.footer-black .info-widget .social_box.aalogo {
	width: 100%;
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;*/	
	display: inline-block;
}

.footer-black .info-widget .social_box.aalogo a {
	width: 100%;
}

.footer-black .info-widget .social_box.aalogo a img {
    max-width: 100%;
    height: auto;
}

/*----- FB + LINE+ 相關連結 ------------*/
/*-------------------------------------*/

/*-------------------------------------*/
/*----- FOOTER 電子報 ------------------*/
.footer-black .info-widget .widget-content .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

.footer-black .info-widget .btn {
	padding: 5px 5px !important;
}
.footer-black .info-widget .btn.btn-subscribe {
    color: #FFFFFF;
    background-color: #ff8c04;
    border-color: #ff8c04;
	margin-right: 2.5px;
}

.footer-black .info-widget .btn.btn-cancel {
    color: #FFFFFF;
    background-color: #ff8c04;
    border-color: #ff8c04;
	margin-left: 2.5px;
}

.footer-black .info-widget .btn.btn-subscribe:hover,
.footer-black .info-widget .btn.btn-cancel:hover {
    color: #ff8c04;
    background-color: #FFFFFF;
    border-color: #ff8c04;
}
/*----- FOOTER 電子報 ------------------*/
/*-------------------------------------*/


.footer-black .info-widget .widget-tw-title {
	font-size: 1.25rem; /*20px*/
	font-weight: 600;
	letter-spacing: 0.5rem;
	color: #FFFFFF;
}

.footer-black .info-widget .widget-en-title {
	font-size: 0.875rem; /*15px*/
	letter-spacing: 0.125rem;
	color: #FFFFFF;
}


/*-------------------------------------*/
/*----- visitor_section ---------------*/
.visitor_section {
	/*display: -webkit-box;*/
	/*display: -ms-flexbox;*/
	display: flex;
	-webkit-box-pack: start;			/* baseline / center / end / inherit / initial / revert / start / stretch / unset */
	-ms-flex-pack: start;
	justify-content: flex-start;		/* flex-start / flex-end / center / space-between / space-around / space-evenly */
	position: relative;
	background-color: #aa210f;
}

.visitor_section .info_contact > div.dbox {
	display: block;
	margin: 10px 0 0 0;
}

.visitor_section .info_contact > div p {
	font-size: 93.75%; /*0.9375em*/
	color: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	padding: 0 25px;
}

@media (max-width: 1200px) {
	.visitor_section .info_contact > div p {
		padding: 0 15px;
	}
}

@media (max-width: 992px) {
	.visitor_section .info_contact > div p {
		padding: 0 15px;
	}
}

@media (max-width: 768px) {
	.visitor_section .info_contact > div p {
		padding: 0 1px;
	}
}

.visitor_section .info_contact > div a {
	color: #FFFFFF;
}
/*----- visitor_section ---------------*/
/*-------------------------------------*/

/*-------------------------------------*/
/*----- copyright_section -------------*/
.copyright_section {
	/*display: -webkit-box;*/
	/*display: -ms-flexbox;*/
	display: flex;
	-webkit-box-pack: center;			/* baseline / center / end / inherit / initial / revert / start / stretch / unset */
	-ms-flex-pack: center;
	justify-content: center;		/* flex-start / flex-end / center / space-between / space-around / space-evenly */
	position: relative;
	/*background-color: #e8e8e8;*/
	background-color: #500400;
}

.copyright_section div.dbox {
	display: block;
	/*margin: 10px 0 0 0;*/
}

.copyright_section div.dbox-tb {
	display: block;
	margin: 5px 0 20px 0;
}

.copyright_section p {
	font-size: 87.5%; /*87.5%*/ /*93.75%*/
	color: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	padding: 0 25px;
}

@media (max-width: 1200px) {
	.copyright_section p {
		padding: 0 15px;
	}
}

@media (max-width: 992px) {
	.copyright_section p {
		padding: 0 15px;
	}
}

@media (max-width: 768px) {
	.copyright_section p {
		padding: 0 1px;
	}
}

.copyright_section .top-line {
	border-top: 1px solid #777777;
}

.copyright_section a {
	color: #FFFFFF;
}
/*----- copyright_section -------------*/
/*-------------------------------------*/
/* ================================== */
/* ==  頁尾 FOOTER ================== */
/* ================================== */


/* ================================== */
/* ==  GO-TO-TOP ==================== */
/* ================================== */
#gotop_btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 99em; /*4px*/
  position: fixed;
  bottom: 30px; /*30*/
  right: 15px;  /*30*/
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  background-color: rgba(0,0,0,0.75);
}

#gotop_btn::after {
  /*content: "\f077";*/
  /*content: url("../images/go-to-top/gototop_40x40.svg");*/
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 150%; /*1.5em*/ /*2em*/
  line-height: 36px; /*50*/
  color: #FFFFFF;
}

#gotop_btn:hover {
  cursor: pointer;
  background-color: #ff8c04;
}

#gotop_btn:active {
  background-color: #ff8c04;
}

#gotop_btn.show {
  opacity: 1;
  visibility: visible;
}

#gotop_btn.show:focus {
	background-color: #4c39e0;
	text-decoration: none;
	outline: 2px solid rgb(80,4,0,0.02);
}

/* ================================== */
/* ==  GO-TO-TOP ==================== */
/* ================================== */



/* ================================== */
/* ==  H1~H6 ======================== */
/* ================================== */
#ContentPlaceContent_ContentSubMenu .h1,
#ContentPlaceContent_ContentSubMenu .h2,
#ContentPlaceContent_ContentSubMenu .h3,
#ContentPlaceContent_ContentSubMenu .h4,
#ContentPlaceContent_ContentSubMenu .h5,
#ContentPlaceContent_ContentSubMenu .h6,
#ContentPlaceContent_ContentSubMenu h1,
#ContentPlaceContent_ContentSubMenu h2,
#ContentPlaceContent_ContentSubMenu h3,
#ContentPlaceContent_ContentSubMenu h4,
#ContentPlaceContent_ContentSubMenu h5,
#ContentPlaceContent_ContentSubMenu h6,

#ContentPlaceContent_ContentConentA .h1,
#ContentPlaceContent_ContentConentA .h2,
#ContentPlaceContent_ContentConentA .h3,
#ContentPlaceContent_ContentConentA .h4,
#ContentPlaceContent_ContentConentA .h5,
#ContentPlaceContent_ContentConentA .h6,
#ContentPlaceContent_ContentConentA h1,
#ContentPlaceContent_ContentConentA h2,
#ContentPlaceContent_ContentConentA h3,
#ContentPlaceContent_ContentConentA h4,
#ContentPlaceContent_ContentConentA h5,
#ContentPlaceContent_ContentConentA h6
 {
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2
}

#ContentPlaceContent_ContentSubMenu .h1,
#ContentPlaceContent_ContentSubMenu h1,
#ContentPlaceContent_ContentConentA .h1,
#ContentPlaceContent_ContentConentA h1 {
	font-size: 200%; /*2em*/
}

#ContentPlaceContent_ContentSubMenu .h2,
#ContentPlaceContent_ContentSubMenu h2,
#ContentPlaceContent_ContentConentA .h2,
#ContentPlaceContent_ContentConentA h2 {
	font-size: 175%; /*1.755em*/
}

#ContentPlaceContent_ContentSubMenu .h3,
#ContentPlaceContent_ContentSubMenu h3,
#ContentPlaceContent_ContentConentA .h3,
#ContentPlaceContent_ContentConentA h3 {
	font-size: 150%; /*1.5em*/
}

#ContentPlaceContent_ContentSubMenu .h4,
#ContentPlaceContent_ContentSubMenu h4,
#ContentPlaceContent_ContentConentA .h4,
#ContentPlaceContent_ContentConentA h4 {
	font-size: 125%; /*1.25em*/
}

#ContentPlaceContent_ContentSubMenu .h5,
#ContentPlaceContent_ContentSubMenu h5,
#ContentPlaceContent_ContentConentA .h5,
#ContentPlaceContent_ContentConentA h5 {
	font-size: 100%; /*1.0em*/
}

#ContentPlaceContent_ContentSubMenu .h6,
#ContentPlaceContent_ContentSubMenu h6,
#ContentPlaceContent_ContentConentA .h6,
#ContentPlaceContent_ContentConentA h6 {
	font-size: 93.75%; /*0.9375em*/
}
/*------------------------------------*/
/* == 活動花絮用 ======================*/
#ContentPlaceContent_ContentSubMenu .h3.title,
#ContentPlaceContent_ContentSubMenu h3.title,
#ContentPlaceContent_ContentConentA .h3.title,
#ContentPlaceContent_ContentConentA h3.title {
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 10px 0;	
}

#ContentPlaceContent_ContentSubMenu .h3.title,
#ContentPlaceContent_ContentSubMenu h3.title,
#ContentPlaceContent_ContentConentA .h3.title,
#ContentPlaceContent_ContentConentA h3.title {
	font-size: 100%; /*1.0em*/
}

#ContentPlaceContent_ContentSubMenu a .h3.title,
#ContentPlaceContent_ContentSubMenu a h3.title,
#ContentPlaceContent_ContentConentA a .h3.title,
#ContentPlaceContent_ContentConentA a h3.title {
	color: #333333;
}

#ContentPlaceContent_ContentSubMenu a:hover .h3.title,
#ContentPlaceContent_ContentSubMenu a:hover  h3.title,
#ContentPlaceContent_ContentConentA a:hover  .h3.title,
#ContentPlaceContent_ContentConentA a:hover  h3.title {
	color: #aa210f;
}
/* == 活動花絮用 ======================*/
/*------------------------------------*/

/* ================================== */
/* ==  H1~H6 ======================== */
/* ================================== */



/* ================================== */
/* ==  內頁分頁按鍵 ================== */
/* ================================== */
.pagination > li {
	display: inline
}

.pagination > li > a,
.pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #555555;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}

.pagination>li > a:focus,
.pagination>li > a:hover,
.pagination>li > span:focus,
.pagination>li > span:hover {
	z-index: 2;
	color: #FFFFFF;
	background-color: #ff8c04;
	border-color: #ff8c04;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	z-index: 3;
	color: #FFFFFF;
	cursor: default;
	background-color: #ff8c04;
	border-color: #ff8c04;
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd
}

.pagination-lg > li > a,
.pagination-lg > li > span {
	padding: 10px 16px;
	font-size: 112.5%; /*1.125em*/ /*18*/
	line-height: 1.3333333
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px
}

.pagination-sm > li > a,
.pagination-sm > li > span {
	padding: 5px 10px;
	font-size: 75%; /*0.75rem*/ /*12*/
	line-height: 1.5
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}  
/* ================================== */
/* ==  內頁分頁按鍵 ================== */
/* ================================== */



/* ================================== */
/* ==  內頁按鍵 ================== */
/* ================================== */
#ContentPlaceContent_ContentSubMenu .btn,
#ContentPlaceContent_ContentConentA .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 100%; /*1.0em*/
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	
	margin-bottom: 1rem;
}

.btn-custom-color {
	padding: 6px 60px !important; /*6px 12px !important;*/
    color: #ff8c04 !important;
	border: 1px solid #ff8c04 !important; /*1px solid #ddd !important;*/
	background-color: #fff !important;
	border-radius: 50px !important;
}

.btn-custom-color:hover {
	padding: 6px 60px !important; /*6px 12px !important;*/
    color: #fff !important;
    background-color: #ff8c04 !important;
	border-color: #ff8c04 !important; /*border-color #ddd !important;*/
	border-radius: 50px !important;
}
/* ================================== */
/* ==  內頁按鍵 ================== */
/* ================================== */



/* ================================== */
/* ==  教師Members ================== */
/* ================================== */
.member-icon-color {
	/* color: #000; */    /* 預設值 */
    color: #333333;  /*---- 每個網頁--需變色 ----*/
}

.member_box {
	display: inline-block;
    min-height: auto;
    border: 1px solid rgba(191, 191, 191, 0.5);
    margin-bottom: 30px;	
}

.member_box .img-box {
	padding: 5px;
	border: 1px solid #ddd;
}

.member_box .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.member_box_photo {
	display: inline-block;
	float: right;	
}

@media(max-width:768px) {
  .member_box_photo {
    padding-left: 0;
  }
}

.member_box_txt {
	display: inline-block;
	float: left;
	padding: 15px 0;	
}

.member_box i {
	position: relative;
	display: inline-block;
	font-size: inherit; /*繼承*//*0.95rem98*/
	width: 24px;	
	top: -2px;
	/*margin-right: 5px;*/
	text-align: center;
}

.member_box p {
    line-height: 1.8;
    font-size: inherit; /*繼承*//*0.95rem98*/
	width: 100%;
	/*height: 15%;*/
    color: #333;	
	
	margin-top: 0;
	margin-bottom: 0.3rem;	
}

#course {
	line-height: 1.8;
    font-size: inherit; /*繼承*//*0.95rem98*/
	width: 100%;
	height: 50px;
    color: #333;	
	
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	
	margin-top: 0;
	margin-bottom: 0.3rem;	
}
/* ================================== */
/* ==  教師Members ================== */
/* ================================== */



/* ================================== */
/* ==  服務區塊Service_block ========= */
/* ================================== */
.service_block {
	position: relative;
	margin-top: -7em;
	/*
	background-color: transparent; 
	background-size: auto; 
	background-position: bottom; 
	background-repeat: no-repeat; 
	background-image: url(/images/service/background-image.png);
	*/
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#efefef+0,efefef+100&0+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(239,239,239,0) 0%, rgba(239,239,239,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(239,239,239,0) 0%,rgba(239,239,239,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(239,239,239,0) 0%,rgba(239,239,239,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00efefef', endColorstr='#efefef',GradientType=0 ); /* IE6-9 */

}

@media(max-width:1500px) {
	.service_block {
		position: relative;
		margin-top: -6em;
	}
}

@media(max-width:1200px) {
	.service_block {
		margin-top: -5em;
	}
}

@media(max-width:991px) {
	.service_block {
		margin-top: -4em;
	}
}

@media(max-width:767px) {
	.service_block {
		margin-top: 0em;
	}
}

.service_block .custom_blockbox {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	justify-content: center;
	align-items: center;
	
	background: #efefef;
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#efefef+0,efefef+100&0+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(239,239,239,0) 0%, rgba(239,239,239,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(239,239,239,0) 0%,rgba(239,239,239,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(239,239,239,0) 0%,rgba(239,239,239,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00efefef', endColorstr='#efefef',GradientType=0 ); /* IE6-9 */
	
    /*box-shadow: 0 12px 60px rgba(0, 0, 0, 0.175);
    -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.175);
    -o-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.175);
    -ms-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.175);*/
}

.service_block .box_grid {
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.service_block a .team-go {
    left: auto;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    opacity: 0;
    color: #fff;
	
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.service_block a:hover .team-go {
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
}
.service_block a:hover .team-go {
    opacity: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.service_block a:hover .team-go .fa-icon-arrow01-right,
.service_block a:hover .team-go .fa-icon-arrow02-right {
	position: relative;
	width: 32px;
	height: 32px;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	
	margin-bottom: 15px;
	background: #FFFFFF;
	
	border-radius: 50%;
}
.service_block a:hover .team-go .fa-icon-arrow01-right {
	background: #FFFFFF;
}
.service_block a:hover .team-go .fa-icon-arrow02-right {
	background: #ff8c04;
}
.service_block a:hover .team-go .fa-icon-arrow01-right::before {
	position: relative;
	top: 2px;
    content: url("../images/service/arrow01-right.svg");
}
.service_block a:hover .team-go .fa-icon-arrow02-right::before {
	position: relative;
	top: 2px;
    content: url("../images/service/arrow02-right.svg");
}

.service_block .s-item_box {
    position: relative;
    z-index: 0;
}

.service_block .s-item_box span {
    position: absolute;
    top: 7%;
    right: 7%;
    transform: rotate(-30deg);
    z-index: -1;
    color: rgba(255, 255, 255, 0.18);
    font-size: 4em;
}

.service_block .s-item_box.bg-light span {
    color: rgba(45, 45, 45, 0.17);
}

.fa-icon-1, .fa-icon-1, .fa-icon-1, 
.fa-icon-1, .fa-icon-1, .fa-icon-1 {
	opacity: 0.5;
}
.fa-icon-1::before {
    content: url("../images/service/icon-1.svg");
}

.fa-icon-2::before {
    content: url("../images/service/icon-2.svg");
}

.fa-icon-3::before {
    content: url("../images/service/icon-1.svg");
}

.fa-icon-4::before {
    content: url("../images/service/icon-2.svg");
}

.fa-icon-5::before {
    content: url("../images/service/icon-1.svg");
}

.fa-icon-6::before {
    content: url("../images/service/icon-2.svg");
}
/*
.service_block .bg-colors:nth-of-type(2n+1) {
	background: #ff8c04;	/*bg-colors-item 第一分色*
}
.service_block .bg-colors:nth-of-type(2n) {
	background: #f8f9fa;	/*bg-colors-item 第二分色*
}

.service_block .bg-colors:nth-of-type(2n+1) h3.text-title {
	color: #FFFFFF;			/*bg-colors-item 第一分色/
}
.service_block .bg-colors:nth-of-type(2n) h3.text-title {
	color: #333333;			/*bg-colors-item 第二分色*
}

.service_block .bg-colors:nth-of-type(2n+1) p.text-p {
	color: #FFFFFF;			/*bg-colors-item 第一分色*
}
.service_block .bg-colors:nth-of-type(2n) p.text-p {
	color: #555555;			/*bg-colors-item 第二分色/
}
*/
.service_block .bg-colors h3.text-title {
	height: 55.6667px;
	font-size: calc(1.75em - 30%);
}
.service_block .bg-colors p.text-p {
	height: 72px;
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 3;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 90px; /*45*/
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */	
}

@media(max-width:767px) {
	.service_block .bg-colors h3.text-title {
		font-size: calc(1.75em - 30%);
	}
	.service_block .bg-colors p.text-p {
		font-size: calc(1em - 15%);
		height: 65px;
	}
}

/*===================================================*/
.service_block .bg-colors:first-of-type {
	background: #87ceeb; /*#ff8c04*/	/*bg-colors-item 第二分色*/
}
.service_block .bg-colors:nth-of-type(2) {
	background: #FFB6C1; /*#dc3545*/	/*bg-colors-item 第一分色*/
}
.service_block .bg-colors:nth-of-type(3) {
	background: #ACE1AF;	/*bg-colors-item 第二分色*/
}
.service_block .bg-colors:nth-of-type(4) {
	background: #FFCE9B;	/*bg-colors-item 第二分色*/
}
/*===================================================*/
.service_block .bg-colors:first-of-type h3.text-title,
.service_block .bg-colors:nth-of-type(2) h3.text-title,
.service_block .bg-colors:nth-of-type(3) h3.text-title,
.service_block .bg-colors:nth-of-type(4) h3.text-title {
	color: #333333; /*#FFFFFF/#2f2f78*/
}
/*===================================================*/
.service_block .bg-colors:first-of-type p.text-p,
.service_block .bg-colors:nth-of-type(2) p.text-p,
.service_block .bg-colors:nth-of-type(3) p.text-p,
.service_block .bg-colors:nth-of-type(4) p.text-p  {
	color: #333333; /*#FFFFFF/#2f2f78*/
}
/* ================================== */
/* ==  服務區塊Service_block ========= */
/* ================================== */



/* ================================================================== */
/* ****** ContentPlaceContent_ContentConentA 內頁 CSS 設定 *********** */
/* ================================================================== */
#ContentPlaceContent_ContentConentA thead th {
	text-align: center;
	color: #FFFFFF !important;
	background-color: #2f2f78;
}
#ContentPlaceContent_ContentConentA table td a {
	text-decoration: none;
	color: #212529;
}
#ContentPlaceContent_ContentConentA table td a:hover {
	text-decoration: none;
	color: #ff8c04;
}

/* ================================================================== */
/* ****** ContentPlaceContent_ContentThirdMenu 內頁第三層 MENU  ****** */
.page-leftmenu {
	position: relative;
    display: block;
}

.page-leftmenu .list-group {
	display: inline-block;
	padding-left: 0px;
	margin-bottom: 20px;
	width: 100%;
}

#ContentPlaceContent_ContentThirdMenu ul.third-list-group {
	display: inline-block;
	width: 100%;    
	list-style: none;	
	padding-left: 0;
	margin-top: 0;
    margin-bottom: 1rem;
}

#ContentPlaceContent_ContentThirdMenu ul.third-list-group li {
	float: left;
	width: 33.333333%;
	border-radius: 4px;
	margin-bottom: 5px;
}

#ContentPlaceContent_ContentThirdMenu ul.third-list-group li a {
	color: #555;
}

#ContentPlaceContent_ContentThirdMenu ul.third-list-group li .list-group-item.active, 
#ContentPlaceContent_ContentThirdMenu ul.third-list-group li .list-group-item:focus, 
#ContentPlaceContent_ContentThirdMenu ul.third-list-group li .list-group-item:hover {
    z-index: 2;
    color: #ffffff;
    background-color: #ff8c04;
	border-color: #ff8c04;
}

@media (min-width: 320px) and (max-width: 992px) {
	#ContentPlaceContent_ContentThirdMenu ul.third-list-group li {
		display: flex;
		align-content: center;
		width: 50%;
		min-height: 75px;
	}
	
	#ContentPlaceContent_ContentThirdMenu ul.third-list-group li a {
		display: flex;
		align-content: center;
		width: 100%;
		min-height: 75px;
	}
}
/* ****** ContentPlaceContent_ContentThirdMenu 內頁第三層 MENU  ****** */
/* ================================================================== */

/* ================================================================== */
/* ****** ContentPlaceContent_ContentConentA 內頁 CSS 設定 *********** */
/* ================================================================== */

/* ================================================================== */
/* ****** Cara 20211116 頁面td padding 改為12px*********** */
/* ================================================================== */
#ContentPlaceContent_ContentConentA.col-sm-12.col-12 table td{
	padding: 12px;
}
/* ================================================================== */
/* ****** Cara 20211116 頁面td padding 改為12px*********** */
/* ================================================================== */


/* ================================================================== */
/* ****** Cara 20211119 檔案室下載的btn margin-bottom改為0*********** */
/* ================================================================== */
#ContentPlaceContent_ContentConentA .btn{
	margin-bottom: 0rem;
}
/* ================================================================== */
/* ****** Cara 20211119 檔案室下載的btn margin-bottom改為0*********** */
/* ================================================================== */


/* ================================================================== */
/* ****** JESS 20211207 新增首頁底色 ********************************** */
/* ================================================================== */
.fullpage-wrapper .bg-news {
	background: #efefef;
}
.fullpage-wrapper .bg-links {
	background: #efefef;
}
/* ================================================================== */
/* ****** JESS 20211207 新增首頁底色 ********************************** */
/* ================================================================== */


/* ============================= */
/* ==  life_theme_section ====== */
/* ============================= */
.life_theme_section {
    /*background-color: #FFFFFF;*/
    /*background-image: url(../../images/about/about-section-bg-1.png);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	/*z-index: 3;*/
}

.life_theme_section .life_theme_area {
	position: relative; /*absolute*/
	bottom: 0;
	width: 100%;
}

.life_theme_section .life_theme_area .theme-item {
	padding: 18px 10px 20px 20px;
	position: relative;
	cursor: pointer;
	transform: translateY(63%);
	transition: all 0.3s linear;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
@media (max-width: 991px) {
	.life_theme_section .life_theme_area .theme-item {
		transform: none;
		transition: none;
	}
}

.life_theme_section .life_theme_area .theme-item.s-item1, 
.life_theme_section .life_theme_area .theme-item.s-item2, 
.life_theme_section .life_theme_area .theme-item.s-item3, 
.life_theme_section .life_theme_area .theme-item.s-item4 {
	padding-left: 15px;
}

.life_theme_section .life_theme_area .theme-item.s-item1 {
    background: #8bae00;
}

.life_theme_section .life_theme_area .theme-item.s-item2 {
    background: #ff7a2a;
}

.life_theme_section .life_theme_area .theme-item.s-item3 {
    background: #10bdd1;
}

.life_theme_section .life_theme_area .theme-item.s-item4 {
    background: #8b5fd7;
}




.life_theme_section .life_theme_area .theme-item .media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}










.life_theme_section .life_theme_area .theme-item .media .service-body .title_h {
	color: #FFFFFF;
	font-weight: 900;
	line-height: 1.5;
	text-transform: uppercase;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 1;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: auto; /*45px;*/
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */		
}

.life_theme_section .life_theme_area .theme-item.s-item1 .media .service-body .title_h, 
.life_theme_section .life_theme_area .theme-item.s-item2 .media .service-body .title_h,
.life_theme_section .life_theme_area .theme-item.s-item3 .media .service-body .title_h, 
.life_theme_section .life_theme_area .theme-item.s-item4 .media .service-body .title_h {
	font-size: 125%; /*16px*/
	margin-top: 0.25rem;
	margin-bottom: 0.5rem;
}

.life_theme_section .life_theme_area .theme-item .media .media-left {
	position: relative;
	top: -7px;
	padding-right: 15px;
}
.life_theme_section .life_theme_area .theme-item .media .media-left img img {
	width: 40px; 
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
	.life_theme_section .life_theme_area .theme-item .media .media-left {
		top: 0px;
	}
	.life_theme_section .life_theme_area .theme-item .media .media-left img {
		width: 72px;
	}
}

.life_theme_section .life_theme_area .theme-item .media .service-body p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: #FFFFFF;
	text-align: left;
	margin-top: 0;
	margin-bottom: 1rem;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 2;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: auto; /*45px;*/
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

.life_theme_section .life_theme_area .theme-item .media .service-body a {
	display: inline-block;
	font-size: 0.875rem;
	line-height: 23px;
	color: #FFFFFF;
	padding: 3px 20px;
	border: 1px solid #FFFFFF;
	border-radius: 20px;
}

.life_theme_section .life_theme_area .theme-item .media .service-body a i {
	position: relative;
	padding-left: 18px;
	line-height: 23px;
}

.life_theme_section .life_theme_area .theme-item .media .service-body a i:after {
	content: '';
	width: 1px;
	height: 19px;
	display: block;
	position: absolute;
	left: 0;
	top: 2px;
	margin-left: 5px;
}

.life_theme_section .life_theme_area .theme-item:hover {
	transform: translateY(0);
}

.life_theme_section .life_theme_area .theme-item .media .service-body a:hover {
	border: 1px solid #FFFFFF;
	background: rgba(0,0,0,0.5);
}

/* ============================= */
/* ==  life_theme_section ====== */
/* ============================= */


/* ============================= */
/* ==  about section   ========= */
/* ============================= */
.about_section01 {
	/*background-color: #FFFFFF;*/
	/*background-image: url(../../images/about/about-section-bg-1.png);*/
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	position: relative;
	/*z-index: 3;*/
}

.about_section02 {
	/*background-color: #FFFFFF;*/
	/*background-image: url(../../images/about/about-section-bg-1.png);*/
	background-color: rgba(255, 255, 255, 0);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	position: relative;
	/*z-index: 3;*/
}

@media (max-width:992px) {
	.about_section02 {
		background-color: rgba(255, 255, 255, 0.6);
	}
}

.about_section01 .row ,
.about_section02 .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 0px;
	margin-left: 0px;
}

.about_section01 .img-box {
	/*margin-left: 10%;*/
	/*margin-right: 5%;*/
}

.about_section01 .img-box img {
	width: 100%;
}

.about_section01 .detail-box {
	margin-right: 15%;
}


/* ================================== */
/* ==  展開更多 Open More ============ */
/* ================================== */
.about_section01 #open-more-s2 {
	display: block;
	text-align: left;
}
.about_section01 #open-more2-s2 {
	display: none;
	text-align: left;
}
.about_section01 .text-hidden-s2 {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	text-align: left;
	margin-top: 0;
	margin-bottom: 0;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 5;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: auto; /*45px;*/
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */		
}

.about_section01 .more-d-block-s2 {
	display: inline-block !important;
	overflow: visible !important;
}

.about_section01 .detail-box a#open-more-s2,
.about_section01 .detail-box a#open-more2-s2 {
	color: var(--color-custom-c1);
}

.about_section01 .detail-box a:hover#open-more-s2,
.about_section01 .detail-box a:hover#open-more2-s2 {
	color: var(--color-custom-c1-h)
}
/* ================================== */
/* ==  展開更多 Open More ============ */
/* ================================== */

/* ============================= */
/* ==  responsive   ========== */
/* ============================= */
@media (max-width: 992px) {
  .about_section01 .img-box {
    margin: 0 5%;
  }

  .about_section01 .detail-box {
    margin-right: 5%;
  }
}

@media (max-width: 768px) {
  .about_section01 .img-box {
    margin: 0;
    margin-bottom: 55px;
  }

  .about_section01 .detail-box {
    margin-right: 0;
  }
}

/* ============================= */
/* ==  about section   ========= */
/* ============================= */

.text-red{
	color: #500400;
}

.btn-red-sm{
	padding: 10px 20px;
	border-radius: 50px;
	background: #500400;
	color: #ffffff;
}

.hidden{
	visibility: hidden;
}

.mb-show.nav-item{
	display: none;
}
/* .mb-hide.nav-item{
	display: inherit;
} */
@media (max-width:656px) {
	.mb-show.nav-item{
		display: block;
	}
}
@media (max-width:656px) {
	.mb-hide.nav-item{
		display: none;
	}
}
li.mb-show::before{
	content: '…';
	transform: rotate(90deg);
	position: absolute;
	top: 22;
	right: 20;
	font-size: 120%;
	font-weight: 900;
	z-index: 20;
}
.box-inner .breadcrumb{
	background: rgba(255, 255, 255, 0);
	padding: 0; 
  margin-bottom: 0;
	
}

.breadcrumb-item a{
	color: #ffffff !important;
	font-weight: 100 !important;
}
@media (max-width:500px) {
	.breadcrumb-item a{
		font-size: 75%;
	}
}
.image{
	position: relative;
}
.image a{
	display: block; 
	position: absolute;
}
#map a.disabled{
	pointer-events: none;
}
#map a.disabled::before{
	content: attr(aria-label)"完成";
	position: absolute;
	top: 45%;
	left: 15%;
	/* width: 100%; */
	z-index: 30;
	color: #ffffff;
	background: rgba(0,0,0,.6);
	padding: 5px;
	text-align: center;
}
#map a[aria-label]:hover::before {
	content: attr(aria-label);
	position: absolute;
	top: 40%;
	left: 55%;
	width: 100%;
	z-index: 30;
	color: #ffffff;
	background: rgba(0,0,0,.8);
	clip-path: polygon(6% 0, 100% 0, 100% 100%, 6% 100%, 6% 64%, 0 50%, 6% 37%);
	padding: 5px 0px 5px 5px;
	text-align: center;
}
@media (max-width:900px) {
	#map a[aria-label]:hover::before, #map a.disabled::before{
		font-size: 75%;
	}
}
@media (max-width:500px) {
	#map a.disabled::before{
		font-size: 75%;
		top: -10%;
		left: 0%;
		transform: scale(0.5);
	}
}
@media (max-width:600px) {
	#map a[aria-label]:hover::before {
		top: 0;
		left: 70%;
		width: 100%;
		z-index: 30;
		padding: 5px 5px 5px 5px;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}
.box-inner .go-back-box{
	margin-top: 10px;
}
.box-inner .go-back{
	padding: 10px 10px 12px 20px;
	background: #ffffff;
	border-radius: 50px;
	color: #500400 !important;
	font-size: 12px;
	vertical-align: middle;
}

.box-inner .go-back i{
	font-size: 180%;
	vertical-align: middle;
}

/* table */
@media (max-width: 736px){
	.table-rwd {
		min-width: 100%;
	}
}
.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 10px;
	background-color: transparent;
	border-spacing: 0;
  border-collapse: collapse;
}
.table-striped tbody tr:nth-of-type(2n+1) {
	background-color: transparent;
}
/* .table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
} */
@media (max-width: 736px){
	.table-rwd tr {
    display: block;
    border: 1px solid #ddd;
    margin-top: 5px;
	}
}
@media (max-width: 736px){
	tr.tr-only-hide {
    display: none !important;
	}
}
tr.tr-only-hide {
	font-size: 1em;
	line-height: 1.42857143;
	font-weight: 500;
	color: #333;
	background-color: transparent!important;
}	
.table > tbody > tr > td {
	font-size: 1em;
	line-height: 1.42857143;
	font-weight: 500;
	color: #212529;
	/* padding: 8px 25px; */
	padding: 15px 10px;
	vertical-align: top;
	border-top: 1px solid #ddd;
	word-break: break-all;
}
@media (max-width: 736px){
	.table-rwd td {
    text-align: left;
    font-size: 1em;
    overflow: hidden;
    width: 100%;
    display: block;
	}
}
@media (max-width: 736px){
	.table-rwd td[data-th]:before {
    content: attr(data-th) "：";
    /* display: inline-block; */
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 10px;
    /* color: #333; */
    color: #500400;
    padding: 8px 0;
    /* border-bottom: 1px solid #ddd; */
    width: 100%;
    margin-bottom: 5px;
    /* background: #e7e7e7; */
	}
}
.table-rwd textarea{
	width: 100%;
	height: 200px;
	border: 1px solid #500400;
	border-radius: 5px;
	padding: 5px 20px 5px 5px;
}
/* table */

/* check box */
.custom-control {
	position: relative;
	display: block;
	min-height: 1.5rem;
	padding-left: 1.5rem;
}
.card .custom-check-label-lg {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
}
.card .custom-check-input-lg {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.card .custom-checkbox .custom-check-label-lg::before {
	border-radius: 0.25rem;
}
input[type=checkbox], input[type=radio] {
	box-sizing: border-box;
	padding: 0;
}
button, input {
	overflow: visible;
}
button, input, optgroup, select, textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
.card .custom-check-label-lg::before {
	position: absolute;
	top: 0rem;
	left: -1.5rem;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	pointer-events: none;
	content: "";
	background-color: #fff;
	border: #adb5bd solid 1px;
}
.card .custom-check-label-lg span.check-txt {
	position: relative;
	display: inline-block;
	margin-left: 15px;
	top: 0rem;
}
.card .custom-check-label-lg::after {
	position: absolute;
	top: 0rem;
	left: -1.5rem;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	content: "";
	background: no-repeat 50%/50% 50%;
}
.custom-checkbox.custom-checkbox-warning .custom-check-input-lg:checked ~ .custom-check-label-lg::before {
	background-color: #500400;
	border-color: #500400;
}
.custom-checkbox.custom-checkbox-warning .custom-check-input-lg:checked ~ .custom-check-label-lg::before {
	background-color: #500400;
	border-color: #500400;
}
.card .custom-checkbox .custom-check-label-lg::before {
	border-radius: 0.25rem;
}
.card .custom-checkbox .custom-check-input-lg:checked~.custom-check-label-lg::after {
	background-image: url(../images/check.svg);
}
/* check box */