* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #8a1a1f;
  color: #fff;
}

::-moz-selection {
  background-color: #8a1a1f;
  color: #fff;
}

body {
  background-color: #39212e;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  position: relative;
}

h1, p, a, button {
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

img {
  width: auto;
  max-width: 100%;
  display: block;
}

a {
  outline: none;
  text-decoration: none;
}

p, a {
  color: #fff;
  font-size: 20px;
  line-height: 1.6em;
  font-weight: 500;
}

button {
  padding: 0;
  cursor: pointer;
  opacity: 0.9;
}
button:hover {
  opacity: 1;
}

.outerWrap {
  background-image: url("../images/bgFot.png"), url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom, center top;
  background-size: 100% auto, cover;
  background-color: #f8e6dc;
  position: relative;
}
@media only screen and (max-width: 700px) {
  .outerWrap {
    background-size: auto 30%, 180% auto;
  }
}

/*btnBox*/
.btnBox {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2em 0;
}
.btnBox .btn {
  width: 33.3333333333%;
  max-width: 322px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
  margin-bottom: 1em;
}
.btnBox .btn:hover {
  transition: all 0.3s;
  transform: translateY(-10px);
}
@media only screen and (max-width: 1024px) {
  .btnBox .btn {
    width: 50%;
  }
}
@media only screen and (max-width: 400px) {
  .btnBox {
    flex-direction: column;
    align-items: center;
  }
  .btnBox .btn {
    width: 80%;
  }
}

/*-- ill --*/
.ill {
  position: absolute;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}

.ill.illArrow {
  right: 20%;
  bottom: 45%;
  background-image: url("../images/illArrow.png");
  width: 50px;
  height: 117px;
  z-index: 5;
}
@media only screen and (max-width: 1600px) {
  .ill.illArrow {
    right: 5%;
    bottom: 55%;
    width: 40px;
    height: 94px;
  }
}
@media only screen and (max-width: 1024px) {
  .ill.illArrow {
    display: none;
  }
}

.logo {
  position: absolute;
  left: 5%;
  top: 2em;
  z-index: 5;
  width: 109px;
  height: 65px;
}
@media only screen and (max-width: 780px) {
  .logo {
    width: 70px;
    height: 42px;
    top: 1em;
  }
}
@media only screen and (max-width: 400px) {
  .logo {
    top: 0.2em;
    left: 3%;
  }
}

.mainArea {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3em 3%;
  margin: 0 auto;
  width: 1600px;
  max-width: 100%;
}
.mainArea .bannerBox {
  position: relative;
  width: 50%;
  margin: 0;
}
.mainArea .bannerBox h1 {
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.mainArea .bannerBox img {
  margin: 0 auto;
}
.mainArea .bannerBox .slogan {
  margin-bottom: 1em;
}
.mainArea .bannerBox .subTitle {
  max-width: 720px;
  width: 100%;
}
.mainArea .mainBox {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1400px) {
  .mainArea .bannerBox {
    width: 40%;
  }
  .mainArea .mainBox {
    width: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .mainArea {
    flex-direction: column;
    padding: 3em 3% 0;
  }
  .mainArea .bannerBox {
    width: 100%;
  }
  .mainArea .mainBox {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .mainArea {
    padding: 1em 3% 0;
  }
}

footer {
  padding: 2em 3%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
}
footer .logoFot {
  width: 187px;
  padding-right: 1em;
  padding-top: 0.5em;
}
footer p {
  color: #2e445e;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.5em;
  margin-bottom: 0.5em;
}
footer p b {
  font-weight: 500;
}
footer p b::before {
  content: "|";
  font-weight: 300;
  margin-right: 0.3em;
}
footer p span {
  margin-right: 0.5em;
}
@media only screen and (max-width: 1024px) {
  footer {
    flex-direction: column;
    align-items: center;
    align-content: normal;
  }
  footer .logo {
    margin-bottom: 1em;
  }
  footer p {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */