@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

.noto-sans---{
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
}
.plus-jakarta-sans {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
}


*{  box-sizing: border-box;
    font-family: 'Noto Sans TC', sans-serif; }

img { border-style: none; }
a img  {    border: none; } 

html, body{ }



#btn_home{
  position: fixed;
  right: 55px;
  top: 65px;

  width:215px;
  height:62px;
  background-image: url(img/btn_home.png);
  background-size:cover;
  background-position: center center;
  cursor: pointer;
  z-index:998;
}

#btn_back{
  position: fixed;
  right: 55px;
  bottom: 55px;

  width:130px;
  height:130px;
  background-image: url(img/btn_back.png);
  background-size:cover;
  background-position: center center;
  cursor: pointer;
  z-index:998;
}

#btn_click{
  position: fixed;
  right: 55px;
  bottom: 55px;

  width:190px;
  height:190px;
  background-image: url(img/btn_click.png);
  background-size:cover;
  background-position: center center;
  cursor: pointer;
  z-index:998;
}

#bttop {
  position: fixed;
  right: 50px;
  bottom: 50px;

  width:100px;
  height:100px;
  background-image: url(img/btn_top.png);
  background-size:cover;
  background-position: center center;
  cursor: pointer;
  z-index:998;}
#bttop:hover{
  background-image: url(img/btn_top-1.png);
}


/* --------------------------

  　　N A V * N A V * N A V
  
-----------------------------*/

.logo h1{
  font-size:32px;
  line-height:32px;
  font-weight: 500;}
.logo h2{
  font-size:28px;
  line-height:32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 200;
  letter-spacing: 2px;
  padding-left:20px;
}

.container-n {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 0 30px;}

.bg-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 8rem;
  margin: 0 auto;
  padding-left:50px;}

.navbar li a{
  display:block;
  padding:5px 30px;
  padding-bottom:7px;
  margin-inline: 15px;
  border-radius: 25px;
  text-decoration: none;
  color:#045977;
  background-color: #ffffff;
  font-size:22px;
  font-weight: bold;
  box-shadow: 0px 0px 10px #666666;
  transition:0.5s ease;
  transform: translateX(0%);
  margin-right:20px;}

.navbar li a:hover{
  background-color:#74c6c8 ; 
  color:#000000;
  box-shadow: none;}

.menu-item { display: inline-block;}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1.6rem;
  height: 1.15rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 1rem;
  background: #045977;}
.burger-line:nth-child(1) {  top: 0px;}
.burger-line:nth-child(2) {  top: 0.5rem;  width: 70%;}
.burger-line:nth-child(3) {  top: 1rem;}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 1200px) {

  .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .bg-nav {
    justify-content: space-between;
    padding-left:30px;
    height:6rem;  }

  .navbar {
    position: fixed;
    top: 0;
    left: -400%;
    width: 300px;
    height: 100%;
    z-index: 10;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: var(--shadow-medium);
    background: rgba(30, 30, 30, 0.7);
    transition: all 0.5s ease;  }
  .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items:space-around;
    text-align: center;
    width: 100%;
    height: 100vh;
    padding-top:2em;
    background-image: url(img/bg_nav.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;  }

  .menu-item{
    padding:20px 0;
  }
  .navbar li a{
    color:#ffffff;
    background:none;
    box-shadow: none;
    font-size:24px;
    font-weight: normal;
    padding:5px 0;
    line-height: 1.1;
    text-shadow: 0px 0px 10px #000000;
    transition:0.5s ease;
    transform: translateX(0%);
    margin-right:0;  }
  .navbar li a:hover{
    background:none ; 
    color:#DDD23B;
    font-weight:bold;}

    nav ul{
      display:flex;
      flex-wrap: wrap;
      padding-top:0;
      justify-content: center;
    }

}


/* ---------------------------

　　 ✦ ✦ 　主要項目　 ✦ ✦

------------------------------ */

.container{
  width:100%;
}


/* ---------------------------

　　 ✦ ✦   上面的BAR　 ✦ ✦

------------------------------ */

.top{
  width:100%;
  height:160px;
  padding-left:80px;
  padding-top:50px;
  display: flex;
}
.bg_top{
  background-image: url(img/bg_top.png);
  background-repeat: repeat-x;
  background-position: center center;

  width:100%; 
  height:10vh; 
  padding-left:50px; 
  display: flex;
  align-items: center;
}

.top h1,.bg_top h1{
  font-size:32px;
  line-height:32px;
  font-weight: 500;}
.top h2,.bg_top h2{
  font-size:28px;
  line-height:32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 200;
  letter-spacing: 2px;
  padding-left:20px;
}

.link{
  display:flex;
  margin-left:5.5%;
  padding-top:12px;}
.link img{
  width:250px;
  height:100px;
}


/* ---------------------------

　　 ✦ ✦   首頁　 ✦ ✦

------------------------------ */
.home{
  background-image: url(img/home.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  width:100%;
  height:100vh;
}

.bg_p{
  background-image: url(img/bg_page.png);
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  overflow: auto;
}


.c1{color:#003A6B;}
.c2{color:#ffffff;}


/* ---------------------------

　　 ✦ ✦   ００　 ✦ ✦

------------------------------ */
.t_0{
  width:20%;
  height:90vh;
  padding-top:20%;
  color:#045977;
  text-align: center;

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  
  display:flex;
  flex-direction: column;
}

.t_1{
  display:none;
  background-image: url(img/bg_top.png);
  background-repeat: repeat-x;
}

.bg0_1{  background-image: url(img/bg_0-1.png);}
.bg0_2{  background-image: url(img/bg_0-2.png);}
.bg0_3{  background-image: url(img/bg_0-3.png);}
.bg0_4{  background-image: url(img/bg_0-4.png);}
.bg0_5{  background-image: url(img/bg_0-5.png);}

.t_0 h1{   
  font-size:44px;
  line-height:1.4;
  font-weight: 700;
  letter-spacing: 2px;}
.t_0 h5{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size:6em;
  font-weight: 200;
  padding-bottom:20px;
}
.t_0 img{
  width:130px;
  height:80px;
  margin-bottom:40px;
}


/* ---------------------------

　　 ✦ ✦   ０１　 ✦ ✦

------------------------------ */

main{
  max-width: 1200px;
  margin:0  auto;
  padding: 50px;
  padding-bottom:0;
  overflow: auto;}

main h1{
  font-size:44px;
  line-height:44px;
  font-weight: 700;
  color:#045977;
  border-left:15px solid #045977;
  padding-bottom:3px;
  padding-left:15px;
  margin-bottom:30px;
  letter-spacing: 5px;
  margin-top:80px;}
main h2{
  display: inline-block;
  padding:3px 20px;
  font-size:30px;
  line-height:1.4;
  color:#ffffff;
  background-color:#045977;
  margin-top:15px;
  }
main p{
  padding-top:10px;
  font-size:18px;
  line-height:2;
  padding-bottom:15px;
  font-weight: 500;
}

main h3{ 
  font-size:22px;
  font-weight: normal;
  padding: 5px 10px;
  color:#045977;
  border:1px solid #045977;
  display: inline;}



main h4{
  font-size:36px;
  line-height:36px;
  color:#268785;
  margin-bottom:50px;
  border-left:5px double #268785;
  padding-left:25px;}
.h4e{
  font-size:22px;
  font-style: italic;
  font-weight: normal;
  line-height:24px;}

.h5{
  font-size:24px;
  font-weight: normal;
  color:#ffffff;
  background-color: #268785;
  display: inline-block;
  padding-inline: 20px;
  padding-block:5px;
  margin-top:15px;
}

.notee{margin-block:10px;}
.notee p{
  font-size:15px;
  line-height:15px;
  padding-bottom:0px;
  color:#333333;}

.ref p{
  font-size:14px;
  line-height:1.4;
  font-weight: 400;
  padding-bottom:5px;
}

footer{
  width:100%;
  text-align: center;
  padding:40px 0;}
footer p{
  color:#045977;
  font-size:13px;
  letter-spacing: 1px;}

/* ---------------------------

　　 ✦ ✦   ０２　 ✦ ✦

------------------------------ */

.video-container {
  position: relative;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}
.video-container iframe, .video-container object, 
.video-container video,
.video-container embed {
  position: absolute;
  top: 0;left: 0;
  width: 100%;
  height: 100%;
  outline: none;}


.imgfit img{
  object-fit: cover;
  width:100%;
  height:auto;}

.df0{
  display:flex;
  justify-content: space-between;}
.dfa{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;}
.dfc{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;}

.dfbuzz{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:10px; 
}

  
.mb1{margin-block:10px;}
.mb2{margin-block:20px;}

.mr1{margin-right:10px;}

.vp{
  font-size:20px;
  font-weight: 600;
  line-height: 20px;
  color:#82663A;
  padding:5px 0;
}

/* ---------------------------

　　 ✦ ✦   ０３　 ✦ ✦

------------------------------ */

.wid15{ width:13%}
.wid25{ width:25%;}
.wid45{ width:43%;}
.wid50{ width:48%;}
.wid55{ width:54%;}

.wid30{ width:28%;}
.wid70{ width:68%;}



.wid85{ width:85%;}


.ccc{margin:0 auto;}


.widbuz{width:48%;}
.buzzl{
  display:block;
  width:1px;
  height:auto;
  background-color: #045977;}
.buzz2{display: none;}
.buzzbtn{width:43%;}




/* ---------------------------

　　 ✦ ✦   ０５　**new**　 ✦ ✦

------------------------------ */

.div5r{
  width:30%;
  display:flex;
  flex-direction: column;
  padding-top:80px;
}

.div5r p{
  font-size:15px;
  line-height:1.5;
  color:#045977;
  padding-top:3px;
}

.sh3-{
  -webkit-filter: drop-shadow(1px 1px 7px rgba(80, 80, 80, 0.8));
  filter: drop-shadow(1px 1px 7px rgba(80, 80, 80, 0.8));}



/* ---------------------------

　　 ✦ ✦   ０５ ✦ ✦

------------------------------ */

.m5_container{
  margin-top:20px;
  margin-inline: 80px;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.m5_container2{
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  width:70%;
}

.m5{
  width:25%;
  margin-top:40px;}
.m5 h3,.m5_r h3{
  font-size:24px;
  font-weight: 600;
  padding: 5px 10px;
  color:#045977;
  border:2px solid #045977;
  display: inline;}


.pr-2{
  padding-right:50px;
}

.m5_bg{
  background-image:url(img/bg_m5.png);
  background-position:right center;
  background-repeat: no-repeat;
}



.a-{
  letter-spacing: -9px;
}

.m5_1{
  width:360px;padding-right:50px;}
.m5_1 img{
  object-fit: cover;
  width:100%;
  height:auto;
}

.m5_r p{
  font-size:16px;
  line-height:1.4;
  font-weight: 400;
  padding-bottom:10px;
  text-align: justify;
}


/* ---------------------------

　✦ ✦   ０５-1-2-3-4-5 ✦ ✦

------------------------------ */

.div60{
  width:67%;
}

.div60 h3{
  font-size:30px;
  font-weight: 600;
  color:#7D532C;
  padding-top:20px;
  padding-bottom:10px;
}

.div60 p{
  font-size:21px;
  line-height:1.8;
  font-weight: 500;
  padding-bottom:10px;
  text-align: justify;
}

.div40{
  width:30%;
}

.div40 img{
  object-fit: cover;
  width:100%;
  height:auto;
}

.div40 h3{
  font-size:19px;
  font-weight:500;
  line-height: 1.6;
  color:#0C4842;
}

.mt_5_{margin-top: 20px;}


/* ---------------------------

　　    ✦ ✦ 　RWD　 ✦ ✦

------------------------------ */


@media (max-width: 1200px) {

  main{padding: 30px;padding-bottom:0;}

}


@media (max-width: 1000px) {

  .home{
    background-image: url(img/home_m1.png),url(img/home_m.png);
    background-position:center center, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: 90%,cover;
  }

  .bg_p{
    background-image: url(img/bg_page_m1.png),url(img/bg_page_m2.png),url(img/bg_page_m.png);
    background-position: top left, bottom right, top left;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: contain,contain,cover;
    background-attachment: fixed, fixed, fixed;
  }

  .bg_top{ height:10vh; padding-left: 30px;}
  .df0{    flex-direction: column;}
  .t_0{
    width:100%;
    height:16.6vh;
    padding-top:0;
    padding-left:30px;
    flex-direction: row;
    align-items: center;}
  .t_0 h1{  font-size:2.2em;}
  .t_0 h5{  font-size:3em;
    padding-bottom: 0;
    padding-right:15px;}


  .t_1{

    width:100%;
    height:7vh;
    display:block;
    background-image: url(img/bg_top.png);
    background-repeat: repeat-x;
    background-position: bottom center;
  }


  .bg0_1{  background-image: url(img/bg_0-1m.png);}
  .bg0_2{  background-image: url(img/bg_0-2m.png);}
  .bg0_3{  background-image: url(img/bg_0-3m.png);}
  .bg0_4{  background-image: url(img/bg_0-4m.png);}
  .bg0_5{  background-image: url(img/bg_0-5m.png);}

  #btn_back,#btn_click{
      right:20px;bottom:20px;
      width:80px;height:80px;}


  #bttop {
    right: 20px; bottom: 20px;
    width:80px; height:80px;  }
    
  main h1{
    font-size:32px;
    line-height:32px;
    margin-top:40px;
    margin-bottom:15px;}
  main h2{
    font-size:22px;
    margin-top:10px;
    margin-bottom: 0;
    margin-top:10px;}
  main h4{margin-bottom:30px;}
  .h5{font-size:20px;}
  main p{font-size:15px;}
  footer p{font-size:13px;}
  .notee p{
    font-size:13px;
    line-height:14px;}


  .vp{  font-size:16px;}
}



@media (max-width: 800px) {
  
  .wid45,.wid50,.wid55,.wid60,.wid85,
  .wid30,.wid70
  {width:100%;}

  .widbuz{width:60%;margin:0 auto;}

  .buzzl{display: none;}
  .buzz2{
    display:block;
    width:80%;
    height:1px;
    background-color: #045977;
    margin:0 auto;
    margin-block:15px;
  }
  .buzzbtn{width:70%;}

  .div5r{
    width:100%;
    flex-direction: row;
    justify-content: space-between;
    padding-top:20px;}
  .div5r p{
    font-size:13px; }
  .wid50_{width:48%;}

  .wid15{display:none;}
  .wid25{width:48%;padding-block:10px;}

}

@media (max-width: 600px) {
    .widbuz{width:80%;}
    
  .ref p{
    font-size:12px;
    line-height:1.4;
    padding-bottom:3px;  }
}




.nav-active{
  transform: translateX(0);
}

@keyframes navLinkFade{
  from{
    opacity: 0;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}
.toggle .line1{
   transform: rotate(-45deg) translate(-5px,6px );
}
.toggle .line2{
   opacity: 0;
}
.toggle .line3{
   transform: rotate(45deg) translate(-5px,-6px );
}