@charset "UTF-8";
body {
  background-color: #ebebe8;
  width: auto;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  padding: 40px 100px;
}

header .sticky {
  padding: 5px 100px;
  background: #686767;
}

header .backhome {
  position: relative;
}

header .backhome img {
  height: 50px;
}

header ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header ul li {
  position: relative;
  list-style: none;
}

header ul li a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 3px;
  position: relative;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

header ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .3s;
  transition: .3s;
}

header ul li a:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

header ul li a:hover {
  color: #fff;
}

header .icon {
  color: #ebebe8;
  cursor: pointer;
  display: none;
}

header.sticky {
  padding: 10px 100px;
  background: #ebebe8;
}

header.sticky ul li a {
  color: #686767;
  position: relative;
  top: 7px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

header.sticky ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #686767;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: .3s;
  transition: .3s;
}

header.sticky ul li a:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

header.sticky ul li a:hover {
  color: #686767;
}

header.sticky .menu-btn {
  color: #686767;
}

@media (max-width: 767px) {
  body.disableScroll {
    overflow: hidden;
  }
  header ul {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    max-width: 60%;
    background: #9c886e;
    display: block;
    padding: 40px 0;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header ul li {
    margin-top: 2rem;
  }
  header .icon {
    display: block;
  }
  header .icon.hide {
    display: none;
  }
  header ul.active {
    left: 0;
  }
  header.sticky ul.active li a {
    color: #ebebe8;
  }
}

@media (min-width: 768px) and (max-width: 1230px) {
  body.disableScroll {
    overflow: hidden;
  }
  header ul {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    max-width: 60%;
    background: #9c886e;
    display: block;
    padding: 40px 0;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header ul li {
    margin-top: 2rem;
  }
  header .icon {
    display: block;
  }
  header .icon.hide {
    display: none;
  }
  header ul.active {
    left: 0;
  }
  header.sticky ul.active li a {
    color: #ebebe8;
  }
}

#container {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}

#title {
  height: 200px;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
  position: fixed;
  /*絕對位置*/
  left: 50%;
  top: 50%;
  /*從左邊開始算，右推 50% (一半) 的位置*/
  margin-top: -100px;
  /*高度的一半*/
  margin-left: -100px;
}

.content p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #686767;
  margin-top: 40px;
}

.content .text-reveal {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

#logo img {
  height: 100px;
}

#center {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#backpic .carousel-item {
  height: 970px;
}

#backpic .carousel-item img {
  min-height: 970px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.65);
          filter: brightness(0.65);
}

#center_title {
  position: absolute;
  height: 400px;
  width: 370px;
  place-content: center;
  display: -ms-grid;
  display: grid;
  top: 50%;
  left: 50%;
  margin-top: -320px;
  margin-left: -190px;
  z-index: 9999;
}

#center_title span {
  width: 45px;
  text-align: center;
  font-size: 45px;
  margin-top: 40px;
  margin-left: 45%;
  color: #ebebe8;
  cursor: pointer;
}

#logo2 img {
  height: 130px;
  -webkit-filter: contrast(250%);
          filter: contrast(250%);
}

.content1 p {
  margin-top: 40px;
  color: #ebebe8;
  text-align: center;
  font-size: 20px;
  font-family: "微軟正黑體";
  font-weight: bold;
}

#pointer {
  margin-top: 20px;
}

#pointer p {
  text-align: center;
  margin-left: 10px;
  color: #ebebe8;
}

@media (max-width: 767px) {
  #logo2 img {
    height: 92px;
  }
  .content1 p {
    font-size: 17px;
  }
  #center_title span {
    font-size: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #title {
    top: 40%;
  }
  #logo2 img {
    height: 110px;
  }
  .content1 p {
    font-size: 18px;
  }
  #center_title span {
    font-size: 45px;
  }
}

#About {
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 70%;
  left: 20%;
  margin-top: 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2.5rem;
}

#About #about_title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  margin: 50px;
  left: -100px;
}

#About #about_title p {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #9c886e;
}

#About #about_content {
  margin-top: 10px;
  width: 100%;
  height: 100%;
  position: relative;
  display: space-between;
}

#About #about_content #about_text {
  width: 33vw;
  position: relative;
  float: left;
  margin-top: 40px;
}

#About #about_content #about_text p {
  line-height: 30px;
  word-spacing: 6px;
  letter-spacing: 3px;
  color: #686767;
  font-family: 'Noto Sans TC', sans-serif;
}

#About #about_content #about_pic {
  border: 1px solid #686767;
  padding: 5px;
  position: relative;
  margin-top: 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
}

#About #about_content #about_pic img {
  width: 400px;
  float: right;
}

footer {
  position: relative;
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 50rem;
}

footer p {
  position: relative;
  width: 100%;
  font-size: 15px;
  text-align: center;
  color: #949393;
  font-family: 'Noto Sans TC', sans-serif;
}

@media (max-width: 361px) {
  #About #about_content {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #About #about_content #about_text {
    width: 80%;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  #About #about_content #about_pic {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  #About #about_content #about_pic img {
    max-width: 100%;
  }
  footer {
    top: 87rem;
  }
}

@media (min-width: 362px) and (max-width: 767px) {
  #About #about_content {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #About #about_content #about_text {
    width: 80%;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  #About #about_content #about_pic {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  #About #about_content #about_pic img {
    max-width: 100%;
  }
  footer {
    top: 81rem;
  }
}

@media (min-width: 768px) and (max-width: 1230px) {
  #About #about_content {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #About #about_content #about_text {
    width: 80%;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  #About #about_content #about_text p {
    margin-bottom: 3rem;
  }
  #About #about_content #about_pic {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 1px;
  }
  #About #about_content #about_pic img {
    max-width: 100%;
  }
  footer {
    top: 66rem;
  }
}
/*# sourceMappingURL=index.css.map */