@import url("https://fonts.googleapis.com/css?family=Noto+Serif+TC");

*{
 position: relative;
 box-sizing: border-box;
}

body{
 overflow-x: hidden !important;
 max-width: 100% !important;
 width: 100vw;
 background-color: #ffffff;
 color: #231815;
 font-size: 1rem;
 font-family: "microsoft jhenghei";
}

header{
 position: fixed;
 top: 0;
 right: 0;
 left: 0;
 z-index: 99;
 display: block;
 overflow-y: visible;
 width: 100vw;
 background-color: rgba(33, 33, 33, 0);
 pointer-events: none;
}

header .logo-company{
 display: inline-block;
 padding: 10px;
 height: 72px;
 -webkit-filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
         filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
 pointer-events: auto;
}

header .logo-company img{
 width: auto;
 height: 40px;
}

/* nav */
.nav{
 position: fixed;
 z-index: 5000;
 display: block;
 display: none;
 width: 100%;
 height: 60px;
 border-bottom: 3px solid #8cd7ff;
 background-color: transparent;
 text-align: center;
 line-height: 60px;
 -webkit-transition: all 0.4s ease;
         transition: all 0.4s ease;
}

.nav .container{
 display: flex;
 justify-content: space-between;
 max-width: 100%;
 width: 100%;
}

.nav div.logo{
 display: flex;
 align-items: center;
 width: auto;
 height: auto;
 text-align: left;
}

.nav div.logo img{
 height: 35px;
}

.nav div.logo a{
 margin: 0;
 padding: 0;
 color: #ffffff;
 text-decoration: none;
}

.affix{
 display: flex;
 padding: 0;
 background-color: #0a496c;
}

.nav .nav_btn{
 display: flex;
}

.nav_btn a{
 margin-right: 25px;
 color: #ffffff;
 font-weight: bold;
 font-size: 1rem;
}

.nav_btn a i{
 margin-right: 5px;
}

.nav_btn a:hover{
 color: #d3edff;
 text-decoration: none;
}

@media(max-width: 768px){
 .nav{
  height: 50px;
  line-height: 50px;
 }

 .nav .container{
  justify-content: center;
 }

 .nav div.logo{
  text-align: center;
 }

 .nav .nav_btn{
  display: none;
 }
}

@media(max-width: 400px){
 .nav{
  height: 50px;
  line-height: 50px;
 }
}

/* nav end */

section{
 overflow-x: hidden;
 width: 100vw;
}

.menu{
 opacity: 0;
 transition: all 0.5s;
 transform: translateY(-10px);
}

.Sticky{
 opacity: 1;
 transition: all 0.5s;
 transform: translateY(0px);
}

/*共用區塊樣式*/
.btn{
 padding: 3px;
 border-radius: 0;
}

.section .container-fluid{
 padding: 0 4% 0 5%;
}

.Img img{
 width: 100%;
}


.icon-plus{
 display: block;
 width: 60px;
 height: 60px;
 background-image: url(../images/icon-plus.svg);
 opacity: 0.7;
 transition: 0.2s all;
}

.icon-plus:hover, .Img:hover .icon-plus{
 opacity: 1;
}

/*fancybox*/
.fancybox-navigation{
 height: 100vh;
}

.fancybox-button{
 width: 50px;
 height: 50px;
}

/* 表單 */
/* input */
#contact-form input::placeholder{
 color: #555555;
}

.agree_personal_information_div{
 margin: 10px auto;
 text-align: center;
}

#send_data_button2, #send_data_button{
 padding: 6px 0 10px;
 border-radius: 3px;
}

/* 手機 */
.m_contactBox{
 position: fixed;
 bottom: 0;
 left: 0;
 z-index: 999;
 z-index: 999;
 display: -webkit-flex;
 display:    -moz-flex;
 display:     -ms-flex;
 display:      -o-flex;
 display:         flex;
 width: 100vw;
 background-color: #0a496c;
 box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.m_contactBox a{
 display: inline-block;
 padding: 10px 0;
 width: calc(100%/2);
 color: #ffffff;
 text-align: center;
 font-size: 14px;
}

.m_contactBox a + a{
 border-left: 1px solid #eeeeee;
}

@media(max-width:360px){
 .m_contactBox a{
  padding: 10x 0;
  font-size: 12px;
 }
}