:root{
  --gap: 50px;
  --fontSize: 18px;
  --black: #3f3b3a;
  --orange: #ef844b;
  --yellow: #ffed4d;      
}
@media screen and (max-width:1400px) {
    :root{
      --gap: 5%;
      --fontSize: 14px;  
    }
}



#mtkContainer {
    text-align: left;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    color: var(--black);
    font-size: var(--fontSize);
    letter-spacing: 0.1em;
}

#mtkContainer * {
    transition: all 0.2s;
}

.wrapper {
    position: relative;
    width: 94%;     max-width: 1650px;
     margin: var(--gap) auto;
}

img {
    width: 100%;
    border: 0;
    vertical-align: top;
}
.poi-header .mobile-menu-level-1 .tab .tablinks .tablinks-img{width: auto;}

a {
    text-decoration: none;
}









/*goTop*/

#goTop {
    position: fixed;
    z-index: 99;
    right: 10px;
    bottom: 10px;
    width: 65px;
    height: 65px;
    background: url(../images/top.png) center bottom no-repeat;
    mix-blend-mode: darken;
}

@media screen and (min-width:960px) {
  #goTop:hover {
    height: 170px;
    filter: brightness(1.1);
  }
}






/*media*/




/*kv*/
.kv{
  position: relative;
  background: url(../images/kv.jpg?v=0617) center top no-repeat;
  padding-bottom: var(--gap);
}
.kv h1{
  text-indent: -9999px;
  height: 760px;
}

@media screen and (max-width:1400px) {
    .kv{
        background-size: 120%;
    }
    .kv h1{
      height: 48vw;
    }
}


/*menuArea*/
.menuArea{
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.menuArea a{
  display: flex;
  align-items: stretch;
      justify-content: space-between;
   color: var(--black);
  margin: 0.5em;
  background: white;
  border:solid 4px var(--orange);
  border-radius: 15px;
  font-weight: 700;
  font-size: calc( var(--fontSize)*1.33 )
}

.menuArea a.on{
  background: var(--orange);
  color: white;
}

.menuArea a b{
  padding: 1em;
  align-self: center;
}

.menuArea a span{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5em;
    background: var(--orange);
}

.menuArea a span img{
  width: auto;
  height: 1em;
}

/*fixed*/
.menuArea.fixed{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
    background: white;
}
.menuArea.fixed a{
      font-size: var(--fontSize);
}


@media screen and (min-width:960px) {
  .menuArea a:hover{
    background: var(--orange);
    color: white;
  }
}

@media screen and (max-width:960px) {
    .menuArea{
        flex-wrap: wrap;
    }
    .menuArea a{
      width: calc(50% - 1em);
    }
    .menuArea a b {
        width: calc(100% - 2em);
        padding: 0.5em;
        text-align: center;
    }
    .menuArea a span{
      width: 2em;
    }
}





/*film*/
.film{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.film .youtube , .film .intro{
    width: 50%;
  }

.film .youtube{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.film .youtube iframe{
  aspect-ratio: 16 / 9;
  width: 33.3%;
  padding: 15px;
}

.film .youtube iframe:first-child{
  width: 100%;
}

.film .youtube p{
  font-size: calc( var(--fontSize)*1.2 );
    line-height: 1.3;
    text-align: center;
    font-weight: 700;
        width: 100%;
}


.film .intro{
  padding-left: var(--gap);
}

.film .intro h2{
  position: relative;
  font-size: calc( var(--fontSize) * 2);
  letter-spacing: 0.15em;
}

.film .intro p{
      font-weight: 400;
    line-height: 1.5;
    padding: 2em 0;
}

@media screen and (max-width:960px) {
  .film .youtube iframe{
    width: 100%;
  }
  .film .youtube , .film .intro{
    width: 100%;
  }

  .film .intro{
    padding-left: 0;
    padding-top: calc( var(--gap) * 2 );
  }

}





/*comma*/
.comma-start{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
}

.comma-end{
  margin-left: 72px;
  width: auto;
}

.comma-padding{
  padding-left: 100px;
  margin-left: -45px;
}

@media screen and (max-width:960px) {
  .comma-start{
    width: 35px;
  }
  .comma-end{
    display: none;
  }
  .comma-padding{
    padding-left: 60px;
    margin-left: 0;
  }

}



/*poi*/
.poi{
  padding: var(--gap) 0;
}

.poi h2{
  text-align: center;
  padding-bottom: var(--gap);
}

.poi h2 img{
  max-width: 518px;
}




/*info*/
.info{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: var(--gap) 0;
}

.info-photo{
  width: 60%;
  border-radius: 0 15px 15px 0;
    overflow: hidden;
    transform: skewX(-10deg) translateX(-55px);
}

.info-content{
  width: 40%;
  padding-right: var(--gap);
}

.info-content h3{
  text-align: center;
}

.info-content p {
  padding-top: var(--gap);
      line-height: 1.5;
    font-weight: 400;
    text-align: center;
}

.info-right .info-photo{
  order: 2;
  border-radius: 15px 0 0 15px;
    transform: skewX(-10deg) translateX(55px);
}

.info-right .info-content{
      padding-right: 0;
      padding-left: var(--gap);
}


@media screen and (max-width:960px) {
  .info{
    width: 94%;     margin: 0 auto;
  }
  .info-photo , .info-content{
    width: 100%;
  }

  .info-photo{
    border-radius: 0;
    transform: none;
    padding-bottom: var(--gap);
  }

  .info-content{
    padding-right:0;
  }

  .info-right .info-content{
    padding: 0;
  }
  .info-right .info-photo{
    order: 0;
    border-radius: 0;
    transform: none;
  }
}







/*more*/
a.more{
  display: inline-block;
  background: var(--yellow);
  font-size: calc( var(--fontSize) * 1.33);
   color: var(--black);
   padding: 1em 3em;
       margin-top: 15px;
   border-radius: 5em;
}

a.more:hover{
  filter: brightness(1.1);
  transform: translate(2px,2px);
}

a.more img{
  width: auto;
  height: 1em;
  vertical-align: middle;
    padding-left: 0.5em;
}