@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;
  overflow-x: hidden;
}
body.load {
  overflow-y: scroll;
}
body.load #WrapperBox {
  height: 100vh;
  overflow: hidden;
}

h1 {
  margin: 0;
}

a {
  cursor: pointer;
  outline: none;
}
a:link {
  color: inherit;
  direction: none;
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a:hover {
  direction: none;
  text-decoration: 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 #f07ca3;
  /* Light grey */
  border-top: 10px solid #7a52da;
  /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
}

#top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: url(../images/top.png) no-repeat center;
  background-size: contain;
  z-index: 29;
  cursor: pointer;
}

#WrapperBox {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
#WrapperBox #header {
  position: relative;
  width: 100%;
}
#WrapperBox .container {
  position: relative;
  width: 100%;
}
#WrapperBox .container .group {
  position: relative;
  width: 100%;
}
#WrapperBox .container .group.overlap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#WrapperBox .container .group .forVideo {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 0 auto;
}
#WrapperBox .container .btn-alpha {
  position: absolute;
  top: 11%;
  height: 77%;
  background-color: rgba(0, 0, 0, 0);
}
#WrapperBox .container .btn-alpha.btn01 {
  top: 13%;
  left: 29%;
  width: 42%;
  height: 6%;
}
#WrapperBox .container .btn-alpha.btn02 {
  width: 35%;
  height: 69%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}