@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;
}


/* ---------------------------

　　 ✦ ✦   首頁　 ✦ ✦

------------------------------ */
.bg_p{
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
  overflow: auto;
}

.bg_1{  background-image: url(img/bg_01.png);}
.bg_2{  background-image: url(img/bg_02.png);}
.bg_2-1{  background-image: url(img/bg_2-1.png);}
.bg_2-2{  background-image: url(img/bg_2-2.png);}

.vh1{  height:100vh;}

.c1{color:#003A6B;}
.c2{color:#ffffff;}
.ts{text-shadow: 0px 0px 10px #333333;}

/* ---------------------------

　　 ✦ ✦   ００　 ✦ ✦

------------------------------ */

.t_0{width:50%;}

.t_0{
  height:90vh;
  padding-top:10%;
  padding-inline:5%;
  color:#ffffff;
  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);}


.t_0 h1{   
  font-size:70px;
  line-height:1.4;
  font-weight: 500;
  padding-bottom:20px;}
.t_0 h5{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size:2.3em;
  line-height:1.4;
  font-weight: 500;
}


/* ---------------------------

　　 ✦ ✦   ０１　 ✦ ✦

------------------------------ */

main{
  max-width: 1600px;
  margin:0  auto;
  padding: 50px;
  padding-top:0px;
  padding-bottom:0;
  overflow: auto;}

main h1{
  font-size:48px;
  font-weight: 700;
  color:#003A6B;
  letter-spacing: 2px;
  text-align: center;}
main h2{
  font-size:32px;
  color:#003A6B;
  line-height:1.4;
  font-weight: 500;
  text-align: center;
  margin-bottom:50px;}

  
main p{
  padding-top:10px;
  font-size:22px;
  line-height:2;
  font-weight: 500;
}

main h3{
  font-size:36px;
  padding-left:15px;
  color:#003a6b;;
  border-left:10px solid #003a6b;
  line-height:1.4;
  margin-block:15px;}
.h3e{
  font-size:22px;
  line-height:30px;
}



main h4{
  font-size:70px;
  color:#ffffff;
  letter-spacing: 1px;
  font-weight: 500;
  text-shadow: 1px 1px 8px #255359;}
main h5{
  font-size:36px;
  letter-spacing: .5px;
  color:#ffffff;
  font-style: italic;
  font-weight: 500;
  margin-bottom:30px;
  text-shadow: 1px 1px 8px #255359;
}



footer{
  width:100%;
  text-align: center;
  padding:40px 0;}
footer p{
  color:#78C2C4;
  font-size:13px;
  letter-spacing: 1px;}

  

/* ---------------------------

　　 ✦ ✦   圖片跟影片　 ✦ ✦

------------------------------ */



.imgfit img{
  object-fit: cover;
  width:100%;
  height:auto;}

.imgfit h6{
  font-size:28px;
  line-height:36px;
  font-weight: 500;
  padding-bottom:7px;
}
.imgfit p{
  font-size:18px;
  line-height:24px;
  padding-top:0;
}

.imgfit h6,.imgfit p{
  text-shadow: 1px 1px 8px #255359;
  color:#ffffff;
}

.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));}



/* ---------------------------

　　 ✦ ✦   排版用　 ✦ ✦

------------------------------ */



.wid45{ width:43%;}
.wid50{ width:48%;}
.wid85{ width:85%;}


.wid4-2{width:23%;}
.wid2-1{width:40%;margin-inline:30px;}

  
.mb1{margin-block:10px;}
.mb2{margin-block:20px;}
.mb5{margin-block:50px;}


.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;}

  .dfff{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }



/* ---------------------------

　　    ✦ ✦ 　RWD　 ✦ ✦

------------------------------ */

@media (max-width: 1600px) {

.wid4-2{width:47%;}


}

@media (max-width: 1200px) {

  .bg_top{
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .bg_top h1{ font-size:22px;line-height:32px;}
  .bg_top h2{ font-size:18px;padding:0;}


  .df0{    flex-direction: column;}

  .t_0{
    padding-top:0;
    width:100%;
    height:41vh;
    background-position: center right;
    padding-left:30px;
    justify-content: center;
 }
  .t_0 h1{  
    font-size:3.6em;
    line-height:1.2;
    padding-bottom:10px;
    text-shadow: 2px 2px 10px #333333;}
  .t_0 h5{ font-size:2.1em; }

  .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-position:right bottom;}
  .bg0_2{  }




  main{padding: 30px;padding-bottom:0;}


}



@media (max-width: 1000px) {


  .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;    }
  main h2{
  font-size:24px;
  line-height:32px;
  padding-top:10px;
  margin-bottom:20px;
  }

  main p{font-size:16px;}
  footer p{font-size:13px;}
  .btn_b a{font-size:16px;}

  .wid85  {width:100%;}



  .imgfit h6{
    font-size:22px;
    line-height:32px;
    padding-bottom:5px;}
  .imgfit p{
    font-size:15px;
    line-height:18px;  }

  .wid2-1{width:60%;margin-block:20px;}
  main h3{
    font-size:28px;
    border-left:10px solid #003a6b;
    line-height:1.2;
    margin-block:15px;}
  .h3e{font-size: 17px;}


  main h4{
    font-size:55px;
    color:#ffffff;}
  main h5{
    font-size:30px;
    margin-bottom:20px;}
  .wids{width:80%;}

}



@media (max-width: 800px) {
  

  .t_0 h1{  font-size:2.4em;}
  .t_0 h5{  font-size:1.5em;}

  main{padding: 20px;}

  .wid50{width:100%;}
  .wid4-2{width:43%;}
  .wids{width:40%;}

}

@media (max-width: 600px) {

  .imgfit h6{
    font-size:16px;
    line-height:20px;
    padding-bottom:5px;}
  .imgfit p{
    font-size:13px;}

  
  .bg_top h1{font-size:22px;}
  .bg_top h2{font-size:15px;line-height:20px;}
  .wid2-1{width:80%;margin-block:10px;}
  main h2{  font-size:20px;line-height: 28px;}
    main h4{
    font-size:44px;
    color:#ffffff;}
    main h5{
    font-size:30px;
    margin-bottom:20px;}
  .wids{width:60%;}
  footer{padding:0;}

  .logo h1{
  font-size:18px;
  line-height:26px; }
  .logo h2{
    font-size:13px;
    line-height:20px;
    letter-spacing:0;
    padding-left:0;
  }

  .mb5{margin-block:15px;}
}




.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 );
}