 /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background-color: #F3F5F6;
  margin: 0;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a{
  text-decoration: none;
}

hr{
  background-color:rgba(56,56,56,0.2);
  border:none;
  height: 1px;
}

/*平滑滾動*/
html {
  scroll-behavior: smooth;
}


/*漢堡選單wrap*/
.wrap,{
  width:100%;
  margin: 0 auto;
  position: relative;
}
.header{
  height: 60px;
  position: absolute;
  top: 0px;
  width: 100%;
  background-color: #f3f5f6;
  z-index: 9999;
}


.menuallwrap{
  display: none;
/*  display: flex;*/
  flex-direction: row;
  justify-content: flex-end;
  margin: 15px;
  text-align: center;
}
.menu{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.menu li{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  color: rgba(170,170,170,0.8);
}

.menu li:hover .items{
  display: block;
}

.menu li:hover{
  color: rgba(78,78,78,0.8);
}

.menu li.active{
  color: rgba(78,78,78,0.8);
}


.menu li a{
  display: block;
  color:rgba(56,56,56,0.5);
  padding: 6px;
  text-decoration: none;
}

.items{
  display: none;
  position: absolute;
  padding: 6px 2px;
  min-width: 60px;
  font-size: 12px;
  line-height: 5px;
  top: 55px;
  background-color: rgba(234,236,237,0.9);
  box-shadow: 2px 2px 2px 1px rgb(204,204,204,0.1);
  border-radius: 4px;
}

.wrapper-hamburger {
  display: none;
}


.activity-imformation{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.activity-imformation img{
  display: block;
}

/*手機版開始*/
@media (max-width: 767px){

/*headerbar*/
.header{
  height: 40px;
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: #f3f5f6;
  z-index: 9999;
}

.menu {
  /*隱藏選單開始*/
  height: 0vh;
  overflow: hidden;
  /*隱藏選單結束*/
  transition: opacity 1.2s;
  /*絕對定位疊在網頁上*/
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: #e5e4df;
  pacity: 0;
}

/*jQ點擊後動態在 body 加上 class */
.menu-show .menu{
  height: 100vh;
  opacity: 1;
  display: block;
}

  .menu li{
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
    color: rgba(170,170,170,0.8);
    line-height: 12px;
  }

  .menu li:hover{
    color: rgba(78,78,78,0.8);
  }

  .menu li.active{
    color: rgba(78,78,78,0.8);
  }

  .menuallwrap{
    display: flex;
    margin-top: 20%;
    flex-direction: column;
  }


  .items{
    display: block;
    padding: 5px 15px;
    background-color: rgba(255,255,255,0);
    box-shadow: none;
    border-radius:none;
    position: unset;
  }
  .all-language{
/*    display: none;*/
   margin: 0 auto;
  }
  .menu li a{
    transition: all 0.8s;
  }

  .wrapper-hamburger {
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: fixed;
    right: 28px;
    top: 16px;
    z-index: 200;
  }

  .cross-button {
    width: 18px;
    height: 3px;
    background-color: #bc9b8f;
    transition: all 0.3s;
  }

  .header-content_active .wrapper-hamburger {
    justify-content: center;
  }

  .header-content_active .cross-button {
    background-color: #bc9b8f;
  }

  .header-content_active .cross-button-top {
    transform: rotate(45deg) translateY(2px);
  }

  .header-content_active .cross-button-bottom {
    transform: rotate(-45deg) translateY(-2px);
  }

}/*手機版樣式結束*/




/*內容*/
body {
  margin: 0 auto;
}
h2 {
  font-size: 2em;
}

.mainsection{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  align-items:center;
}
.mainsection_picture01{
  position:relative;
  margin: 0 auto;
  line-height: 0px;
/*  margin-top: 40px;*/
}

.mainsection_picture01 img{
  max-width: 100%;
}

.mainsection_text01 {
  position: absolute;
  top: 36%;
  max-width: 100%;
  margin: 0 auto;
}

.mainsection_text01 img{
  max-width: 100%;
  margin: 0 auto;
}

.mainsection_picture02{
  position: relative;
  margin: 0 auto;
  line-height: 0px;
  }

.mainsection_picture02 img{
  max-width: 100%;
  display: block;
}

.mainsection_picture02 iframe{
  position: absolute;
  top: 38%;
  max-width: 80%;
  margin: 0 auto;
  z-index: 999;
  display: block;
  right: 0.5%;
  left: 0%;
  height: 30%;
  border-radius: ;
}

.mainsection_picture02-text-00,.mainsection_picture02-text-01,.mainsection_picture02-text-03,.mainsection_picture02-text-04,.mainsection_picture02-text-05 ,.mainsection_picture02-text-06 ,.mainsection_picture02-text-07 ,.mainsection_picture02-text-07bg ,.mainsection_picture02-text-08 ,.mainsection_picture02-text-08bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mainsection_picture02-text-00 img{
  display: block;
  position: absolute;
  top: 6%;
  max-width: 30%;
  z-index: 999;
}

.mainsection_picture02-text-01 img{
  display: block;
  position: absolute;
  top: 16%;
  max-width: 60%;
  z-index: 999;
}


.mainsection_picture02-text-03 img{
  display: block;
  position: absolute;
  top: 32.5%;
  max-width: 50%;
  z-index: 999;
}

.mainsection_picture02-text-04 img{
  display: block;
  position: absolute;
  top: 30%;
  max-width: 50%;
  z-index: 999;
}

.mainsection_picture02-text-05 img{
  display: block;
  position: absolute;
  top: 70%;
  max-width: 30%;
  z-index: 999;
}

.mainsection_picture02-text-06 img{
  display: block;
  position: absolute;
  top: 87%;
  max-width: 50%;
  z-index: 999;
}
.mainsection_picture02-text-07 img{
  display: block;
  position: absolute;
  top: 92.5%;
  max-width: 50%;
  z-index: 999;
}

.mainsection_picture02-text-07bg img{
  display: block;
  position: absolute;
  top: 92%;
  max-width: 50%;
  z-index: 998;
}


.mainsection_picture02-text-08 img{
  display: block;
  position: absolute;
  top: 95%;
  max-width: 50%;
  z-index: 999;
}

.mainsection_picture02-text-08bg img{
  display: block;
  position: absolute;
  top: 94.7%;
  max-width: 50%;
  z-index: 998;
}


.mainsection_picture03{
  margin: 0 auto;
  line-height: 0px;
}

.mainsection_picture03 img{
  max-width: 100%;
}




.aos {
  opacity: 0;
  transition: all 1s;
  max-width: 1200px;
}

.aos.ed {
  opacity: 1;
}

.slideIn {
  transform: translateY(1em);
 
}

.slideIn.ed {
  transform: translateY(0em);
}

.slideInLeft {
  transform: translateX(-100vw);
}
.slideInLeft.ed {
  transform: translateX(0);
}

.zoom {
  opacity: 1;
}
.zoom.ed {
  animation: zoom 1.5s forwards linear;
}
@keyframes zoom {
  0% {
    scale: 1;
  }
  25% {
    scale: 1.5;
  }
  50% {
    scale: 1;
  }
  75% {
    scale: 1.25;
  }
  100% {
    scale: 1;
  }
}


  /*活動內容*/
  .content-wrap{
    max-width: 1200px;
    margin: 0 auto;
 .activiy-imformation {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
  }
   

  /*手機版開始*/
  @media (max-width: 767px){
    .content-wrap{
    max-width: 768x;
    margin: 0 auto;
  }
 .activiy-imformation {
    width: 100%;
  }

  }/*手機版樣式結束*/
