@charset "utf-8";
/* CSS Document */

/*基本*/
body{ margin:0; padding:0;}


/*全BOX版面*/
.WRAPPER { z-index:0; position: relative; display:block; margin: 0 auto; padding:0; overflow:hidden; width:100%; min-width:1220px; background: #0c0000; text-align:left; font-family:"Century Gothic","Microsoft JhengHei","微軟正黑體", Arial, sans-serif; }
.WRAPPER img { border:0px; vertical-align:top;}
.WRAPPER a { text-decoration:none; -webkit-tap-highlight-color: transparent}
/*預設清單樣式*/
.Area .list_00 ul {display:inline-block; margin:0; padding:0;}
.Area .list_00 li {list-style:none;float:left;overflow: hidden;}
	@media screen and (max-width:767px){
		.WRAPPER { min-width: inherit; min-height:100vh; overflow: hidden;   }
		.WRAPPER img {  width:100%;  height:auto;}
	}


.Area_bottom{margin-bottom: 50px!important;}
@media screen and (max-width:767px){ .Area_bottom{margin-bottom: 6vw!important;}	}




/*fixed背景*/
.bg_01 { z-index:0; position:absolute;top:-22px;left:0; width:100%; height:100%; background-repeat:no-repeat; background-position:center top; pointer-events:none;}
.bg_02 {z-index:-40;position:absolute;top: 790px;left:0;width:100%;height:100%;background-repeat:repeat-y;background-position: center top;pointer-events:none;}
.bg_03 { z-index:-40; position:absolute; top:3990px; left:0; width:100%; height:100%; background-repeat:no-repeat; background-position: center top; pointer-events:none;}

  @media screen and (max-width:767px){
  .m_bg01 {z-index:1;position:absolute;top: 5vw;left: 0;width: 100%;height:100%;background-repeat:no-repeat;background-position: center top;pointer-events:none;background-size: 100%;}
  .m_bg02 {z-index:-1;position:absolute;top: 102vw;left: 0;width: 116%;height:100%;background-repeat:repeat-y;background-position: center top;pointer-events:none;background-size: 100%;}
		}



/*版頭背景*/

.Area_bgtop {z-index: 0;position: absolute;top: 0px;left: 50%;width: 2000px;-webkit-transform: translateX(-50%);transform: translateX(-50%);pointer-events: none;}
.Area_bgtop .bgtop_ { position: absolute; top: 0; left: 0; width: 100%; height: 1000px;}
.Area_bgtop .bgtop_ span { position: absolute; display: block; width: 100%; height: 100%; background-position: center top;}

  @media screen and (min-width: 768px) {
    .Area_bgtop span { background-repeat: no-repeat;}
    .Area_bgtop_fixed { position: fixed;}
    .Area_bgtop_1 .bgtop_1_2  { mix-blend-mode: hard-light;}	  
	.Area_title .date { z-index:4; position: absolute; top:20px; left:929px;}	
	.Area_title .comingsoon {z-index:12; position: absolute; top: 360px; left: 84px;}

  }
  @media screen and (max-width:767px){
	.Area_title .comingsoon {z-index:12; position: absolute; top: 32vw; left: 7vw; width: 32vw;}
	.Area_title .date { z-index:4; position: absolute; top:3.5vw; left:81vw; width: 20.5%;}
  
}	


.m_Area_bgtop { z-index: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;}
.m_Area_bgtop .m_bgtop_ { position: absolute; top: 0; left: 0; width: 100%; height: 0; padding-bottom: 100%;}
.m_Area_bgtop .m_bgtop_ span { position: absolute; display: block; width: 100%; height: 0; padding-bottom: 100%; overflow: hidden; background-position: center top; background-size: 100%;}
  @media screen and (max-width: 767px) {
    .m_Area_bgtop span { background-repeat: no-repeat;}
    .m_Area_bgtop_fixed { position: fixed; top: 0px;} /*搭配js-appBgFixed*/
  
  }



/*LOGO*/
.momologo { z-index:2; position: absolute; top: 15px; left:15px;}
.momologo a { display:block; width:140px; height:21px;}
.momologo a svg { width:140px; height:21px; }
.momologo a path { fill:#EA27C2; }
.momologo-pink  a path { fill:#EA27C2; }/*LOGO 桃紅色*/
.momologo-white a path { fill:#ffffff; }/*LOGO 白色*/
  @media screen and (max-width:767px){
    .momologo { display:none;}
  }




/*版頭*/
.Bg001{height: 0px;}


.s1{position: relative;top: 190px; left: 47%;}
.s2{position: relative;top: -749px;left: 54%;}
.s3{position: relative;top: -1498px;left: 52%;}
.s4{position: relative;top: -2200px;left: 25%;}

.smoke{
transform: translateX(-50%);  
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen; /* 可有可無 */
  animation: smokeUp 4s linear infinite;
  filter: blur(1px);
}


/* 接縫補丁層：只 blur 接縫 */
.smoke::after{
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;             /* ✅ 複製同一張煙圖（或同一層設定） */
  mix-blend-mode: inherit;
  opacity: 1;

  filter: blur(4px);               /* ✅ 只在補丁層 blur */
  transform: translateY(-2px);      /* 可微調讓接縫更吻合 */

  /* ✅ 只讓「上方切割處」那條帶狀區域顯示（下面數字可調） */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 42%,
    black 48%,
    black 56%,
    transparent 62%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 42%,
    black 48%,
    black 56%,
    transparent 62%,
    transparent 100%
  );
}


@keyframes smokeUp{
  0%{
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  20%{
    opacity: 0.6;
  }
  60%{
    transform: translateX(-50%) translateY(-150px);
    opacity: 0.7;
  }
  100%{
    transform: translateX(-50%) translateY(-300px);
    opacity: 0;
  }
}
  

@media screen and (min-width:768px){
.Area_title{height: 1058px !important;box-sizing: border-box;height: 100%;}
.Area_title .title001{position: absolute;top: 202px;}
.Area_title .Area_logo{position: relative;top: 35px;}
.Area_title .sub001{position: relative;top: 279px;}

}

@media screen and (max-width:767px){
  .Bg001{height: 0vw;}
  .Area_title {height: 96vw;}
  .Area_title .title001{position: relative;z-index: 1;top: 8vw;width: 125%;left: -14vw;}
  .Area_title .Area_logo{position: relative;z-index: 1;top: 6vw;width: 113%;left: -8vw;}
  .Area_title .sub001{position: relative;z-index: 1;top: 8vw;width: 127%;left: -16vw;}

  .s1{position: relative;top: 52vw;left: 39%; width: 115%;}
  .s2{position: relative;top: -25vw;left: 40%;width: 115%;}
  .s3{position: relative;top: -71vw;left: 38%;width: 115%;}
  .s4{position: relative;top: -149vw;left: 16%;width: 115%;}
  
  .smoke{position: relative;z-index: 2;
  transform: translateX(-50%);  
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen; /* 可有可無 */
    animation: smokeUp 4s linear infinite;
    filter: blur(1px);

  }
  
  
  /* 接縫補丁層：只 blur 接縫 */
  .smoke::after{
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;             /* ✅ 複製同一張煙圖（或同一層設定） */
    mix-blend-mode: inherit;
    opacity: 1;
  
    filter: blur(4px);               /* ✅ 只在補丁層 blur */
    transform: translateY(-2px);      /* 可微調讓接縫更吻合 */
  
    /* ✅ 只讓「上方切割處」那條帶狀區域顯示（下面數字可調） */
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 42%,
      black 48%,
      black 56%,
      transparent 62%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 42%,
      black 48%,
      black 56%,
      transparent 62%,
      transparent 100%
    );
  }
  
  
  @keyframes smokeUp{
    0%{
      transform: translateX(-50%) translateY(0);
      opacity: 0;
    }
    20%{
      opacity: 0.6;
    }
    60%{
      transform: translateX(-50%) translateY(-150px);
      opacity: 0.7;
    }
    100%{
      transform: translateX(-50%) translateY(-300px);
      opacity: 0;
    }
  }



}




/*活動*/
@media screen and (min-width:768px){
.Area09 {padding-bottom: 30px;}
.Area09 .PD_layout {width: 95%;}
}
 
@media screen and (max-width:767px){
.Area09 {padding-bottom: 2vw;}
.Area09 .PD_layout {width: 100%;margin: 0 auto;}
}


/*4品公版*/
@media screen and (min-width: 768px){
  
  /* 區標 */
  .title01 {height: 145px;}	
  .title01 .PD_layout{position: relative;}
  .title01 .PD_layout{position: relative;width: 80%;}
  .title_bg_deco1{position: absolute;top: -106px;left: -156px;z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;      /* ✅ 濾色 */
    opacity: 0.9;                /* 可再控制強度 */
  }

  .Area04 .box .PD_layout{width: 96%;margin: 0 auto;border: solid 0.6em #9c0910;border-radius: 1.4em;} 
}
  @media screen and (max-width:767px){

  /* 區標 */
  .title01 {height: 33vw;position: relative;z-index: 1;top: 38px;left: -4px;}	
  .title01 .PD_layout{position: relative;}
  .title_bg_deco1{position: absolute;top: 2vw;left: 0vw;z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;      /* ✅ 濾色 */
    opacity: 0.9;                /* 可再控制強度 */
  }

  

  .Area04 .box .PD_layout{width: 96%;margin: 0 auto;border: solid 0.4em #9c0910;border-radius: 1.2em;} 
  .Area04 .box .PD_layout ul {border-radius: 13px;}
  .Area06 {margin-top: -7vw !important}
 
}

/*活動*/
@media screen and (min-width:768px){
  .Aren_ticket {
    height: 334px;
}
  .Aren_ticket .PD_layout {width: 75%;}
  }
   
  @media screen and (max-width:767px){
  .Aren_ticket {
    height: 50vw;
}
  .Aren_ticket .PD_layout {width: 100%;margin: 0 auto;}
  }


/*票劵*/
@media screen and (min-width:768px){
.Area05 {margin-bottom: 54px !important}
}

@media screen and (max-width:767px){
.Area05 {width: 110%;position: relative;left: -5vw;}
}




/*區塊_all*/
.Area2000 { margin:0 auto; width:2000px;}
.Area1220 { margin:0 auto; width:1220px;}
.Area960 { margin:0 auto; width:960px;}
.Area { position: relative; margin:0 auto; padding:0; border-radius:0; text-align:center; }
.Area a { position:relative; display:block;} 
.Area .go_bt {
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;}
.Area .go_bt:hover {
  -webkit-transform:scale(0.97);
     -moz-transform:scale(0.97);
      -ms-transform:scale(0.97);
       -o-transform:scale(0.97);
          transform:scale(0.97);}
		  
		  
.WRAPPER .go_bt1 {
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;}
.WRAPPER .go_bt1:hover { 
  -webkit-transform:translateY(-10px);
     -moz-transform:translateY(-10px);
      -ms-transform:translateY(-10px);
       -o-transform:translateY(-10px);
          transform:translateY(-10px);}
		  
		  
	@media screen and (max-width:767px){
		.Area1220 { width:100%;}
		.Area960 { width:100%;}
		.Area .go_bt:hover {  
			-webkit-transform:none;
			-moz-transform:none;
			-ms-transform:none;
			-o-transform:none;
			transform:none;}
	}



/*按鈕*/
.bnn {
}
.bnn a img {
	transition-duration: 0.1s;
	backface-visibility: hidden;
	transform: translateZ(0);
	display: block;
	margin: 0;
	padding: 0px;
	width: 100%;
	height: auto;
	text-align: left;
}
.bnn:hover a img {
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}	



/*隱鑶*/
.for_pc {}
.for_phone { display:none !important;}
	@media screen and (max-width:767px){
		.for_pc { display:none !important;}
		.for_phone { display: inherit !important;}
	}

/*分享浮層*/
.floatBox { position:relative; margin:2% auto; padding: 2% 0; width: 700px; height:auto; background-color:rgba(0,0,0,0.8); text-align:center;  border-radius:20px;}
.floatBox img { width:100%; height:auto;}
.floatBox .go_bt {
  -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
       -o-transition: all 0.2s ease;
          transition: all 0.2s ease;}
.floatBox .go_bt:hover { filter: brightness(120%);
  -webkit-transform:translateY(-6px);
     -moz-transform:translateY(-6px);
      -ms-transform:translateY(-6px);
       -o-transform:translateY(-6px);
          transform:translateY(-6px);}
.floatBox .closeButton a { display:block; cursor:pointer; position:absolute; top:-20px; right:-20px; width:40px; height:40px; border-radius:50%; border:solid 2px #999999; font:bold 40px/1em "Century Gothic"; color:#FFF; text-align:center; background-color:rgba(0%,0%,0%,0.5);text-decoration: none; z-index:2}
.floatBox .closeButton:hover {background-color:#666; text-decoration:none;}
.floatBox .title  { display:inline-block; margin:0 0 10px 0; border-bottom:1px solid #ffd800; font:bold 45px/1.5em "微軟正黑體","Microsoft JhengHei", Arial, Helvetica;letter-spacing: -0.05em;  color:#ffd800; text-align:center}
.floatBox .box_ { margin:0 auto; width:90%;}
.floatBox .box_:after { content: ""; display:block; clear:both;}
.floatBox .box_btn { margin:20px auto 0; width: 80%;}
.floatBox .box_btn a { display:block; margin:3% 0;}
.floatBox .box_btn img { width:100%;}
.floatBox .box_btn .btn { margin:0 auto; width:60%;}
.floatBox .box_btn2 a { float:left; margin:0 1%; width:48%;}
	@media screen and (max-width:767px){
		.floatBox { padding:5% 0; width:90%; height: auto;}
		.floatBox .closeButton a {display:block; position:absolute; top:-15px; right:-15px; width:30px; height:30px; border-radius:50%; border:solid 2px #999999; font:bold 30px/1em "Century Gothic"; color:#FFF; text-align:center; background-color:rgba(0%,0%,0%,0.5);text-decoration: none; z-index:2}
		.floatBox .closeButton:hover {background-color:#666; text-decoration:none}
		.floatBox .title  { margin:0 5% 3vw; font-size: 6vw; line-height:2rem;}
		.floatBox .box_btn { margin:2% auto 0;}
		.floatBox .box_btn .btn { margin:0 auto; width:80%;}
	}



