:root {
  --primary-color: #604d3f;
  --secondary-color: #caa980;
}

html,
body {
  position: relative;
  font-size: 16px;
}

body {
  background: #fff;
  color: #fff;
  margin: 0;
  padding: 0;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3f5322;
  z-index: -1;
}

.floating {
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 9999;
}
.floating li a {
  display: flex;
  padding: 15px 13px 10px;
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  transition: all ease 0.5s;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2em;
  filter: brightness(1);
  text-decoration: none;
}
.floating li a:hover,
.floating li a:active,
.floating li a:focus {
  filter: brightness(1.2);
  text-decoration: none;
}
.floating li.order a {
  background: url(../images/floating.png) center no-repeat;
  background-size: 100%;
  width: 110px;
  height: 110px;
}
.floating li.fb a {
  background: url(../images/button_fb.png) center no-repeat;
  background-size: 100%;
  width: 105px;
  height: 105px;
  margin-left: 3px;
}
.floating li.line a {
  background: url(../images/button_line.png) center no-repeat;
  background-size: 100%;
  width: 105px;
  height: 105px;
  margin-left: 3px;
}

.mobile-button {
  display: none;
} /*# sourceMappingURL=style.css.map */

/*========================================================
                         預約賞屋
=========================================================*/
.form-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5% auto;
  color: #604d3f;
}
.form-text p {
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 1.2px;
  transform: scaleX(1.02);
  transform-origin: center;
  margin: 5% 0 0 0;
}
.logo {
  position: relative;
  width: 100%;
  background-color: #604d3f;
  -webkit-mask: url("../images/logo.svg") no-repeat center;
  mask: url("../images/logo.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  overflow: hidden;
}
.logo img {
  display: block;
  opacity: 0;
}

input,
select {
  background-color: #fff;
  border-radius: unset;
  color: #000;
  outline-color: #c79a45;
  border: 1px solid #c5c2c2;
  padding-left: 15px;
  opacity: 0.9;
}
input[type="text"],
input[type="phone"],
select {
  height: 45px;
  width: 100%;
}
select {
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 24px auto;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
}
.reservation {
  background-color: #d8d8d8;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.reservation .box {
  max-width: 800px;
  width: 90%;
}
.reservation .input-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
#myform {
  text-align: center;
}
/* 所有欄位預設一列寬 */
.reservation .input-block input,
.reservation .input-block select {
  flex: 1 1 100%;
}
.reservation .form_check_txt {
  color: #604d3f;
  font-size: 14px;
  margin-left: 3px;
  line-height: 1.8;
}
.reservation .form_check_txt a {
  text-decoration: none;
  color: #604d3f;
}
.reservation .reg_btn {
  width: 100%;
  background-color: #604d3f;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: none;
  margin-top: 20px;
  padding: 10px 20px;
  line-height: normal;
}
.reservation .reg_disabled {
  cursor: no-drop;
  opacity: 0.6;
}
.reservation .reg_btn:hover {
  background-color: rgb(222 183 116 / 90%);
  color: #565555;
  opacity: 1;
}
.reservation .reg_btn:focus {
  outline: unset;
}
.reservation .reg_disabled:hover {
  background-color: rgb(222 183 116 / 90%);
  opacity: 0.6;
}
.reservation .msgerror {
  color: rgb(130 34 30);
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.input-error {
  border: 2px solid #ee7878 !important;
}
.input-error:focus {
  outline: 0;
  box-shadow: 0 0 10px 3px rgb(149 149 149) !important;
}
@media screen and (min-width: 540px) {
  .form-text {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .reservation {
    margin-bottom: unset;
  }
  .reservation .input-block .field-group-half {
    flex: 1 1 calc(50% - 7px); /* 兩欄，中間 gap 是14px */
  }
  .reservation .input-block .field-group-full {
    flex: 1 1 100%;
  }
  .reservation .reg_btn {
    max-width: 300px;
  }
  .reservation .box {
    width: 80%;
  }
  #myform {
    font-size: 16px;
  }
  .footer-text {
    font-size: 18px;
    line-height: 36px;
  }
  .footer-text .ftt {
    font-size: 14.4px;
  }
}
@media screen and (min-width: 1024px) {
  .reservation {
    margin-bottom: unset;
  }
}
@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .form-text {
    width: 35%;
    margin: 8% auto 5% auto;
  }
  .reservation {
    justify-content: center;
  }
  .reservation .box {
    width: 80%;
    max-width: 600px;
    margin-top: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .reservation .form_check_txt {
    font-size: 16px;
  }
  .reservation .reg_btn {
    font-size: 17.6px;
  }
}
@media screen and (min-width: 1500px) {
  .reservation .box {
    max-width: 650px;
  }
}
