@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Noto+Sans+TC:wght@100;400;700&display=swap");
@keyframes light {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(6);
  }
}
@keyframes floatS {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes float {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes floatShadow {
  0% {
    opacity: 0.8;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
body {
  font-family: "Lato", "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  font-size: 16px;
  padding: 3em;
  position: relative;
}
body .border_x,
body .border_y {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
body .border_x::before, body .border_x::after,
body .border_y::before,
body .border_y::after {
  content: "";
  position: absolute;
  background-color: #c9964e;
}
body .border_x::before, body .border_x::after {
  left: 0;
  width: 100%;
  height: 1px;
}
body .border_x::before {
  top: 3em;
}
body .border_x::after {
  bottom: 3em;
}
body .border_y::before, body .border_y::after {
  top: 0;
  width: 1px;
  height: 100%;
}
body .border_y::before {
  left: 3em;
}
body .border_y::after {
  right: 3em;
}

a {
  color: inherit;
}

.g_header .header_menu {
  padding: 0;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_item {
  font-size: 1.125em;
  line-height: 32px;
}
.g_header .nav_item.sns_link {
  line-height: 28px;
  padding: 10px 0.5rem;
}
.g_header .nav-link:hover {
  color: #c9964e;
}

.sc_title {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  line-height: 1;
}
.sc_title .tit {
  display: inline-block;
  border: 1px solid #c9964e;
  padding: 1rem 1.5rem;
  background-color: #fff;
}
.sc_title .tit .zh {
  font-size: 3em;
  font-weight: 100;
  transform: skewX(-6deg);
}

.main_content {
  position: relative;
  z-index: 2;
  padding: 3em;
  padding-bottom: 0;
  background: url("img/bg_patten_2.svg") center/90px 90px;
}
.main_content .container {
  padding: 0;
}

.cta {
  font-size: 0;
}
.cta .bttn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.cta .bttn div {
  position: relative;
  z-index: 2;
  border: 1px solid #c9964e;
  padding: 0.75em 1.5em;
  font-size: 1.25rem;
  line-height: 1.1;
}
.cta .bttn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid #c9964e;
  opacity: 0;
  background-color: #fff;
  transition-property: top, left, opacity;
  transition-duration: 240ms;
}
.cta .bttn.carry div {
  background-color: #c9964e;
  color: #fff;
}
.cta .bttn.sub {
  margin-left: 1rem;
}
.cta .bttn.sub div {
  background-color: #fff;
  color: #c9964e;
}
.cta .bttn:hover::after {
  left: 0.5rem;
  top: 0.5rem;
  opacity: 1;
}

.sc_basic .wording_wrap {
  padding-left: 2rem;
  font-size: 1.25em;
}
.sc_basic .wording_wrap .tit {
  line-height: 1.2;
  font-weight: 700;
}
.sc_basic .wording_wrap .tit .t1 {
  font-size: 3em;
}
.sc_basic .wording_wrap .tit .t2 {
  font-size: 2em;
  color: #c9964e;
  letter-spacing: 0.1em;
}
.sc_basic .wording_wrap .tit .t2 span {
  position: relative;
}
.sc_basic .wording_wrap .tit .t2 span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-radius: 4px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background-color: #dcdddd;
}
.sc_basic .wording_wrap .list {
  margin: 1em 0;
  padding-left: 0;
  list-style-type: none;
}
.sc_basic .wording_wrap .list li {
  padding: 0.15em 0;
  line-height: 1.2;
}
.sc_basic .wording_wrap .list li.spec {
  font-size: 1.5rem;
  font-weight: 700;
}
.sc_basic .wording_wrap .price {
  margin-top: 2rem;
}
.sc_basic .wording_wrap .price div {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.sc_basic .wording_wrap .price .usual {
  margin-right: 1rem;
}
.sc_basic .wording_wrap .spec_sty {
  color: #c9964e;
  font-size: 1.33em;
}
.sc_basic .wording_wrap .time_offer {
  margin-top: 6px;
  line-height: 1.1;
}
.sc_basic .wording_wrap .cta {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.sc_recomm .sc_title {
  position: relative;
  z-index: 1;
}
.sc_recomm .recomm_content {
  position: relative;
  border: 1px solid #c9964e;
  margin: 0 auto;
  margin-top: -2rem;
  padding: 5rem 4rem;
  max-width: 61rem;
  background-color: #fff;
}
.sc_recomm .parag {
  font-size: 1.2rem;
}
.sc_recomm .parag p:last-child {
  margin-bottom: 0;
}
.sc_recomm .parag .sub_link {
  margin-top: 2rem;
  display: block;
  font-size: 1.25rem;
  color: #c9964e;
  text-decoration: underline;
}
.sc_recomm .parag .sub_link:hover {
  color: #886129;
}
.sc_recomm .cta {
  position: absolute;
  right: 1rem;
  top: calc(100% - 2rem);
  text-align: right;
}

.sc_famous .famous_content {
  margin-top: -2rem;
  font-size: 0;
}
.sc_famous .fam_item {
  border: 1px solid #c9964e;
  margin: 0 auto;
  margin-top: -2rem;
  padding: 5rem 4rem;
  max-width: 61rem;
  background-color: #fff;
  margin: 0 0.5rem;
  max-width: 30rem;
}
.sc_famous .fam_item .tit {
  font-size: 1.125rem;
  color: #898989;
}
.sc_famous .fam_item .name {
  font-size: 1.5rem;
  color: #c9964e;
}
.sc_famous .fam_item .info {
  margin-top: 0.25rem;
  font-size: 1.125rem;
}

.sc_writer .writer_content {
  border: 1px solid #c9964e;
  margin: 0 auto;
  margin-top: -2rem;
  padding: 5rem 4rem;
  max-width: 61rem;
  background-color: #fff;
}
.sc_writer .writer_content .img {
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3em;
  margin-right: 30px;
  max-width: 320px;
}
.sc_writer .writer_content .name {
  font-size: 2em;
  color: #c9964e;
  line-height: 1;
  margin-bottom: 1rem;
}
.sc_writer .writer_content p:last-child {
  margin-bottom: 0;
}

.sc_other .other_content {
  margin-top: -2rem;
}
.sc_other .other_content .item {
  display: block;
  border: 1px solid #c9964e;
  margin: 0 auto;
  margin-top: -2rem;
  padding: 5rem 4rem;
  max-width: 61rem;
  background-color: #fff;
  max-width: 20rem;
  margin: 0;
  padding: 5rem 3rem;
  color: #c9964e;
}
.sc_other .other_content .item .img {
  margin-top: 0.25rem;
}
.sc_other .other_content .item .img img {
  transition: transform 240ms;
}
.sc_other .other_content .item .tit {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.3;
}
.sc_other .other_content .item:nth-child(2) {
  margin: 0 0.5rem;
}
.sc_other .other_content .item:hover img {
  transform: scale(0.96);
}

.modal-dialog {
  max-width: 36rem;
}

.modal-content {
  border-width: 0;
  background-color: transparent;
}

.modal-header {
  border-bottom-width: 0;
}
.modal-header button.close {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 0 #c9964e;
  opacity: 1;
}

.modal-body {
  margin: 0.25em 0;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.modal-body .h3 {
  margin-bottom: 1em;
}
.modal-body .sec_tit {
  max-width: 18em;
  margin-top: 1rem;
  padding-bottom: 4px;
  border-bottom: 1px solid #c9964e;
}
.modal-body ol {
  list-style-type: none;
}
.modal-body .lv1 {
  padding-left: 0;
}
.modal-body .lv2 {
  padding-left: 0.75rem;
}
.modal-body .lv3 {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.modal-body p {
  line-height: 1.6;
}

.sc_contact {
  padding: 1.5em 0 1em;
}
.sc_contact .item span {
  color: #c9964e;
}

.g_footer {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 9;
  padding: 1em;
  color: #c9964e;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .g_header .header_menu {
    position: relative;
  }
  .g_header .header_menu::after {
    content: "";
    position: absolute;
    left: 0;
    top: -200%;
    z-index: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0));
    transition: top 200ms;
  }
  .g_header.is_active .header_menu::after {
    top: 0;
  }
}
@media (max-width: 767px) {
  body {
    padding: 1.5rem;
  }
  body .border_x::before {
    top: 1.5rem;
  }
  body .border_x::after {
    bottom: 1.5rem;
  }
  body .border_y::before {
    left: 1.5rem;
  }
  body .border_y::after {
    right: 1.5rem;
  }

  .g_header .nav_item {
    background-color: #fff;
  }
  .g_header .nav_item:nth-child(2n) {
    background-color: #f1eae0;
  }

  .menu_trigger {
    position: relative;
    z-index: 4;
    top: 0;
  }
  .menu_trigger .navbar-toggler {
    padding: 0.5rem;
    border-radius: 0;
    background-color: #c9964e;
  }
  .menu_trigger .navbar-toggler .navbar-toggler-icon {
    background-image: url("img/menu_lines.svg");
  }

  .nav_area {
    margin-top: -48px;
    padding-left: 48px;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .sc_title .tit {
    margin-left: -1rem;
    padding: 1rem;
  }
  .sc_title .tit .zh {
    font-size: 1.8em;
    transform: skewX(0);
  }

  .cta .bttn {
    display: block;
    text-align: center;
  }
  .cta .bttn.sub {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .cta .bttn div {
    font-size: 1rem;
  }

  .main_content {
    padding: 2em;
  }

  .sc_basic .wording_wrap {
    padding-left: 0;
    padding-top: 1em;
    font-size: 1em;
  }
  .sc_basic .wording_wrap .tit .t1 {
    font-size: 2em;
  }
  .sc_basic .wording_wrap .tit .t2 {
    font-size: 1.75em;
    line-height: 1.1;
    letter-spacing: normal;
  }
  .sc_basic .wording_wrap .price {
    margin-top: 1.5rem;
  }
  .sc_basic .wording_wrap .cta {
    margin-top: 1.5rem;
  }

  .sc_recomm .recomm_content {
    padding: 0;
    background-color: transparent;
    border-width: 0;
  }
  .sc_recomm .parag .sub_link {
    margin-top: 1rem;
  }
  .sc_recomm .cta {
    position: static;
    margin-top: 1rem;
  }

  .sc_famous .fam_item {
    margin: 0;
    padding: 1.5rem;
  }
  .sc_famous .fam_item:first-child {
    padding-top: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .sc_famous .fam_item .tit,
  .sc_famous .fam_item .info {
    font-size: 1rem;
  }

  .sc_writer .writer_content {
    margin-top: 1rem;
    padding: 0;
    border: 0;
    background-color: transparent;
  }
  .sc_writer .writer_content .img {
    margin-right: 0;
  }
  .sc_writer .writer_content .wording {
    margin-top: 1rem;
  }

  .sc_other .other_content .item {
    padding: 1.5rem;
  }
  .sc_other .other_content .item:first-child {
    padding-top: 2.5rem;
  }
  .sc_other .other_content .item:nth-child(2) {
    margin: 0.5rem 0;
  }
}