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

::selection {
  background-color: #69513f;
  color: #fff;
}

::-moz-selection {
  background-color: #69513f;
  color: #fff;
}

body {
  background-color: #ebe3d5;
  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: #4e3113;
  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/bg.jpg");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 100%;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .outerWrap {
    background-repeat: repeat-y;
    background-position: left top;
    background-size: 100% auto;
  }
}

.bannerArea {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 45%;
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  background-image: url("../images/banner.jpg");
}
.bannerArea h1 {
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.bannerArea .banner_mob {
  width: 100%;
  display: none;
}
.bannerArea .logo {
  width: 267px;
  max-width: 100%;
  position: absolute;
  z-index: 1;
  left: 0.5em;
  top: 0.5em;
}
@media only screen and (max-width: 1460px) {
  .bannerArea {
    width: 50%;
  }
}
@media only screen and (max-width: 1280px) {
  .bannerArea {
    width: 40%;
  }
}
@media only screen and (max-width: 1024px) {
  .bannerArea {
    position: initial;
    width: 100%;
    background: none;
    height: auto;
  }
  .bannerArea .banner_mob {
    display: block;
  }
  .bannerArea .logo {
    width: 26%;
  }
}

.mainArea {
  width: 55%;
}
@media only screen and (max-width: 1600px) {
  .mainArea {
    width: 50%;
  }
}
@media only screen and (max-width: 1280px) {
  .mainArea {
    width: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .mainArea {
    width: 100%;
  }
}

.topBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .topBox {
    padding: 1em 3%;
  }
}
@media only screen and (max-width: 640px) {
  .topBox {
    flex-direction: column;
    padding: 1em 3%;
  }
}

/*language*/
.language {
  margin-left: 3%;
  border: 1px solid #351e05;
  height: 46px;
  border-radius: 23px;
  padding: 2px;
  display: flex;
}
.language a {
  color: #351e05;
  height: 100%;
  border-radius: 20px;
  padding: 0 1em;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.language a:hover {
  background-color: #ecd8c1;
}
.language a.current {
  background-color: #a12716;
  color: #fff;
}
@media only screen and (max-width: 1600px) {
  .language {
    height: 40px;
    border-radius: 20px;
  }
  .language a {
    font-size: 18px;
    border-radius: 18px;
    padding: 0 0.6em;
  }
}
@media only screen and (max-width: 1024px) {
  .language {
    margin-left: 0;
  }
}
@media only screen and (max-width: 640px) {
  .language {
    margin-bottom: 1em;
  }
}

/*btnBox*/
.btnBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 73px;
}
.btnBox i {
  width: 28px;
  height: 28px;
  margin-right: 0.2em;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  transition: all 0.5s;
}
.btnBox i.iHeart {
  background-image: url("../images/iHeart.svg");
}
.btnBox i.iBook {
  background-image: url("../images/iBook.svg");
}
.btnBox i.iDownload {
  background-image: url("../images/iDownload.svg");
}
.btnBox a {
  display: flex;
  color: #fff;
  font-size: 22px;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  font-weight: 500;
  transition: all 0.5s;
}
.btnBox a:first-of-type {
  border-bottom-left-radius: 20px;
}
.btnBox a:hover {
  opacity: 0.9;
}
.btnBox a:hover i {
  transform: scale(1.1);
}
.btnBox a.bgBr {
  background-color: #4e3113;
}
.btnBox a.bgLightBr {
  background-color: #69513f;
}
.btnBox a.bgR {
  background-color: #a22816;
}
@media only screen and (max-width: 1600px) {
  .btnBox {
    height: 60px;
  }
  .btnBox i {
    width: 24px;
    height: 24px;
  }
  .btnBox a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .btnBox {
    height: 50px;
  }
  .btnBox a, .btnBox a:first-of-type {
    border-radius: 25px;
    margin: 0 0.2em;
  }
}
@media only screen and (max-width: 640px) {
  .btnBox {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .btnBox a, .btnBox a:first-of-type {
    width: 80%;
    margin-bottom: 0.5em;
    height: 50px;
  }
}

/*itemBox*/
.itemBox {
  padding: 2em 3%;
}
.itemBox .item {
  display: flex;
  margin-bottom: 2em;
}
.itemBox .item h4 {
  width: 100px;
  font-size: 24px;
  font-weight: 500;
  color: #4e3113;
  border-right: 1px solid #78685d;
}
.itemBox .item h4::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #a22816;
  display: inline-block;
  transform: translateY(-2px);
  margin-right: 0.2em;
}
.itemBox .item p {
  width: calc(100% - 100px);
  padding-left: 16px;
}
.itemBox .item .txt {
  display: flex;
  width: calc(100% - 100px);
}
.itemBox .item .txt p {
  width: 50%;
}
@media only screen and (max-width: 640px) {
  .itemBox .item {
    flex-direction: column;
  }
  .itemBox .item h4 {
    border-right: none;
    margin-bottom: 0.5em;
  }
  .itemBox .item p {
    width: 100%;
  }
  .itemBox .item .txt {
    flex-direction: column;
    width: 100%;
  }
  .itemBox .item .txt p {
    width: 100%;
  }
}

.contactInfo {
  border-radius: 20px;
  border: 1px solid #4e3113;
  padding: 2em 3% 2em calc(40px + 3%);
  margin: 0 3%;
  position: relative;
}
.contactInfo .title {
  background-color: #4e3113;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 500;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
  padding: 1em 0;
}
.contactInfo h5 {
  color: #4e3113;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 1em;
  width: 100%;
}
.contactInfo .txtBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.contactInfo .txtBox .infoBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contactInfo .txtBox .infoBox p {
  width: 50%;
  min-width: 330px;
  padding-right: 1em;
  display: flex;
  color: #4e3113;
  font-size: 16px;
}
.contactInfo .txtBox .infoBox p b {
  min-width: 40px;
  padding-right: 0.5em;
  font-weight: 700;
}
.contactInfo .txtBox .infoBox p b.wM {
  min-width: 70px;
}
.contactInfo .txtBox .infoBox p b.wL {
  min-width: 100px;
}
.contactInfo .txtBox .infoBox p a {
  font-size: 16px;
}
.contactInfo .txtBox .infoBox p a:hover {
  text-decoration: underline;
}
.contactInfo .txtBox .infoBox p.wFull {
  width: 100%;
}
@media only screen and (max-width: 1560px) {
  .contactInfo .txtBox .infoBox p b, .contactInfo .txtBox .infoBox p b.wM {
    min-width: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .contactInfo .txtBox .infoBox p b, .contactInfo .txtBox .infoBox p b.wM {
    min-width: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .contactInfo .txtBox .infoBox p b, .contactInfo .txtBox .infoBox p b.wM {
    min-width: 100px;
  }
}
@media only screen and (max-width: 640px) {
  .contactInfo {
    padding: 3em 0 0;
    margin: 0 3%;
    width: 94%;
  }
  .contactInfo .title {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 120px;
    height: 40px;
    padding: 0.2em;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .contactInfo h5 {
    padding: 0.2em 3%;
    text-align: center;
    border-bottom: 2px solid #78685d;
    font-size: 26px;
    margin-bottom: 0.2em;
  }
  .contactInfo .txtBox .infoBox {
    width: 100%;
    padding-right: 0;
  }
  .contactInfo .txtBox .infoBox p {
    margin-bottom: 0.5em;
    border-bottom: 1px solid #78685d;
    padding: 0 3% 0.5em;
    width: 100%;
    min-width: auto;
  }
  .contactInfo .txtBox .infoBox p b {
    display: block;
  }
  .contactInfo .txtBox .infoBox p:last-of-type {
    border-bottom: none;
  }
}
@media only screen and (max-width: 400px) {
  .contactInfo .txtBox .infoBox p {
    flex-direction: column;
  }
}

.cop {
  padding: 1em 3%;
  font-size: 14px;
  color: #897049;
}

.outerWrap.en .itemBox .item h4 {
  font-size: 20px;
  width: 180px;
  padding-right: 16px;
}
.outerWrap.en .itemBox .item p {
  width: calc(100% - 180px);
  font-size: 18px;
}
.outerWrap.en .itemBox .item .txt {
  flex-direction: column;
  width: calc(100% - 180px);
}
.outerWrap.en .itemBox .item .txt p {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .outerWrap.en .itemBox .item h4 {
    width: 100%;
  }
  .outerWrap.en .itemBox .item p {
    width: 100%;
  }
  .outerWrap.en .itemBox .item .txt {
    width: 100%;
  }
}
.outerWrap.en .contactInfo {
  padding: 3em 3% 2em;
}
.outerWrap.en .contactInfo .title {
  top: 0;
  left: 3%;
  transform: translateX(0) translateY(0);
  width: 120px;
  height: 40px;
  padding: 0.2em;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media only screen and (max-width: 640px) {
  .outerWrap.en .contactInfo {
    padding: 3em 0 0;
    margin: 0 3%;
    width: 94%;
  }
  .outerWrap.en .contactInfo .title {
    left: 50%;
    transform: translateX(-50%) translateY(0);
  }
  .outerWrap.en .contactInfo .txtBox li {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */