@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
/*---------------------------------------------------------
BreakPoint
----------------------------------------------------------*/
/*---------------------------------------------------------
color
----------------------------------------------------------*/
/*---------------------------------------------------------
BrakePoint
----------------------------------------------------------*/
.private-jet-booking-top {
  margin-bottom: 15px;
  position: relative;
  text-align: center;
}
.private-jet-booking-top .btn-back {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.private-jet-booking-top .btn-back:hover .ar_icon {
  background-color: #c43527;
}
.private-jet-booking-top h2 {
  font-size: 20px;
}

.private-jet-booking-direct {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: bold;
}

.booking_search_result {
  --cols: 2;
  --gap: 30px;
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: var(--gap);
  margin-bottom: 30px;
}
.booking_search_result_item {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.booking_search_result_info {
  padding: 10px 20px;
  background-color: #f2f2f2;
}
.booking_search_result_name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.booking_search_result_name a {
  display: block;
  font-size: 20px;
  transition: all 0.3s;
}
.booking_search_result_name a:hover, .booking_search_result_name a:focus {
  transform: translate(0, -3px);
  color: #c43527;
}
.booking_search_result_name span {
  color: #6a6a6a;
}
.booking_search_result_service {
  display: flex;
  margin-bottom: 5px;
  gap: 8px;
  align-items: center;
  color: #a8a8a8;
}
.booking_search_result_service_item {
  display: flex;
  align-items: center;
  gap: 2px;
}
.booking_search_result_service_item .ar_icon {
  width: 16px;
  height: 16px;
  background-color: #a8a8a8;
}
.booking_search_result_service_item .mask-icon {
  font-size: 7px;
  transform: translate(0, -10%);
}
.booking_search_result_bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #a8a8a8;
}

.swiperc {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.pr_booking_slider {
  position: relative;
  max-width: 100%;
}
.pr_booking_slider_item img {
  max-width: 100%;
  aspect-ratio: 2.16/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.pjbslier-btn-prev,
.pjbslier-btn-next {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.pjbslier-btn-prev::after,
.pjbslier-btn-next::after {
  font-size: 16px;
  color: #fff;
}

.pjbslier-btn-prev {
  left: 20px;
}

.pjbslier-btn-next {
  right: 20px;
}

@media (max-width: 600px) {
  .booking_search_result {
    --cols: 1;
    --gap: 20px;
  }
  .booking_search_result_info {
    padding: 8px 15px 10px;
  }
  .booking_search_result_name span {
    font-size: 11px;
  }
  .booking_search_result_service {
    font-size: 10px;
  }
  .booking_search_result_service_item .ar_icon {
    width: 14px;
    height: 14px;
  }
  .booking_search_result_service_item .mask-icon {
    font-size: 7px;
  }
  .booking_search_result_bottom {
    font-size: 8px;
  }
  .pjbslier-btn-prev,
  .pjbslier-btn-next {
    width: 26px;
    height: 26px;
  }
  .pjbslier-btn-prev::after,
  .pjbslier-btn-next::after {
    font-size: 12px;
  }
}
.pj-booking-entry {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 15px 0 40px;
}
.pj-booking-entry-left {
  flex: 1;
  max-width: 400px;
}
.pj-booking-entry-right {
  flex: 1;
  max-width: 450px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 25px;
}
@media (max-width: 600px) {
  .pj-booking-entry {
    flex-direction: column;
    gap: 20px;
  }
  .pj-booking-entry-left {
    order: 2;
    width: 100%;
  }
  .pj-booking-entry-right {
    order: 1;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: unset;
  }
}

.pjb-detail-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}
.pjb-detail-title h3 {
  font-size: 26px;
  font-weight: bold;
}
.pjb-detail-title-right {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.pjb-detail-title-tax {
  font-size: 12px;
}
.pjb-detail-title-price {
  line-height: 1;
}
.pjb-detail-title-price span {
  font-size: 20px;
  font-weight: bold;
  margin-right: 3px;
}
.pjb-detail-title-note {
  font-size: 10px;
  color: #7e7e7e;
}
.pjb-detail-notice {
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #F3F4F8;
  line-height: 1.5;
}
.pjb-detail-notice h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 6px;
}
.pjb-detail-notice h4 .ar_icon {
  width: 24px;
  height: 24px;
}
.pjb-detail-notice ul {
  padding-left: 20px;
  list-style: disc;
}
.pjb-detail-notice ul li {
  line-height: 1.5;
}
.pjb-detail-trip {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pjb-detail-trip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pjb-detail-trip-head h4 {
  font-size: 20px;
  font-weight: bold;
}
.pjb-detail-trip-schedule {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}
.pjb-detail-trip-schedule-icon {
  min-width: 64px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
}
.pjb-detail-trip-schedule-label {
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #7E7E7E;
}
.pjb-detail-trip-schedule-label .ar_icon {
  width: 28px;
  height: 28px;
  background-color: #c43527;
}
.pjb-detail-trip-schedule-name {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
}
.pjb-detail-trip-schedule-code {
  color: #6A6A6A;
}
.pjb-detail-trip-schedule-select-time {
  font-size: 21px;
  text-align: center;
  font-weight: bold;
}
.pjb-detail-trip-schedule-note {
  line-height: 1.5;
  margin-top: 20px;
}
.pjb-detail-trip-control {
  margin-top: 30px;
}
.pjb-detail-trip-control-label {
  font-weight: bold;
  text-align: center;
}
.pjb-detail-trip-control-input {
  margin-top: 20px;
}
.pjb-detail-trip-control-input input {
  font-size: 16px;
  text-align: center;
  letter-spacing: 12px;
  font-weight: bold;
  color: #c43527;
}
.pjb-detail-form-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.pjb-detail-form-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pjb-detail-form-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3px;
}
.pjb-detail-form-label label {
  font-size: 16px;
  margin-bottom: 0 !important;
}
.pjb-detail-form-label-note {
  font-size: 12px;
  color: #808080;
}
.pjb-detail-form-label-limit {
  font-size: 10px;
  color: #808080;
  padding: 0 10px;
}
.pjb-detail-pet-note {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.5;
  font-size: 12px;
}
.pjb-detail-pet-note label {
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 10px 0 3px;
  gap: 5px;
}
.pjb-detail-pet-note label span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background-color: #c43527;
}
.pjb-detail-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pjb-detail-options-note {
  line-height: 1.5;
  margin: 10px 0;
}
.pjb-detail-options-subnote {
  font-size: 11px;
}
.pjb-detail-options-item {
  cursor: pointer;
  transition: all 0.2s;
}
.pjb-detail-options-item input[type=checkbox] {
  display: none;
}
.pjb-detail-options-item input[type=checkbox]:checked + .pjb-detail-options-item-content {
  border-color: #c43527 !important;
}
.pjb-detail-options-item input[type=checkbox]:checked + .pjb-detail-options-item-content label::before {
  content: "✔";
  color: #fff;
  border-color: #c43527;
  background-color: #c43527;
}
.pjb-detail-options-item-content {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.pjb-detail-options-item-content img {
  aspect-ratio: 2.5/1;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pjb-detail-options-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  color: #555;
}
.pjb-detail-options-item-info label {
  position: relative;
  padding-left: 24px;
}
.pjb-detail-options-item-info label::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid #ddd;
  transition: all 0.2s;
}
.pjb-detail-policy {
  max-height: 250px;
  overflow-y: auto;
  padding: 15px;
  background-color: #f3f4f8;
  line-height: 1.2;
}
.pjb-detail-policy-check {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.pjb-detail-policy-check input[type=checkbox] {
  display: none;
}
.pjb-detail-policy-check input[type=checkbox]:checked + label span::before {
  content: "✔";
  color: #fff;
  background-color: #c43527;
  border-color: #c43527;
}
.pjb-detail-policy-check label {
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  max-width: 250px;
  border: 1px solid #7e7e7e;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  justify-content: center;
}
.pjb-detail-policy-check label span {
  display: block;
  position: relative;
}
.pjb-detail-policy-check label span::before {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translate(0, -50%);
  border: 1px solid #7e7e7e;
  border-radius: 3px;
  transition: all 0.2s;
}
.pjb-detail-action {
  margin-top: 40px;
}
.pjb-detail-action-label {
  margin: 30px 0 20px;
  font-weight: bold;
  text-align: center;
}
.pjb-detail-action-input {
  margin: 20px 0 40px;
}
.pjb-detail-action-input input {
  font-size: 16px;
  text-align: center;
  letter-spacing: 12px;
  font-weight: bold;
  color: #c43527;
}
.pjb-detail-action button {
  font-weight: bold;
}
@media (max-width: 600px) {
  .pjb-detail-title {
    font-size: 11px;
  }
  .pjb-detail-title h3 {
    font-size: 24px;
  }
  .pjb-detail-title-note {
    font-size: 9px;
  }
  .pjb-detail-price span {
    font-size: 18px;
  }
  .pjb-detail-trip-schedule {
    font-size: 13px;
  }
  .pjb-detail-trip-schedule-label {
    font-size: 16px;
  }
  .pjb-detail-trip-schedule-label .ar_icon {
    width: 24px;
    height: 24px;
  }
  .pjb-detail-trip-schedule-name {
    font-size: 22px;
  }
}

.ui-timepicker-container {
  z-index: 3 !important;
}