@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Roboto&family=Noto+Serif+TC:wght@400;500;600&display=swap");
@import "datepicker.min.css";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

a, input {
  -webkit-tap-highlight-color: transparent;
}
a:focus, input:focus {
  outline: 0;
}
a:active, a:hover, input:active, input:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, input {
  line-height: normal;
  background-color: transparent;
  border: none;
}

button, select {
  text-transform: none;
}

select, input {
  -webkit-appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

button, html input[type=button] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

html {
  font-family: sans-serif;
  line-height: 1;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: black;
  display: block;
  cursor: pointer;
}

@font-face {
  font-family: "DysonFutura";
  src: url(../font/DysonFutura-Light.otf);
  font-weight: 300;
}
@keyframes aniDot {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes aniLoading {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html, body {
  font-family: "Noto Sans TC", Arial, Helvetica, "微軟正黑體", Microsoft JhengHei, Apple LiGothic, "蘋果儷中黑";
  overflow-x: hidden;
}

#wrapper #main {
  position: relative;
  max-width: 768px;
  margin: auto;
  font-size: 20px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  #wrapper #main {
    font-size: 4.67vw;
  }
}
#wrapper #main.pageCancel .cancel.popup {
  opacity: 1;
  pointer-events: auto;
}

.loading {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.loading.send {
  background-color: rgba(255, 255, 255, 0.5);
}
.loading .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading .container .dot {
  width: 1em;
  height: 1em;
  border-radius: 99999px;
  background-color: #1a1311;
  animation-name: aniDot;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  margin: 0 0.25em;
}
.loading .container .dot:first-of-type {
  animation-delay: 0.1s;
}
.loading .container .dot:nth-of-type(2) {
  animation-delay: 0.25s;
}
.loading .container .dot:last-of-type {
  animation-delay: 0.4s;
}

.section {
  display: none;
}
.section .container .pagekv {
  position: relative;
  min-height: 9.5em;
  background-image: linear-gradient(to bottom, #E9DBD2, #E4D6CD);
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
}
.section .container .pagekv a.btn-back {
  color: #1a1311;
  font-size: 1em;
  line-height: 1.3;
  position: absolute;
  left: 2.5em;
  top: 0.85em;
}
.section .container .pagekv a.btn-back::before {
  content: "";
  width: 0.66em;
  height: 0.66em;
  position: absolute;
  top: 50%;
  left: -1em;
  transform: translateY(-40%);
  background: url("../images/ic_back.svg") no-repeat center/contain;
}
.section .container .pagekv .txt {
  position: absolute;
  top: 3.6em;
  left: 1.5em;
}
.section .container .pagekv .txt .logo {
  width: 9em;
  margin-bottom: 0.325em;
}
.section .container .pagekv .txt h2 {
  color: #000;
  font-size: 1.2em;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.section .container h3 {
  text-align: center;
  color: #1a1311;
  font-size: 1.2em;
  line-height: 1.5;
  letter-spacing: 0.025em;
  margin-bottom: 1.54em;
}
.section .container .btn-container {
  width: 18.4em;
  margin: auto;
}
.section .container .btn-container a {
  color: #fff;
  background-color: #000;
  width: 100%;
  height: 3.5em;
  font-size: 1em;
  line-height: 3.4em;
  text-align: center;
  border-radius: 0.2em;
  pointer-events: auto;
  opacity: 1;
  transition: 0.3s;
}
.section .container .btn-container a.lock {
  opacity: 0.5;
  pointer-events: none;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup.list {
  background-color: #fff;
}

.main {
  transform: translateX(0%);
  transition: 0.3s;
}
.main.hide {
  transform: translateX(-100%);
  transition: 0.15s;
}
.main .container {
  min-height: 100vh;
}
.main .container .kv {
  position: relative;
}
.main .container .kv .txt {
  position: absolute;
  top: 3em;
  left: 1.5em;
  font-family: "DysonFutura";
}
.main .container .kv .txt .logo {
  width: 8.4em;
  margin-bottom: 0.33em;
}
.main .container .kv .txt h1 {
  font-size: 1.2em;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 0.3em;
}
.main .container .kv .txt p {
  font-size: 0.85em;
  line-height: 1.66;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #1a1311;
}
.main .container .description {
  width: 18.4em;
  height: 8em;
  margin: auto;
  background: url("../images/pageKV.jpg") no-repeat center/cover;
  background-position-x: right;
  display: flex;
  align-items: center;
  padding-left: 1.5em;
  box-sizing: border-box;
  margin-bottom: 1.9em;
  position: relative;
}
.main .container .description p {
  font-size: 1em;
  color: #1a1311;
  line-height: 1.45;
  letter-spacing: 0.025em;
}
.main .container h2 {
  font-size: 0.9em;
  color: #1a1311;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  text-align: center;
  font-weight: 300;
  margin-bottom: 2.72em;
}
.main .container h2 span {
  font-weight: 500;
}
.main .container .btn-container {
  margin-bottom: 1.5em;
}
.main .container a.btn-reserve {
  color: #000;
  font-size: 0.9em;
  line-height: 1.5;
  letter-spacing: 0.025em;
  margin: auto;
  text-align: center;
  padding-left: 1.44em;
  position: relative;
}
.main .container a.btn-reserve::after {
  content: "";
  height: 1px;
  width: 4em;
  background-color: #000;
  position: absolute;
  bottom: -0.05em;
  left: 50%;
  transform: translateX(-33%);
}
.main .container a.btn-reserve::before {
  content: "";
  width: 1.1em;
  height: 1.11em;
  position: absolute;
  top: 50%;
  left: calc(50% - 2.2em);
  transform: translate(-50%, -45%);
  background: url("../images/ic_calendar.svg") no-repeat center/contain;
}

.list.popup {
  transform: translateX(100%);
  opacity: 0;
  transition: 0.15s;
}
.list.popup.show {
  transform: translate(0);
  opacity: 1;
  transition: 0.3s;
}
.list.popup .container {
  height: 100vh;
  position: relative;
  padding: 2.35em 1.75em;
}
.list.popup .container a.btn-close {
  position: absolute;
  height: 1.85em;
  width: 1.85em;
  top: 1.5em;
  right: 1.7em;
  background: url("../images/ic_close.svg") no-repeat center/contain;
}
.list.popup .container h2 {
  font-size: 1.3em;
  color: #1a1311;
  line-height: 1.46;
  letter-spacing: 0.025em;
  margin-bottom: 1.54em;
}
.list.popup .container ul {
  color: #1a1311;
}
.list.popup .container ul.li-list {
  overflow-y: scroll;
  height: 75vh;
}
.list.popup .container ul li {
  display: flex;
  font-size: 0.9em;
}
.list.popup .container ul li.title {
  padding-bottom: 0.5em;
  margin-bottom: 0.875em;
  border-bottom: 1px solid #000;
  letter-spacing: 0.025em;
}
.list.popup .container ul li.title span {
  width: 6.66em;
}
.list.popup .container ul li.info {
  font-weight: 300;
  margin-bottom: 1em;
}
.list.popup .container ul li.info span {
  display: flex;
  align-items: center;
  width: 6.66em;
}
.list.popup .container ul li.info span.time {
  font-family: "DysonFutura";
  padding-top: 0.4em;
}
.list.popup .container ul li.info span.btn {
  justify-content: flex-end;
}
.list.popup .container ul li.info span.status {
  padding-left: 2.4em;
  box-sizing: border-box;
}
.list.popup .container ul li.info a {
  color: #fff;
  font-size: 0.88em;
  background-color: #000;
  width: 5.94em;
  height: 2.5em;
  border-radius: 4px;
  text-align: center;
  line-height: 2.4em;
}

.cancel.popup, .alert.popup {
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.cancel.popup.show, .alert.popup.show {
  opacity: 1;
  transition: 0.3s;
  pointer-events: auto;
}
.cancel.popup .container, .alert.popup .container {
  min-width: 300px;
  box-sizing: border-box;
  padding: 2.35em 2.5em 1.95em 2.5em;
  background-color: #fff;
  border-radius: 4px;
  text-align: center;
}
.cancel.popup .container p, .alert.popup .container p {
  font-size: 1em;
  color: #1a1311;
  line-height: 1.45;
  letter-spacing: 0.025em;
  margin-bottom: 2em;
}
.cancel.popup .container .btn-container, .alert.popup .container .btn-container {
  display: flex;
  justify-content: center;
}
.cancel.popup .container .btn-container a, .alert.popup .container .btn-container a {
  font-size: 1em;
  width: 5em;
  height: 2.75em;
  line-height: 2.65em;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  margin: 0 0.2em;
}
.cancel.popup .container .btn-container a.true, .alert.popup .container .btn-container a.true {
  background-color: #1a1311;
}
.cancel.popup .container .btn-container a.false, .alert.popup .container .btn-container a.false {
  background-color: #767676;
}

.choose.section {
  background-color: #fff;
}
.choose.section .container {
  padding-bottom: 2em;
}
.choose.section .container .style-container {
  width: 18.4em;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.choose.section .container .style-container .style {
  width: 8.8em;
  margin-bottom: 2.2em;
}
.choose.section .container .style-container .style a.pic {
  margin-bottom: 0.6em;
  position: relative;
}
.choose.section .container .style-container .style a.pic img {
  border-radius: 4px;
}
.choose.section .container .style-container .style a.pic.choosed::before {
  background-color: #1a1311;
  transition: 0.15s;
}
.choose.section .container .style-container .style a.pic::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url("../images/ic_check.svg") no-repeat center/contain;
  position: absolute;
  top: 0em;
  right: 0em;
}
.choose.section .container .style-container .style a.pic::before {
  content: "";
  width: 2em;
  height: 2em;
  border-radius: 9999px;
  background-color: #ededed;
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  transition: 0.15s;
}
.choose.section .container .style-container .style h4 {
  font-size: 0.9em;
  color: #1a1311;
  line-height: 1.5;
  margin-bottom: 0.22em;
}
.choose.section .container .style-container .style p {
  font-size: 0.75em;
  color: #5d5d5d;
  line-height: 1.47;
  letter-spacing: 0.025em;
  margin-bottom: 0.8em;
}
.choose.section .container .style-container .style a.btn-video {
  font-size: 0.8em;
  color: #1a1311;
  line-height: 1.5;
  font-weight: 300;
  padding-left: 1.5em;
  position: relative;
  text-decoration: underline;
}
.choose.section .container .style-container .style a.btn-video::before {
  content: "";
  width: 1.1em;
  height: 1.11em;
  position: absolute;
  top: 50%;
  left: 0em;
  transform: translateY(-40%);
  background: url("../images/ic_video.svg") no-repeat center/contain;
}

.reserve.section {
  background-color: #fff;
}
.reserve.section .container {
  padding-bottom: 3em;
}
.reserve.section .container .bottom .form-container {
  width: 18.4em;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.reserve.section .container .bottom .form-container .input {
  width: 100%;
  margin-bottom: 0.75em;
}
.reserve.section .container .bottom .form-container .input.date {
  margin: 1em auto 1.5em auto;
}
.reserve.section .container .bottom .form-container .input h5 {
  color: #767676;
  font-size: 0.8em;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 300;
  margin-bottom: 0.3125em;
}
.reserve.section .container .bottom .form-container .input .input-box, .reserve.section .container .bottom .form-container .input .select-box {
  width: 100%;
  height: 3.4375em;
  font-size: 0.8em;
  letter-spacing: 0.025em;
}
.reserve.section .container .bottom .form-container .input .input-box.warning-border, .reserve.section .container .bottom .form-container .input .select-box.warning-border {
  border: 1px solid #ec7676;
  border-radius: 4px;
}
.reserve.section .container .bottom .form-container .input .input-box input, .reserve.section .container .bottom .form-container .input .input-box select, .reserve.section .container .bottom .form-container .input .select-box input, .reserve.section .container .bottom .form-container .input .select-box select {
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  border-radius: 4px;
  padding: 1em;
  color: #1a1311;
  box-sizing: border-box;
}
.reserve.section .container .bottom .form-container .input .select-box {
  position: relative;
}
.reserve.section .container .bottom .form-container .input .select-box::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  position: absolute;
  top: 50%;
  right: 1.44em;
  transform: translateY(-40%);
  background: url("../images/ic_arrow-down.svg") no-repeat center/contain;
  pointer-events: none;
}
.reserve.section .container .bottom .form-container .input .date-box {
  width: 100%;
  font-family: "DysonFutura";
}
.reserve.section .container .bottom .form-container .input .date-box.warning-border {
  border: 1px solid #ec7676;
  border-radius: 4px;
}
.reserve.section .container .bottom .form-container .input .date-box div {
  width: 100%;
  box-sizing: border-box;
}
.reserve.section .container .bottom .form-container .input .date-box .datepicker-header button {
  height: 3.5em;
  line-height: 3.5em;
  background-color: #fff;
}
.reserve.section .container .bottom .form-container .input .date-box .days-of-week {
  background-color: #ebebeb;
}
.reserve.section .container .bottom .form-container .input .date-box .days-of-week span {
  height: 4em;
  line-height: 4em;
}
.reserve.section .container .bottom .form-container .input .date-box .datepicker-grid {
  font-weight: 300;
  background-color: #f2f2f2;
}
.reserve.section .container .bottom .form-container .input .date-box .datepicker-cell {
  height: 2.65em;
  width: 2.65em;
  line-height: 2.5em;
}
.reserve.section .container .bottom .form-container .input .date-box .datepicker-cell:hover, .reserve.section .container .bottom .form-container .input .date-box .datepicker-cell.focused:not(.selected), .reserve.section .container .bottom .form-container .input .date-box .datepicker-cell.selected, .reserve.section .container .bottom .form-container .input .date-box .datepicker-cell.selected:hover {
  border-radius: 9999px;
  font-weight: 300;
}
.reserve.section .container .bottom .form-container .input .date-box .datepicker-cell.selected, .reserve.section .container .bottom .form-container .input .date-box .datepicker-cell.selected:hover {
  background-color: #1a1311;
}
.reserve.section .container .bottom p.warning {
  font-size: 0.8em;
  text-align: center;
  margin-top: 0.5em;
  color: #cc4747;
  display: none;
}
.reserve.section .container .bottom p.warning.show {
  display: block;
}
.reserve.section .container .bottom .btn-container {
  margin-top: 1.3em;
}
/*# sourceMappingURL=main.css.map */