@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;200;300;400;500;600;700;800;900&display=swap");
.modal-cancel, .form__title.order, .list__img::after, .card__frame, .card__banner, .index__frame, .wrap__event, .wrap__list .block .title h2, .wrap__list .block .title, .wrap__list .block, .wrap__list, .wrap__order .form__row .verify, .wrap__order, .wrap__form .form__verify, .wrap__form .form__list, .wrap__form .form__btn div, .wrap__form .form__btn, .wrap__form .form__price .price .list, .wrap__form .form__price .price, .wrap__form .form__row > div:nth-child(even), .wrap__form .form__row, .wrap__form .form__1 .frame, .wrap__form .form__1, .wrap__form, .wrap__4 div, .wrap__4, .wrap__3 .block .prod-img, .wrap__3 .block, .wrap__3, .wrap__2, .wrap__1, .wrap__index, .btn-row {
  display: flex;
  flex-wrap: wrap;
}

.wrap__list .block {
  transition: all 0.4s;
}
.wrap__list .block:hover {
  transform: translateY(-8px);
}

.state__cancel, .state__done, .state__pay, .state__waiting {
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
}

.grecaptcha-badge {
  z-index: 99999;
}

html {
  font-size: 16px;
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}
@media (max-width: 48rem) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 36rem) {
  html {
    font-size: 14px;
  }
}

body {
  background-color: #fff;
  font-family: "Noto Sans TC", "noto sans cjk tc", "Microsoft JhengHei", "微軟正黑體", sans-serif !important;
  height: 100%;
  margin: 0;
  display: flex; /*使物件依序排列*/
  flex-direction: column; /*使物件垂直排列*/
  max-width: 1920px;
  overflow-x: clip;
  margin: auto;
}

main {
  background-color: #f3f3f3;
  padding-top: 3.5rem;
}

a {
  color: #CA171D;
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  color: #CA171D;
}

.btn-row {
  justify-content: center;
  margin: 2rem 0rem;
  gap: 1rem;
  width: 100%;
}

.color-warning {
  color: #CA171D;
}

@media only screen and (max-width: 75rem) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}
.fade-in-top {
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.wobble-hor-bottom {
  animation: wobble-hor-bottom 0.8s both;
}

.slide-in-bottom {
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.bounce-in-top {
  animation: bounce-in-top 1.1s both;
}

.duration__1s {
  animation-duration: 1s;
}
.duration__2s {
  animation-duration: 2s;
}

.delay__1ms {
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.delay__2ms {
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.delay__3ms {
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.delay__4ms {
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.delay__5ms {
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.delay__6ms {
  animation-delay: 0.6s;
  animation-fill-mode: both;
}
.delay__7ms {
  animation-delay: 0.7s;
  animation-fill-mode: both;
}
.delay__8ms {
  animation-delay: 0.8s;
  animation-fill-mode: both;
}
.delay__9ms {
  animation-delay: 0.9s;
  animation-fill-mode: both;
}
.delay__1s {
  animation-delay: 1s;
  animation-fill-mode: both;
}
.delay__2s {
  animation-delay: 2s;
  animation-fill-mode: both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-10-13 15:59:3
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-10-13 15:59:56
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-10-17 16:11:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation wobble-hor-bottom
 * ----------------------------------------
 */
@keyframes wobble-hor-bottom {
  0%, 100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-10-17 16:14:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-10-17 16:15:15
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-in-top
 * ----------------------------------------
 */
@keyframes bounce-in-top {
  0% {
    transform: translateY(-500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
.pages_index .logo {
  display: none;
}
.pages_index .inScroll .logo {
  display: flex;
}

.main {
  margin-top: 60px;
  background-color: #eaeaea;
}

.step-process-bg {
  background-color: #5e5e5e;
  margin-bottom: clamp(26px, 2.5vw, 52px);
}

.step-process-2::after {
  background-color: #eaeaea;
}
.step-process-2 > div {
  background-color: #5e5e5e;
}
.step-process-2 > div::before {
  border: 2px solid #fff;
  color: #fff;
}
.step-process-2 > div.active::before {
  border-color: var(--primary-color);
}
.step-process-2 > div span {
  color: #fff;
}

nav {
  background-color: transparent;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  align-items: center;
  transition: 0.4s ease-in-out;
  box-shadow: none;
}
nav.inScroll {
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
nav.color {
  background-color: #505050;
  transition: none;
}
nav.inpages_nav {
  background-color: #fff;
}
nav.inpages_nav.inScroll {
  background-color: #fff;
}
nav .container {
  display: flex;
  justify-content: space-between;
}
nav a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: inherit;
}
nav a img {
  height: 1.8rem;
}
@media (max-width: 48rem) {
  nav a img {
    height: 1.5rem;
  }
}
nav h1 {
  margin-left: 0.6rem;
  color: #484848;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 1.75rem */
  margin-bottom: 0rem;
}
@media (max-width: 48rem) {
  nav h1 {
    font-size: 1rem;
  }
}
nav ul {
  display: inline;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 0rem;
}
nav ul a {
  font-size: 0.875rem;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  color: white;
  border: 1px solid transparent;
  background-color: #CA171D;
  color: white;
}
nav ul a:hover {
  text-decoration: none;
  background-color: #96060d;
}
@media (max-width: 48rem) {
  nav ul a {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 36rem) {
  nav ul a {
    display: block;
  }
}
nav ul a:hover {
  color: white;
}
@media (max-width: 36rem) {
  nav ul a:first-child {
    display: none;
  }
}

.wrap__main {
  flex-grow: 1; /*可佔滿垂直剩餘的空間*/
  margin: auto;
  width: 100%;
}
.wrap__index {
  justify-content: center;
  align-items: stretch;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-top: 0rem;
  margin-bottom: 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.wrap__index.block4 .index__frame {
  width: 23%;
}
@media (max-width: 75rem) {
  .wrap__index.block4 .index__frame {
    width: 30%;
  }
}
@media (max-width: 48rem) {
  .wrap__index.block4 .index__frame {
    width: 47%;
  }
}
@media (max-width: 36rem) {
  .wrap__index.block4 .index__frame {
    width: 46%;
  }
}
.wrap__index.block3 .index__frame {
  width: 31.9%;
}
@media (max-width: 75rem) {
  .wrap__index.block3 .index__frame {
    width: 30%;
  }
}
@media (max-width: 62rem) {
  .wrap__index.block3 .index__frame {
    width: 48%;
  }
}
@media (max-width: 48rem) {
  .wrap__index.block3 .index__frame {
    width: 47%;
  }
}
@media (max-width: 36rem) {
  .wrap__index.block3 .index__frame {
    width: 100%;
  }
}
.wrap__1 {
  justify-content: left;
  align-items: stretch;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.wrap__2 {
  align-items: stretch;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2rem;
  margin-top: -8rem;
  margin-bottom: 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.wrap__2 h4 {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 0px;
  color: #484848;
}
.wrap__3 {
  gap: 1.25rem;
  margin-top: -7rem;
  z-index: 2;
  position: relative;
  margin-bottom: 9rem;
}
.wrap__3 h4 {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 0px;
  color: #484848;
}
.wrap__3 h5 {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0rem;
  color: #484848;
}
.wrap__3 ul li {
  color: #484848;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem; /* 187.5% */
}
.wrap__3 .block {
  flex: 0 0 auto;
  width: 31.8%;
  justify-content: end;
  text-decoration: none;
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
  background-color: white;
}
@media (max-width: 62rem) {
  .wrap__3 .block {
    width: 48%;
  }
}
@media (max-width: 36rem) {
  .wrap__3 .block {
    width: 100%;
  }
}
.wrap__3 .block .prod-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 180px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (max-width: 48rem) {
  .wrap__3 .block .prod-img {
    align-items: flex-start;
    justify-content: end;
  }
}
.wrap__3 .block .prod-img::after {
  transition: 0.3s;
  content: "";
  height: 100%;
  width: 100%;
  background-color: transparent;
  position: absolute;
  top: 0px;
}
@media (max-width: 48rem) {
  .wrap__3 .block .prod-img::after {
    display: none;
  }
}
.wrap__3 .block .prod-img .prod-btn {
  transition: 0.3s;
  border-radius: 5px;
  border: none;
  background-color: #CA171D;
  color: white;
  padding: 0.8rem 3.5rem;
  opacity: 0;
  z-index: 10;
}
@media (max-width: 48rem) {
  .wrap__3 .block .prod-img .prod-btn {
    opacity: 1;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
  }
}
.wrap__3 .block .prod-img .prod-btn:hover {
  background-color: #96060d;
  color: white;
}
.wrap__3 .block .prod-intro {
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  background-color: white;
}
@media (max-width: 75rem) {
  .wrap__3 .block .prod-intro {
    padding: 1rem;
  }
}
.wrap__3 .block .prod-intro h3 {
  color: #484848;
  font-size: 1.25rem;
  font-weight: 500;
}
.wrap__3 .block .prod-intro p {
  color: #838383;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0rem;
}
.wrap__3 .block .prod-intro svg {
  margin-right: 0.5rem;
}
.wrap__3 .block:hover .prod-img::after {
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 48rem) {
  .wrap__3 .block:hover .prod-img::after {
    display: none;
  }
}
.wrap__3 .block:hover .prod-img .prod-btn {
  opacity: 1;
}
.wrap__4 {
  justify-content: center;
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
  row-gap: 1.25rem;
}
@media (max-width: 36rem) {
  .wrap__4 {
    padding: 1rem;
  }
}
.wrap__4 img {
  width: 25rem;
}
@media (max-width: 62rem) {
  .wrap__4 img {
    width: 20rem;
  }
}
@media (max-width: 48rem) {
  .wrap__4 img {
    width: 15rem;
  }
}
.wrap__4 h2 {
  width: 100%;
  color: #484848;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.1875rem;
  text-align: center;
  margin-bottom: 0px;
}
@media (max-width: 48rem) {
  .wrap__4 h2 {
    font-size: 1.3rem;
  }
}
.wrap__4 p {
  width: 70%;
  color: #555555;
  text-align: center;
  margin-bottom: 0rem;
  font-weight: 400;
  line-height: 180%;
}
@media (max-width: 62rem) {
  .wrap__4 p {
    width: 90%;
  }
}
@media (max-width: 36rem) {
  .wrap__4 p {
    width: 100%;
    font-size: 0.9rem;
  }
}
.wrap__4 p br {
  display: block;
}
@media (max-width: 48rem) {
  .wrap__4 p br {
    display: none;
  }
}
.wrap__4 span {
  color: #CA171D;
  font-weight: 700;
}
.wrap__4 div {
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.wrap__form .form__1 {
  row-gap: 1rem;
  flex: 1 0 0%;
}
.wrap__form .form__1 .frame {
  width: 100%;
  row-gap: 1.56rem;
  padding: 2rem;
  background-color: white;
  color: #484848;
  border-radius: 5px;
  align-items: center;
}
@media (max-width: 48rem) {
  .wrap__form .form__1 .frame {
    padding: 1rem;
    row-gap: 1rem;
  }
}
.wrap__form .form__1 .frame hr {
  width: 100%;
  color: #bfbfbf;
  opacity: 1;
}
.wrap__form .form__row {
  width: 100%;
}
.wrap__form .form__row > div:nth-child(odd) {
  flex: 0 0 auto;
  width: 10rem;
  padding: 1rem 0rem;
}
@media (max-width: 36rem) {
  .wrap__form .form__row > div:nth-child(odd) {
    width: 100%;
    padding: 0.5rem 0rem;
  }
}
.wrap__form .form__row > div:nth-child(even) {
  max-width: 100%;
  flex: 1 0 0%;
  align-items: center;
}
@media (max-width: 36rem) {
  .wrap__form .form__row > div:nth-child(even) {
    width: 100%;
  }
}
.wrap__form .form__row > div:nth-child(even) input[type=text]:not(.w-100) {
  flex: 1 0 0%;
}
.wrap__form .form__row > div:nth-child(even) span {
  padding: 0rem 1rem;
}
.wrap__form .form__row .notice {
  flex: 0 0 auto;
  color: #CA171D;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  padding: 0rem;
}
.wrap__form .form__row .verify {
  justify-content: end;
}
.wrap__form .form__row .verify img {
  position: absolute;
}
@media (max-width: 48rem) {
  .wrap__form .form__row .verify {
    margin-bottom: 1rem;
  }
}
@media (max-width: 36rem) {
  .wrap__form .form__row .verify {
    margin-bottom: 3rem;
  }
}
.wrap__form .form__price {
  flex: 0 0 auto;
  width: 30%;
}
@media (max-width: 62rem) {
  .wrap__form .form__price {
    width: 100%;
  }
}
.wrap__form .form__price .price {
  border-radius: 5px;
  background-color: #838383;
  color: white;
  padding: 1.5rem;
  margin: 3rem 0rem 0rem 1rem;
  position: sticky;
  top: 4.4rem;
  flex-direction: column;
  gap: 0.6rem;
}
@media (max-width: 62rem) {
  .wrap__form .form__price .price {
    margin: 1rem 0rem 0rem 0rem;
  }
}
@media (max-width: 36rem) {
  .wrap__form .form__price .price {
    position: relative;
    top: auto;
    padding: 1.5rem;
  }
}
.wrap__form .form__price .price h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
}
.wrap__form .form__price .price hr {
  opacity: 1;
  margin: 0.5rem 0;
}
.wrap__form .form__price .price .list {
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  line-height: 2rem;
}
.wrap__form .form__price .price .memo {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 180%; /* 1.6875rem */
  letter-spacing: 0.0625rem;
}
.wrap__form .form__btn {
  justify-content: center;
  row-gap: 1.56rem;
  flex: 0 0 auto;
  width: 70%;
  margin: 2rem 1.5rem;
}
@media (max-width: 62rem) {
  .wrap__form .form__btn {
    width: 100%;
    margin: 2rem 0rem;
  }
}
.wrap__form .form__btn div {
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.wrap__form .form__list {
  align-items: flex-start;
  row-gap: 1.5rem;
  width: 100%;
}
@media (max-width: 36rem) {
  .wrap__form .form__list {
    row-gap: 1rem;
  }
}
.wrap__form .form__list div:nth-child(odd) {
  color: #838383;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  width: 10rem;
}
@media (max-width: 36rem) {
  .wrap__form .form__list div:nth-child(odd) {
    font-size: 0.9rem;
    width: 100%;
  }
}
.wrap__form .form__list div:nth-child(even) {
  color: #484848;
  height: auto;
  font-size: 1rem;
  word-break: break-all;
  font-weight: 400;
  width: calc(100% - 10rem);
  letter-spacing: 0.0625rem;
  padding-left: 1rem;
  border-left: 1px solid #bfbfbf;
}
@media (max-width: 36rem) {
  .wrap__form .form__list div:nth-child(even) {
    width: 100%;
  }
}
.wrap__form .form__list hr {
  width: 100%;
  opacity: 1;
  border-color: #bfbfbf;
}
.wrap__form .form__verify {
  align-items: center;
}
.wrap__form .form__recaptcha {
  width: 100%;
}
.wrap__order {
  width: 45rem;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  border-radius: 5px;
  background: #fff;
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 62rem) {
  .wrap__order {
    width: 36rem;
  }
}
@media (max-width: 48rem) {
  .wrap__order {
    width: 30rem;
  }
}
@media (max-width: 36rem) {
  .wrap__order {
    width: 100%;
    padding: 1.5rem;
    gap: 1.5rem;
    margin: auto;
  }
}
.wrap__order h2 {
  padding: 0.5rem 1.8rem;
  color: #484848;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  border-bottom: 8px solid #CA171D;
}
@media (max-width: 36rem) {
  .wrap__order h2 {
    font-size: 1.3rem;
  }
}
.wrap__order .form__row {
  width: 70%;
}
@media (max-width: 36rem) {
  .wrap__order .form__row {
    width: 95%;
  }
}
.wrap__order .form__row label {
  margin-bottom: 0.3rem;
  color: #484848;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
}
.wrap__order .form__row input {
  width: 100%;
}
.wrap__list {
  gap: 1.125rem;
  padding-bottom: 2.5rem;
}
.wrap__list .block {
  background-color: #fff;
  padding: 1.5rem;
  gap: 0.65rem;
  width: 23%;
  text-decoration: none;
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 75rem) {
  .wrap__list .block {
    width: 32%;
  }
}
@media (max-width: 62rem) {
  .wrap__list .block {
    width: 48%;
  }
}
@media (max-width: 36rem) {
  .wrap__list .block {
    width: 100%;
  }
}
.wrap__list .block .title {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.wrap__list .block .title h2 {
  align-items: baseline;
  color: #484848;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  margin: 0rem;
}
.wrap__list .block .title h2 svg {
  color: #CA171D;
  margin-right: 0.4rem;
  font-size: 1rem;
  display: none;
}
.wrap__list .block hr {
  width: 100%;
  color: #bfbfbf;
  opacity: 1;
  margin: 0.75rem 0rem;
}
.wrap__list .block p {
  width: 100%;
  color: #555555;
  font-size: 1rem;
  font-weight: 400;
  margin: 0rem;
}
.wrap__list .block .info {
  width: 100%;
  border-radius: 5px;
  color: #CA171D;
  background-color: transparent;
  border: 1px solid #CA171D;
  padding: 0.6rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
  transition: 0.3s;
}
.wrap__list .block .info:hover {
  background-color: #CA171D;
  color: white;
}
.wrap__event {
  align-items: stretch;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 1rem;
  margin-top: -11rem;
  margin-bottom: 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.wrap__event h4 {
  width: 100%;
  font-size: 1.25rem;
  color: #CA171D;
  line-height: 180%;
}
.wrap__event h5 {
  width: 100%;
  font-size: 1rem;
  margin-bottom: 0rem;
  color: #484848;
  font-weight: 400;
  line-height: 180%;
}
.wrap__event ol {
  color: #555555;
}

.page .content {
  border-radius: 0;
}

.content_orderList .box_title {
  margin-bottom: 1px;
}
.content_orderList > div {
  background-color: #fff;
}
.content_orderList .title {
  text-align: left;
  margin-bottom: 0;
}
.content_orderList .process {
  margin-bottom: 8px;
  padding-bottom: 12px;
}
.content_orderList .order-list-title {
  color: #585858;
}

.order-list__text {
  text-align: left;
}

.btn.style03 {
  border-radius: 999px;
}

.index__banner {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}
.index__banner .container-lg {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.index__banner .box-pic img {
  max-width: 100%;
  width: auto;
  margin-bottom: 1rem;
}
.index__banner .title > img {
  width: clamp(80px, 10vw, 165px);
}
.index__banner h2 {
  color: #fff;
  width: 100%;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 5px;
  margin-bottom: clamp(8px, 1vw, 16px);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
@media (max-width: 48rem) {
  .index__banner h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
@media (max-width: 36rem) {
  .index__banner h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}
.index__banner h5 {
  color: #fff;
  width: 100%;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: clamp(5px, 0.8vw, 10px);
  margin-bottom: 1rem;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}
@media (max-width: 48rem) {
  .index__banner h5 {
    font-size: 1.6rem;
  }
}
@media (max-width: 36rem) {
  .index__banner h5 {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.index__frame {
  flex: 0 0 auto;
  text-decoration: none;
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(#E8E8E8 80%, white 20%);
  justify-content: center;
  cursor: pointer;
}
.index__frame::after {
  content: "";
  -webkit-clip-path: polygon(0% 80%, 100% 50%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 80%, 100% 50%, 100% 100%, 0% 100%);
  background-color: rgba(255, 255, 255, 0.5);
  right: 0px;
  top: 0px;
  position: absolute;
  width: 100%;
  height: 150px;
}
.index__frame:hover {
  background-image: linear-gradient(#E8E8E8 80%, #CA171D 20%);
}
.index__frame:hover .index__name,
.index__frame:hover .index__link {
  background-color: #CA171D;
  color: white;
}
.index__frame:hover .index__name p,
.index__frame:hover .index__name svg,
.index__frame:hover .index__link p,
.index__frame:hover .index__link svg {
  color: white;
}
.index__frame:hover .index__link {
  color: #fff;
  border-color: hsla(0, 0%, 100%, 0.2);
}
.index__frame:hover .index__card {
  transform: translateY(-8px);
}
.index__card {
  height: 10rem;
  width: 75%;
  margin-top: -5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.4s ease-in-out;
  z-index: 99;
}
.index__card:hover .index__name {
  background-color: #CA171D;
  color: white;
}
.index__card:hover p,
.index__card:hover svg {
  color: white;
}
.index__card:hover .index__link {
  color: #fff;
  border-color: hsla(0, 0%, 100%, 0.2);
}
.index__name {
  width: 100%;
  -webkit-clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 100%);
  background-color: white;
  color: #484848;
  padding: 2rem 1rem 0.8rem;
  font-size: 1.25rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: #484848;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 62rem) {
  .index__name {
    -webkit-clip-path: polygon(0% 0%, 100% 34%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 34%, 100% 100%, 0% 100%);
    font-size: 1.1rem;
  }
}
@media (max-width: 36rem) {
  .index__name {
    font-size: 1rem;
  }
}
.index__name:hover {
  background-color: #CA171D;
  color: white;
}
.index__name:hover p,
.index__name:hover svg {
  color: white;
}
.index__name:hover ~ .index__link {
  color: #fff;
  border-color: hsla(0, 0%, 100%, 0.2);
}
.index__name svg {
  font-size: 0.8rem;
  color: #CA171D;
  margin-left: 0.3rem;
}
.index__name p {
  font-size: 0.9rem;
  font-weight: 400;
  padding-top: 0.8rem;
  color: #838383;
  margin-bottom: 0rem;
}
.index__link {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  color: #838383;
  background-color: white;
  padding: 0.5rem 0rem;
  border-top: 1px solid #ebebeb;
}

.card__banner {
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  height: 32rem;
  z-index: -1;
  align-items: center;
}
@media (max-width: 48rem) {
  .card__banner {
    height: 30rem;
  }
}
@media (max-width: 36rem) {
  .card__banner {
    height: 33rem;
  }
}
.card__banner::before {
  content: "";
  -webkit-clip-path: polygon(0% 80%, 100% 50%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 80%, 100% 50%, 100% 100%, 0% 100%);
  background-color: rgba(255, 255, 255, 0.3);
  right: 0px;
  top: 1rem;
  width: 100%;
  height: 500px;
}
@media (max-width: 48rem) {
  .card__banner::before {
    margin-top: -3rem;
  }
}
.card__banner::after {
  content: "";
  -webkit-clip-path: polygon(0% 50%, 100% 80%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 50%, 100% 80%, 100% 100%, 0% 100%);
  background-color: white;
  position: absolute;
  left: 0px;
  top: 1rem;
  width: 100%;
  height: 500px;
}
@media (max-width: 48rem) {
  .card__banner::after {
    top: -3rem;
  }
}
@media (max-width: 36rem) {
  .card__banner::after {
    top: 0rem;
  }
}
.card__banner .container {
  margin-top: -50rem;
}
@media (max-width: 48rem) {
  .card__banner .container {
    margin-top: -43rem;
  }
}
@media (max-width: 36rem) {
  .card__banner .container {
    margin-top: -46rem;
  }
}
.card__banner img {
  margin-bottom: 1rem;
}
.card__banner h2 {
  color: #fff;
  width: 100%;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 5px;
  margin-bottom: 1rem;
}
@media (max-width: 48rem) {
  .card__banner h2 {
    font-size: 2rem;
  }
}
.card__banner h5 {
  color: #fff;
  width: 100%;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.card__title {
  width: 21rem;
  text-align: center;
  margin-top: -21rem;
  z-index: 99;
  position: relative;
  color: white;
  letter-spacing: 5px;
  font-weight: 400;
}
@media (max-width: 48rem) {
  .card__title {
    margin-top: -24rem;
  }
}
.card__title h3 {
  font-size: 1.25rem;
}
.card__frame {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  justify-content: start;
  align-content: baseline;
  cursor: pointer;
  width: 23.8%;
  position: relative;
}
@media (max-width: 90rem) {
  .card__frame {
    width: 23.6%;
  }
}
@media (max-width: 75rem) {
  .card__frame {
    width: 31.9%;
  }
}
@media (max-width: 62rem) {
  .card__frame {
    width: 31.4%;
  }
}
@media (max-width: 48rem) {
  .card__frame {
    width: 48.1%;
  }
}
@media (max-width: 36rem) {
  .card__frame {
    width: 46.9%;
  }
}
.card__frame::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #CA171D;
  width: 0;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.card__frame:hover::after {
  width: 100%;
}
.card__frame:hover .card__img::before {
  opacity: 1;
}
.card__frame:hover .card__img::after {
  opacity: 1;
  transform: translateY(0);
}
.card__frame h4 {
  padding: 1rem 1rem 0.3rem 1rem;
  font-size: 1.13rem;
  width: 100%;
  margin-bottom: 0rem;
  color: #484848;
}
.card__frame p {
  padding: 0.3rem 1rem;
  color: #838383;
}
.card__frame p i,
.card__frame p svg {
  color: #555555;
}
.card__img {
  height: 150px;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.card__img::before, .card__img::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img::before {
  background-color: rgba(202, 23, 29, 0.75);
  opacity: 0;
  transition: opacity 0.3s;
}
.card__img::after {
  content: "前往預約";
  color: #fff;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.5s;
}
.card__icon {
  background-color: #CA171D;
  color: #fff;
  padding: 0.3rem 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.2rem;
  border-radius: 5px;
  margin-top: -1.25rem;
  margin-bottom: 1rem;
}

.list__title {
  margin-top: 9rem;
}
@media (max-width: 48rem) {
  .list__title {
    margin-top: 0rem;
  }
}
@media (max-width: 36rem) {
  .list__title {
    margin-top: 3rem;
  }
}
.list__title h2 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 0rem;
}
@media (max-width: 48rem) {
  .list__title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
.list__title h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: white;
  margin: 1rem 0rem;
}
@media (max-width: 48rem) {
  .list__title h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0rem;
  }
}
.list__title p {
  color: white;
  letter-spacing: 3px;
  font-weight: 300;
}
.list__tc {
  margin-top: -21rem;
}
@media (max-width: 36rem) {
  .list__tc {
    margin-top: -25rem;
  }
}
.list__frame {
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
  border-bottom: 4px solid transparent;
  transition: 0.2s ease-in;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  width: 23%;
}
@media (max-width: 75rem) {
  .list__frame {
    width: 30%;
  }
}
@media (max-width: 48rem) {
  .list__frame {
    width: 47%;
  }
}
@media (max-width: 36rem) {
  .list__frame {
    width: 46%;
  }
}
.list__frame:hover {
  border-color: #CA171D;
}
.list__frame:hover .list__img:after {
  color: white;
  background-color: rgba(202, 23, 29, 0.7);
}
.list__img {
  height: 150px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.list__img::after {
  content: "前往預約";
  background-color: transparent;
  letter-spacing: 2px;
  font-size: 1rem;
  width: 100%;
  height: inherit;
  color: transparent;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease-in;
}
@media (max-width: 48rem) {
  .list__img::after {
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: end;
    padding: 0.5rem;
    color: white;
    background-color: rgba(202, 23, 29, 0.7);
  }
}
.list__info {
  padding: 1rem 0.8rem;
}
.list__info h5 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #484848;
}
.list__info p {
  font-size: 1rem;
  color: #838383;
  margin-bottom: 0rem;
}
.list__info p svg {
  font-size: 1rem;
  color: #555555;
}

.box_msg {
  width: 100%;
  border-radius: 5px;
  padding: clamp(16px, 1.75vw, 24px) clamp(16px, 3.5vw, 56px);
  background-color: #f6f6f6;
  margin-bottom: clamp(20px, 2.5vw, 36px);
}
.box_msg .hr {
  height: 1px;
  width: 100%;
  background-color: #999;
  margin: 20px 0;
}

.send {
  bottom: 0;
}

input[type=text], input[type=number] {
  color: #484848;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
  background: #fff;
}
input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder {
  color: #838383;
}
input[type=text]::placeholder, input[type=number]::placeholder {
  color: #838383;
}
input[type=text][disabled=true], input[type=text]:disabled, input[type=number][disabled=true], input[type=number]:disabled {
  background-color: #ebebeb;
}
input[type=text].date-picker, input[type=number].date-picker {
  padding: 0.8rem;
  color: #484848;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
  display: block;
  background-color: #fff;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 16 16"><path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1H2zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=radio], input[type=checkbox] {
  display: none;
}
input[type=radio] + label, input[type=checkbox] + label {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  transition: all 0.2s;
  line-height: 1.5rem;
}
input[type=radio] + label[for=agree], input[type=checkbox] + label[for=agree] {
  font-size: 0.9rem;
}
input[type=radio] + label:hover, input[type=checkbox] + label:hover {
  color: #CA171D;
}
input[type=radio] + label::before, input[type=checkbox] + label::before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  border: 1px solid #CA171D;
  position: absolute;
  left: 10px;
  top: 5px;
  border-radius: 5px;
}
input[type=checkbox] + label::before {
  top: 4px;
}
input[type=radio] + label::before {
  border-radius: 100rem;
}
input[type=checkbox]:checked + label::before {
  background-color: #CA171D;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
input[type=radio]:checked + label::before {
  background-color: white;
}
input[type=radio]:checked + label::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background-color: #CA171D;
  border-radius: 100rem;
  position: absolute;
  left: 14px;
  top: 9px;
}
input[type=radio]:disabled + label, input[type=checkbox]:disabled + label {
  cursor: default;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.25);
}
input[type=radio]:disabled + label::before, input[type=checkbox]:disabled + label::before {
  border-color: rgba(0, 0, 0, 0.1);
}

select {
  padding: 0.8rem;
  color: #484848;
  border-radius: 5px;
  border: 1px solid var(--table-line, #bfbfbf);
  display: block;
  width: 100%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select[disabled=true], select:disabled {
  background-color: #ebebeb;
}

.step-bg {
  background-color: #fff;
  padding: 0.2rem 0rem;
  margin-bottom: 1rem;
}

.canleadFooter-warning {
  background-color: #eaeaea !important;
}

.step-process {
  counter-reset: num;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin: 0.8rem 0rem;
}
@media only screen and (max-width: 36rem) {
  .step-process {
    padding: 0 15px;
  }
}
.step-process > div {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media only screen and (max-width: 48rem) {
  .step-process > div {
    flex-direction: column;
  }
}
.step-process > div:not(:first-child) {
  padding-left: 10px;
}
@media only screen and (max-width: 48rem) {
  .step-process > div:not(:first-child) {
    padding-left: 0;
  }
}
.step-process > div::before {
  counter-increment: num;
  content: counter(num);
  display: grid;
  place-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 100rem;
  border: 2px solid #CA171D;
  color: #CA171D;
  font-weight: bold;
  font-size: 1rem;
  line-height: normal;
}
@media only screen and (max-width: 62rem) {
  .step-process > div::before {
    height: 30px;
    width: 30px;
    min-width: 30px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 48rem) {
  .step-process > div::before {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 36rem) {
  .step-process > div::before {
    height: 24px;
    width: 24px;
    min-width: 24px;
    font-size: 13px;
  }
}
.step-process > div > span {
  display: inline-block;
  padding: 0 10px;
}
@media only screen and (max-width: 48rem) {
  .step-process > div > span {
    line-height: 1.2rem;
    font-size: 13px;
    padding: 0;
  }
}
@media only screen and (max-width: 36rem) {
  .step-process > div > span {
    max-width: 54px;
    line-height: 1rem;
  }
}
.step-process > div.active::before {
  background-color: #CA171D;
  color: white;
}
.step-process::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #CA171D;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (max-width: 48rem) {
  .step-process::after {
    top: 15px;
  }
}
@media only screen and (max-width: 36rem) {
  .step-process::after {
    width: calc(100% - 30px);
    left: 15px;
    top: 12px;
  }
}

.btn {
  transition: 0.3s;
  cursor: pointer;
}
.btn.page__outline {
  border-radius: 5px;
  border: 1px solid #555555;
  background-color: transparent;
  text-decoration: none;
  color: #555555;
  padding: 0.8rem 3rem;
}
.btn.page__outline:hover {
  background-color: #ffffff;
  color: #555555;
  text-decoration: none;
}
@media (max-width: 36rem) {
  .btn.page__outline {
    padding: 0.6rem 2rem;
  }
}
.btn.page__primary {
  border-radius: 5px;
  border: none;
  background-color: #CA171D;
  color: white;
  padding: 0.8rem 3rem;
}
.btn.page__primary:hover {
  background-color: #96060d;
  color: white;
}
@media (max-width: 36rem) {
  .btn.page__primary {
    padding: 0.6rem 2rem;
  }
}
.btn.page__secondary {
  border-radius: 5px;
  border: 1px solid #CA171D;
  background-color: transparent;
  color: #CA171D;
  padding: 0.8rem 3rem;
}
.btn.page__secondary:hover {
  background-color: white;
  color: #CA171D;
}
@media (max-width: 36rem) {
  .btn.page__secondary {
    padding: 0.6rem 2rem;
  }
}
.btn.prod__outline {
  border-radius: 5px;
  border: 1px solid #555555;
  background-color: transparent;
  color: #555555;
  padding: 0.6rem;
  width: 11rem;
}
.btn.prod__outline:hover {
  background-color: #838383;
  color: #484848;
}
.btn.prod__primary {
  border-radius: 5px;
  border: none;
  background-color: #CA171D;
  color: white;
  padding: 0.6rem;
  width: 11rem;
}
.btn.prod__primary:hover {
  background-color: #96060d;
  color: white;
}
.btn.prod__secondary {
  border-radius: 5px;
  border: none;
  background-color: #373737;
  color: #484848;
  padding: 0.6rem;
  width: 11rem;
}
.btn.prod__secondary:hover {
  background-color: #252525;
  color: #484848;
}
.btn.disabled {
  background-color: #bfbfbf;
  color: #838383;
}
.btn.disabled:hover {
  background-color: #bfbfbf;
}

.form__title {
  display: inline-flex;
  padding: 0rem 1.125rem;
  align-items: center;
  gap: 0.625rem;
  color: #484848;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  grid-area: 1/span 2;
}
@media (max-width: 36rem) {
  .form__title {
    font-size: 1.3rem;
  }
}
.form__title.list {
  margin-top: 2rem;
  margin-left: 1.5rem;
}
.form__title.order {
  width: 100%;
  justify-content: space-between;
}

.recipt__notice {
  padding: 1rem;
  background-color: #ebebeb;
  color: #484848;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 180%;
}

.modal {
  color: #555555;
}
.modal-content {
  border-radius: 5px;
  border: none;
  overflow: hidden;
  max-height: 80%;
}
.modal-header {
  background-color: #CA171D;
  color: white;
  border-radius: 0px;
}
.modal-header p {
  color: #fff;
  font-size: 1rem;
}
.modal-header svg.fa-xmark {
  cursor: pointer;
}
.modal-body {
  overflow-y: scroll;
  max-height: 65vh;
  scroll-behavior: smooth;
  padding: 2rem;
  line-height: 180%;
}
@media (max-width: 36rem) {
  .modal-body {
    padding: 1rem;
  }
}
.modal-body h5 {
  color: #484848;
  font-size: 1rem;
  font-weight: 600;
}
.modal-body p {
  color: #555555;
  font-size: 0.9rem;
  margin-bottom: 0px;
  font-weight: 400;
  line-height: 180%;
}
.modal-body a {
  color: #CA171D;
  font-weight: 500;
  text-decoration: underline;
}
.modal-body a:hover {
  color: #96060d;
  font-weight: 500;
  text-decoration: underline;
}
.modal-body li {
  margin-bottom: 0.5rem;
}
.modal-nav {
  background-color: white;
  padding: 1rem 0rem;
  position: sticky;
  border-bottom: 1px solid #bfbfbf;
}
.modal-nav a {
  padding: 0rem 1rem;
  border-left: 1px solid #bfbfbf;
  text-decoration: none;
}
.modal-nav a:first-child {
  border: none;
}
.modal-nav a:hover {
  color: #96060d;
}
.modal-footer {
  justify-content: center;
}
.modal-cancel {
  justify-content: center;
}
.modal-cancel svg {
  font-size: 4rem;
  margin-top: 2rem;
  color: #bfbfbf;
}
.modal-cancel h2 {
  color: #484848;
  font-size: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
  width: 100%;
}
.modal-cancel p {
  color: #484848;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
}

.state__waiting {
  background-color: #ebebeb;
  color: #484848;
}
.state__pay {
  background-color: #CA171D;
  color: white;
}
.state__done {
  background-color: #ebebeb;
  color: #CA171D;
}
.state__cancel {
  background-color: #838383;
  color: white;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: #CA171D;
  background-color: white;
}
.accordion-body ul {
  list-style: circle;
  padding-left: 1.5rem;
  margin: 0rem;
}

.table {
  border: 1px solid #bfbfbf;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9rem;
}
.table thead th {
  border-width: 1px;
  border-color: #bfbfbf;
  border-style: solid;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  vertical-align: middle;
}
.table thead th:first-child {
  border-left: 1px solid #bfbfbf;
}
.table thead th:last-child {
  border-right: 1px solid #bfbfbf;
}
.table td {
  border: 1px solid #bfbfbf;
  vertical-align: middle;
  padding: 1rem;
}
.table tbody th {
  background: #bfbfbf;
  color: #fff;
  vertical-align: middle;
}

.table-style01 {
  border: none;
  text-align: center;
}
.table-style01 td {
  border: none;
}
.table-style01 thead th {
  background: #484848;
  font-weight: 400;
}
.table-style01 tbody th {
  background: #d8d8d8;
  color: #484848;
  font-weight: 400;
  color: #484848;
  opacity: 1;
}
.table-style01 tbody td {
  background-color: #f6f6f6;
}
.table-style01 tr {
  border-bottom: 1px solid #fff;
}
.table-style01 tfoot {
  text-align: left;
}
.table-style01 tfoot td {
  background-color: #f6f6f6;
}

.table-style02 {
  border: none;
  border-top: 1px solid #e6e6e6;
}
.table-style02 td {
  border-color: #e6e6e6;
  border-width: 0 0 1px 0;
}
.table-style02 thead th {
  background: none;
  color: #4e4e4e;
  border-color: #e6e6e6;
  border-width: 0 0 1px 0 !important;
}
.table-style02.td-3-gray tbody tr td:nth-child(4) {
  color: #484848;
}

.table-style03 {
  background-color: white;
}
.table-style03 thead th {
  background-color: #CA171D;
  color: white;
  text-align: center;
}
.table-style03 tbody th {
  background-color: white;
  color: #373737;
}
@media only screen and (max-width: 36rem) {
  .table-style03 tbody th,
  .table-style03 tbody td,
  .table-style03 thead th {
    padding: 0.3rem;
  }
}

.Rwd-table {
  display: block;
}

.Rwd-mobile {
  display: none;
}

@media (max-width: 991px) {
  .table {
    font-size: 0.9rem;
  }
  .table td,
  .table th {
    padding: 0.5rem 0.75rem;
  }
  .table-rwd {
    min-width: 100%;
  }
  .table-rwd thead {
    display: none;
  }
  .table-rwd th,
  .table-rwd td {
    text-align: left;
    overflow: hidden;
    width: 100%;
    display: block;
    padding: 0.4rem 0.75rem;
  }
  .table-rwd tr {
    border-bottom: 1px solid #dfdfdf;
  }
  .table-rwd td {
    border: none;
    padding: 0.4rem 0.75rem 0.1rem;
  }
  .table-rwd td[data-title]:before {
    content: attr(data-title);
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 10px;
  }
  .table-rwd td[data-title=停車場] {
    background: #ebebeb;
  }
  .table-rwd.sp td[data-title=飯店],
  .table-rwd.sp td[data-title=餐廳] {
    background: #ebebeb;
  }
  .table-style01 tr:nth-child(even) {
    background: transparent;
  }
  .table-style01 tbody th {
    font-weight: 600;
  }
  .Rwd-table {
    display: none;
  }
  .Rwd-mobile {
    display: block;
  }
}
.table-date thead th {
  border: none;
}
.table-date tbody tr td {
  color: rgba(0, 0, 0, 0.2);
  cursor: default;
}
.table-date tbody tr td a .day {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
}
.table-date tbody tr td a .money {
  color: #373737;
}
.table-date tbody tr td a .booking {
  color: #fff;
  background: #484848;
  border-radius: 5px;
  font-size: 0.8rem;
}
.table-date tbody tr td:hover {
  background: rgba(0, 0, 0, 0.04);
}
.table-date .prev,
.table-date .next {
  background: #CA171D;
}
.table-date .prev a,
.table-date .next a {
  display: block;
  color: #fff;
}

.overflow {
  width: auto;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .table-date {
    width: 760px;
  }
  .table-date tbody tr td a .day {
    color: rgb(0, 0, 0);
  }
  .table-date tbody tr td a .money {
    font-size: 1rem;
  }
  .table-date tbody tr td a .booking {
    font-size: 0.7rem;
  }
}
ol,
ul {
  font-size: 0.9rem;
}
ol li,
ul li {
  line-height: 1.8rem;
}

.list-inline {
  margin: 0;
  padding: 0;
  margin: 0;
  padding: 0;
}
.list-inline li {
  list-style-type: none;
  display: inline-block;
}

ol {
  margin: 0;
  padding: 0;
}
ol > li {
  list-style-type: decimal;
  margin-left: 32px;
}
@media (max-width: 36rem) {
  ol > li {
    margin-left: 20px;
  }
}
ol > li > ol > li {
  list-style-type: upper-alpha;
  margin-left: 16px;
}
ol > li > ol > li > ol > li {
  position: relative;
  list-style-type: decimal;
}
ol > li > ol > li > ol > li:after {
  content: ")";
  position: absolute;
  left: -3px;
  top: 0;
}
ol > li > ol > li > ol > li:before {
  content: "(";
  position: relative;
  left: -25px;
}
ol > li > ol > li > ol > li:nth-child(1n+10):before {
  left: -32px;
}
ol > li > ol > li > ol > li > ol > li {
  list-style-type: upper-alpha;
}
ol > li > ol > li > ol > li > ol > li:after, ol > li > ol > li > ol > li > ol > li:before {
  content: "";
}
ol > li > ol > li > ol > li > ol > li > ol > li {
  position: relative;
  list-style-type: lower-alpha;
}
ol > li > ol > li > ol > li > ol > li > ol > li:after {
  content: ")";
  right: -3px;
}
ol > li > ol > li > ol > li > ol > li > ol > li:before {
  content: "(";
  left: -25px;
}

td ol li {
  list-style: decimal;
  margin-left: 1rem;
  margin-bottom: 0px;
}

@media (max-width: 36rem) {
  ul {
    padding-left: 1.5rem;
  }
}
ul.type__none {
  list-style: none;
  padding-left: 0rem;
}

.hotel-calendar {
  width: 100%;
  background-color: white;
  border: 1px solid #ced4da;
  border-radius: 5px;
  overflow: hidden;
}
.hotel-calendar button:focus {
  outline: none !important;
  box-shadow: none;
}
.hotel-calendar__top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 1rem;
  color: white;
  background-color: #850f13;
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__top {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  }
}
.hotel-calendar__title {
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 991px) {
  .hotel-calendar__title {
    font-size: 16.5px;
  }
}
.hotel-calendar__btn {
  border: none;
  background-color: transparent;
  flex-grow: 1;
  display: block;
  text-align: center;
}
.hotel-calendar__btn-arrow {
  border: solid white;
  border-width: 0px 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transition: all 0.2s;
}
@media only screen and (max-width: 991px) {
  .hotel-calendar__btn-arrow {
    padding: 4px;
  }
}
.hotel-calendar__btn-arrow.hc-left {
  transform: rotate(135deg);
}
.hotel-calendar__btn-arrow.hc-right {
  transform: rotate(-45deg);
}
.hotel-calendar__btn:hover .hotel-calendar__btn-arrow {
  border-color: #f7b6b8;
}
.hotel-calendar__btn.disabled {
  pointer-events: none;
  cursor: default;
}
.hotel-calendar__btn:disabled .hotel-calendar__btn-arrow, .hotel-calendar__btn.disabled .hotel-calendar__btn-arrow {
  border-color: rgba(16, 16, 16, 0.35);
}
.hotel-calendar__table {
  display: table;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__table {
    display: flex;
    flex-direction: column;
    height: 305px;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.hotel-calendar__tr {
  display: table-row;
  transition: all 0.2s;
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__tr {
    display: flex;
    flex-direction: column;
  }
  .hotel-calendar__tr.hc-week {
    display: none;
  }
}
.hotel-calendar__td {
  display: table-cell;
  text-align: center;
  padding: 0.25rem;
  color: #484848;
  transition: all 0.2s;
  width: 14.28%;
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__td {
    display: flex;
    width: 100%;
    padding: 0;
  }
  .hotel-calendar__td.hc-md-hidden {
    display: none;
  }
}
.hotel-calendar__td.hc-weekend,
.hotel-calendar__td span.hc-weekend {
  background-color: rgba(202, 23, 29, 0.15);
}
.hotel-calendar__td .hc-week {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__td .hc-week {
    display: block;
    min-width: 15%;
    flex-basis: 15%;
    border-bottom: 1px solid white;
  }
}
.hotel-calendar__td .hc-week > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hotel-calendar .hc-week {
  background-color: rgba(202, 23, 29, 0.2);
}
.hotel-calendar__tr:not(:last-child) .hotel-calendar__td {
  border-bottom: 1px solid #ced4da;
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__tr:not(:last-child) .hotel-calendar__td {
    border: none;
  }
}
.hotel-calendar__tr:hover, .hotel-calendar__td.hc-hover {
  background-color: rgba(202, 23, 29, 0.1);
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__tr:hover, .hotel-calendar__td.hc-hover {
    background-color: transparent;
  }
}
.hotel-calendar__cell {
  background-color: transparent;
  border: none;
  border-radius: 5px;
  color: #484848;
  padding: 0.6rem 0.5rem 0.4rem 0.5rem;
  transition: all 0.2s;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
}
@media only screen and (max-width: 991px) {
  .hotel-calendar__cell {
    line-height: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__cell {
    margin: 0.2rem;
    padding: 0.5rem;
    align-items: center;
  }
}
.hotel-calendar__cell__date {
  font-size: 22.5px;
  min-width: 30px;
  flex-basis: 30px;
  text-align: center;
  color: inherit;
}
@media only screen and (max-width: 991px) {
  .hotel-calendar__cell__date {
    font-size: 19.5px;
  }
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__cell__date {
    min-width: 15%;
    flex-basis: 15%;
    text-align: left;
  }
}
.hotel-calendar__cell__text {
  font-size: 13.05px;
  flex-grow: 1;
  text-align: right;
  color: inherit;
}
@media only screen and (max-width: 991px) {
  .hotel-calendar__cell__text {
    min-width: 100%;
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__cell__text {
    min-width: 40%;
    flex-basis: 40%;
  }
}
.hotel-calendar__cell__price {
  min-width: 100%;
  flex-basis: 100%;
  font-size: 13.5px;
  text-align: right;
  color: #CA171D;
  margin-top: 0.3rem;
  margin-bottom: 0px;
}
@media only screen and (max-width: 991px) {
  .hotel-calendar__cell__price {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__cell__price {
    min-width: 45%;
    flex-basis: 45%;
  }
}
.hotel-calendar__cell__price span {
  margin-left: 0.3rem;
  font-size: 19.5px;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .hotel-calendar__cell__price span {
    display: block;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .hotel-calendar__cell__price span {
    display: inline-block;
  }
}
.hotel-calendar__cell:hover {
  color: #CA171D;
}
.hotel-calendar__cell.disabled, .hotel-calendar__cell:disabled {
  pointer-events: none;
  cursor: default;
}
.hotel-calendar__cell:disabled, .hotel-calendar__cell:disabled .hotel-calendar__cell__price, .hotel-calendar__cell:disabled .hotel-calendar__cell__date, .hotel-calendar__cell:disabled .hotel-calendar__cell__text, .hotel-calendar__cell.disabled, .hotel-calendar__cell.disabled .hotel-calendar__cell__price, .hotel-calendar__cell.disabled .hotel-calendar__cell__date, .hotel-calendar__cell.disabled .hotel-calendar__cell__text {
  color: rgba(16, 16, 16, 0.35);
}
.hotel-calendar__cell.selected {
  background-color: #a51318;
}
.hotel-calendar__cell.selected, .hotel-calendar__cell.selected .hotel-calendar__cell__price {
  color: white;
}

/*日期jq*/
.dtp {
  background: rgba(0, 0, 0, 0.7);
}
.dtp div.dtp-picker-month {
  padding: 0px 0 15px !important;
}
.dtp div.dtp-time,
.dtp div.dtp-date {
  background: #CA171D;
  opacity: 0.6;
  padding-bottom: 7px;
}
.dtp div.dtp-time > div:last-child,
.dtp div.dtp-date > div:last-child {
  margin-top: 0.3rem !important;
}
.dtp div.dtp-time > div:last-child i,
.dtp div.dtp-date > div:last-child i {
  margin-top: 0.1rem;
}
.dtp div.dtp-time .p10 > a,
.dtp div.dtp-date .p10 > a {
  color: #fff;
}
.dtp .year-picker-item:hover,
.dtp .year-picker-item.active {
  color: #CA171D;
  font-size: 1.2rem;
}
.dtp .year-picker-item {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}
.dtp div.dtp-actual-year {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
}
.dtp table.dtp-picker-days tr > th {
  background: transparent;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-width: 1px;
}
.dtp .dtp-content > .dtp-date-view > header.dtp-header,
.dtp table.dtp-picker-days tr > td > a.selected {
  background: #CA171D;
}
.dtp div.dtp-picker {
  padding-bottom: 0.2em;
}
.dtp .btn-default {
  padding: 0 !important;
}
.dtp .dtp-close {
  right: 0;
}
.dtp .dtp-close a {
  padding: 10px;
}
.dtp .btn-flat {
  margin: 0.1rem 0 0 0.3rem;
  font-size: 0.8rem;
  border: 1px solid #CA171D;
  color: #CA171D;
  padding: 0.375rem 0.75rem;
  border-radius: 5px;
  background: #fff;
}
.dtp .btn-flat:hover {
  background: #CA171D;
  color: #fff;
}
.dtp > .dtp-content {
  border-radius: 5px;
}
.dtp > .dtp-content .dtp-header {
  border-radius: 5px 5px 0px 0px;
}

.loader-box {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  height: 100vh;
  width: 100vw;
  z-index: 1035;
}
.loader-box__txt {
  display: block;
  color: white;
  z-index: 55;
  font-weight: normal;
  font-size: 15px;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: 1rem 0;
  width: 100px;
  overflow: hidden;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
}

.loader-stage span {
  display: inline-block;
  margin: 0.1rem;
  width: 5px;
  height: 20px;
  background-color: rgba(var(--color-secondary), 1);
}

.loader-stage span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}

.loader-stage span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}

.loader-stage span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}

.loader-stage span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.8);
  }
}
.box_tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: clamp(24px, 3.5vw, 46px);
  margin-bottom: clamp(20px, 2.5vw, 36px);
  background-color: #fff;
}
@media (max-width: 48rem) {
  .box_tabs {
    gap: 20px;
  }
}
@media (max-width: 36rem) {
  .box_tabs {
    gap: 10px;
  }
}
.box_tabs .tab {
  display: inline-block;
  width: clamp(400px, 18vw, 472px);
  text-align: center;
  border: 2px solid #CA171D;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  padding: 12px;
  border-radius: 5px;
}
@media (max-width: 62rem) {
  .box_tabs .tab {
    width: 340px;
  }
}
@media (max-width: 48rem) {
  .box_tabs .tab {
    width: 260px;
  }
}
@media (max-width: 36rem) {
  .box_tabs .tab {
    width: 136px;
    padding: 12px 4px;
  }
}
.box_tabs .tab:hover, .box_tabs .tab.active {
  color: #fff;
  background-color: #CA171D;
}
@media (max-width: 36rem) {
  .box_tabs .tab p {
    font-size: 12px;
  }
}
@media (max-width: 36rem) {
  .box_tabs .tab .h4 {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */