@import url("../fonts/flaticon/flaticon.css");
@import url("revise.css");

/*========================================================
                         基本設定
=========================================================*/

body {
  font-family: "微軟正黑體", Arial, Verdana, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 32px;
  font-size: 1rem;
  color: #111;
  overflow-x: hidden;
  /* background: url("../img/bg.jpg?ver=4") no-repeat center center / cover; */
  background-image: linear-gradient(
    to bottom,
    #eeeeee,
    #f0eef1,
    #f4eff1,
    #f9eff0,
    #fdefed,
    #fff0eb,
    #fff1e8,
    #fff2e6,
    #fff3e5,
    #fff4e3,
    #fff6e2,
    #fff7e1
  );

  background-image: linear-gradient(
    to top,
    #eeeeee,
    #f5eff3,
    #ffeff0,
    #fff1e7,
    #fff7e1
  );
}

.container img {
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.36);
}

img {
  width: 100%;
}
iframe {
  margin-top: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #191919;
  color: #ff8c53;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  z-index: 99;
  opacity: 0;
  transition: 0.5s;
}
.affix {
  display: block;
  padding: 0;
  background-color: #191919;
}
header .nav_wrap {
  width: 90%;
  margin: auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img {
  height: 25px;
  width: auto;
  margin-right: 10px;
}
header nav {
  width: auto;
}
header nav a {
  margin: 0 10px;
  color: #ff8c53;
}
header nav a:hover {
  color: #ffceb5;
}

/* 手機nav */
.menu {
  transition: 0.1s transform linear;
  position: relative;
  background: 0;
  margin-right: 0px;
  height: 1.6rem;
  width: 2.4rem;
  z-index: 1;
  outline: 0;
  padding: 0;
  border: 0;
  display: none;
}

.menu:focus {
  outline: none;
}

.bar,
.bar::before,
.bar::after {
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s,
    0.2s transform linear;
  position: absolute;
  background: #fefefe;
  margin: auto;
  width: 100%;
  height: 0.1rem;
  content: "";
  top: 50%;
  left: 0;
}

.bar {
  margin-top: -0.2rem;
}

.menu_txt {
  display: inline-block;
  color: #fefefe;
  font-size: 0.6rem;
  margin-top: 20px;
}

.bar::before {
  top: -0.4rem;
}

.bar::after {
  top: 0.4rem;
}

.bar::before,
.bar::after {
  transform: rotate(0deg);
}

.active .bar {
  background: 0;
}

.active .bar::before {
  transform: rotate(25deg);
}

.active .bar::after {
  transform: rotate(-25deg);
}

.active .bar::before,
.active .bar::after {
  top: 0;
}

.active .bar,
.active .bar::before,
.active .bar::after {
  transition: 0.2s background linear 0.1s, 0.2s top linear,
    0.2s transform linear 0.2s;
}

.nav {
  width: 250px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  transform: translateX(-251px);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  padding-top: 6.2rem;
  z-index: 6;
  display: none;
}

.menu-open .nav {
  transform: translateX(0);
}

.nav ul {
  margin: 0;
  list-style: none;
  /* padding: 0; */
  padding-left: 20px;
  color: #fefefe;
}

.nav ul li {
  padding: 20px;
  padding-right: 40px;
  font-size: 1.2rem;
  /* font-weight: bold; */
}

.nav li a {
  color: #fefefe;
}

.nav li a:hover {
  color: #ffff00;
}

@media (max-width: 768px) {
  .menu {
    display: block;
  }
  .nav {
    width: 100%;
    transform: translateX(-100%);
    background: rgba(32, 32, 32, 0.9);
    display: block;
  }

  .icon_wrap a {
    color: #fefefe;
    padding: 0 5px;
  }

  .menu {
    margin-top: 5px;
    width: 2rem;
  }

  .menu_txt {
    display: none;
  }

  .nav ul {
    padding-left: 0;
  }

  .nav ul li {
    text-align: right;
  }
}

/* 回頂端按鈕 */
#scrollUp {
  display: none !important;
}

/* 立即預約按鈕 */
.form_btn {
  line-height: 20px;
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 50;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e04900;
  border: 4px solid #b34007;
  box-shadow: 0px 15px 10px -8px rgba(0, 0, 0, 0.55);
  color: #eee;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  /* opacity: 0; */
  /* animation: float 3s ease-out infinite; */
}

.form_btn.btn2 {
  bottom: 15%;
}
.form_btn.btn3 {
  bottom: 25%;
}
.form_btn.btn4 {
  bottom: 35%;
}

@media (min-width: 768px) {
  .form_btn:hover {
    background-color: #ff7936;
    color: #191919;
  }
}
@media (max-width: 768px) {
  header .nav_wrap {
    /* justify-content: center; */
  }
  header nav {
    display: none;
  }
  .form_btn {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
  }
  .form_btn:focus {
    color: #eee;
  }
}
@keyframes float {
  50% {
    transform: translate(0, 5px);
  }
}

/*========================================================
                         區塊1
=========================================================*/

.section-1 {
  position: relative;
}
.section-1 > div {
  background: url("../img/section1-bg.png") no-repeat left center / cover;
  width: 25%;
  height: 100%;
  position: absolute;
  right: 10%;
  top: 0;
}
.section-1 > div img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 60%;
}
@media (min-width: 640px) {
  .section-1 div img {
    width: 50%;
  }
}

/*========================================================
                         區塊2
=========================================================*/

.section-2 {
  margin: 7% 0;
}

/*========================================================
                         區塊3 經濟/菁英/豪華/max
=========================================================*/

.section-3 {
  margin: 10% 0 4%;
}

/*========================================================
                           表格
=========================================================*/

.table-box1 {
  border: 1px solid #797979;
  padding: 2%;
}
.table-box2 {
  border: 10px solid #e04900;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 5%;
}
.table1 {
  border-collapse: collapse;
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}
.table1 th {
  font-weight: bold;
  padding: 5px 5px !important;
  text-align: center;
  border-top: 0 !important;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #f16d10;
}
.table1 th:last-of-type {
  border-right: none;
}
.table1 td {
  padding: 5px 5px !important;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.table1 td:last-of-type {
  border-right: none;
}
.table1 tr:last-of-type td {
  border-bottom: none;
}
.table1 tr.subtitle td {
  background-color: #c8dae7;
  font-weight: bold;
}

@media (min-width: 768px) {
  .table1 {
    font-size: 1.2rem;
  }
  .table1 th {
    padding: 10px !important;
  }
  .table1 td {
    padding: 10px !important;
  }
}

/*========================================================
                         區塊9
=========================================================*/

.section-9 {
  margin-bottom: 100px;
}
.section-9 h2 {
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
}

.section-9 .vr_btn {
  margin-top: 20px;
  text-align: center;
}

.section-9 .vr_btn a {
  display: inline-block;
  padding: 10px 30px;
  width: 100%;
  color: #fffbf3;
  background-color: #c24d44;
  border: 3px solid #c24d44;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.section-9 .vr_btn a:hover {
  border: 3px solid #ed9c5f;
  background-color: #fffbf3;
  color: #c24d44;
}

@media (min-width: 992px) {
  .section-9 h2 {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .section-9 h2 {
    font-size: 1.6rem;
  }
}

/*========================================================
                         表單
=========================================================*/

.footer {
  margin: auto;
  padding: 100px 0 40px;
  /* background-color: #191919ee; */
  background-color: #eee;
  border-top: 10px solid #e04900;
  color: #eee;
  color: #191919;
}

.footer .slogan {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 40px;
  color: #e04900;
  font-weight: bold;
}

.footer .ti2 {
  font-size: 1.6rem;
  margin: auto;
  text-align: left;
  margin-bottom: 20px;
  font-weight: bold;
  max-width: 800px;
}

.footer .ti2 span {
  position: relative;
}

.footer .ti2 span::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 115%;
  height: 5px;
  background-color: #ff7936;
}

.form_wrap {
  text-align: center;
  margin: auto;
}

.form_wrap form div {
  margin: 20px 0;
}

.form_wrap input:not([type="checkbox"]),
.form_wrap select {
  width: 100%;
  max-width: 800px;
  margin: auto;
  height: 45px;
  border-radius: 5px;
  font-weight: bold;
  color: #191919;
}

.form_wrap input::placeholder,
.form_wrap select::placeholder {
  color: #191919;
}

.form_wrap form .form_info {
  margin: auto;
  max-width: 800px;
  width: 100%;
  margin-bottom: 20px;
  color: #191919;
  text-align: left;
  font-size: 0.8rem;
}

.form_wrap form .form_info p {
  margin-top: 5px;
  margin-bottom: 0;
  text-align: justify;
  display: flex;
  flex-direction: column;
  line-height: 20px;
}

label[for="agree_personal_information"] {
  cursor: pointer;
  font-weight: bold;
}

.form_wrap form input[name="senddata"] {
  width: 100%;
  max-width: 800px;
  padding: 10px;
  border-radius: 5px;
  background-color: #e04900;
  outline: none;
  border: none;
  color: #eee;
  transition: 0.3s;
  cursor: pointer;
}

form input[name="senddata"]:hover {
  background-color: #ff7936;
}

.footer_info {
  margin: auto;
  margin-top: 60px;
  width: 100%;
  max-width: 800px;
  font-weight: bold;
}

.footer_info .ti2 {
  margin-bottom: 30px;
}

.footer_info .company_title {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.footer_info .company_title img {
  height: 30px;
  width: auto;
  margin-right: 5px;
}

.footer_info i,
.footer_info svg {
  margin-right: 10px;
}

.footer_info a {
  color: #e04900;
}

@media (max-width: 768px) {
  .contact-form {
    width: 95%;
    margin: auto;
  }

  .footer {
    padding-top: 60px;
  }

  .footer .slogan {
    text-align: justify;
    font-size: 1.3rem;
    margin-bottom: 60px;
  }

  .footer .ti2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .form_wrap {
    text-align: left;
  }
}
