/* ===================================
   Reservation Page Styles
   =================================== */

/* Container Layout */
.p-reservation__content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .p-reservation__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }
}

.p-reservation__form-container {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Step Header */
.p-reservation__step {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.p-reservation__step:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.p-reservation__step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.p-reservation__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #c8491a 0%, #a83d15 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
}

.p-reservation__step-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* Menu Selection */
.p-reservation__menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-reservation__menu-item {
  display: block;
  cursor: pointer;
}

.p-reservation__menu-item input {
  display: none;
}

.p-reservation__menu-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #f5f0e8;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.p-reservation__menu-item input:checked + .p-reservation__menu-content {
  background: #ede7d4;
  border-color: #c8491a;
}

.p-reservation__menu-item:hover .p-reservation__menu-content {
  border-color: #c8491a;
}

.p-reservation__menu-name {
  flex: 1;
  font-weight: 600;
  color: #333;
}

.p-reservation__menu-duration {
  margin-right: 20px;
  padding: 4px 12px;
  background: #fff;
  border-radius: 20px;
  font-size: 13px;
  color: #666;
}

.p-reservation__menu-price {
  font-weight: 700;
  color: #c8491a;
  font-size: 15px;
}

/* Calendar */
.p-reservation__calendar-container {
  margin-bottom: 20px;
}

.p-reservation__calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.p-reservation__calendar-prev,
.p-reservation__calendar-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  transition: all 0.2s ease;
}

.p-reservation__calendar-prev:hover,
.p-reservation__calendar-next:hover {
  background: #c8491a;
  color: #fff;
}

.p-reservation__calendar-month {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
  min-width: 140px;
  text-align: center;
}

.p-reservation__calendar {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.p-reservation__calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f5f0e8;
  border-bottom: 1px solid #e0e0e0;
}

.p-reservation__calendar-header span {
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #666;
}

.p-reservation__calendar-header .is-sun {
  color: #e74c3c;
}

.p-reservation__calendar-header .is-sat {
  color: #3498db;
}

.p-reservation__calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.p-reservation__calendar-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  min-height: 60px;
  border: 1px solid #f0f0f0;
  background: #fff;
  cursor: default;
}

.p-reservation__calendar-day.is-empty {
  background: #fafafa;
}

.p-reservation__calendar-day .day-number {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.p-reservation__calendar-day .day-status {
  font-size: 12px;
  font-weight: 600;
}

.p-reservation__calendar-day.is-past {
  background: #f5f5f5;
  color: #ccc;
}

.p-reservation__calendar-day.is-unavailable {
  background: #fafafa;
}

.p-reservation__calendar-day.is-unavailable .day-status {
  color: #ccc;
}

.p-reservation__calendar-day.is-available {
  cursor: pointer;
  transition: all 0.2s ease;
}

.p-reservation__calendar-day.is-available .day-status {
  color: #27ae60;
}

.p-reservation__calendar-day.is-available:hover {
  background: #ede7d4;
  transform: scale(1.05);
}

.p-reservation__calendar-day.is-selected {
  background: #c8491a !important;
  color: #fff;
}

.p-reservation__calendar-day.is-selected .day-number,
.p-reservation__calendar-day.is-selected .day-status {
  color: #fff;
}

.p-reservation__calendar-day.is-sat .day-number {
  color: #3498db;
}

.p-reservation__calendar-day.is-sat.is-selected .day-number {
  color: #fff;
}

/* Legend */
.p-reservation__calendar-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  font-size: 13px;
  color: #666;
}

.p-reservation__legend-item.is-available::before {
  color: #27ae60;
}

.p-reservation__legend-item.is-few::before {
  color: #f39c12;
}

.p-reservation__legend-item.is-unavailable::before {
  color: #ccc;
}

/* Timeslots */
.p-reservation__timeslots {
  margin-top: 25px;
  padding: 20px;
  background: #f5f0e8;
  border-radius: 12px;
}

.p-reservation__timeslots-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.p-reservation__timeslots-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.p-reservation__timeslot-item {
  display: block;
  cursor: pointer;
}

.p-reservation__timeslot-item input {
  display: none;
}

.p-reservation__timeslot-label {
  display: block;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease;
}

.p-reservation__timeslot-item:hover .p-reservation__timeslot-label {
  border-color: #c8491a;
}

.p-reservation__timeslot-item input:checked + .p-reservation__timeslot-label {
  background: #c8491a;
  border-color: #c8491a;
  color: #fff;
}

.p-reservation__timeslot-item.is-busy {
  cursor: not-allowed;
}

.p-reservation__timeslot-label.is-disabled {
  display: block;
  padding: 12px 16px;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.p-reservation__timeslot-label.is-disabled small {
  display: block;
  text-decoration: none;
  font-size: 11px;
  color: #e74c3c;
  margin-top: 2px;
}

/* 残りわずか表示 */
.p-reservation__calendar-day.is-few .day-status {
  color: #f39c12;
}

/* Customer Info Form */
.p-reservation__info-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-reservation__form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.p-reservation__form-group .required {
  color: #e74c3c;
  font-size: 12px;
  margin-left: 4px;
}

.p-reservation__form-group input,
.p-reservation__form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.p-reservation__form-group input:focus,
.p-reservation__form-group textarea:focus {
  outline: none;
  border-color: #c8491a;
}

.p-reservation__form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Summary */
.p-reservation__summary {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, #f5f0e8 0%, #ede7d4 100%);
  border-radius: 12px;
  border: 1px solid #d0e8ef;
}

.p-reservation__summary-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #d0e8ef;
}

.p-reservation__summary-list {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  margin: 0;
}

.p-reservation__summary-list dt {
  font-weight: 600;
  color: #666;
  font-size: 14px;
}

.p-reservation__summary-list dd {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  margin: 0;
}

/* Submit Button */
.p-reservation__submit {
  text-align: center;
  padding-top: 20px;
}

.p-reservation__submit .c-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #c8491a 0%, #a83d15 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(18, 153, 187, 0.3);
}

.p-reservation__submit .c-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 153, 187, 0.4);
}

.p-reservation__submit .c-btn--primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

.p-reservation__note {
  margin-top: 15px;
  font-size: 13px;
  color: #888;
}

/* Sidebar */
.p-reservation__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-reservation__sidebar-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.p-reservation__sidebar-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #c8491a;
}

.p-reservation__sidebar-box ol {
  margin: 0;
  padding-left: 20px;
}

.p-reservation__sidebar-box li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.p-reservation__sidebar-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.p-reservation__sidebar-box a {
  color: #c8491a;
  text-decoration: underline;
}

/* Success Modal */
.p-reservation__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.p-reservation__modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.p-reservation__modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
  color: #fff;
  font-size: 40px;
  border-radius: 50%;
}

.p-reservation__modal-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
}

.p-reservation__modal-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 30px 0;
}

.p-reservation__modal-content .c-btn--primary {
  display: inline-flex;
  padding: 14px 30px;
  background: linear-gradient(135deg, #c8491a 0%, #a83d15 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.p-reservation__modal-content .c-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(18, 153, 187, 0.4);
}

/* Responsive */
@media (max-width: 767px) {
  .p-reservation__form-container {
    padding: 20px 15px;
  }

  .p-reservation__calendar-day {
    min-height: 50px;
    padding: 6px 2px;
  }

  .p-reservation__calendar-day .day-number {
    font-size: 14px;
  }

  .p-reservation__calendar-day .day-status {
    font-size: 10px;
  }

  .p-reservation__timeslots-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-reservation__menu-content {
    flex-wrap: wrap;
  }

  .p-reservation__menu-duration {
    margin-right: 10px;
  }

  .p-reservation__calendar-legend {
    flex-wrap: wrap;
    gap: 10px;
  }

  .p-reservation__submit .c-btn--primary {
    width: 100%;
    min-width: auto;
  }
}

/* Course Consultation Styles */
.p-reservation__course-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-reservation__course-desc {
  padding: 15px 20px;
  background: #ede7d4;
  border-radius: 8px;
  color: #a83d15;
  font-weight: 500;
  margin: 0;
}

.p-reservation__checkbox-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

/* チェックボックスラベルのスタイルをリセット */
label.p-reservation__checkbox-item {
  display: flex !important;
  margin-bottom: 0 !important;
  font-weight: normal !important;
}

.p-reservation__checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  background: #f5f0e8;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
}

.p-reservation__checkbox-item * {
  pointer-events: auto;
}

.p-reservation__checkbox-item:hover {
  border-color: #c8491a;
}

.p-reservation__checkbox-item input[type="checkbox"] {
  /* layout.cssのリセットを上書き */
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  background: #fff !important;
  border: 2px solid #ccc !important;
  border-radius: 3px !important;
  /* サイズと配置 */
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  flex-shrink: 0;
  /* インタラクション */
  cursor: pointer !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  position: relative;
  z-index: 2;
  margin: 0;
}

.p-reservation__checkbox-item input[type="checkbox"]:checked {
  background: #c8491a !important;
  border-color: #c8491a !important;
}

.p-reservation__agreement-item input[type="checkbox"] {
  /* layout.cssのリセットを上書き */
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  background: #fff !important;
  border: 2px solid #ccc !important;
  border-radius: 3px !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

.p-reservation__agreement-item input[type="checkbox"]:checked {
  background: #c8491a !important;
  border-color: #c8491a !important;
}

.p-reservation__checkbox-item span {
  cursor: pointer;
  user-select: none;
}

.p-reservation__checkbox-item input:checked + span {
  color: #c8491a;
  font-weight: 600;
}

.p-reservation__ai-notice {
  padding: 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.p-reservation__ai-notice p {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.p-reservation__ai-notice p:first-child {
  margin-bottom: 8px;
  color: #333;
}

.p-reservation__ai-notice a {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
}

.p-reservation__ai-notice a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .p-reservation__checkbox-list {
    grid-template-columns: 1fr;
  }
}

/* Policy List */
.p-reservation__policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.p-reservation__policy-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 14px;
}

.p-reservation__policy-list li:last-child {
  border-bottom: none;
}

.p-reservation__policy-list strong {
  color: #e74c3c;
}

.p-reservation__policy-note {
  font-size: 12px;
  color: #888;
  margin: 0;
}

/* Agreement Checkbox */
.p-reservation__agreement {
  margin: 20px 0;
  padding: 20px 25px;
  background: #fff8e8;
  border: 2px solid #f0c040;
  border-radius: 10px;
}

.p-reservation__agreement-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e0b030;
}

.p-reservation__agreement-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-reservation__agreement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.p-reservation__agreement-item input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  accent-color: #c8491a;
  cursor: pointer;
}

.p-reservation__agreement-item span {
  font-size: 15px;
  color: #333;
}

.p-reservation__agreement-item a {
  color: #c8491a;
  font-weight: 600;
  text-decoration: underline;
}

.p-reservation__agreement-item a:hover {
  color: #a83d15;
}

/* Sidebar list improvements */
.p-reservation__sidebar-box ol {
  padding-left: 20px;
  margin: 0;
}

.p-reservation__sidebar-box ol li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.p-reservation__sidebar-box ol li small {
  display: block;
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}

/* ===================================
   mirAIcafe 誘導ボックス
   =================================== */
.p-reservation__ai-box {
  background: linear-gradient(135deg, #fff5f0 0%, #fff0eb 100%);
  border: 2px solid #ff9966;
  position: relative;
  overflow: hidden;
}

.p-reservation__ai-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffcc99 0%, #ff9966 100%);
  border-radius: 50%;
  opacity: 0.15;
}

.p-reservation__ai-box-icon {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
}

.p-reservation__ai-box h3 {
  color: #e65c00;
  border-bottom-color: #ff9966;
  font-size: 15px;
  margin-bottom: 10px;
}

.p-reservation__ai-box-catch {
  font-size: 18px;
  font-weight: 700;
  color: #e65c00;
  margin-bottom: 12px !important;
  text-align: center;
}

.p-reservation__ai-box p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.p-reservation__ai-box-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.p-reservation__ai-box-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #555;
}

.p-reservation__ai-box-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff9966;
  font-weight: 700;
}

.p-reservation__ai-box-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ff9966 0%, #ff7733 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 119, 51, 0.3);
  transition: all 0.3s ease;
}

.p-reservation__ai-box-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 119, 51, 0.4);
  color: #fff;
}

/* ===================================
   Counseling Notes Accordion
   =================================== */
.p-reservation__notes {
  margin: 24px 0 20px;
  background: #fff;
  border: 1px solid #d8e8ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(18, 153, 187, 0.06);
}

.p-reservation__notes-trigger {
  width: 100%;
  background: linear-gradient(135deg, #f4fbfd 0%, #e9f4f8 100%);
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #333;
  transition: background 0.3s;
  font-family: inherit;
}

.p-reservation__notes-trigger:hover {
  background: linear-gradient(135deg, #ebf6f9 0%, #d8ecf2 100%);
}

.p-reservation__notes-trigger-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-reservation__notes-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #1299bb;
  text-transform: uppercase;
  font-weight: 600;
}

.p-reservation__notes-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.p-reservation__notes-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.p-reservation__notes-toggle::before,
.p-reservation__notes-toggle::after {
  content: '';
  position: absolute;
  background: #1299bb;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.p-reservation__notes-toggle::before {
  width: 14px;
  height: 2px;
  border-radius: 1px;
}

.p-reservation__notes-toggle::after {
  width: 2px;
  height: 14px;
  border-radius: 1px;
}

.p-reservation__notes.open .p-reservation__notes-toggle {
  transform: rotate(180deg);
}

.p-reservation__notes.open .p-reservation__notes-toggle::after {
  opacity: 0;
}

.p-reservation__notes-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.p-reservation__notes.open .p-reservation__notes-content {
  max-height: 6000px;
}

.p-reservation__notes-body {
  padding: 8px 24px 28px;
  font-size: 13.5px;
  line-height: 1.85;
  color: #444;
}

.p-reservation__notes-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #1299bb;
  margin: 22px 0 10px;
  padding-left: 12px;
  border-left: 3px solid #1299bb;
  line-height: 1.5;
}

.p-reservation__notes-body h4:first-child {
  margin-top: 12px;
}

.p-reservation__notes-body p {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.85;
  color: #444;
}

.p-reservation__notes-body ul {
  list-style: none;
  margin: 6px 0 12px;
  padding-left: 0;
}

.p-reservation__notes-body ul li {
  padding: 3px 0 3px 16px;
  position: relative;
  font-size: 13px;
  line-height: 1.8;
  color: #444;
}

.p-reservation__notes-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: #1299bb;
  border-radius: 1px;
}

.p-reservation__notes-body a {
  color: #1299bb;
  text-decoration: underline;
  font-weight: 500;
}

.p-reservation__notes-body a:hover {
  opacity: 0.7;
}

.p-reservation__notes-pricing {
  background: #f8fbfc;
  padding: 14px 18px;
  margin: 10px 0;
  border-left: 3px solid #ff9966;
  border-radius: 4px;
}

.p-reservation__notes-pricing p {
  margin-bottom: 4px !important;
  font-size: 13.5px !important;
}

.p-reservation__notes-pricing p:last-child {
  margin-bottom: 0 !important;
}

.p-reservation__notes-pricing strong {
  color: #333;
  font-weight: 700;
}

.p-reservation__notes-link {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #cce4ed;
  font-size: 12.5px !important;
  color: #666 !important;
  text-align: center;
}

@media (max-width: 767px) {
  .p-reservation__notes-trigger {
    padding: 14px 18px;
  }

  .p-reservation__notes-title {
    font-size: 14px;
  }

  .p-reservation__notes-body {
    padding: 6px 18px 22px;
  }

  .p-reservation__notes-body h4 {
    font-size: 13.5px;
    padding-left: 10px;
    margin: 18px 0 8px;
  }

  .p-reservation__notes-body p,
  .p-reservation__notes-body ul li {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .p-reservation__notes-pricing {
    padding: 12px 14px;
  }

  .p-reservation__notes-pricing p {
    font-size: 12.5px !important;
  }
}
