@charset "utf-8";
/* CSS Document */

body,td,th {
	/* 字型 */
	font-family: 'Noto Sans TC', sans-serif;
}
.no-webp body {
    background-image: url(../img/main-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.webp body {
    background-image: url(../img/main-bg.webp);
    background-size: cover;
    background-attachment: fixed;
}
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
	color: #000;
}
a:active {
	text-decoration: none;
	color: #000;
}

/* --------------------------- */
/* GOTOP */
/* --------------------------- */
#gotop {
	position: fixed;
	border-radius: 10px;
	width: 50px;
	height: 50px;
	right: 30px;
	bottom: 30px;
	color: #fff;
	font-size: 20px;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	z-index: 9999;
	text-align: center;
	padding-top: 8px;
	display: none;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
#gotop:hover {
	background: rgba(0, 0, 0, 0.7);
}
/* --------------------------- */
/* GOTOP */
/* --------------------------- */

.sidemenu-box {
    position: fixed;
    top: 20%;
    right: 30px;
    z-index: 999;
}
.sidemenu {
    margin-top: 10px;
    padding: 20px 15px;
    font-size: 22px;
    line-height: 26px;
    background-color: #e60012;
    color: white;
    border: 3px white solid;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
.sidemenu:hover {
    background-color: #ca0010;
}
@media (max-width:768px) {
.sidemenu-box {
    top: auto;
    bottom: 15%;
    right: 10px;
}
.sidemenu {
    padding: 15px 10px;
    font-size: 18px;
    line-height: 22px;
    border: 2px white solid;
}
}

/* --------------------------- */
/* NAVBAR */
/* --------------------------- */
.navbar {
	height: 100px;
	background-color: white;
    border-bottom: 1px #ccc solid;
}
@media (max-width:768px) {
.navbar {
	height: auto;
}
}
.navbar.main-navbar .nav-link {
	color: #000;
	padding: 0 15px;
	font-size: 18px;
	letter-spacing: 1px;
	position: relative;
	transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
}
.navbar.main-navbar .nav-link:after {
	content: ' ';
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	height: 5px;
	width: 0;
	background-color: #dd2629;
	transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
}
.navbar.main-navbar .nav-link:hover {
	color: #dd2629;
}
.navbar.main-navbar .nav-link:hover:after {
	width: 30px;
}
.navbar.main-navbar .nav-item.active .nav-link {
	color: #dd2629;
}
.navbar.main-navbar .nav-item.active .nav-link:after {
	width: 30px;
}
@media screen and (max-width: 990px) {
.navbar.main-navbar .navbar-collapse {
	margin-top: 20px;
	margin-bottom: 20px;
}
.navbar.main-navbar .navbar-nav .nav-item a {
	display: inline-block;
	padding: 10px 0;
}
.navbar.main-navbar .navbar-nav .nav-item a:after {
	display: none;
}
}
.navbar-toggler {
	background-color: #dd2629;
}
.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}
.important {
    color: white;
    background-color: #e60012;
    padding: 2px 10px;
    border-radius: 5px;
}
/* --------------------------- */
/* NAVBAR */
/* --------------------------- */

/* --------------------------- */
/* BANNER */
/* --------------------------- */
.banner-area {
	margin-top: 100px;
    background-image: url(../img/banner.jpg);
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    padding: 80px 0 100px;
}
@media (max-width:768px) {
.banner-area {
	margin-top: 50px;
    background-image: url(../img/banner-m.jpg);
    background-attachment: scroll;
    padding: 80px 0 80px;
}
}
.carousel-item {
    border-top: 3px #1c1c1c solid;
    border-bottom: 3px #1c1c1c solid;
}
@media (max-width:768px) {
.carousel-item {
    border: 3px #1c1c1c solid;
}
}
.carousel-indicators {
	bottom: -45px;
}
.carousel-indicators li {
	width: 40px;
	height: 6px;
	margin-right: 5px;
	margin-left: 5px;
	background-color: white;
}
.carousel-indicators .active {
	background-color: #e60012
}
@media (min-width:768px) {
.carousel-control-next, .carousel-control-prev {
	width: 50px;
    background-color: #1c1c1c;
    opacity: 1;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    background-color: #1c1c1c;
	opacity: 1
}
.carousel-control-prev {
	left: -50px
}
.carousel-control-next {
	right: -50px
}
}
.announcement {
    background-color: white;
    border: 3px #e60012 solid;
    border-radius: 20px;
    margin-top: 60px;
    padding: 40px 50px 25px 30px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 2px;
    text-align: justify;
    box-shadow: 0 10px 10px rgba(0,0,0,.3);
}
@media (max-width:768px) {
.announcement {
    padding: 40px 45px 25px 10px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
}
}
.announcement-title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}
@media (max-width:768px) {
.announcement-title {
    padding-left: 35px;
}
}
.announcement span {
    font-weight: 700;
    color: #e60012;
    text-decoration: underline;
}
/* --------------------------- */
/* BANNER */
/* --------------------------- */

/* --------------------------- */
/* BTN */
/* --------------------------- */
.btn-area {
    padding: 40px 0;
/*    background-color: #ffe000;*/
}
@media (max-width:768px) {
.btn-area {
    padding: 30px 0 40px;
}
}
.btn-area2 {
    padding: 100px 0;
    background-color: #f3a7b4;
}
@media (max-width:768px) {
.btn-area2 {
    padding: 30px 0;
}
}
.btn-1 {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    padding: 30px 0;
    background-color: white;
    border-top: 3px black solid;
    border-right: 3px black solid;
    border-left: 3px black solid;
    border-bottom: 10px black solid;
    width: 100%;
    border-radius: 10px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
@media (max-width:768px) {
.btn-1 {
    font-size: 22px;
    padding: 20px 0;
    margin-top: 10px;
}
}
.btn-1:hover {
    background-color: #e60012;
    color: white;
}
/* --------------------------- */
/* BTN */
/* --------------------------- */

/* --------------------------- */
/* FEATURES */
/* --------------------------- */
.features-area {
    padding: 100px 0 0;
}
.chapter-title {
    text-align: center;
}
.chapter-title img {
    width: 400px;
}
@media (max-width:768px) {
.chapter-title img {
    width: 90%;
}
}
.chapter-box {
    background-color: white;
    border: 3px solid #1c1c1c;
    border-radius: 10px;
    padding: 80px;
    width: 80%;
    margin: 0 auto;
}
@media (max-width:768px) {
.chapter-box {
    padding: 30px;
    width: 95%;
}
}
.features-padding {
    padding: 45px 20px;
}
@media (max-width:768px) {
.features-padding {
    padding: 20px 10px;
}
}
.features-t {
    font-size: 24px;
    background-color: white;
    padding: 20px 0 10px;
    text-align: center;
    border: 3px solid #1c1c1c;
    border-radius: 10px;
    font-weight: bold;
    position: relative;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
@media (max-width:768px) {
.features-t {
    font-size: 22px;
    padding: 5px 0;
    color: white;
    background-color: #e60012;
}
}
.features-t:hover {
    background-color: #e60012;
    color: white;
}
.features-t2 {
    font-size: 24px;
    color: white;
    background-color: #e60012;
    padding: 10px 0;
    text-align: center;
    border: 3px solid #1c1c1c;
    border-radius: 10px;
    font-weight: bold;
    position: relative;
}
@media (max-width:768px) {
.features-t2 {
    font-size: 22px;
    padding: 5px 0;
}
}
.features-w {
    font-size: 18px;
    margin-top: 20px;
    text-align: justify;
    line-height: 30px;
    font-weight: 500;
}
@media (max-width:768px) {
.features-w {
    font-size: 17px;
    line-height: 28px;
}
}
.sng-logo {
    text-align: center;
    margin-top: 20px;
}
.sng-logo img {
    width: 80%;
}
@media (max-width:768px) {
.sng-logo img {
    width: 100%;
}
}
.certificate {
    text-align: center;
    margin-top: 10px;
}
@media (max-width:768px) {
.certificate {
    margin-top: 30px;
    border: none;
}
}
.certificate img {
    width: 100%;
    border: 1px #aaa dashed;
}
@media (max-width:768px) {
.certificate img {
    width: 150px;
}
}
.i {
    width: 50px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}
.promotion {
    margin-bottom: 80px;
    border: 3px #1c1c1c solid;
}
.promotion img {
    width: 100%;
}
/* --------------------------- */
/* FEATURES */
/* --------------------------- */

/* --------------------------- */
/* INFO */
/* --------------------------- */
.info-area {
    padding: 100px 0 0;
}
.chapter-box2 {
    background-color: white;
    border: 3px solid #1c1c1c;
    border-radius: 10px;
    padding: 0 50px;
    position: relative;
}
@media (max-width:768px) {
.chapter-box2 {
    padding: 30px 45px 30px 30px;
    text-align: justify;
}
}
.info-boxL1 {
    padding: 80px 40px 0;
    text-align: right;
    position: relative;
}
.info-boxL2 {
    padding: 0 40px;
    margin-top: -50px;
    text-align: right;
    position: relative;
}
.info-boxL3 {
    padding: 0 40px 80px;
    margin-top: -50px;
    text-align: right;
    position: relative;
}
.info-boxR {
    padding: 0 40px;
    margin-top: -50px;
    position: relative;
}
.info-boxR2 {
    padding: 0 40px;
    margin-top: -50px;
    position: relative;
}
.info-line {
    border-right: 4px solid #1c1c1c;
}
.info-level {
    font-size: 28px;
    font-weight: bold;
}
@media (max-width:768px) {
.info-level {
    font-size: 24px;
}
}
.info-jlpt {
    color: white;
    background-color: #e60012;
    padding: 0px 10px;
    margin-left: 20px;
    border-radius: 10px;
}
.info-des {
    font-size: 18px;
    margin-top: 10px;
}
@media (max-width:768px) {
.info-des {
    font-size: 17px;
}
}
.info-circleL1 {
    border: 3px solid #1c1c1c;
    background-color: #e60012;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    position: absolute;
    right: -13px;
    top: 90px;
    z-index: 99;
}
.info-circleL2 {
    border: 3px solid #1c1c1c;
    background-color: #e60012;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    position: absolute;
    right: -13px;
    top: 10px;
    z-index: 99;
}
.info-circleR {
    border: 3px solid #1c1c1c;
    background-color: #e60012;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    position: absolute;
    left: -13px;
    top: 11px;
    z-index: 99;
}
.info-level-box-m {
    border-bottom: 1px dashed #1c1c1c;
    padding: 30px 0;
}
.info-level-box-m2 {
    padding: 30px 0;
}
.info-note {
    font-weight: bold;
    margin-top: 20px;
    text-align: right;
    border-top: 1px dashed #aaa;
    border-bottom: 1px dashed #aaa;
    padding: 15px 0;
}
.info-note2 {
    font-weight: bold;
    margin-top: 20px;
    text-align: left;
    border-top: 1px dashed #aaa;
    border-bottom: 1px dashed #aaa;
    padding: 15px 0;
}
.info-note-m {
    font-weight: bold;
    margin-top: 10px;
}
.info-explain {
    font-size: 18px;
    position: absolute;
    text-align: right;
    bottom: 50px;
    right: 0;
    color: white;
    background-color: #1c1c1c;
    padding: 10px 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
/* --------------------------- */
/* INFO */
/* --------------------------- */

/* --------------------------- */
/* SCHEDULE */
/* --------------------------- */
.schedule-area {
    padding: 100px 0 0;
}
.schedule-des {
    font-size: 22px;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    background-color: #1c1c1c;
    padding: 10px 0;
    border-radius: 10px;
}
@media (max-width:768px) {
.schedule-des {
    font-size: 20px;
    margin-bottom: 20px;
}
}
.schedule-btn {
    font-size: 28px;
    background-color: white;
    padding: 20px 0 15px;
    text-align: center;
    border: 3px solid #1c1c1c;
    border-radius: 10px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
@media (max-width:768px) {
.schedule-btn {
    font-size: 22px;
    padding: 5px 0;
    color: white;
    background-color: #e60012;
}
}
.schedule-btn:hover {
    background-color: #e60012;
    color: white;
}
.schedule-table {
    width: 100%;
    border: 3px black solid;
}
@media (max-width:768px) {
.schedule-table {
    width: 800px;
}
}
.schedule-table td {
    border: 1px solid black;
    padding: 10px 0;
    text-align: center;
    font-size: 20px;
}
.schedule-table thead {
    background-color: #1c1c1c;
    color: white;
}
.schedule-table tbody {
    background-color: white;
}
@media (min-width:576px) {
.modal-dialog1 {
    max-width: 1140px;
	width: 1140px!important;
	margin: 30px auto;
} 
}
@media (max-width:768px) {
.modal-dialog1 {
    max-width: 90%;
	width: 90%!important;
	margin: 30px auto;
} 
}
.modal-header1 {
    padding: 30px 50px 10px;
}
.modal-body1 {
    padding: 50px;
}
.modal-footer1 {
    padding: 20px 50px 30px;
}
@media (max-width:768px) {
.modal-header1 {
    padding: 30px 30px 10px;
}
.modal-body1 {
    padding: 20px;
}
.modal-footer1 {
    padding: 20px 30px 30px;
}
}
.modal-title1 {
    font-size: 30px;
}
@media (max-width:768px) {
.modal-title1 {
    font-size: 22px;
} 
}
.schedule-padding {
    padding: 0 20px;
}
@media (max-width:768px) {
.schedule-padding {
    padding: 5px;
}
}


.online-category {
    font-size: 24px;
    font-weight: 600;
    background-color: #1c1c1c;
    color: white;
    text-align: center;
    padding: 5px 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.online-category-box {
    background-color: #f3f3f3;
    padding: 25px;
    height: 100%;
}
@media (max-width:768px) {
.online-category-box {
    height: auto;
}
}
.online-category2 {
    font-size: 24px;
    font-weight: 600;
    background-color: #1c1c1c;
    color: white;
    text-align: center;
    padding: 5px 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
@media (max-width:768px) {
.online-category2 {
    margin-top: 30px;
}
}
.online-des {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: justify;
}
/* --------------------------- */
/* SCHEDULE */
/* --------------------------- */

/* --------------------------- */
/* EVENT */
/* --------------------------- */
.event-area {
    padding: 100px 0 0;
}
.chapter-box3 {
    background-color: white;
    border: 3px solid #1c1c1c;
    border-radius: 10px;
    padding: 80px;
}
@media (max-width:768px) {
.chapter-box3 {
    padding: 30px;
}
}
/* --------------------------- */
/* EVENT */
/* --------------------------- */

/* --------------------------- */
/* MORE */
/* --------------------------- */
.more-area {
    padding: 100px 0;
}
.more-pic {
    background-size: cover;
    background-position: center;
    height: 230px;
    margin-bottom: 30px;
    border-radius: 10px;
}
@media (max-width:768px) {
.more-pic {
    height: 180px;
}
}
.no-webp .pic1{background-image:url(../img/pic1.jpg)}
.no-webp .pic2{background-image:url(../img/pic2.jpg)}
.no-webp .pic3{background-image:url(../img/pic3.jpg)}
.no-webp .pic4{background-image:url(../img/pic4.jpg)}
.no-webp .pic5{background-image:url(../img/pic5.jpg)}

.webp .pic1{background-image:url(../img/pic1.webp)}
.webp .pic2{background-image:url(../img/pic2.webp)}
.webp .pic3{background-image:url(../img/pic3.webp)}
.webp .pic4{background-image:url(../img/pic4.webp)}
.webp .pic5{background-image:url(../img/pic5.webp)}

/* --------------------------- */
/* MORE */
/* --------------------------- */

/* --------------------------- */
/* LOCATIONS */
/* --------------------------- */
.locations {
    margin-top: 30px;
}
.locations-box {
    padding: 50px 30px;
    background-color: white;
    text-align: center;
}
.location-t {
    font-size: 30px;
    font-weight: bold;
    color: #e60012;
    margin-top: 8px;
}
.location-address {
    font-size: 18px;
    margin-top: 10px;
}
.location-traffic {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}
.location-tel {
    font-size: 25px;
    margin-top: 10px;
}
/* --------------------------- */
/* LOCATIONS */
/* --------------------------- */

/* --------------------------- */
/* FOOTER */
/* --------------------------- */
.footer {
    background-color: #1c1c1c;
    padding: 50px 0;
    text-align: center;
    color: white;
    font-size: 16px;
}
@media (max-width:768px) {
.footer {
    padding: 30px;
    text-align: left;
}
}
.footer-links {
    margin-bottom: 20px;
    color: white;
}
.footer-links a {
    color: white;
}
.footer-links a:hover {
    color: yellow;
}
@media (max-width:768px) {
.footer-links {
    margin-bottom: 0;
}
}
/* --------------------------- */
/* FOOTER */
/* --------------------------- */


.announcement-from {
    background-color: white;
    border: 2px #e60012 solid;
    border-radius: 10px;
    margin-top: 40px;
    padding: 20px 30px 5px 10px;
    line-height: 30px;
    letter-spacing: 2px;
    text-align: justify;
}
@media (max-width:768px) {
.announcement-from {
    padding: 20px 35px 5px 0;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
}
}
.announcement-from span {
    font-weight: 700;
    color: #e60012;
    text-decoration: underline;
}


.calendar-box-title {
    padding: 10px 20px 15px 45px;
    border: 1px #ccc solid;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    margin-top: 10px;
    background-color: white;
}
.calendar-box-title:hover {
    background-color: #e41f13;
    color: white;
}
.calendar-box-title .fa-angle-right {
    position: absolute;
    left: 20px;
    top: 35%;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
.start-date {
    font-size: .95rem;
    margin-top: 3px;
}
.start-date i {
    margin-right: 10px;
}
.calendar-box {
    line-height: 30px;
    padding: 20px;
    border: 1px #ccc solid;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
    overflow: hidden;
    background-color: white;
}
@media (max-width:768px) {
.calendar-box {
    padding: 15px;
}
}
.t-active {
    background-color: #e41f13;
    color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.arrow-active {
    transform: rotate(90deg);
}