body {
  margin: 0;
  opacity: 1;
}
main {
  display: block!important;
  margin: 0 auto;
}
a {
  text-decoration: none;
}
.result-wrap {
  background-color: #fffcdf!important;
}
.mobileOnly {
  display: none!important;
}
/*header start*/
.logo-wrap {
  display: flex;
  justify-content: center;
}
.logo-wrap img {
  display: block;
  width: 100px;
  margin: 10px auto;
}
/* header end */
.float_mask {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  text-align: center;
  align-items: center;
}

.button-z-wrap {
  position: absolute;
  
  margin: 0 auto;
  z-index: 9;
}
.banner {
  position: relative;
  width: auto;
  min-width: 100%;
  height: 65vh;
  min-height: 100%;
  margin: 0 auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.notification {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}
.notification a {
  text-decoration: underline;
}
.copyright {
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 12px;
  opacity: 0.5;
  padding: 0;
  line-height: 4;
}

/*
=======================================
              登入抽籤系統
=======================================
*/
.fukubiki {
  display: block;
  margin: 30px auto;
  width: 40%;
  position: relative;
}
.fukubiki img {
  display: block;
  margin: 0px auto;
  width: 80%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fukubtn {
  display: block;
  width: 25%; 
  margin: 10px auto;
  border-radius: 200px;
  background-color: #d20000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 3.5;
  letter-spacing: 0.1em;
  box-shadow: 0px 3px 0px #b50202;
  outline: none;
  cursor: pointer;
  border: none;
}
.fukubtn:hover,
.againBtn:hover {
  box-shadow: none;
  transform: translateY(3px);
  transition: .3s;
}
.fuku-result {
  display: none; 
  position: absolute; 
  top: 20%; 
  left: 0; 
  width: 100%; 
  text-align: center; 
  line-height: 1;
  letter-spacing: 0.1em;
}
.fuku-result h1, h2 {
  color: #d20000;
  margin: 0;
  line-height: 1.5;
}
.againBtn {
  display: block;
  margin: 70px auto 0;
  width: 65%;
  border-radius: 200px;
  background-color: #f2eae1;
  color: #d20000;
  font-size: 16px;
  font-weight: bold;
  line-height: 3.5;
  letter-spacing: 0.1em;
  box-shadow: 0px 3px 0px #e4d4c2;
  cursor: pointer;
  outline: none;
  border: none;
}

.animate__brightness {
  -webkit-animation: brightness 2s infinite;
}
@-webkit-keyframes brightness {
  0%, 100%  { -webkit-filter: brightness(none); }
  50% { -webkit-filter: brightness(10); }
}

/*
=======================================
              登入抽籤系統
=======================================
*/

.slide-left {
	animation: slide-left 1.3s linear infinite alternate-reverse both;
}

 @keyframes slide-left {
  0% {
    transform: translateX(-50px);
  }
  
  50% {
    transform: translateX(50px);
  }
  
  100% {
    transform: translateX(-50px);
  }
}
.animate-bounce {
  
  -webkit-animation: bounce .3s infinite alternate;
  -moz-animation: bounce .3s infinite alternate;
  animation: bounce .3s infinite alternate;
}
@-webkit-keyframes bounce {
  to { -webkit-transform: scale(1.1); }
}
@-moz-keyframes bounce {
  to { -moz-transform: scale(1.1); }
}
@keyframes bounce {
  to { transform: scale(1.1); }
}

/*web device*/
@media only screen and (min-width: 1025px) and (max-width: 1920px) {}
@media only screen and (max-width : 1024px) {
  .pcOnly { 
    display: none!important; 
  }
  .mobileOnly {
    display: block!important;
  }
  .fukubiki {
    width: 70%;
  }
  .fukubtn {
    width: 50%;
  }
}
/*iPad in portrait */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {}
/*iPad in landscape */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {}

/*mobile device*/
@media only screen and (max-width : 480px) {
  .pcOnly { 
    display: none!important; 
  }
  .float_mask {
    width: 100%;
    padding: 5px 0;
  }
  
  
  .fukubiki {
    width: 95%;
    margin: 80px auto;
  }
  .fukubtn {
    width: 80%;
  }
  .againBtn {
    margin: 25px auto 0;
  }
  
}
/*mobile small device*/
@media only screen and (max-width : 320px) {
  .pcOnly { 
    display: none!important; 
  }
}