@charset "UTF-8";
/* ================================ */
/* 請改scss並編譯成css，不要直接改css */
/* ================================ */
@font-face {
  font-family: MyCustomFont;
  src: local("Microsoft JhengHei"), local("微軟正黑體");
}
/* 修正粗體 */
@font-face {
  font-family: fontFixed;
  unicode-range: U+7db0, U+78A7, U+7B75;
  /* ASCII (碧筵綰) */
  font-style: normal;
  font-weight: bold;
  src: local("Yu Gothic"), local("MS Gothic");
}
/* 一般粗細的時候改回微軟正黑 */
@font-face {
  font-family: fontFixed;
  unicode-range: U+7db0, U+78A7, U+7B75;
  /* ASCII (碧筵綰) */
  font-style: normal;
  font-weight: normal;
  src: local("Microsoft JhengHei"), local("微軟正黑體");
}
/* 英文數字專用 */
@font-face {
  font-family: MyCustomFont;
  /* 同樣的 font-family */
  unicode-range: U+00-7F, U+00C0-00FF, U+2150-2169;
  /* ASCII,羅馬數字*/
  /* src          : local("Arial"); */
  /* ASCII,羅馬數字*/
  src: local("Verdana");
}
body, button, input {
  font-family: fontFixed, MyCustomFont, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-size: 1.25em;
  color: #333333;
  background-color: #000000;
  overflow-x: hidden;
}
body.load {
  overflow-y: scroll;
}
body.load #WrapperBox {
  height: 100vh;
  overflow: hidden;
}

h1 {
  margin: 0;
}

a {
  cursor: pointer;
  outline: none;
}

select {
  outline: none;
  border: none;
}

input {
  font-size: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

img {
  border: 0;
}
img.autoImage {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
img.loadImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: auto;
  opacity: 0;
}

video {
  outline: none;
  display: block;
}

iframe {
  display: block;
  border: 0;
}

.not-active {
  pointer-events: none;
  cursor: default;
}

.color_red {
  color: #CC3300 !important;
}

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-----------------------外層架構----------------------*/
/* loading畫面 */
#LoadingBox {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 30;
}
#LoadingBox::after {
  position: absolute;
  content: "";
  border: 10px solid #cccccc;
  /* Light grey */
  border-top: 10px solid #333333;
  /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
}

#WrapperBox {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
#WrapperBox #header {
  position: relative;
  width: 100%;
}
#WrapperBox .container {
  position: relative;
  width: 100%;
}
#WrapperBox .container-area {
  position: relative;
  width: 100%;
}
#WrapperBox .container-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#WrapperBox .container-popup video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  display: block;
}
#WrapperBox .container-popup #btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
}
#WrapperBox .container-popup #btn-close::after {
  position: absolute;
  content: "✖";
  font-size: 34px;
  line-height: 1em;
  color: #333333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
#WrapperBox .container .cover {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
#WrapperBox .container #p3_video {
  position: absolute;
  top: 25%;
  width: 80%;
  height: auto;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}
#WrapperBox .container #p4 {
  background-color: #000000;
  padding: 4% 0%;
  box-sizing: border-box;
}
#WrapperBox .container #p4 .div-table {
  position: relative;
  width: 100%;
  text-align: center;
}
#WrapperBox .container #p4 .div-table:not(:last-child) {
  margin-bottom: 3%;
}
#WrapperBox .container #p4 .div-table .div-row {
  position: relative;
  width: 100%;
  text-align: center;
}
#WrapperBox .container #p4 .div-table .div-row .div-column {
  position: relative;
  display: inline-block;
  width: 30%;
}
#WrapperBox .container #p4 .div-table .div-row .div-column:not(:last-child) {
  margin-right: 1%;
}
#WrapperBox .container #p4 #btn01, #WrapperBox .container #p4 #btn02, #WrapperBox .container #p4 #btn03 {
  cursor: pointer;
}
#WrapperBox .container #p5 a {
  position: absolute;
  width: 38%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
#WrapperBox .container #footer {
  background-color: #fff;
  padding: 2% 3%;
  box-sizing: border-box;
}
#WrapperBox .container #footer .div-table {
  position: relative;
  width: 100%;
  display: table;
}
#WrapperBox .container #footer .div-table .div-row {
  position: relative;
  display: table-row;
}
#WrapperBox .container #footer .div-table .div-row .div-column {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
#WrapperBox .container #footer .div-table .div-row .div-column:nth-child(1) {
  width: 40%;
}
#WrapperBox .container #footer .footer-text {
  color: #312d2d;
  line-height: 1.3em;
}
#WrapperBox .container #footer .footer-text p {
  margin: 0.3em 0;
  text-align: right;
}
#WrapperBox .container #footer .footer-text a:link {
  color: inherit;
}

@media (max-width: 475px) {
  #WrapperBox .container #p4 .div-table .div-row .div-column {
    width: 90%;
  }
  #WrapperBox .container #p4 .div-table .div-row .div-column:not(:last-child) {
    margin-right: 0%;
    margin-bottom: 3%;
  }
  #WrapperBox .container #footer {
    padding-bottom: 10%;
  }
  #WrapperBox .container #footer .div-table {
    display: block;
  }
  #WrapperBox .container #footer .div-table .div-row {
    display: block;
    width: 100%;
  }
  #WrapperBox .container #footer .div-table .div-row .div-column {
    display: block;
  }
  #WrapperBox .container #footer .div-table .div-row .div-column:nth-child(1) {
    width: 60%;
    margin: 0 auto;
  }
  #WrapperBox .container #footer .footer-text p {
    font-size: 12px;
    text-align: center;
  }
}