@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&family=Ubuntu+Mono&display=swap');

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
}
.green{
  color: #59b47a;
}
.sucss-title{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
.book-info{
  line-height: 2.2;
}
.step-box {
  max-width: 360px;
  width: calc(100% - 80px);
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 auto 24px auto;
  position: relative;
  z-index: 3;
}

.step-box li:nth-child(1),
.step-box li:nth-child(3) {
  width: calc(50% - 8px);
  position: relative;
}

.step-box li:nth-child(2) {
  width: 16px;
  position: relative;
}

.step-box li:nth-child(3) {
  text-align: right;
}

.step-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #D6D3D1;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.step-line.active {
  background-color: #59b47a;
}

.step-num {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D6D3D1;
  position: relative;
  z-index: 3;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #D6D3D1;
}

.step-num.active {
  color: #fff;
  width: 20px;
  height: 20px;
  background-color: #59b47a;
  box-shadow: 0px 0px 0px 3px #dbffe8;
}

.step-num.pass {
  color: #fff;
  width: 20px;
  height: 20px;
  background-color: #59b47a;
}

.step-text {
  display: inline-block;
  white-space: nowrap;
  color: #A8A29E;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.06em;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

.active .step-text,
.pass .step-text {
  color: #1C1917;
}

.book-time{
  display: none;
}
.book-time.active{
  display: block;
}
.book-box{
  min-height: 100dvh;
  padding: 30px 0;
}
.book-btn-box{
  padding-top: 20px;
  text-align: center;
}
.radio-container {
  display: inline-block;
  padding-left: 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #333;
  position: relative;
  margin-right: 10px;
  text-decoration: none;
  margin-bottom: 6px;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-container-check {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: solid 1px #BEBEBE;
  border-radius: 50%;
}

.radio-container input:checked~.radio-container-check {
  border: solid 1px #47AB84;
}

.radio-container input:disabled~.radio-container-check {
  background-color: #E4E4E4;
  border: solid 1px #BEBEBE;
}

.radio-container input:checked~.radio-container-check::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 10px;
  width: 10px;
  background-color: #47AB84;
  border-radius: 50%;
}

.radio-container input:checked:disabled~.radio-container-check::after {
  background-color: #BEBEBE;
}
.check-container {
  display: inline-block;
  padding-left: 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #333;
  position: relative;
  margin-right: 10px;
  text-decoration: none;
  margin-bottom: 6px;
}

.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.check-container-check {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: solid 1px #BEBEBE;
  border-radius: 2px;
}

.check-container input:checked~.check-container-check {
  border: solid 1px #28a745;
  background-color: #28a745;
  background-image: url(../images/checked-1.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.check-container input:disabled~.check-container-check {
  background-color: #E4E4E4;
  border: solid 1px #BEBEBE;
}

.check-container input:checked:disabled~.check-container-check {
  background-color: #BEBEBE;
}
.close{
 display: inline-block;
 position: absolute;
 right: 20px;
 top: 10px;
 z-index: 3;
 width: 20px;
}
.coupon-modal {
  width: 100%;
  max-width: 540px;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  bottom: -100%;
  left: 50%;
  padding: 30px;
  box-shadow: 0 0 15px #eee;
  transform: translateX(-50%);
  transition: bottom 0.5s;
}

.coupon-modal.active {
  bottom: 0;
}

.coupon-modal-title {
  font-size: 16px;
  font-weight: 500;
  list-style: 1.3;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
}

.coupon-modal-btn {
  padding:20px;
}

section {
  position: relative;
}

#product {
  position: absolute;
  width: 100%;
  height: 99%;
  z-index: -1;
  top: -52px;
}

#coupon {
  position: absolute;
  width: 100%;
  height: 99%;
  z-index: -1;
  top: -52px;
}

#map {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: -52px;
}

.coupon-main {
  max-width: 540px;
  padding: 0 20px;
  margin: 0 auto;
  background-image: url(../images/coupon/bg-line.png);
  background-repeat: no-repeat;
  background-size: 1200px auto;
  background-position: top right;
  overflow: hidden;
}

.coupon-swiper {
  overflow: hidden;
  position: relative;
  padding-top: 52px;
}

.link-box {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 540px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  z-index: 999;
  background-color: #fff;
}

.link-box a {
  background-color: #dcf3c6;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 32px;
  color: #709989;
  font-weight: 400;
  padding: 0 10px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin: 0 5px;
}

.link-box a.active {
  background-color: #59b47a;
  color: #fff;
  font-weight: 500;
}

.tab-box {
  display: flex;
  align-items: center;
}

.tab-box a {
  border-bottom: none;
  /*   background:  #d9faba; */
  background-color: #dcf3c6;
  display: inline-block;
  font-size: 16px;
  line-height: 36px;
  color: #709989;
  font-weight: 400;
  padding: 0 10px;
  border-radius: 15px 15px 0 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.tab-box a.active {
  background-color: #59b47a;
  color: #fff;
  font-weight: 500;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #47AB84;
}

.store-content {
  padding: 15px 10px;
}

.product-content {
  padding: 15px 10px;
}

.coupon-content {
  padding: 15px 10px;
}

.instructions {
  padding: 15px 10px;
}

.company-store-name {
  font-size: 16px;
  font-weight: 500;
  list-style: 1.3;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.company-store-logo {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: cover;
  border-radius: 3px;
  margin-right: 4px;
}

.company-store-note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 12px;
}

.company-name {
  font-size: 16px;
  font-weight: 500;
  list-style: 1.3;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 8px;
}

.company-note {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #777;
}

.product-info {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  border-bottom: dashed 1px #999;
  text-align: center;
  padding: 6px 0;
}

.product-note {
  font-size: 13px;
  font-weight: 400;
  list-style: 1.6;
  letter-spacing: 0.05em;
  color: #b80b0b;
  margin-bottom: 24px;
}

.product-item {
  font-size: 14px;
  font-weight: 500;
  list-style: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 8px;
}

.product-text {
  font-size: 13px;
  font-weight: 400;
  list-style: 1.6;
  letter-spacing: 0.05em;
  color: #777;
}

.coupon-store-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 4px;
}

.coupon-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 12px;
}

.form-control.fix {
  border-radius: 25px !important;
  margin: 0 10px;
}

.btn {
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ced4da;
}

.btn-success {
  padding: 0 0.75rem;
  font-size: 18px;
  line-height: 46px;
  border-radius: 24px;
  color: #fff;
  background-color: #59b47a;
  border-color: #59b47a;
}
.btn-danger {
  padding: 0 0.75rem;
  font-size: 18px;
  line-height: 46px;
  border-radius: 24px;
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.scan {
  width: 20px;
  margin-right: 5px;
}

.coupon-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 8px;
}

.coupon-num {
  font-style: normal;
  font-size: 18px;
  color: #b80b0b;
  font-weight: 700;
  display: inline-block;
  margin: 0 3px;
}

.coupon-tag {
  display: inline-block;
  background-color: #b80b0b;
  padding: 0 10px;
  border-radius: 20px;
  color: #fff;
}

.coupon-form {
  background: #eafada;
  padding: 20px;
  border-radius: 15px;
}

.coupon-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
  padding-bottom: 8px;
}

.coupon-total {
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
  padding-bottom: 8px;
}

.coupon-total span {
  display: inline-block;
  margin-left: 20px;
  color: #666;
}

.coupon-left {
  font-style: normal;
  color: #b80b0b;
}

.map-box {
  width: 100%;
  height: 500px;
}

.info-box {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: #fff;
  animation: side 0.3s forwards ease-in-out;
  opacity: 0;
  padding: 10px 20px 10px 10px;
  border-radius: 15px 15px 0 0;
}

.delete {
  display: inline-block;
  color: black;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background-image: url(../images/coupon/close.svg);
  background-size: cover;
}

.store-box {
  padding: 0;
  display: flex;
}

.store-pic {
  width: 90px;
  height: 0;
  padding-top: 90px;
  border-radius: 5px;
}

.store-dw {
  width: calc(100% - 90px);
  padding: 0 10px;
  font-size: 13px;
  color: #314644;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}

.store-dw a {
  color: #59b47a !important;
  font-weight: 500;
}

.store-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0;
  color: #000;
}

.green {
  color: #59b47a !important;
  font-weight: 500;
}

.b-hours-detail {
  display: none;
  font-size: 12px;
  padding: 5px 0;
}

@keyframes side {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.tab-pane {
  overflow: hidden;
  height: 0;
}

.tab-pane.active {
  height: auto;
  opacity: 0;
  animation: fadeLeft 0.3s forwards;
}

@keyframes fadeLeft {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.store-pic {
  background-size: cover;
}

.store-list {
  border-left: solid 1px #eee;
  border-right: solid 1px #eee;
  margin-bottom: 20px;
}

.store-card {
  display: flex;
  padding: 10px;
  border-bottom: solid 1px #eee;
}

.instructions-note {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #777;
}

.instructions-content {
  padding-top: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #777;
}

.instructions-content ul,
.instructions-content ol {
  padding-left: 1.5em;
}
@media (max-width:540px){
.datepicker{
  width: 100%;
  background-image: url(../images/date-svgrepo-com.svg);
  background-size: 20px;
  background-position: center right 10px;
  background-repeat: no-repeat;
}
input::-webkit-date-and-time-value {
  text-align: left;
}
}