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

::selection {
  background-color: #6b1217;
  color: #fff;
}

::-moz-selection {
  background-color: #6b1217;
  color: #fff;
}

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

h1, h2, h3, h4, h5, h6, p, a, button {
  font-family: "Noto Serif 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: #000;
  font-size: 22px;
  line-height: 1.6em;
  font-weight: 500;
}

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

.outerWrap {
  width: 100%;
  overflow: hidden;
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  background-attachment: fixed;
  background-color: #fcf6eb;
  position: relative;
}

/*-- icon --*/
.iDownload {
  width: 23px;
  height: 23px;
  background-image: url("../images/iDownload.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}

.bannerBox {
  position: relative;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
  margin: 0;
}
.bannerBox h1 {
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.bannerBox img {
  width: 100%;
}
.bannerBox .mob {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .bannerBox {
    width: 94%;
  }
}
@media only screen and (max-width: 680px) {
  .bannerBox {
    width: 100%;
  }
  .bannerBox .mob {
    display: block;
  }
  .bannerBox .web {
    display: none;
  }
}

.mainArea {
  position: relative;
  padding: 0;
  width: 100%;
  margin-top: -6em;
}
@media only screen and (max-width: 1300px) {
  .mainArea {
    margin-top: -2em;
  }
}
@media only screen and (max-width: 400px) {
  .mainArea {
    margin-top: 0;
  }
}
.mainArea .content {
  position: relative;
  z-index: 2;
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
}
.mainArea .content .bgTxt {
  max-width: 263px;
  width: 25%;
  padding: 0 3%;
}
@media only screen and (max-width: 680px) {
  .mainArea .content .bgTxt {
    display: none;
  }
}
.mainArea {
  /*itemBox*/
}
.mainArea .itemBox {
  width: 75%;
  padding: 3em 3% 3em 0;
  overflow: hidden;
}
.mainArea .itemBox .btn {
  position: relative;
  left: 50%;
  bottom: 3%;
  width: 270px;
  height: 60px;
  text-align: center;
  border-radius: 6px;
  max-width: 80%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  transition: all 0.5s;
  border: 2px solid #6b1217;
}
.mainArea .itemBox .btn p {
  font-size: 30px;
  font-weight: 700;
  color: #6b1217;
}
.mainArea .itemBox .btn i {
  margin-left: 0.2em;
  width: 28px;
  height: 28px;
}
.mainArea .itemBox .btn::before, .mainArea .itemBox .btn::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #6b1217;
}
.mainArea .itemBox .btn::before {
  left: -100%;
}
.mainArea .itemBox .btn::after {
  display: none;
}
.mainArea .itemBox .btn:hover {
  background-color: #6b1217;
}
.mainArea .itemBox .btn:hover p {
  color: #fff;
}
.mainArea .itemBox .btn:hover i {
  filter: brightness(0) invert(1);
}
.mainArea .itemBox .item {
  margin-bottom: 1.5em;
}
.mainArea .itemBox .item h3 {
  margin-bottom: 0.1em;
  color: #e9e1d7;
  font-size: 26px;
  display: inline-block;
  padding: 0 0.5em;
  background-color: #6b1217;
  border-radius: 4px;
}
.mainArea .itemBox .item .txt {
  width: 100%;
  padding-top: 0.2em;
}
.mainArea .itemBox .item p {
  margin-bottom: 0.4em;
}
.mainArea .itemBox .item p b {
  margin-right: 0.5em;
}
.mainArea .itemBox .item p .tR {
  color: #941920;
}
@media only screen and (max-width: 680px) {
  .mainArea .itemBox {
    width: 100%;
    padding: 4em 3% 2em;
  }
  .mainArea .itemBox .btn::before, .mainArea .itemBox .btn::after {
    display: none;
  }
  .mainArea .itemBox .item h3 {
    font-size: 22px;
  }
  .mainArea .itemBox .item p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 400px) {
  .mainArea .itemBox .btn {
    height: 50px;
  }
  .mainArea .itemBox .btn i {
    width: 24px;
    height: 24px;
  }
  .mainArea .itemBox .btn p {
    font-size: 24px;
  }
}

footer {
  background-color: #6b1217;
  padding: 3em 3%;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  /*contact*/
}
footer .contact {
  display: flex;
  width: calc(100% - 420px);
}
footer .contact p, footer .contact a {
  color: #e9e1d7;
  font-size: 18px;
}
footer .contact a:hover {
  text-decoration: underline;
}
footer .contact h3 {
  margin-bottom: 0.1em;
  color: #e9e1d7;
  font-size: 26px;
  display: inline-block;
  padding: 0 0.5em;
  white-space: nowrap;
}
footer .contact .txt {
  width: 100%;
  padding: 0 1em;
  border-left: 1px solid rgba(233, 225, 215, 0.5);
}
footer .cop {
  padding-top: 1em;
  width: 420px;
}
footer .cop p {
  color: #e9e1d7;
  font-size: 16px;
}
@media only screen and (max-width: 960px) {
  footer {
    align-items: normal;
    justify-content: space-around;
  }
  footer .contact, footer .cop {
    width: 100%;
  }
}
@media only screen and (max-width: 560px) {
  footer {
    padding: 1.5em 3%;
  }
  footer .contact p, footer .contact a {
    font-size: 14px;
  }
  footer .contact h3 {
    font-size: 22px;
  }
  footer .cop p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 400px) {
  footer .contact {
    flex-direction: column;
  }
  footer .contact h3 {
    padding: 0;
  }
  footer .contact .txt {
    padding: 1em 0;
    border-left: none;
  }
}/*# sourceMappingURL=style.css.map */