@charset "utf-8";
body {
  margin: 0;
  padding: 0;
  font-family: "微軟正黑體", Arial, sans-serif;
  background: #000;
  max-width: 100vw;;
  overflow-x: hidden;
}
p{
  font-size: 16px;
  line-height: 20px;
}

body,html {
  width: 100%;
  height: 100%;
  background-color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

li,ol,ul {
  list-style: none;
}

a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
}

.non_pointer{
  pointer-events: none;
}


section{
  position: relative;
  width: 100vw;
  min-height: 100vh;
  
}

.section_01{
  min-height: calc(100vh - 49px);
  margin-top: 49px;
}
.section_02{
  
  min-height: 100vh;
}
.section_02::before,
.section_03::before,
.section_04::before{
  content: '';
  position: absolute;
  width: 100vw;
  height: 300px;
  left: 0px;
  top: -150px;
  background: url('../images/divider.png');
  background-size: 100% 100%;

}



/* loading */
.load{
  position:fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 999;
  background-color: #000;
  pointer-events:none;
}
.stroke{
  stroke-dashoffset: 2000;
  stroke-dasharray: 2000;
  margin: auto;
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;	
  fill: #fff;
  fill-opacity:0;
  transform: scale(1);
  width: 40vw;
}

.path{
  position:relative;
  left:0px;
}

/* //動畫效果 10秒 線性動畫 無限循環 */
.ani {
    animation: loading_ani 3s ease-in-out 1, loading_ani2 1s ease-in-out 3s infinite; 
}

/* //keyframes的值
//將dashoffset拉回至0 */
@keyframes loading_ani{
  85% {
    stroke-dashoffset: 0;
    fill-opacity:0;
  }
  90%{
    stroke-dashoffset: 2000;
    fill-opacity:1;
  }
  100%{
    stroke-dashoffset:0;
    fill-opacity:0;
  }
}



@keyframes loading_ani2{
  0% {
    fill-opacity:1;
    filter:drop-shadow(0px 0px 15px #f66) drop-shadow(0px 0px 15px #f66);
  }
  10% {
    fill-opacity:0;
    filter:drop-shadow(0px 0px 15px #000);
  }
  15% {
    fill-opacity:1;
    filter:drop-shadow(0px 0px 15px #f66) drop-shadow(0px 0px 15px #f66);
  }
  20% {
    fill-opacity:1;
    filter:drop-shadow(0px 0px 15px #f66) drop-shadow(0px 0px 15px #f66);
  }
  78% {
    fill-opacity:1;
    filter:drop-shadow(0px 0px 15px #f66) drop-shadow(0px 0px 15px #f66);
  }
  80% {
    fill-opacity:0;
    filter:drop-shadow(0px 0px 15px #000);
  }
  83%{
    fill-opacity:1;
    filter:drop-shadow(0px 0px 15px #f66) drop-shadow(0px 0px 15px #f66);
  }
  85% {
    fill-opacity:0;
    filter:drop-shadow(0px 0px 15px #000);
  }
  88%{
    fill-opacity:1;
    filter:drop-shadow(0px 0px 15px #f66) drop-shadow(0px 0px 15px #f66);
  }
  100%{
    fill-opacity:1;
    filter:drop-shadow(0px 0px 15px #f66) drop-shadow(0px 0px 15px #f66);
  }
}


/* 背景旋轉光 */
.bg_spin{
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.bg_spin span{
  position: absolute;
  width: 2000px;
  height: 2000px;
  top: -105vh;
  background-image: url('../images/bg_spin.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: -1;
  opacity: .5;
}
.bg_spin span:nth-of-type(1){
  left: -55%;
  animation: spin 10s linear 0s infinite normal;
}

.bg_spin span:nth-of-type(2){
  right: -55%;
  animation: spin 10s linear 0s infinite reverse;
}
@keyframes spin{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}






/* side_menu */
.side_memu{
  position: fixed;
  right: 0px;
  top: 20vh;
  width: 140px;
  max-width: 60vw;
  height: 280px;
  z-index: 99;
}
.side_memu .btn{
  float: right;
  width: 140px;
  transition: .3s all;
}
.side_memu .btn:hover{
  filter: drop-shadow(0px 0px 10px rgba(204,98,128,1)) drop-shadow(0px 0px 30px rgba(255,255,255,.5)) ;
  transition: .4s all;
}
.side_memu ul{
  position: relative;
  padding: 0px;
}
.side_memu .nav>li{
  padding: 7px 0px;
}
.side_memu .navbar-nav>li>a{
  padding: 0px;
  line-height: unset;
}
.side_memu ul li.active,
.side_memu ul li:hover{
  right: 10px;
}

.voice {
  position: relative;
  right: 0px;
  width: 125px;
  height: 25px;
  display: block;
  margin-bottom: 15px;
  transition: .3s all;
  float: right;
}
.voice:hover{
  filter: drop-shadow(0px 0px 3px rgba(255,255,255,1))  drop-shadow(0px 0px 3px rgba(255,255,255,.6));
  transition: .3s all;
}
.voice img{
  width: 100%;
}
.voice::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 3px;
  left: 20px;
  top: 20px;
  background: #4f4361;
  transform: rotate(135deg);
  transition: 1s all;
  transform-origin: 50% 50%;
}
.voice.muted::after {
  width: 50px;
  height: 3px;
  left: -8px;
  top: 12px;
  transform: rotate(-45deg);
  transition: 1s all;
  transform-origin: 50% 50%;
}
.voice::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 25px;
  right: 0%;
  top: calc(50% - 12.5px);
  background: #4f4361;
  transition: 1s all;
}
.voice.muted::before {
  right: 65%;
  transition: 1s all;
}

/* section0 */
#scene {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.s1_bg{
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0px;
  top: 0px;
  background: url(../images/main_bg.jpg);
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.s1_bg_li{
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0px;
  top: 0px;
  background: url(../images/main_bg_light.png);
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: flash2 5s linear 1s infinite;
  filter: brightness(100%);
  opacity: 1;
}
.s1_bg_ar_R{
  position: absolute;
  width: 40vw;
  height: 50vh;
  right: -10%;
  top: 10vh;
  background: url(../images/main_bg_arrow.png);
  background-position: 0% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: arrow_R 3s linear 1s ,arrow_R2 7s linear 4s infinite;
  transform: rotate(180deg);
  filter: brightness(100%);
  opacity: 1;
}
.s1_bg_ar_R2{
  position: absolute;
  width: 40vw;
  height: 50vh;
  right: 10.5%;
  top: 10vh;
  background: url(../images/main_bg_arrow.png);
  background-position: 0% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: arrow_R2 7s linear 1s infinite;
  transform: rotate(180deg);
  filter: brightness(100%);
  opacity: 1;
}

@keyframes arrow_R{
  0%{
    opacity: 1;
    right: -10%;
  }
  98%{
    opacity: 1;
  }
  99%{
    right: -30%;
    opacity: 0;
  }
  100%{
    right: 10.5%;
    opacity: 0;
  }
}
@keyframes arrow_R2{
  0%{
    opacity: 0;
    right: 10.5%;
  }
  10%{
    opacity: 1;
    right: 5.5%;
  }
  98%{
    opacity: 1;
  }
  99%{
    right: -30%;
    opacity: 0;
  }
  100%{
    right: 10.5%;
    opacity: 0;
  }
}
.s1_bg_ar_L{
  position: absolute;
  width: 40vw;
  height: 50vh;
  left: -10%;
  top: 10vh;
  background: url(../images/main_bg_arrow.png);
  background-position: 0% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: arrow_L 3s linear 1s ,arrow_L2 7s linear 4s infinite;
  filter: brightness(100%);
  opacity: 1;
}
.s1_bg_ar_L2{
  position: absolute;
  width: 40vw;
  height: 50vh;
  left: 10.5%;
  top: 10vh;
  background: url(../images/main_bg_arrow.png);
  background-position: 0% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: arrow_L2 7s linear 1s infinite;
  filter: brightness(100%);
  opacity: 1;
}
@keyframes arrow_L{
  0%{
    opacity: 1;
    left: -10%;
  }
  98%{
    opacity: 1;
  }
  99%{
    left: -30%;
    opacity: 0;
  }
  100%{
    left: 10.5%;
    opacity: 0;
  }
}
@keyframes arrow_L2{
  0%{
    opacity: 0;
    left: 10.5%;
  }
  10%{
    opacity: 1;
    left: 5.5%;
  }
  98%{
    opacity: 1;
  }
  99%{
    left: -30%;
    opacity: 0;
  }
  100%{
    left: 10.5%;
    opacity: 0;
  }
}

.s1_light{
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0px;
  top: 0px;
  background: url(../images/light.png);
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: flash1 0.05s linear 1s infinite;
  filter: brightness(140%);
  opacity: 1;
}
.s1_mask1{
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0px;
  top: 0px;
  background: url(../images/main_mask.png);
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 1;
}
.main_logo{
  position: absolute;
  width: 40vw;
  height: 40vh;
  left: 50%;
  top: 50vh;
  background: url(../images/main_logo.png);
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-55%);
  opacity: 1;
}
.main_logo_l{
  position: absolute;
  width: 50vw;
  height: 43vh;
  left: 50%;
  top: 52vh;
  background: url(../images/main_logo_l.png);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-55%);  
  animation: logolight 3s linear 1s infinite !important;
  opacity: 0;
}
.main_logo_b{
  position: absolute;
  width: 50vw;
  height: 45vh;
  left: 50%;
  top: 50vh;
  background: url(../images/main_logo_b.png);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-55%);  
}
@keyframes logolight{
  0%{
    opacity: 0;
  }
  15%{
    opacity: 1;
  }
  50%{
    opacity: 1;
    filter: brightness(200%);
  }
  75%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    filter: brightness(100%);
  }
}

/* 快閃 */
@keyframes flash1{
  0%{
    opacity: .7;
  }
  
  100%{
    opacity: 1;
  }
}
/* 跳閃 */
@keyframes flash2{
  0%{
    opacity: 1;
  }
  
  40%{
    opacity: 1;
    filter: brightness(120%);
  }
  41%{
    opacity: .7;
    filter: brightness(100%);
  }
  49%{
    opacity: .7;
    filter: brightness(100%);
  }
  50%{
    opacity: 1;
    filter: brightness(120%);
  }
  70%{
    opacity: 1;
    filter: brightness(120%);
  }
  71%{
    opacity: .9;
    filter: brightness(100%);
  }
  72%{
    opacity: 1;
    filter: brightness(120%);
  }
    80%{
    opacity: 1;
    filter: brightness(120%);
  }
  81%{
    opacity: .9;
    filter: brightness(100%);
  }
  82%{
    opacity: 1;
    filter: brightness(120%);
  }
  83%{
    opacity: .9;
    filter: brightness(100%);
  }
  84%{
    opacity: 1;
    filter: brightness(120%);
  }
}

/* 首頁角色 */

.section_01 .char-sub1{
  position: absolute;
  width: 671px;
  height: 926px;
  bottom: -50px;
  left: 43%;
  transform: translateX(-50%);
  background-image: url(../images/main_char_1.png);
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.section_01 .char-sub2{
  position: absolute;
  width: 907px;
  height: 751px;
  bottom: 0px;
  left: 30%;;
  transform: translateX(-50%);
  
  background-image: url(../images/main_char_2.png);
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.section_01 .char-sub3{
  position: absolute;
  width: 629px;
  height: 798px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-60%);
  background-image: url(../images/main_char_3.png);
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.section_01 .char-sub4{
  position: absolute;
  width: 934px;
  height: 852px;
  bottom: 60px;
  left: 60%;
  transform: translateX(-50%);
  background-image: url(../images/main_char_4.png);
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.section_01 .char-sub5{
  position: absolute;
  width: 875px;
  height: 854px;
  bottom: 0px;
  left: 70%;
  transform: translateX(-50%);
  background-image: url(../images/main_char_5.png);
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}




/* section2 */
.section .wrapper{
  position: relative;
  overflow: hidden;
  width: 100vw;
}
.section .container{
  text-align: center;
}
.section h1{
  margin-top: 100px;
  font-size: 60px;
  line-height: 80px;
  font-weight: 900;
  text-decoration: underline;
}

.section .container p span{
  position: relative;
  color: #000;
  background: #e5a4c3;
  width: initial;
}
.section .container p span::after{
  content: '';
  position: absolute;
  right: 0px;
  height: 48px;
  width: 100%;
  background: #000;
}
.section .container p span.Highlighter::after{
  content: '';
  position: absolute;
  right: 0px;
  height: 48px;
  width: 0%;
  transition: all 0.5s;
  background: #000;
}
.section .container p{
  font-size: 18px;
  line-height: 28px;
  color: #e5a4c3;
  width: 750px;
  max-width: 100%;
  margin:40px auto;
}

.section_02 .mail_box:nth-of-type(1) .img {
  background-image: url('../images/s2_mail_close_1.png');  
  transition: 0.5s all;
}
.section_02 .mail_box:nth-of-type(2) .img {
  background-image: url('../images/s2_mail_close_2.png');
  transition: 0.5s all;
}
.section_02 .mail_box:nth-of-type(3) .img {
  background-image: url('../images/s2_mail_close_3.png');
  transition: 0.5s all;
}
.section_02 .mail_box:nth-of-type(4) .img {
  background-image: url('../images/s2_mail_close_4.png');
  transition: 0.5s all;
}
.section_02 .mail_box .img{
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 220px;
}
.section_02 .mail_box:nth-of-type(1) .img:hover,
.section_02 .mail_box:nth-of-type(1) .img.open{
  background-image: url('../images/s2_mail_open_1.png');  
  transition: 0.5s all;
}
.section_02 .mail_box:nth-of-type(2) .img:hover,
.section_02 .mail_box:nth-of-type(2) .img.open{
  background-image: url('../images/s2_mail_open_2.png');  
  transition: 0.5s all;
}
.section_02 .mail_box:nth-of-type(3) .img:hover,
.section_02 .mail_box:nth-of-type(3) .img.open{
  background-image: url('../images/s2_mail_open_3.png');  
  transition: 0.5s all;
}
.section_02 .mail_box:nth-of-type(4) .img:hover,
.section_02 .mail_box:nth-of-type(4) .img.open{
  background-image: url('../images/s2_mail_open_4.png'); 
  transition: 0.5s all; 
}

.section_02 .mail_content{
  position: relative;
  width: 850px;
  max-width: 100%;
  height: 600px;
  margin: 60px auto;
  padding: 50px 0px 20px 0px ;
  background-image: url('../images/s2_mail_con_bg.png');
  background-size: contain;
  background-position: 50% 0%;
  background-repeat: no-repeat; 
  z-index: 3;
}

.section_02 .mail_content .wrapper{
  position: relative;
  overflow-y: scroll;
  width: 840px;
  height: 530px;
  max-width: 100%;
}

/* 信件滾輪樣式 */
.section_02 .mail_content .wrapper::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 0px;
	background-color: #71475b;
}
.section_02 .mail_content .wrapper::-webkit-scrollbar
{
	width: 12px;
	background-color: #71475b;
}
.section_02 .mail_content .wrapper::-webkit-scrollbar-thumb
{
	border-radius: 0px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #cd7ca4;
}

.section_02 .mail_content .wrapper div{
  position: relative;
  display: none;
  opacity: 0;
  transition: 1s all;
}
.section_02 .mail_content .wrapper div.show{
  display: block;
  transition: 1s all;
  top: 50px;
  opacity: 1;
}


/* 背景音浪 */
.section .Vnote1,
.section .Vnote2{
  position: absolute;
  width: 1920px;
  height: 436px;
  top: 60vh;
}
.section .Vnote1 img{
  width: 100%;
  height: 100%;
}
.section .Vnote1{
  animation: vnote1 10s linear 0s 1 ,vnote2 20s linear 10s infinite;
  
}
.section .Vnote2{
  animation: vnote2 20s linear 0s infinite;
}
@-webkit-keyframes vnote1{
  0%{
    left: 0px;
    opacity: 1;
  }
  98%{
    left: 1920px;
    opacity: 1;
  }
  99%{
    left: 1920px;
    opacity: 0;
  }
  100%{
    left: -1920px;
    opacity: 0;
  }
}

@-webkit-keyframes vnote2{
  0%{
    left: -1920px;
    opacity: 1;
  }
  98%{
    left: 1920px;
    opacity: 1;
  }
  99%{
    left: 1920px;
    opacity: 0;
  }
  100%{
    left: -1920px;
    opacity: 0;
  }
}


.char{
  position: absolute;
  
}
.char_1{
  left: 250px;
  bottom: 50px;
  width: 415px;
  height: 676px;
  background-image: url('../images/s2_char_L.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  z-index: 2;
}
.char_2{
  right: 100px;
  bottom: 50px;
  width: 707px;
  height: 688px;
  background-image: url('../images/s2_char_R.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  z-index: 2;
}
.char_3{
  right: 0px;
  top: 480px;
  width: 422px;
  height: 630px;
  background-image: url('../images/s5_char.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  z-index: 2;
}
.char_4{
  left: 50px;
  top: 1300px;
  width: 504px;
  height: 714px;
  background-image: url('../images/s6_char1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  z-index: 2;
}
.char_5{
  right: 0px;
  top: 2100px;
  width: 502px;
  height: 833px;
  background-image: url('../images/s6_char2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  z-index: 2;
}







/* section3 */
.section_03 .container{
  width: 1600px;
  max-width: 100%;
}
.member_wrapper{
  position: relative;
}







/* 共用遮罩 */
.mask{
  position: fixed;
  top: 0px;
  left:0px;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: none;
  opacity: 0;
  z-index: 1;
}
.show.mask{
  display: block;
  opacity: 0.7;
}

/* 第一小隊背景 */
.section_03 .s3_light{
  position: absolute;
  width: 100%;
  padding-bottom: 50%;
  background-image: url('../images/s3_light.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  animation: bright 5s linear 0s infinite ;
}
@keyframes bright{
  0%{
    filter: brightness(100%);
  }
  30%{
    filter: brightness(150%);
  }
  80%{
    filter: brightness(150%);
  }
  1000%{
    filter: brightness(100%);
  }
}
.section_03 .s3_footer{
  position: absolute;
  width: 100%;
  bottom: -41%;
  padding-top: 50%;
  background-image: url('../images/s3_footer.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  
}



.section_03 .member{
  position: relative;
  background-image: url(../images/s3_bg.png);
  background-position: 50% 20%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 900px;
  width: 1250px;
  max-width: 100%;
  margin: auto;
  display: none;
  animation: backplan 5s linear 0s infinite;
  
}
@keyframes backplan{
  0%{
    background-image: url(../images/s3_bg.png);
  }
  20%{
    background-image: url(../images/s3_bg_02.png);
  }
  40%{
    background-image: url(../images/s3_bg_03.png);
  }
  60%{
    background-image: url(../images/s3_bg_02.png);
  }
  80%{
    background-image: url(../images/s3_bg_01.png);
  }
  100%{
    background-image: url(../images/s3_bg.png);
  }
}

/* 共用-角色定位 */
.section_03 .char{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 40%;
  height: 900px;
  transition: all 1s ease-in-out;
}



/* 各角色位置微調 <第一小隊> */
.section_03 .member_1 .char:nth-of-type(1){
  left: 0%;
  width: 30%;
}
.section_03 .member_1 .char:nth-of-type(2){
  left: 28%;
  top: -3%;
  width: 45%;
}
.section_03 .member_1 .char:nth-of-type(3){
  left: 17%;
  width: 28%;
}
.section_03 .member_1 .char:nth-of-type(4){
  left: 50%;
  width: 27%;
}
.section_03 .member_1 .char:nth-of-type(5){
  left:  68%;
  width: 27%;
}
/* ------ */
.section_03 .member_1 .char:nth-of-type(1)>img{
  width: 300px;
}
.section_03 .member_1 .char:nth-of-type(2)>img{
  width: 550px;
}
.section_03 .member_1 .char:nth-of-type(3)>img{
  width: 350px;
}
.section_03 .member_1 .char:nth-of-type(4)>img{
  width: 350px;
}
.section_03 .member_1 .char:nth-of-type(5)>img{
  width: 350px;
}


/* 各角色位置微調 <第二小隊> */
.section_03 .member_2 .char:nth-of-type(1){
  top: 3%;
  left: 5%;
  width: 35%;
}
.section_03 .member_2 .char:nth-of-type(2){
  left: 12%;
  top: 3%;
  width: 40%;
}
.section_03 .member_2 .char:nth-of-type(3){
  left: 47%;
  width: 34%;
}
.section_03 .member_2 .char:nth-of-type(4){
  left: 38%;
  width: 23%;
}
.section_03 .member_2 .char:nth-of-type(5){
  top: 3%;
  left:  68%;
  width: 30%;
}
/* ------ */
.section_03 .member_2 .char:nth-of-type(1)>img{
  width: 350px;
}
.section_03 .member_2 .char:nth-of-type(2)>img{
  width: 480px; 
}
.section_03 .member_2 .char:nth-of-type(3)>img{
  width: 400px;
}
.section_03 .member_2 .char:nth-of-type(4)>img{
  width: 290px;
}
.section_03 .member_2 .char:nth-of-type(5)>img{
  width: 380px;
}

/* 各角色位置微調 <第三小隊> */
.section_03 .member_3 .char:nth-of-type(1){
  top: -3%;
  left: 0%;
  width: 35%;
}
.section_03 .member_3 .char:nth-of-type(2){
  left: 18%;
  top: -5%;
  width: 40%;
}
.section_03 .member_3 .char:nth-of-type(3){
  top: 7%;
  left: 7%;
  width: 40%;
}
.section_03 .member_3 .char:nth-of-type(4){
  left: 50%;
  width: 30%;
}
.section_03 .member_3 .char:nth-of-type(5){
  left:  68%;
  width: 27%;
}
/* ------ */
.section_03 .member_3 .char:nth-of-type(1)>img{
  width: 370px;
}
.section_03 .member_3 .char:nth-of-type(2)>img{
  width: 600px; 
}
.section_03 .member_3 .char:nth-of-type(3)>img{
  width: 480px;
}
.section_03 .member_3 .char:nth-of-type(4)>img{
  width: 400px;
}
.section_03 .member_3 .char:nth-of-type(5)>img{
  width: 450px;
}

/* 各角色位置微調 <第四小隊> */
.section_03 .member_4 .char:nth-of-type(1){
  left: 30%;
  width: 45%;
}
/* ------ */
.section_03 .member_4 .char:nth-of-type(1)>img{
  width: 500px;
}


/* 共用-角色顯示內容 */
.section_03 .member .char.show{
  z-index: 3;
  height: 100%;
  width: 100%;
  left: 0;
  transition: all 1s ease-in-out;
}
/* 共用-角色叉叉按鈕 */
.section_03 .close{
  position: absolute;
  right: 10%;
  top: 10%;
  width: 60px;
  height: 60px;
  border:2px solid #fff;  
  z-index: 2;
  opacity: 0;
  transition: 1s all;
  pointer-events: none;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
}

.section_03 .close.show{
  opacity: .7;
  transition: 1s all;
  pointer-events: painted;
}

/* 共用-角色內容 */
.section_03 .member{
  opacity: 0;
  z-index: 1;
  transition: 1s all;
}
.section_03 .member.show{
  opacity: 1;
  z-index: 1;
  transition: 1s all;
}
.section_03 .member .char>img{
  z-index: 1;
  transition: all 0.8s ease-in-out;
  position: absolute;
  display: block;
  width: 500px;
  left: 0px;
  top: 50%;
  transform: translateY(-45%);
  
}
.section_03 .member .char:hover>img{
  z-index: 2;
  filter: drop-shadow(0px 0px 20px rgb(255,255,255));
  transition: all 0.5s ease-in-out;
}

/* 共用-角色彈出後定位 */
.section_03 .member .char.show>img{
  width: 500px;
  left: 10%;
  transition: all 1s ease-in-out;
}
/* 個角色彈出後定位微調 <第一小隊>*/
.section_03 .member_1 .char:nth-of-type(2).show>img,
.section_03 .member_3 .char:nth-of-type(2).show>img{  
  width: 1000px;
  left: -10%;
}
.section_03 .member_2 .char:nth-of-type(3).show>img{
  width: 900px;
  left: -10%;
}
.section_03 .member_2 .char:nth-of-type(1).show>img{
  width: 550px;
  top: 42%;
}
.section_03 .member_1 .char:nth-of-type(3).show>img,
.section_03 .member_1 .char:nth-of-type(5).show>img{
  width: 500px;
  left: 20%;
}
.section_03 .member_1 .char:nth-of-type(4).show>img{
  width: 400px;
  left: 20%;
}
.section_03 .member_1 .char:nth-of-type(1).show>img{
  width: 600px;
  
}
.section_03 .member_3 .char:nth-of-type(1).show>img{
  width: 600px;
  
  
}
.section_03 .member_3 .char:nth-of-type(3).show>img{
  width: 500px;
  top: 40%;
  left: 10%;
}
.section_03 .member_3 .char:nth-of-type(5).show>img{
  width: 400px;
  top: 45%;
  left: 25%;
}
.section_03 .member_3 .char:nth-of-type(4).show>img{
  width: 500px;
  top: 45%;
  left: 25%;
}
.section_03 .member_2 .char:nth-of-type(2).show>img{  
  width: 600px;
  top: 40%;
}
.section_03 .member_2 .char:nth-of-type(4).show>img{
  width: 300px;
  top: 42%;
  left: 30%;
}
.section_03 .member_2 .char:nth-of-type(5).show>img{
  width: 500px;
  top: 42%;
  left: 25%;
}
.section_03 .member_4 .char:nth-of-type(1).show>img{
  width: 500px;
  top: 42%;
  left: 20%;
}

/* 共用-彈出後介紹 */
.section_03 .char li{
  display: none;    
  z-index: 1;
}
.section_03 .char.show li{
  display: block;
  position: absolute;
}

/* 共用-彈出後介紹各項目定位 */
.section_03 .char.show li:nth-of-type(1){
  left: 60%;
  top: 10%;
}
.section_03 .char.show li:nth-of-type(2){
  left: 68%;
  top: 30%;
}
.section_03 .char.show li:nth-of-type(3){
  left: 62%;
  top: 50%;
}



/* 各小隊切換選單 */
.member_menu
{
  display: inline-block;
  position: absolute;
  top: 100px;
  left: 100px;
  width: 420px;
  max-width: 100%;
  z-index: 1;
}
.member_menu li{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.member_menu li img{
  position: absolute;
  display: block;
  width: auto;
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.member_menu li::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-image: url('../images/M_btn_0.png');
  background-position: 50% 50%;
  background-size: contain;
  border-radius: 50px;
  opacity: 0;
  transition: .5s all;
}

.member_menu .active#member_sub1::after,
.member_menu .hover#member_sub1::after,
.member_menu .active#video_sub1::after,
.member_menu .hover#video_sub1::after{
  background-image: url('../images/M_btn_active_1.png');
  opacity: 1;
  transition: .5s all;
}
.member_menu .active#member_sub2::after,
.member_menu .hover#member_sub2::after,
.member_menu .active#video_sub2::after,
.member_menu .hover#video_sub2::after{
  background-image: url('../images/M_btn_active_2.png');
  opacity: 1;
  transition: .5s all;
}
.member_menu .active#member_sub3::after,
.member_menu .hover#member_sub3::after,
.member_menu .active#video_sub3::after,
.member_menu .hover#video_sub3::after{
  background-image: url('../images/M_btn_active_3.png');
  opacity: 1;
  transition: .5s all;
}
.member_menu .active#member_sub4::after,
.member_menu .hover#member_sub4::after,
.member_menu .active#video_sub4::after,
.member_menu .hover#video_sub4::after{
  background-image: url('../images/M_btn_active_4.png');
  opacity: 1;
  transition: .5s all;
}






/* section4 */
.section_04{
  min-height: 110vh;
  overflow:hidden;
  top: -3px;
}
.section_04 .s4_bg{
  position: absolute;
  width: 100vw;
  height: 50vh;
  top: 24vh;
  background-image: url('../images/s4_win_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  z-index: -1;
  opacity: .5;
  filter: contrast(300%);
}
.section_04 .Vnote1,
.section_04 .Vnote2{
  top: 7vh;
  z-index: -1;
}
.section_04 .wrapper{
  position: relative;
  display: block;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 52%;
  overflow: hidden;
}
.section_04 .wrapper .border{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url('../images/s4_v_mask.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}



.section_04 .team_video{
  position: absolute;
  left: 50%;
  top: 46%; 
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s all;
}
.section_04 .team_video.show{
  transition: 1s all;
  opacity: 1;  
}
.section_04 .team_video video{
  width: 100%;
}
.section_04 .banner{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  bottom: -100%;
  background: url('../images/team_00.png') no-repeat 50% 50%;
  background-size: 100% 100%;
  opacity: 0;
  pointer-events: none;
  transition: .6s all;
}
.section_04 .banner.team_banner_01,
.section_04 .banner.team_banner_02,
.section_04 .banner.team_banner_03,
.section_04 .banner.team_banner_04{
  bottom: 0%;
  opacity: 1;
  transition: .6s all;
}
.section_04 .banner.team_banner_01{
  background: url('../images/team_01.jpg') no-repeat 50% 50%;
  background-size:100% 100%;
}
.section_04 .banner.team_banner_02{
  background: url('../images/team_02.jpg') no-repeat 50% 50%;
  background-size:100% 100%;
}
.section_04 .banner.team_banner_03{
  background: url('../images/team_03.jpg') no-repeat 50% 50%;
  background-size:100% 100%;
}
.section_04 .banner.team_banner_04{
  background: url('../images/team_04.jpg') no-repeat 50% 50%;
  background-size:100% 100%;
}

.section_04 .member_menu{
  left: 50%;
  top: calc(1170px * 53 / 100 + 150px);
  transform: translateX(-50%);
  
}
/* .section_04 .member_menu::before{
  content: '';
  position: absolute;
  width: 175%;
  height: 100%;
  left: -37.5%;
  background-image: url('../images/s4_paly.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
} */

/* section_04 翅膀 */
.section_04 .container{
  position: relative;
}
.section_04 .container::before{
  content: '';
  position: absolute;
  left: -780px;
  bottom: 50px;
  width: 885px;
  height: 798px;
  background-image: url('../images/s4_win_L.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0% 0%;
  transform-origin: 100% 77.7%;
  transform: rotate(15deg);
  animation: win1 10s ease-in-out 0s infinite;
}
.section_04 .container::after{
  content: '';
  position: absolute;
  right: -780px;
  bottom: 50px;
  width: 885px;
  height: 798px;
  background-image: url('../images/s4_win_R.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0% 0%;
  z-index: -1;
  transform-origin: 0% 77.7%;
  transform: rotate(-15deg);
  animation: win2 10s ease-in-out 0s infinite;
}
@keyframes win1{
  0%{
    transform: rotate(15deg);
  }
  60%{
    transform: rotate(-8deg);
  }
}
@keyframes win2{
  0%{
    transform: rotate(-15deg);
  }
  60%{
    transform: rotate(8deg);
  }
}




/* section_05 */
.section_05 .s5_bg{
  position: absolute;
  width: 100%;
  /* max-width: 100vw; */
  height: 2575px;
  background-image: url('../images/s5_bg_1.png');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  margin-top: 500px;
  animation: s5bg 2s ease-in-out 0s infinite;
  transition: 1s all;
}
@keyframes s5bg{
  0%{
    background-image: url('../images/s5_bg_1.png');
    transition: 1s all;
  }
  33%{
    background-image: url('../images/s5_bg_2.png');
    transition: 1s all;
  }
  66%{
    background-image: url('../images/s5_bg_3.png');
    transition: 1s all;
  }
  100%{
    background-image: url('../images/s5_bg_1.png');
    transition: 1s all;
  }
}
.section_05 .s7_bg{
  position: absolute;
  width: 100%;
  height: 593px;
  top: 2875px;
  background-image: url('../images/s7_bg.png');
  background-repeat: no-repeat;
  background-size:cover;
  z-index: 0;
  margin-top: 500px;
  transition: 1s all;
}
.section_05 .container{
  position: relative;
}
.section_05 .container img{
  margin-top: 50px;
}
.section_05 .Vnote1,
.section_05 .Vnote2{
  top: unset;
  bottom: 250px;
}
.section_05 .s7_con{
  position: relative;;
  width: 292px;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  transition: .5s all;
}
.section_05 .s7_con:hover{
  filter: drop-shadow(0px 0px 20px rgba(190,87,212,.7));
  transition: .5s all;
}
.section_05 .char_3{

}





/* footer */
.footer {
  top: 0px;
  width: 1920px;
  max-width: 100%;
  position: relative;
  text-align: center;
  background: #000;
}

.footer .container{
  position: relative;
  width:1200px;
  margin:auto;
  padding: 15px;
  vertical-align: middle;
  display: inline-block;
}
.navbar .container{
  width: 1200px;
  margin: auto;
}
.footer li{
  display: inline-block;
  padding: 0px 15px;
  font-size: 12px;
  color: #fff;
  text-align: left;
  vertical-align: middle;
}
.footer li img{
  width: 100%;

}
.footer li:nth-of-type(1){
  width: 22%;
}
.footer li:nth-of-type(2){
  width: 20%;
}
.footer li:nth-of-type(3){
  width: 28%;
}
.footer li:nth-of-type(3) p{
  margin: 0%;
}
.footer li:nth-of-type(4){
  width: 30%;
  
}
.footer li:nth-of-type(4) img{
  display: inline-block;
  width: 20%;
  vertical-align: middle;
}
.footer li:nth-of-type(4) p{
  margin: 0px 0% 0% 2%;
  display: inline-block;
  width: 78%;
  vertical-align: middle;
}

@media screen and (max-width: 1600px){
  .char_side{
    display: none;
  }
}

@media screen and (max-width: 998px){
  .section_02 .mail_content{
    height: 550px;
  }
  .section_02 .mail_content .wrapper{
    height: 100%;
  }
}

@media screen and (max-width: 768px){
  .stroke{
    width: 100vw;
    transform: scale(1);
  }
  .stroke .path{
    position: absolute;
    left: 100px;
    padding-left: 100px;
  }

  .main_logo_b,
  .main_logo_l,
  .main_logo{
    width: 100vw;
    transform: translateX(-50%);
  }
  .section_01 .char-sub4{
    top: -5vh;
    bottom: unset;
  }
  .section_01 .char-sub1{
    top: 5vh;
    left: 30%;
    bottom: unset;
  }
  .section_01 .char-sub2{
    left: 25%;
    top: 30vh;
    bottom: unset;
  }
  .section_01 .char-sub5{
    left: 90%;
    top: 10vh;
    bottom: unset;
  }
  .section_01 .char-sub3{
    bottom: unset;
    top: 20vh;
  }
  .s1_light,
  .s1_bg_li{
    background-size: 150% 100%;
  }
  
  .section_02 .mail_content{
    height: 510px;
    background-size:100% 100%
  }
  .section_02 .mail_content .wrapper{
    height: 100%;
  }

  .section_03 .s3_light{
    width: 300%;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 60%;
  }
  .section_03 .char{
    height: 600px;
    
  }
  .section_03 .member{
    top: 100px;
    height: 600px;
  }
.section_03{
  min-height: 80vh;
}
.section_03 .member_wrapper{
  height: 100vh;
}
.section_03 .char.show li:nth-of-type(1){
  top: 0%;
}
.section_03 .s3_footer {
  bottom: 0px;
  background-size: auto 100%;
}
.section_04 .container::before,
.section_04 .container::after{
  animation: unset;
}
.section_04 .member_menu{
  top: calc(1170px * 53 / 100 + 0px);
}
.section_04{
  min-height: 85vh;
}

  
  
  .footer li:nth-of-type(1){
      width: 30%;
  }
  .footer li:nth-of-type(2){
      width: 28%;
      margin-right: 42%;   
  }
  .footer li:nth-of-type(3){
      width: 50%;
  }
  .footer li:nth-of-type(4){
      width: 50%;
  }
  .footer li:nth-of-type(4) img{
      width: 15%;
  }
  .section_05 .s5_bg{
    background-repeat: repeat;
    background-size: contain;
  }
  .section_05 .s7_bg{
    z-index: 0;
    top: unset;
    bottom: 0px;
    background-position: center bottom;
    background-size: contain;
  }


}

@media (max-width: 480px){
  .home{
    left: 10px;
    top: 10px;
    width: 200px;
  }
  .fb{
    display: none;
  }
  .section h1{
    margin-top: 50PX;
  }
  .main_logo_b,
  .main_logo_l,
  .main_logo{
    bottom: 0vh;
  }
  .section_01 .char-sub4{
    top: -15vh;
    width: 750px;
  }
  .section_01 .char-sub1{
    top: -5vh;
    width: 600px;
  }
  .section_01 .char-sub2{
    top: 9vh;
    width: 700px;
  }
  .section_01 .char-sub5{
    left: 90%;
    top: -9vh;
    width: 650px;
  }
  .section_01 .char-sub3{
    width: 450px;
    top: 15vh;
  }
  .s1_light,
  .s1_bg_li{
    background-size: 150% 100%;
  }


  .section_02 .mail_content{
    height: 360px;
    background-size:100% 100%
  }
  .section_02 .mail_content .wrapper{
    height: 100%;
  }
  .section .container p{
    font-size: 16px;
  }
  .section .container p span.Highlighter::after,
  .section .container p span::after{
    height: 26px;
  }
  .section_02 .mail_wrapper {
    transform: scale(.7);
    position: relative;
    top: -80px;
  }
  .section_02 .mail_content{
    position: relative;
    top: -120px;
    margin: 0px;
  }
  .section_03{
    min-height:unset;
  }
  .section_03 .container{
    padding: 0px;
  }
  .section_03 h1{
    padding: 0 15px;
  }
  .member_menu{
    width: 100%;
    left: 0px;
  }
  .member_menu li{
    width: 24%;
    height: auto;
  }
  .member_menu li::after{
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .member_menu li img{
    position: relative;
    height: auto;
  }
  .section_03 .s3_light{
    padding-bottom: 80%;
    width: 400%;
  }
  .section_03 .member{
    top: 0px;
    height: 500px;
    background-position:50% 37%;
    background-size: 140% auto;    
  }
  .section_03 .char{
    height: 500px;
  }
  .section_03 .s3_footer{
    bottom: 0px;
    background-size: auto 100%;
  }

  .section_03 .member_1 .char:nth-of-type(1){
    top: 4%;
    left: -7%;
  }
  .section_03 .member_1 .char:nth-of-type(2){
    top: 3%;
    left: 19%;
    width: 47%;
  }
  .section_03 .member_1 .char:nth-of-type(3){
    top: 10%;
    width: 30%;
    left: 11%;
  }
  .section_03 .member_1 .char:nth-of-type(4){
    left: 50%;
    top: 11%;
    width: 35%;
  }
  .section_03 .member_1 .char:nth-of-type(5){
    left: 71%;
    top: 5%;
    width: 33%;
  }

  .section_03 .member_2 .char:nth-of-type(1){
    top: 3%;
    left: -3%;
    width: 35%;
  }
  .section_03 .member_2 .char:nth-of-type(2){
    left: 6%;
    top: 5%;
    width: 43%;
  }
  .section_03 .member_2 .char:nth-of-type(3){
    left: 44%;
    width: 46%;
    top: 8%;
  }
  .section_03 .member_2 .char:nth-of-type(4){
    left: 32%;
    width: 28%;
    top: 8%;
  }
  .section_03 .member_2 .char:nth-of-type(5){
    top: 7%;
    left:  78%;
    width: 38%;
  }


  .section_03 .member_3 .char:nth-of-type(1){
    top: 5%;
    left: -3%;
    width: 35%;
  }
  .section_03 .member_3 .char:nth-of-type(2){
    left: 23%;
    top: 0%;
    width: 55%;
  }
  .section_03 .member_3 .char:nth-of-type(3){
    top: 14%;
    left: 7%;
    width: 45%;
  }
  .section_03 .member_3 .char:nth-of-type(4){
    left:  76%;
    width: 30%;
    top: 12%;
  }
  .section_03 .member_3 .char:nth-of-type(5){
    left: 58%;
    width: 33%;
    top: 16%;
  }
  

  .section_03 .member_4 .char:nth-of-type(1){
    left: 30%;
    width: 50%;
    top: 8%;
  }

  /* 共用-角色顯示內容 */
  .section_03 .member .char.show{
    z-index: 3;
    height: 100%;
    width: 100%;
    left: 0%;
    transition: all 1s ease-in-out;
  }
  /* 共用-角色叉叉按鈕 */
  .section_03 .close{
    position: absolute;
    right: 10%;
    top: 35%;
    width: 30px;
    height: 30px;
    border:2px solid #fff;  
    z-index: 2;
    opacity: 0;
    transition: 1s all;
    pointer-events: none;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
  }

  .section_03 .close.show{
    opacity: .7;
    transition: 1s all;
    pointer-events: painted;
  }
    
  /* 共用-角色彈出後定位 */
  .section_03 .member .char.show>img{
    width: 70%;
    left: 15%;
    transition: all 1s ease-in-out;
  }
  /* 個角色彈出後定位微調 <第一小隊>*/
  .section_03 .member_1 .char:nth-of-type(3).show>img,
  .section_03 .member_1 .char:nth-of-type(5).show>img{
    width: 70%;
    left: 20%;
  }
  .section_03 .member_1 .char:nth-of-type(4).show>img{
    width: 70%;
    left: 25%;
  }
  .section_03 .member_3 .char:nth-of-type(3).show>img{
    width: 70%;
    left: 15%;
  }
  .section_03 .member_3 .char:nth-of-type(5).show>img{
    width: 70%;
    left: 25%;
  }
  .section_03 .member_3 .char:nth-of-type(4).show>img{
    width: 70%;
    left: 15%;
  }
  .section_03 .member_3 .char:nth-of-type(2).show>img,
  .section_03 .member_2 .char:nth-of-type(3).show>img,
  .section_03 .member_1 .char:nth-of-type(2).show>img{
    width: 80%;
    left: 25%;
  }

  .section_03 .member_3 .char:nth-of-type(1).show>img{
    width: 70%;
    left: 25%;
  }
  .section_03 .member_2 .char:nth-of-type(4).show>img{
    width: 50%;
    left: 30%;
    top: 55%;
  }
  .section_03 .member_2 .char:nth-of-type(1).show>img{
    width: 70%;
    left: 30%;
    top: 55%;
  }
  .section_03 .member_2 .char:nth-of-type(5).show>img{
    width: 60%;
    left: 35%;
    top: 50%;
  }
  .section_03 .member_4 .char:nth-of-type(1).show>img{
    width: 70%;
    left: 25%;
    top: 50%;
  }

  /* 共用-彈出後介紹 */
  .section_03 .char li{
    display: none;    
    z-index: 3;
  }
  .section_03 .char.show li{
    display: block;
    position: absolute;
  }

  /* 共用-彈出後介紹各項目定位 */
  .section_03 .char.show li:nth-of-type(1){
    left: 0%;
    width: 50%;
    top: 15%;
  }
  .section_03 .char.show li:nth-of-type(2){
    left: 10%;
    top: 45%;
    width: 50%;
  }
  .section_03 .char.show li:nth-of-type(3){
    left: 10%;
    top: 58%;
    width: 50%;
  }
  .section_03 .char li{
    z-index: 3;
  }

  .voice {
    display: none;
  }


  .section_04 .container::before,
  .section_04 .container::after  {
    bottom: -130px;
  }

  .section_04 .member_menu{
    top: calc(100% * 55 / 100 + 200px);
  }
  .section_04{
    height: 65vh;
    min-height: 600px;
    
  }
  .side_memu{
    display: none;
  }


  .footer li{
      margin-bottom: 15px;
  }
  .footer li:nth-of-type(1){
      width: 42%;
  }
  .footer li:nth-of-type(2){
      width: 40%;
      margin-right: 18%;   
  }
  .footer li:nth-of-type(3){
      width: 100%;
  }
  .footer li:nth-of-type(4){
      width: 100%;
  }
  .footer li:nth-of-type(4) img{
      width: 15%;
  }
  
}
@media (max-width:1200px) {
  .footer .container{
      width: 100%;
  }
}