.title {
  margin-top: 10%;
}

.price-section {
  max-width: 1000px;
  margin: 5% auto 15%;
  width: 95%;
  font-family: sans-serif;
}
.price-section .price-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
  align-items: flex-end;
}
.price-section .price-tabs .tab-btn {
  flex: 1;
  background: #006237;
  color: #fff;
  text-align: center;
  padding: 15px 5px;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 0 rgb(0, 47, 26.3775510204);
  margin-bottom: 8px;
}
.price-section .price-tabs .tab-btn span {
  font-size: 12px;
  font-weight: normal;
}
.price-section .price-tabs .tab-btn:not(.active) {
  opacity: 0.9;
}
.price-section .price-tabs .tab-btn:not(.active):hover {
  opacity: 1;
}
.price-section .price-tabs .tab-btn.active {
  opacity: 1;
  border-radius: 5px 5px 0 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-bottom: 23px;
  z-index: 2;
}
.price-section .price-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: #006237;
}
.price-section .price-content-wrapper {
  background: #006237;
  padding: 30px;
  border-radius: 0 0 5px 5px;
  position: relative;
  z-index: 1;
  border-top: none;
}
.price-section .price-content-wrapper .tab-content {
  display: none;
}
.price-section .price-content-wrapper .tab-content.active {
  display: block;
}
.price-section .sub-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}
.price-section .sub-tabs.pc-only {
  display: flex;
}
.price-section .sub-tabs .sub-btn {
  background: #e2efd9;
  color: #006237;
  padding: 0 30px;
  height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  transition: background 0.3s;
}
.price-section .sub-tabs .sub-btn span {
  font-size: 13px;
  font-weight: normal;
  margin-top: 2px;
}
.price-section .sub-tabs .sub-btn.active {
  background: #fff;
}
.price-section .sub-content {
  display: none;
}
.price-section .sub-content.active {
  display: block;
}
.price-section .sub-content .accordion-body {
  background: #fff;
  padding: 30px;
  border-radius: 0 5px 5px 5px;
}
.price-section .k-train-label {
  text-align: center;
  border: 1px solid #ccc;
  color: #006237;
  font-weight: bold;
  font-size: 15px;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.price-section .price-dl {
  margin: 0;
  overflow: hidden;
}
.price-section .price-dl dt {
  color: #006237;
  font-weight: bold;
  font-size: 16px;
  padding: 20px 0 5px;
}
.price-section .price-dl dd {
  margin-left: 0;
  padding: 0 0 20px;
  font-size: 15px;
  color: #555;
  border-bottom: 1px solid #ccc;
  line-height: 1.8;
}
.price-section .price-dl dd:last-child {
  border-bottom: none;
}
.price-section .accordion-head {
  display: none;
}
.price-section .price-contact-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}
.price-section .price-contact-btn-wrapper .price-contact-btn {
  display: flex !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 450px !important;
  align-items: center;
  justify-content: center;
  background: #006237;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 0 rgb(0, 21.5, 12.0663265306);
  box-sizing: border-box;
}
.price-section .price-contact-btn-wrapper .price-contact-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(0, 21.5, 12.0663265306);
  color: #fff;
  opacity: 0.9;
}

@media (max-width: 700px) {
  .price-section .price-tabs {
    gap: 2px;
  }
  .price-section .price-tabs .tab-btn {
    padding: 10px 2px;
    font-size: 12px;
  }
  .price-section .price-tabs .tab-btn span {
    font-size: 10px;
  }
  .price-section .price-content-wrapper {
    padding: 15px;
  }
  .price-section .sub-tabs.pc-only {
    display: none !important;
  }
  .price-section .sub-content {
    display: block;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
  }
  .price-section .sub-content .accordion-head {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 15px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
  }
  .price-section .sub-content .accordion-head .icon {
    position: absolute;
    right: 15px;
    background: #eee;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
  }
  .price-section .sub-content .accordion-head .icon::after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .price-section .sub-content .accordion-head.active .icon::after {
    content: "-";
  }
  .price-section .sub-content .accordion-body {
    display: none;
    padding: 0 15px 15px;
    border-top: 1px solid #eee;
    border-radius: 0 0 5px 5px;
  }
  .price-section .sub-content .accordion-body.active {
    display: block;
  }
  .price-section .sub-content.active .accordion-body.active {
    border-top: none;
  }
  .price-section .k-train-label {
    font-size: 13px;
    padding: 5px;
  }
  .price-section .price-dl dt {
    padding: 15px 0 5px;
    font-size: 14px;
  }
  .price-section .price-dl dd {
    padding: 0 0 15px;
    font-size: 13px;
  }
  .price-section .price-contact-btn-wrapper {
    margin-top: 30px;
  }
  .price-section .price-contact-btn-wrapper .price-contact-btn {
    display: flex;
    margin: 0 auto;
    font-size: 15px;
    padding: 15px 0;
    width: 85%;
    max-width: 250px;
    border-radius: 5px;
  }
}

/*# sourceMappingURL=price.css.map */
