@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_b{text-align: right;}
.btn_b a{
  display:inline-block;
  padding:12px 35px;
  font-size:22px;
  color:#ffffff;
  border:1px solid #ffffff;
  border-radius: 30px;
  margin-top:35px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;}
.btn_b a:hover{
  border:none;
  background-color: #ffffff;
  color:#045977;}



#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{color:#003A6B;}
.logo h1{
  font-size:22px;
  line-height:32px;
  font-weight:500 ;}
.logo h2{
  font-size:15px;
  line-height:30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight:normal;
  letter-spacing:.5px;
  padding-left:10px;
}

.container-n {
  max-width: 1400px;
  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;
  border:1px solid #045977;
  font-size:22px;
  font-weight: bold;
  transition:0.5s ease;
  transform: translateX(0%);
  margin-right:20px;}

.navbar li a:hover{
  background-color:#045977;
  border:none;
  color:#ffffff;
  }

.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;  
    border:none;}
  .navbar li a:hover{
    background:none ; 
    color:#2EA9DF;
    font-weight:bold;}

    nav ul{
      display:flex;
      flex-wrap: wrap;
      padding-top:0;
      justify-content: center;
    }

}


/* ---------------------------

　　 ✦ ✦ 　主要項目　 ✦ ✦

------------------------------ */

.container{
  width:100%;
}


/* ---------------------------

　　 ✦ ✦   上面的BAR　 ✦ ✦

------------------------------ */


.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;
}

.bg_top h1{
  font-size:28px;
  line-height:28px;
  font-weight: 500;}
.bg_top h2{
  font-size:22px;
  line-height:24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 200;
  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;

  padding:20em;
  display:flex;
  flex-direction: column;
  justify-content: center;
  color:#ffffff;
}

.home h1{
  text-align: center;
  font-size:80px;
  font-weight: 700;
  letter-spacing: 5px;}
.home h2{
  text-align: center;
  font-size:48px;
  padding-bottom:1em;
  letter-spacing: 3px;
  font-weight: 500;}
.home p{
  font-size:24px;
  line-height:2.2;
}

.bg_p{
  background-image: url(img/bg_page.png);
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
  overflow: auto;
}

.vh1{  height:100vh;}

.c1{color:#003A6B;}
.c2{color:#ffffff;}
.ts{text-shadow: 0px 0px 10px #333333;}

/* ---------------------------

　　 ✦ ✦   ００　 ✦ ✦

------------------------------ */

.t_0{width:24%;}
.t_2{width:28%;}

.t_0,.t_2{
  height:90vh;
  padding-top:8%;
  color:#ffffff;
  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,.t_2 h1{   
  font-size:44px;
  line-height:1.4;
  font-weight: 500;
  letter-spacing: 2px;}
.h1s{
  font-weight: normal;
  font-size:32px;
  letter-spacing: 0;
  line-height:36px;
  padding-block:5px;}
.t_0 h5,.t_2 h5{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size:6em;
  font-weight: 200;
  padding-bottom:20px;
}


/* ---------------------------

　　 ✦ ✦   ０１　 ✦ ✦

------------------------------ */

main{
  max-width: 1600px;
  margin:0  auto;
  padding: 50px;
  padding-bottom:0;
  overflow: auto;}

main h1{
  font-size:44px;
  font-weight: 700;
  color:#045977;
  letter-spacing: 5px;
  margin-bottom:50px;
  text-align: center;}
main h2{
  font-size:36px;
  padding-left:15px;
  color:#003a6b;;
  border-left:20px solid #003a6b;
  line-height:1.4;
  margin-block:15px;}
.h2e{
  font-size:22px;
  line-height:30px;
}

  
main p{
  padding-top:10px;
  font-size:22px;
  line-height:2;
  font-weight: 500;
}

main h3{ 

}



main h4{
  font-size:36px;
  line-height:36px;
  color:#268785;
  margin-bottom:50px;
  border-left:5px double #045977;
  padding-left:25px;}



.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:#78C2C4;
  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;}
.imgfit p{
  padding-top:0;
  text-align: center;
}

.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));}




/* ---------------------------

　　 ✦ ✦   排版用　 ✦ ✦

------------------------------ */

.wid30{ width:28%;}

.wid45{ width:43%;}
.wid50{ width:48%;}
.wid55{ width:54%;}



.wid40{ width:38%;}
.wid60{ width:58%;}

.wid85{ width:85%;}

.widqr{ width:15%;}

  
.mb1{margin-block:10px;}
.mb2{margin-block:20px;}
.mb5{margin-block:50px;}



.mr1{margin-right:10px;}
.m10{margin:10px;}


.ccc{margin:0 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;}


/* ---------------------------

 　 ✦ ✦   排版用 + + +　 ✦ ✦

------------------------------ */

.wid4-2{width:23%;margin:10px;}
.wid5-2{width:18%;margin:10px;}
 



/* ---------------------------

　　    ✦ ✦ 　RWD　 ✦ ✦

------------------------------ */


@media (max-width: 1500px) {

  .bg_top h1{ font-size:22px;}
  .bg_top h2{ font-size:18px;}


  .df0{    flex-direction: column;}

  .t_0{  height:20vh;}
  .t_2{  height:24vh;}
  .t_0,.t_2{
    width:100%;
    padding-top:0;
    background-position: center right;
    padding-left:30px;
    flex-direction: row;
    align-items: center;
    text-align: left;  }
  .t_0 h1,.t_2 h1{  font-size:2.7em;
    text-shadow: 0px 0px 10px #333333;}
  .t_0 h5,.t_2 h5{  font-size:4em;
    line-height:2em;
    padding-bottom: 0;
    padding-right:15px;
    margin-right:15px;
    border-right:1px solid #4ba5af;
    }
  .h1s{font-size:22px;}

  .t_1{
    width:100%;
    height:8vh;
    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);}


  .home{    padding:10em;  }
  .home h1{font-size:55px;}
  .home h2{font-size:32px;}
  .home p{font-size:20px;}
  
}



@media (max-width: 1200px) {

  .home{  padding:5em;  }

  main{padding: 30px;padding-bottom:0;}

  .wid4-2{width:45%;}
  .wid5-2{width:45%;margin:5px;}

}



@media (max-width: 1000px) {


  .bg_p{

  }

  .bg_top{ 
    height:10vh; 
    padding-left: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;}
  .bg_top h1{ padding-bottom:5px;  }
  .bg_top h2{ padding-left:0;}



  #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:40px;
    margin-block:40px;}
  main h2{
  font-size:28px;
  border-left:10px solid #003a6b;
  line-height:1.2;
  margin-block:15px;}
  .h2e{font-size: 17px;}

  main h4{margin-bottom:30px;}
  .h5{font-size:20px;}

  main p{font-size:16px;}

  .btn_b a{font-size:16px;}


  .notee p{
    font-size:13px;
    line-height:14px;}


  .wid85  {width:100%;}
  .wid40,.wid60  {width:100%;}
}



@media (max-width: 800px) {
  
  .home{  padding:2em;  }
  .t_0 h1,.t_2 h1{  font-size:1.5em;}
  .t_0 h5,.t_2 h5{  font-size:3em;}


  main{padding: 20px;}

  .wid45,.wid50,.wid55
  {width:100%;}


  .wid50_{width:45%;}

  .wid4-2{width:43%;}

  .m10{margin:5px;}

  .widqr{ width:25%;}


}

@media (max-width: 600px) {
  .home h1{font-size:36px;letter-spacing: 0;}
  .home h2{font-size:30px;}
  .home p{font-size:16px;line-height:2;}
  .h1s{font-size:18px;}
  .ref p{
    font-size:12px;
    line-height:1.4;
    padding-bottom:3px;  }

  .widqr{ width:35%;}
}




.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 );
}