@charset "utf-8";

:root {
	--body-color: #28221D;
	--main-color: #787980;
	--sub-color: #214592;
	--third-color: #FF9638;
	--foruth-color: #939c5a;
	--main-color-dark: #038fa5;
	--cata-color: #526366;
	--sectionpd: 5em;
	--unitcolor: #ffffff;
	/*112px*/
	--rowpd: 2.5em;
	--titlepd: 1em;
	/*32px*/
	--ppd: 0.5em;
	--sectionper:5%;
	--rowper:5%;
	--titleper:1%;
}

@media screen and (min-width: 768px) {
	:root {
		--sectionpd: 10em;
		--rowpd: 5em;
		--titlepd: 1.5em;
		--ppd: 1em;
	}
}

ul,
li {
	list-style: none;
}

dd {
	padding-left: 0px;
	float: left;
	margin-left: 0px;
}

* {
	margin: 0;
	padding: 0;
}

.site-blue {
	color: var(--bs-primary)
}

.site-white {
	color: #ffffff
}

.site-black {
	color: #000000
}

@font-face {
	font-family: 'NotoSansTC';
	src: url("/fonts/NotoSansTC/NotoSansTC-Regular.ttf") format("opentype");
}

@font-face {
	font-family: 'NotoSansTCBold';
	src: url("/fonts/NotoSansTC/NotoSansTC-Bold.otf") format("opentype");
}

@font-face {
	font-family: 'NotoSansTCLight';
	src: url("/fonts/NotoSansTC/NotoSansTC-Light.ttf") format("opentype");
}

@font-face {
	font-family: 'NotoSerifTC';
	src: url("/fonts/Noto_SerifTC/NotoSerifTC-Bold.otf") format("opentype");
}


.fontn {
	font-family: 'NotoSansTC', serif;
}

.fontb {
	font-family: "NotoSansTCBold", serif;
}

.ch {
	font-family: 'NotoSerifTC';
}

.en {
	font-family: 'arial', serif;
}

.blue {
	color: #71B6E5
}

.olnum {
	counter-reset: item;
}

.olnum li {
	padding-left: 30px;
	position: relative;
}

.olnum li:before {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	position: absolute;
	left: 0px;
	text-align: center;
	background-color: #D9D9D9;
	/*   content: counters(item, ".") ". "; */
	content: counters(item, ".");
	counter-increment: item
}

/*body------------------------------
------------------------------------*/
body {
	width: 100%;
	max-width:100%;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 1.1em;
	line-height: 1.6;
	font-weight: normal;
	color: #ffffff;
	background-color: #214592;
}

.bodywrapper {
	width: 100%;
    max-width: 100%;
    height: auto;    
    position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}


.section-bigpt {
	z-index: 2;
	margin-bottom: var(--sectionpd)*2;
	margin-top: var(--sectionpd)*2;
}

.pc {
	display: none;
}

.mobile {
	display: block;
}

@media screen and (min-width: 768px) {
	body {
		font-size: 1.1em;
		line-height: 1.8;
	}

	.pc {
		display: block;
	}

	.mobile {
		display: none;
	}

}

/* ---------------------------------------------------------
  Header (.site-header[-*])
----------------------------------------------- */
.site-header {
	padding: 0.75em 1em;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5000;
	width: 100%;
	max-width: 100%;

}

.site-header__btn .btn {
	font-weight: bolder;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
	padding-left: 1rem;
	padding-right: 1rem;
	font-family: "NotoSansTC";
}

.site-header.active {
	/* background-color: #e7f0eb;
	box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.25) 0px 8px 16px -8px; */
}

.site-header_logo {
	flex: 0 0 auto;
	width: 150px;
	margin-right: 5%;
	display: flex;
}

.active .site-header_logo {
	display: none;
}

/* .site-header_nav {
	margin-left: auto;
} */
 .site-header_nav{
	position: fixed;
	z-index: 101;
	top:3%;
	right:20px;
 }
.site-header_nav--in {
	display: flex;
	gap: 10px;
}

.site-heade_in {
	position: relative;
	/* z-index: 1; */
}
.navi-logo{
	max-width:200px;
	padding-top: 2.5rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.site-header_navcontent {
	min-width: 100%;
	max-width: 100%;
	position: absolute;
	right: -200px;
	top: 0;
	background-color: #C9CACA;
	height: 100vh;
	z-index: 100;
	overflow-y: auto;
	opacity: 0;
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	-webkit-transition: 0.6s;
	transition: 0.6s;

}

.site-header_navcontent.active {
	-webkit-clip-path: polygon(-15% 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(-15% 0, 100% 0, 100% 100%, 0 100%);
	-webkit-animation: ani-right 0.5s forwards;
	-moz-animation: ani-right 0.5s forwards;
	-o-animation: ani-right 0.5s forwards;
	animation: ani-right 0.5s forwards;

}

.site-header_ul {
	width: 100%;
	padding-left: 2.5rem;
	padding-right: 2.5rem;

}

.site-header_li {
	color: #ffffff;
	position: relative;
	cursor: pointer;
	font-weight: normal;

}
.site-header-subnavu{
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.site-header-subnavu div{
	color:var(--bs-primary);
	font-family: "NotoSansTCBold", serif;
	font-size: 1.1rem;
	margin: 0.5rem 0rem;
}
.site-header-subnavu div:hover {color:#ffffff}

.site-header_li--in {
	margin: 0.5rem 2.5rem;
	padding: 0.5rem;
	color: var(--bs-primary);
	display: flex;
	border:1px solid var(--bs-primary);	
	font-family: "NotoSansTCBold", serif;
	text-align: left;
	font-size: 1.2rem;
}

.site-header_li--in.withline {
	position: relative;
}
.site-header_li--in.withline:after{
	content:'';
	position: absolute;
	width: 1px;
	height: 30px;
	background-color:var(--bs-primary);
	display: block;
	transform: rotate(45deg);
	right: 2.5rem;
	bottom: -20px;
}

.site-header_li--in .en {
	font-size: 0.8em;
	text-align: left;
}


.site-header_li--in:hover{
	filter: brightness(0) invert(1);
}

.site-overlay {
	width: 100vw;
	height: 100%;
	background-color: rgba(var(--bs-body-bg-rgb),0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	display: none;
}

.site-overlay.active {
	display: block;
}

.site-gotop {
	width: 35px;
	height: 35px;
	cursor: pointer;
	overflow: hidden;
	z-index: 10;
	background-image: url(../img/all/scrolltop.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 35px 35px;
	right: 20px;
	position: fixed;
	bottom: 1em;
	display: none;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	overflow: hidden;
}
.site-gotop:hover {background-color: rgba(0, 0, 0, 0.5);}
.site-gotop.active {
	display: block;
}

.follow{
	font-size: 1rem;
	color:#ffffff;
	padding-left: 2.5rem;
	padding-right: 2.5rem;}

.box-follow__pic{
	flex:0 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	position:relative;
	display: block;
	text-align: center;
	margin-right: 10px;
	line-height: 30px;
}

.follow:hover{color:var(--bs-primary)}
.follow:hover .box-follow__pic{border: 1px solid var(--bs-primary);}
@media screen and (min-width: 576px) {
	.navi-logo{
		max-width:350px;
	}
	.site-header_li--in {
		margin: 2rem 1rem;
		font-size: 1.5rem;
	}
	.site-header-subnavu{
		padding-left: 2rem;
		padding-right: 2rem;
	}
}


/*FOOTER*/
.site-footer {
	position: relative;
	clear: both;
	color: #ffffff;
}
.site-footer-blue{
	background-color: var(--sub-color);
}
.site-footer_in {
	max-width: 1440px;
	position: relative;
	z-index: 2;
	left: 0;
	top: 0;
	gap: 1em;
	font-size: 1em;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: 5em;
	padding-top: 2em;
}

.site-footer_in a {
	color: rgba(255, 255, 255, 0.8);
}

.site-footer_in a:hover {
	color: rgba(255, 255, 255, 1);
}

.site-footer__gotop {
	margin: 2.5em 0px;
	border-top: solid 1px var(--main-color);
}


.site-social {
	gap: 1em;

}

.site-social_li {
	font-size: 1.5em;
}

.site-paragraph {
	padding-bottom: var(--rowpd);
	color: #ffffff;
}

.site-title {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: normal;
    font-weight: bolder;
    font-family: 'NotoSansTCBold';
    letter-spacing: 0.1rem;
	word-break: normal;word-wrap: break-word;
    max-width: 100%;
}

.site-title_center {
	text-align: center;
}
.site-title .ch {
	color: #000000;
}

.site-title .en {
	font-size: 1.5rem;
	
}

.site-item {
	font-size: 1.3rem;
	color: #fff;
	padding-bottom: 1rem;
	
}
.site-item.ml50 {margin-left: 0%;}
/* .site-item span {
	color: var(--main-color);
}
 */
.site-title-smile {
	font-size: 1rem;
	color: rgba(255,255,255,0.7);
}


.container.site-container {
	position: relative;
	padding-left: 2.5em;
	padding-right: 2.5em;
	max-width: 1200px;
	z-index: 2;
}

@media screen and (min-width: 768px) {
	.site-item {
		font-size: 1.8rem;
	}	
}
@media screen and (min-width: 1280px) {
	.site-item.ml50 {margin-left: 30%;}
}
/*------------------------------school
-------------------------------------*/
.box-footer__logo{
	max-width: 250px;
}
.box-footer__sch--titile {
	position: relative;
	padding-right: 1rem;
}

.box-footer__sch--titile:before {
	content: "";
	width: 1px;
	height: 20px;
	background-color: #ffffff;
	display: block;
	position: absolute;
	left: 80px;
	top: 5px;
}

.box-footer__icon {
	margin-left: 0.5rem;
	min-width: 30px;
}

.col-footer__school--in a:hover {
	color: #C9CACA;
}
.box-footer__rscing{
	width: 50px;
}
.box-footer__rscing:hover img,
.box-footer__community a:hover img {
	filter: brightness(0) saturate(100%) invert(82%) sepia(0%) saturate(0%) hue-rotate(153deg) brightness(103%) contrast(96%);
}
.box-footer__mask{
	position: absolute;
	z-index: -1;
	width: 200%;

	}
@media screen and (min-width: 450px) {

	.box-footer__sch {
		flex: 0 0 auto;
		min-width: 250px;
	}

	.box-footer__sch img {
		width: 250px;
	}
}

@media screen and (min-width: 576px) {

	.site-content_mask1 {
		max-width: 250px;
	}
}

@media screen and (min-width: 650px) {

	.box-unit__u {
		padding: 0px 5px;
		display: inline-block;
	}
}

@media screen and (min-width: 768px) {
	.site-footer__units--col {
		margin-bottom: 0.3rem;
	}

	.site-header_navcontent {
		min-width: 700px;
		max-width:700px;
	}


	.site-content_mask1 {
		max-width: 40%;
	}

	.site-header_dl {
		margin: 5em 1em;
	}

	.site-header__btn .btn {
		font-size: 1.3rem;
		padding-left: 2rem;
		padding-right: 2rem;

	}

	.site-title {
		font-size:2.5rem;
	}

}
@media screen and (min-width: 1024px){
	.site-title{
		font-size:3.8rem;
	}
}
/* ---------------------------------------------------------
  Mag
----------------------------------------------- */
#mag {
	margin-top: -5px;
	width: 50px;
	height: 50px;
	background-color: rgba(0, 0, 0, .5);
	--magcolor: #ffffff;
	--magwidth: 20px;
	border-radius: 0;
	border: 2px solid #ffffff;
}

#mag:hover {
	border: 2px solid #787980;
	background-color: rgba(0, 0, 0, .1);
}

#mag>* {
	border: none;
	outline: none;

}

#mag span {
	font-size: 10px;
	margin-left: -1px;
	color: #ffffff;
}

#mag div {
	background-color: var(--magcolor);
	width: var(--magwidth);
	height: 2px;
	position: relative;
	border: none;
	outline: none;
	margin-left: 2px;
	margin-top: 18px;
}

#mag div:before {
	background-color: var(--magcolor);
	width: var(--magwidth);
	height: 2px;
	content: "";
	display: block;
	position: absolute;
	top: 5px;
}

#mag div:after {
	background-color: var(--magcolor);
	width: var(--magwidth);
	height: 2px;
	content: "";
	display: block;
	position: absolute;
	bottom: 5px;
}
#mag.active{
	--magcolor: var(--bs-primary);
	border: 2px solid var(--bs-primary);
	background-color: rgba(0, 0, 0, 0);
}
#mag:hover div,
#mag:hover div:before,
#mag:hover div:after {
	background-color:#787980;;

}

#mag.active div {
	transform: rotate(45deg);
}

#mag.active div:before {
	transform: rotate(-90deg);
	margin-top: -5px;
}

#mag.active div:after {
	display: none;
}

/*BTN----------------------------------
------------------------------------------*/
.btn-i {
	background-color: #ffffff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	margin-left: 10px;
	overflow: hidden;
	position: relative;
}

.btn:hover .btn-i {
	background-color: var(--main-color);
}

.btn-i:before {
	content: "";
	background-image: url(../img/all/btn-arrow.svg);
	background-repeat: no-repeat;
	background-size: 12px auto;
	background-position: center;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	z-index: 2;

}

.btn-i:after {
	content: "";
	background-image: url(../img/all/btn-arrow-w.svg);
	background-repeat: no-repeat;
	background-size: 12px auto;
	background-position: center;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	margin-left: -50px;
	z-index: 1;
}

.btn:hover .btn-i:before {
	margin-left: 50px;
}

.btn:hover .btn-i:after {
	margin-left: 0px;
}

.btn-rule {
	background-color: var(--third-color);
	color: var(--body-color);
	font-weight: bold;
}

.btn-rule:hover {
	background-color: #DF6D3C;
	color: #ffffff;
}

/*-------------------------------PAGETITLE
----------------------------------------*/
.section-100vh {
	min-height: 100vh;
}

.page-section {
	margin-bottom: var(--sectionpd);
	position: relative;
	z-index: 1;
}

.page-section.mart {
	padding-top: 1em;
	margin-top: var(--sectionpd);
}

.page-section.nomarb {
	margin-bottom: var(--rowpd);
}

.page-note {
	color: var(--third-color);
	font-size: 0.9rem;
	font-weight: bold;
}

.page-note.page-note-green {
	color: var(--sub-color);
}

.page-note-list li {
	background-image: url(../img/page/list-dot.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
}

.page-title__wrap {
	margin-left: 0rem;
	margin-top: 8%;
	margin-bottom: var(--titlepd);
	position: relative;
	z-index: 1;
}

.page-title__main {
	color: var(--sub-color);
	font-weight: bolder;
	font-size: 2rem;
}

.page-title__main.group {
	color: #009186;
}

.page-title__main.group:before {
	background-image: url(../img/page/dot-title2.png);
}

.page-title__date {
	color: #D9DD8F;
	font-size: 0.8rem;
	/*  margin-bottom: var(--sectionpd); */
}

.page-sub-title {
	color: var(--third-color);
	font-size: 1.2rem;
	font-weight: bold;
	line-height: normal;
}

@media screen and (min-width: 576px) {
	.page-title__main {
		font-size: 2.5rem;
	}

	.page-sub-title {
		font-size: 1.5rem;
	}
}

/*-------------------------------FILEWRAP
----------------------------------------*/
.wrapper-file {
	padding-top: var(--titlepd);
	border-top: rgba(255, 255, 255, .3) 1px dashed;
	margin-top: var(--rowpd);
}

.list-file {
	color: #D9DD8F;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.list-file:before {
	content: "";
	background-image: url(../img/page/bg-icon-more.png);
	background-repeat: no-repeat;
	background-size: 50px;
	background-position: 5px 10px;
	clip-path: circle(50% at 50% 50%);
	background-color: black;
	width: 40px;
	height: 40px;
	display: inline-block;
}

.list-file:hover {
	text-decoration: underline;
}

.list-file:hover:before {
	background-size: 30px;
	background-position: 5px 10px;
}

/*-------------------------------PAGEITEM
----------------------------------------*/
.pageitem {
	color: var(--third-color);
	margin-bottom: 1em;
	font-size: 1.5rem;
	font-weight: bold;
	padding-left: 40px;
	position: relative;
}

.pageitem.smb {
	margin-bottom: 0px;
}

.pageitem:before {
	content: "";
	background-image: url(../img/page/dot-way.png);
	background-repeat: no-repeat;
	background-position: left 9px;
	position: absolute;
	width: 50px;
	height: 50px;
	display: block;
	background-size: 25px auto;
	left: 0px;
}

/*LOADMORE===================================*/
.show-more {
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 10px;
	color: #FFF;
	display: none;
	background-image: url(../img/all/loading.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50px 50px;
	position: absolute;
	background-color: rgba(0, 0, 0, .5);
	left: 0;
	top: 0;
	z-index: 100;
	text-align: center;
}

.show-more span {
	width: 100%;
	padding-bottom: 50px;
	color: #ffffff;
}

/*LOADMOREEND=====================================*/
/*others----------------------------------
------------------------------------------*/
.transiA,
a,
.btn,
.site-header_li,
.site-gotop span:after,
.site-header_li--in,
.site-header-subnavu div,
.site-header_dt div,
.box-program-icon span:before,
.btn-i:before,
.btn-i:after,
.site-header_li .ch01:before,
.iconfb,
.img-mask{
	transition: all 0.5s cubic-bezier(.19, 1, .22, 1);
	-moz-transition: all 0.5s cubic-bezier(.19, 1, .22, 1);
	-webkit-transition: all 0.5s cubic-bezier(.19, 1, .22, 1);
	-ms-transition: all 0.5s cubic-bezier(.19, 1, .22, 1);
	-o-webkit-transition: all 0.5s cubic-bezier(.19, 1, .22, 1);
}

.editstyle img {
	max-width: 100%;
}

.nowrap {
	white-space: nowrap;
	display: inline-block
}

/*IMG*/

img {
	border-top-style: none !important;;
	border-right-style: none !important;;
	border-bottom-style: none !important;;
	border-left-style: none !important;;
}

.miximg {
	mix-blend-mode: multiply;
}

.iconfb {
	display: inline-block;
	max-width: 390px;
	background-image: url(../img/all/fbfans.svg);
	background-color: #385694;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background-repeat: no-repeat;
	background-position: 5px center;
	background-size: 20px auto;
	padding-left: 30px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	color: #ffffff;
	margin-bottom: 50px;
}

.iconfb:hover {
	background-color: #294681;
}

@media screen and (max-width: 375px) {

	/*限制縮到最小狀況*/
	body,
	html {
		width: 375px;
		overflow-x: hidden;
	}
}


/*-------------側邊標題-------------------*/
.site-title-vertical {
	writing-mode: vertical-rl ;
	font-family: 'NotoSansTCBold';
    font-size: 1.8rem;
    color: white;
	white-space: nowrap;
  }
  @media screen and (min-width: 480px) {
    .site-title-vertical {
        font-size: 2rem;
      }
}
@media screen and (min-width: 768px) {
    .site-title-vertical {
        font-size: 3rem;
    }
}
@media screen and (min-width: 1024px) {
    .site-title-vertical {
        font-size: 4rem;
    }
}
/*-----------slide---------*/
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
	object-fit: contain;
}
.slide.active {
    opacity: 1;
}
.slick-prev,
.slick-next{
    z-index: 1;
}
.slick-prev{
	left: 0;
}
.slick-next{
	right: 0;
}
