.stage {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.stage .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.VideoBlock {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}
.VideoBlock .slogan {
  position: absolute;
  opacity: 0;
}
.VideoBlock .VideoArea {
  width: 100%;
  font-size: 0;
  position: relative;
}
.VideoBlock .VideoArea video {
  height: 100%;
}
.VideoBlock .VideoArea video source {
  width: 100%;
  height: 100%;
}
.VideoBlock .SoundControl {
  position: absolute;
  bottom: 3%;
  right: 5%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  color: #E0DFC6;
  z-index: 9999;
}
.VideoBlock .SoundControl .soundBtn {
  font-size: 14px;
  color: #E0DFC6;
  font-weight: bold;
  cursor: pointer;
}
.VideoBlock .SoundControl .sound1, .VideoBlock .SoundControl .sound2 {
  display: none;
}

.bannerArea {
  overflow: hidden;
}
@media (max-width: 991px) {
  .bannerArea {
    margin-top: -6px;
  }
}
.bannerArea .bannerBox {
  min-height: 100vh;
  padding-bottom: 5%;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox {
    min-height: 0;
    padding: 16% 0 17% 0;
  }
}
.bannerArea .bannerBox img {
  display: block;
  margin: 0 auto;
}
.bannerArea .bannerBox .mainLogo {
  width: 47%;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .mainLogo {
    width: 100%;
    margin-bottom: 20%;
  }
}
.bannerArea .bannerBox .creatorLogo {
  width: 12%;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .creatorLogo {
    width: 20%;
  }
}
.bannerArea .bannerBox .title {
  text-align: center;
}
.bannerArea .bannerBox .title h2 {
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;
}
.bannerArea .bannerBox .title .subTitle {
  border: 2px solid #e4bd36;
  display: inline-block;
  padding: 2px 58px;
  margin-bottom: 5%;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .title .subTitle {
    padding: 2px 42px;
    border: 1px solid #e4bd36;
  }
}
.bannerArea .bannerBox .title h4 {
  color: #fff;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .title h4 {
    font-size: 1rem;
    margin-top: 20%;
  }
}
.bannerArea .bannerBox .title h4 span {
  margin: 0 20px;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .title h4 span {
    margin: 0 12px;
  }
}
.bannerArea .bannerBox .title h4 span::after {
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .title h4 span::after {
    left: -6px;
    height: 10px;
  }
}
.bannerArea .bannerBox .title h4 span::before {
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .title h4 span::before {
    right: -6px;
    height: 10px;
  }
}

.Txt {
  text-align: center;
  font-family: "Noto Serif TC", serif;
  z-index: 2;
}
.Txt h2 {
  letter-spacing: 2px;
  color: #007c81;
}
.Txt h3 {
  color: #211815;
}
@media (max-width: 991px) {
  .Txt h3 {
    font-size: 1.3rem;
  }
}
.Txt b {
  font-family: "Times New Roman", serif;
  letter-spacing: 1px;
  margin-top: 15%;
  display: block;
  font-weight: 400;
  color: #d3d3d3;
}
@media (max-width: 991px) {
  .Txt b {
    margin-top: 10%;
    font-size: 2rem;
  }
}
.Txt p {
  line-height: 1.7;
}

.page01 {
  background: #d3e1e7;
}
@media (max-width: 991px) {
  .page01 .Txt {
    padding-top: 20%;
  }
}
.page01 .Txt b {
  color: rgba(255, 255, 255, 0.5921568627);
}
.page01 .Txt h2 {
  color: #bc8d33;
}

.page01 .Txt h2, .page02 .Txt h2, .page03 .Txt h2 {
  margin-top: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .page01 .Txt h2, .page02 .Txt h2, .page03 .Txt h2 {
    margin-top: 0;
  }
}
.page01 .Txt h2::after, .page02 .Txt h2::after, .page03 .Txt h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #bc8d33;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .page01 .Txt h2::after, .page02 .Txt h2::after, .page03 .Txt h2::after {
    width: 50px;
  }
}

.page02 {
  overflow: hidden;
  margin-top: -7px;
  background: #fff;
}
@media (max-width: 991px) {
  .page02 .Txt {
    padding: 106% 0 5% 0;
  }
}
.page02 .Txt h2 {
  color: #f1bd28;
}
.page02 .Txt h2::after {
  background: #f1bd28;
}
@media (max-width: 991px) {
  .page02 .Txt h3 {
    color: #fff;
  }
}
.page02 .Txt b {
  color: #ae9a74;
}
@media (max-width: 991px) {
  .page02 .Txt b {
    color: #28170d;
  }
}
@media (max-width: 991px) {
  .page02 .Txt p {
    color: #fff;
  }
}

.page03 {
  overflow: hidden;
}
@media (max-width: 991px) {
  .page03 {
    padding-top: 65%;
    background: #034496;
  }
}
.page03 .TxtBox {
  padding-top: 5%;
  justify-content: center;
}
@media (max-width: 991px) {
  .page03 .TxtBox {
    padding-top: 15%;
  }
}
.page03 .Txt {
  padding-left: 15%;
}
@media (max-width: 991px) {
  .page03 .Txt {
    padding-left: 0;
  }
}
.page03 .Txt h2 {
  color: #d3ad36;
}
.page03 .Txt h2::after {
  background: #f1bd28;
}
@media (min-width: 992px) {
  .page03 .Txt h2::after {
    left: 0;
    transform: translateX(0);
  }
}
.page03 .Txt h3 {
  color: #fff;
}
.page03 .Txt p {
  color: #fff;
}

.pageGroup {
  padding: 0 5% 5% 5%;
  background: #f9f9f9;
}
@media (max-width: 991px) {
  .pageGroup {
    padding-bottom: 0;
  }
}
.pageGroup .contentBox {
  padding: 7% 5%;
  background: #fff;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1607843137);
}
@media (max-width: 991px) {
  .pageGroup .contentBox {
    padding: 5% 0 0 0;
  }
}

@media (max-width: 991px) {
  .page04 .Txt, .page05 .Txt, .page06 .Txt, .page07 .Txt {
    padding: 15% 0 5% 0;
  }
}
.page04 .Txt h2, .page05 .Txt h2, .page06 .Txt h2, .page07 .Txt h2 {
  margin-bottom: 2.5rem;
}
.page04 .Txt h3, .page05 .Txt h3, .page06 .Txt h3, .page07 .Txt h3 {
  padding-top: 1rem;
}
@media (max-width: 991px) {
  .page04 .Txt h3, .page05 .Txt h3, .page06 .Txt h3, .page07 .Txt h3 {
    margin-bottom: 0;
  }
}
.page04 .Txt h3::after, .page05 .Txt h3::after, .page06 .Txt h3::after, .page07 .Txt h3::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #007c81;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .page04 .Txt h3::after, .page05 .Txt h3::after, .page06 .Txt h3::after, .page07 .Txt h3::after {
    width: 50px;
  }
}

.page05 {
  padding-top: 7%;
}
@media (max-width: 991px) {
  .page05 {
    padding-top: 8px;
    padding-bottom: 10%;
  }
}

.page06, .page07, .page08 {
  background: #f3f3f3;
}
@media (max-width: 991px) {
  .page06 .Txt, .page07 .Txt, .page08 .Txt {
    padding: 15% 0 8% 0;
  }
}
.page06 .Img .innerImg, .page07 .Img .innerImg, .page08 .Img .innerImg {
  padding-top: 79%;
}
.page06 .Img .innerImg .image, .page07 .Img .innerImg .image, .page08 .Img .innerImg .image {
  height: 101%;
}

.page08 .Txt b {
  margin-top: 0;
}
.page08 .Txt h2 {
  padding: 3rem 0;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .page08 .Txt h2 {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
.page08 .Txt h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #007c81;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .page08 .Txt h2::after {
    width: 50px;
  }
}
.page08 .Img .innerImg .image {
  height: 100%;
}

.page09, .page10 {
  overflow: hidden;
}
@media (max-width: 991px) {
  .page09 .Txt, .page10 .Txt {
    padding: 15% 0 114% 0;
  }
}
.page09 .Txt h2, .page10 .Txt h2 {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .page09 .Txt h2, .page10 .Txt h2 {
    color: #fff;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.page09 .Txt h2::after, .page10 .Txt h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #007c81;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .page09 .Txt h2::after, .page10 .Txt h2::after {
    width: 50px;
    background: #fff;
  }
}
@media (max-width: 991px) {
  .page09 .Txt p, .page10 .Txt p {
    color: #fff;
  }
}
.page09 .Img .innerImg, .page10 .Img .innerImg {
  padding-top: 113%;
}

@media (max-width: 991px) {
  .page10 .Txt {
    padding: 15% 0 120% 0;
  }
}/*# sourceMappingURL=style.css.map */