/************通用 CSS 開始********************/
/************通用 CSS 開始********************/
/************通用 CSS 開始********************/
/************通用 CSS 開始********************/
/************通用 CSS 開始********************/
:root{
  --yellow: #ffe561;
  --space: 50px;
}
@media screen and ( max-width: 960px){
    :root{
      --space: 5vw;
    }
}


body{
overflow-x: hidden;
/* background: linear-gradient(180deg, #934692, #361885); */
}

#mtkContainer{
  background:#e4dcff;

}
#mtkContainer,#mtkContainer * {
  box-sizing: border-box;
}

#mtkContainer {
  position: relative;
  font-family: 'Noto Serif TC', serif;
  font-weight: 400;
}

img {
    border: 0;
    vertical-align: top;
}

a {
    text-decoration: none;
}


/************通用 CSS 結束********************/
/************通用 CSS 結束********************/
/************通用 CSS 結束********************/
/************通用 CSS 結束********************/
/************通用 CSS 結束********************/






/************header 開始********************/
/************header 開始********************/
/************header 開始********************/
/************header 開始********************/
/************header 開始********************/
.header{
  position: relative;
  text-align: center;


}
.header h1 img{
  margin: 0 auto;
  max-width: 1920px;
 /*width: 100%;*/
  
}

.header{
  position: relative;
  /* overflow-x: hidden;*/
   background: url(../images/header-bg20250418.webp?v=202502) center top no-repeat; 
    height:449px;  
  
}
  /*
.header h1 img{
  display: none;
  margin: 0 auto;

  max-width: 1920px;
  
}*/
.header h1 img.mobile{
  display: none;
}
/*.header .copyright{
  position: absolute;
  right: 2%;
  bottom: 2%;
  max-width: 85px;
    width: 10%;
}

.header-main{
  position: relative;
}
.header-main .header-photo{
   width: 100%;
   min-width: 1760px;
   position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.header-main .header-title{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(50%,-153%);
  width: 24.8vw;
}

.header-disney{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.header-disney .header-disney-bg{
  width: 100%;
}

.header-disney .header-disney-logo{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%,29%);
    width: 15.5vw;
}
.header-disney .header-disney-logo img{
  width: 100%;
}




@media screen and ( min-width: 1400px){
    .header-main{
      transform: translateY(-250px);
    }
    .header-main .header-title{
       opacity: 0;
    }
}


@media screen and ( max-width: 1760px){
  .header-main .header-title{
    transform: translate(50%,-153%);
    width: 440px;
  }
}


@media screen and ( max-width: 1400px){
  .header-main{
    width: 120%;
    margin-left: -10%;
  }
  .header-main .header-photo{
     min-width: inherit;
  }
  .header-main .header-title{
    width: 30vw;
  }
}

  */

@media screen and ( max-width: 1200px){
    .header {
      height: auto;
      background: unset;
      overflow: hidden;
      text-align: center;
    }

  .header h1 img.pc{
    display: none;
  }
  .header h1 img.mobile{
    display: block;
    /* width: 190.5vw;
    transform: translateX(-46vw); */
  }
  .header h1 img{
    width: 100%;
/* 
    max-width: unset;
    width: 100%; */

  }
} 


/************header 結束********************/
/************header 結束********************/
/************header 結束********************/
/************header 結束********************/
/************header 結束********************/






/************ 模組 ********************/
/************ 模組 ********************/
/************ 模組 ********************/
/************ 模組 ********************/
main{
  background: white;
  width: calc(100% - 6vw); 
  max-width: 1400px;
  margin: var(--space) auto;
      padding: 50px;
  border-radius: 15px;
}

.item h3{
    display: block;
    padding: var(--poi-space) 0;
    text-decoration: none;
    font-family: 'Noto Serif TC', serif;
    font-size: calc( var(--fontSize) * 3.3 );
    font-weight: 700;
    color: black;
    text-align: center;
    letter-spacing: 0.5em;
}
@media screen and ( max-width: 960px){
  main{
    padding: 3vw;
  }
  .item h3{
    font-size: calc( var(--fontSize) * 2 );
    letter-spacing: 0.2em;
  }
}
/************ 模組 ********************/
/************ 模組 ********************/
/************ 模組 ********************/
/************ 模組 ********************/








/************ 選單 ********************/
/************ 選單 ********************/
/************ 選單 ********************/
/************ 選單 ********************/
.nav-page{
  display: flex;
  justify-content: center;
  font-size: 32px;
  padding-top: var(--space);
}
.nav-page a , .nav-page a * {
  transition: all 0.2s;
}
.nav-page a{
  position: relative;
  display: inline-block;
  color: white;
      font-weight: 600;
    letter-spacing: 0.2em;
    padding: 0.5em 1.5em;
}
.nav-page a img{
  position: absolute;
  left: 0;
  top: 0;
      width: 1.5em;
    height: auto;
    opacity: 0;
    transform-origin: right bottom;
}

.nav-page a:after{
  content: '';
      width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 5em;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.2s;
}

/*hover*/
.nav-page a.on{
  cursor: default;
}
.nav-page a:hover , .nav-page a.on{
  color: var(--yellow);
}
.nav-page a:hover:after , .nav-page a.on:after{
 width: 50%;
}
.nav-page a:hover img , .nav-page a.on img{
  animation:bling 0.5s linear;
  animation-fill-mode: forwards;
}

@keyframes bling {
   0% { transform: rotate(0deg); opacity: 0; }
  50% { transform: rotate(-20deg); opacity: 1; }
 100% { transform: rotate(0deg); opacity: 1;}
}


@media screen and ( max-width: 1400px){
    .nav-page{
      font-size: 18px;
    }
}
@media screen and ( max-width: 960px){
    .nav-page{
      overflow-x: scroll;
      overflow-y: hidden;
      justify-content: flex-start;
    }
    .nav-page a{
          padding-right: 1em;
          flex-shrink: 0;
    }
}
/************ 選單 ********************/
/************ 選單 ********************/
/************ 選單 ********************/
/************ 選單 ********************/





/************ goTop ********************/
/************ goTop ********************/
/************ goTop ********************/
/************ goTop ********************/
#goTop {
    display: none;
    position: fixed;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    padding: 10px 10px 2px 10px;
    border-radius: 5em;
    font-size: 12px;
    line-height: 3em;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    transition: none;
    text-decoration: none;
}

#goTop:hover {
    padding-top: 30px;
    background-color: rgba(0, 0, 0, 7);
    transition: all 0.2s;
}

#goTop::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 18px;
    width: 0;
    height: 0;
    border: 4px solid #000;
    border-color: transparent transparent #fff;
}
/************ goTop ********************/
/************ goTop ********************/
/************ goTop ********************/
/************ goTop ********************/








/************ 視差 ********************/
/************ 視差 ********************/
/************ 視差 ********************/
/************ 視差 ********************/
.art-container{
  position: fixed;
  width: 100%; height: 100%;
  left: 0; top: 0;
  z-index: -1;
  pointer-events: none;
}


.art-layer{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%; height: 100%;
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 100%;
}

.art-layer-1{
  background-image:url(../images/bg-star-1.png);
  animation:star 3s linear infinite;
}

/*.art-layer-2{
  background-image:url(../images/bg-star-2.png);
  animation:star 3s 4s linear infinite;
}*/

.art-layer-3{
  background-image:url(../images/bg-star-3.png);
  animation:star 3s 1s linear infinite;
}

.art-layer-4{
  background-image:url(../images/bg-star-4.png);
  animation:star 3s 2s linear infinite;
}

@keyframes star {
   0% { filter: brightness(1); opacity: 0;  }
  50% { filter: brightness(1.5); opacity: 1; }
 100% { filter: brightness(1); opacity: 0; }
}

@media screen and ( max-width: 1400px){
    .art-container{
      display: none;
    }
}
/************ 視差 ********************/
/************ 視差 ********************/
/************ 視差 ********************/
/************ 視差 ********************/








/************ footer ********************/
/************ footer ********************/
/************ footer ********************/
/************ footer ********************/
.footer-settour{
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
.footer-disney{
  color: white;
  /* margin-bottom: var(--space); */
  max-width: 1400px;
  text-align: left;
  margin: 0 auto var(--space) auto;
}
@media screen and ( max-width: 960px){
    .footer-settour{
      font-size: 12px;
    }
}
/************ footer ********************/
/************ footer ********************/
/************ footer ********************/
/************ footer ********************/



.ready-text {
  text-align: center;    
  font-size: calc( var(--fontSize) *1.2 );
  font-weight:500;
  color: black;
  margin: 20px auto;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.special-text {
  background: #ffec8a;
  padding: 24px;
   border-radius: 40px;
   text-align: center;
   max-width: 1000px;
   margin: 0 auto;
}

.special-text p{
  text-align: center;    
  font-size: calc( var(--fontSize) *1.2 );
  font-weight:500;
  color: black;
 
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.special-text b{
  text-align: center;    
  font-size: calc( var(--fontSize) *1.4 );
  font-weight:700;
  color: rgb(192, 1, 1);

  line-height: 1.5;
  letter-spacing: 0.5px;
}
.special-text a.small{
  text-align: center;    
  font-size: calc( var(--fontSize) *0.8 );
  font-weight:500;
  line-height: 1.5;
  letter-spacing: 0.5px;
  background: #6755a1;
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  margin-top: 5px;
  display: inline-block;
  transition: 0.3s;
}

.special-text a.small:hover{
  background:#8266e0;

}