/* ===== Form Area Reset & Base ===== */
#loveit-form-area *,
#loveit-form-area *::before,
#loveit-form-area *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#loveit-form-area {
  font-family:
    "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
  color: #1e293b;
  background: #f8f8f8;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

#loveit-form-area a {
  color: #060097;
  text-decoration: none;
}
#loveit-form-area a:hover {
  text-decoration: underline;
}

/* ===== Campaign Banner ===== */
#loveit-form-area .campaign-banner {
  background: linear-gradient(135deg, #fd849b 0%, #f06292 100%);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
}
#loveit-form-area .campaign-banner .campaign-main {
  font-size: 1.1rem;
  display: block;
}
#loveit-form-area .campaign-banner .campaign-sub {
  font-size: 0.85rem;
  opacity: 0.95;
  font-weight: 500;
}
#loveit-form-area .campaign-banner .price-strike {
  text-decoration: line-through;
  opacity: 0.8;
}
#loveit-form-area .campaign-banner .price-new {
  font-size: 1.3rem;
  color: #ffcd57;
}

/* ===== Main Container ===== */
#loveit-form-area .main-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* ===== Page Title ===== */
#loveit-form-area .page-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #060097;
  margin-bottom: 8px;
  font-family:
    "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
}
#loveit-form-area .page-description {
  text-align: center;
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 32px;
  line-height: 1.9;
}
#loveit-form-area .page-description .email-notice {
  display: inline-block;
  background: #fff3cd;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  margin-top: 8px;
  color: #856404;
}

/* ===== Course Info Cards ===== */
#loveit-form-area .course-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
#loveit-form-area .course-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #060097;
}
#loveit-form-area .course-info-card.ritmic {
  border-top-color: #fd849b;
}
#loveit-form-area .course-info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family:
    "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
}
#loveit-form-area .course-info-card h3 .icon {
  font-size: 1.2rem;
}
#loveit-form-area .course-info-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
}
#loveit-form-area .course-info-card .new-badge {
  display: inline-block;
  background: #fd849b;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 6px;
}

/* ===== Form Styles ===== */
#loveit-form-area .form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#loveit-form-area .form-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
#loveit-form-area .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#loveit-form-area .form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #060097;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid #fd849b;
  font-family:
    "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
}

#loveit-form-area .form-group {
  margin-bottom: 20px;
}
#loveit-form-area .form-group:last-child {
  margin-bottom: 0;
}

#loveit-form-area .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
#loveit-form-area .badge-required {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#loveit-form-area .badge-optional {
  display: inline-block;
  background: #a0aec0;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#loveit-form-area .form-hint {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
}

/* Input Styles */
#loveit-form-area input[type="text"],
#loveit-form-area input[type="email"],
#loveit-form-area input[type="tel"],
#loveit-form-area input[type="number"],
#loveit-form-area select,
#loveit-form-area textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
#loveit-form-area input:focus,
#loveit-form-area select:focus,
#loveit-form-area textarea:focus {
  outline: none;
  border-color: #060097;
  box-shadow: 0 0 0 3px rgba(6, 0, 151, 0.1);
}
#loveit-form-area input::placeholder,
#loveit-form-area textarea::placeholder {
  color: #b0b8c4;
}
#loveit-form-area textarea {
  resize: vertical;
  min-height: 100px;
}

#loveit-form-area select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #fff !important;
  padding-right: 36px;
  cursor: pointer;
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important;
  height: auto !important;
  line-height: 1.5;
}
#loveit-form-area select option {
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important;
  background-color: #fff !important;
}

/* Name Input Row */
#loveit-form-area .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Birthday Row */
#loveit-form-area .birthday-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#loveit-form-area .birthday-row input[type="number"] {
  width: 80px;
  text-align: center;
}
#loveit-form-area .birthday-row select {
  width: auto;
  min-width: 70px;
  color: #1e293b !important;
  -webkit-text-fill-color: #1e293b !important;
  font-size: 1rem;
  text-align: center;
  text-align-last: center;
  padding: 12px 32px 12px 10px;
  height: auto !important;
}
#loveit-form-area .birthday-row .unit {
  font-size: 0.9rem;
  color: #555;
}

/* Address Row */
#loveit-form-area .zip-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
#loveit-form-area .zip-row input {
  width: 180px;
}
#loveit-form-area .zip-row .zip-prefix {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}
#loveit-form-area .address-group input,
#loveit-form-area .address-group select {
  margin-bottom: 10px;
}
#loveit-form-area .address-group select {
  width: auto;
  min-width: 160px;
  height: auto !important;
}
#loveit-form-area .address-sub-label {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 4px;
  font-weight: 500;
}

/* Checkbox & Radio */
#loveit-form-area .checkbox-group,
#loveit-form-area .radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#loveit-form-area .checkbox-item,
#loveit-form-area .radio-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s;
  background: #fff;
}
#loveit-form-area .checkbox-item:hover,
#loveit-form-area .radio-item:hover {
  border-color: #cbd5e0;
  background: #fafbfc;
}
#loveit-form-area .checkbox-item.checked,
#loveit-form-area .radio-item.checked {
  border-color: #060097;
  background: rgba(6, 0, 151, 0.03);
}

#loveit-form-area .checkbox-item input[type="checkbox"],
#loveit-form-area .radio-item input[type="radio"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #060097;
  flex-shrink: 0;
  cursor: pointer;
}
#loveit-form-area .checkbox-item label,
#loveit-form-area .radio-item label {
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
#loveit-form-area .checkbox-item .item-detail,
#loveit-form-area .radio-item .item-detail {
  font-size: 0.78rem;
  color: #888;
  display: block;
}

/* Course Type Selector (楽器/リトミック 2択カード) */
#loveit-form-area .course-type-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
#loveit-form-area .course-type-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}
#loveit-form-area .course-type-btn:hover {
  border-color: #fd849b;
  box-shadow: 0 2px 8px rgba(253, 132, 155, 0.15);
}
#loveit-form-area .course-type-btn.selected {
  border-color: #fd849b;
  background: #fff5f7;
  box-shadow: 0 2px 12px rgba(253, 132, 155, 0.2);
}
#loveit-form-area .course-type-btn .ct-icon {
  font-size: 2rem;
}
#loveit-form-area .course-type-btn .ct-label {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}
#loveit-form-area .course-type-btn .ct-sub {
  font-size: 0.78rem;
  color: #888;
  text-align: center;
}
#loveit-form-area .course-type-btn.ritmic-link .ct-sub {
  color: #fd849b;
}
@media (max-width: 480px) {
  #loveit-form-area .course-type-selector {
    gap: 8px;
  }
  #loveit-form-area .course-type-btn {
    padding: 14px 8px;
  }
}

/* Conditional Sections */
#loveit-form-area .conditional-section {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s ease,
    opacity 0.35s ease,
    padding 0.35s ease;
  padding: 0;
}
#loveit-form-area .conditional-section.active {
  max-height: 9999px;
  overflow: visible;
  opacity: 1;
  padding: 0;
}
@keyframes loveitFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sub-input (conditional text input within radio/checkbox) */
#loveit-form-area .sub-input {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
  margin-top: 0;
}
#loveit-form-area .sub-input.active {
  max-height: 500px;
  opacity: 1;
  margin-top: 8px;
}
#loveit-form-area .sub-input input,
#loveit-form-area .sub-input select {
  font-size: 0.9rem;
  padding: 8px 12px;
}

/* Separator within checkbox group */
#loveit-form-area .checkbox-separator {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fd849b;
  padding: 4px 0;
  margin-top: 4px;
}

/* Experience selector */
#loveit-form-area .experience-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
#loveit-form-area .experience-row input[type="number"] {
  width: 70px;
  text-align: center;
}
#loveit-form-area .experience-row input[type="text"] {
  width: 160px;
}
#loveit-form-area .experience-row .unit {
  font-size: 0.9rem;
  color: #555;
}

/* ===== Submit Button ===== */
#loveit-form-area .submit-section {
  text-align: center;
  margin-top: 36px;
}
#loveit-form-area .submit-btn {
  display: inline-block;
  background: linear-gradient(135deg, #fd849b 0%, #f06292 100%);
  color: #fff;
  border: none;
  padding: 16px 60px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(253, 132, 155, 0.3);
}
#loveit-form-area .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 132, 155, 0.4);
}
#loveit-form-area .submit-btn:active {
  transform: translateY(0);
}
#loveit-form-area .submit-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 12px;
}

/* ===== Confirmation Screen ===== */
#loveit-form-area .confirm-screen {
  display: none;
}
#loveit-form-area .confirm-screen.active {
  display: block;
}
#loveit-form-area .confirm-table {
  width: 100%;
  border-collapse: collapse;
}
#loveit-form-area .confirm-table tr {
  border-bottom: 1px solid #eee;
}
#loveit-form-area .confirm-table th {
  text-align: left;
  padding: 12px 8px;
  font-size: 0.85rem;
  color: #666;
  font-weight: 700;
  width: 35%;
  vertical-align: top;
}
#loveit-form-area .confirm-table td {
  padding: 12px 8px;
  font-size: 0.92rem;
}
#loveit-form-area .confirm-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
#loveit-form-area .btn-back {
  display: inline-block;
  background: #e2e8f0;
  color: #555;
  border: none;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
#loveit-form-area .btn-back:hover {
  background: #cbd5e0;
}

/* ===== Complete Screen ===== */
#loveit-form-area .complete-screen {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
#loveit-form-area .complete-screen.active {
  display: block;
}
#loveit-form-area .complete-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}
#loveit-form-area .complete-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #060097;
  margin-bottom: 12px;
  font-family:
    "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
}
#loveit-form-area .complete-message {
  color: #555;
  font-size: 0.92rem;
  line-height: 2;
}

/* ===== Validation ===== */
#loveit-form-area .form-group.error input,
#loveit-form-area .form-group.error select,
#loveit-form-area .form-group.error textarea {
  border-color: #e53e3e;
}
#loveit-form-area .form-group .error-message {
  display: none;
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 4px;
}
#loveit-form-area .form-group.error .error-message {
  display: block;
}

/* ===== Privacy Link ===== */
#loveit-form-area .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  background: #f7fafc;
  border-radius: 8px;
}
#loveit-form-area .privacy-check input {
  margin-top: 4px;
  accent-color: #060097;
}
#loveit-form-area .privacy-check label {
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
}

/* ===== Progress Steps ===== */
#loveit-form-area .progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
#loveit-form-area .progress-step {
  display: flex;
  align-items: center;
  gap: 0;
}
#loveit-form-area .step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: #e2e8f0;
  color: #999;
  transition: all 0.3s;
}
#loveit-form-area .step-circle.active {
  background: #060097;
  color: #fff;
}
#loveit-form-area .step-circle.done {
  background: #fd849b;
  color: #fff;
}
#loveit-form-area .step-label {
  font-size: 0.72rem;
  color: #999;
  margin-left: 6px;
  margin-right: 6px;
  font-weight: 500;
}
#loveit-form-area .step-label.active {
  color: #060097;
  font-weight: 700;
}
#loveit-form-area .step-label.done {
  color: #fd849b;
}
#loveit-form-area .step-connector {
  width: 40px;
  height: 2px;
  background: #e2e8f0;
  margin: 0 4px;
}
#loveit-form-area .step-connector.done {
  background: #fd849b;
}

/* ===== Form Responsive ===== */
@media (max-width: 640px) {
  #loveit-form-area .page-title {
    font-size: 1.3rem;
  }
  #loveit-form-area .form-card {
    padding: 24px 18px;
  }
  #loveit-form-area .course-info-cards {
    grid-template-columns: 1fr;
  }
  #loveit-form-area .name-row {
    grid-template-columns: 1fr;
  }
  #loveit-form-area .birthday-row input[type="number"] {
    width: 70px;
  }
  #loveit-form-area .zip-row input {
    width: 140px;
  }
  #loveit-form-area .confirm-buttons {
    flex-direction: column;
  }
  #loveit-form-area .confirm-buttons button {
    width: 100%;
  }
  #loveit-form-area .campaign-banner .campaign-main {
    font-size: 0.95rem;
  }
}

/* ============================================
   C案: アコーディオンカード式 (体験日程選択)
   ============================================ */

/* --- Accordion Card --- */
#loveit-form-area .accC-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#loveit-form-area .accC-card.open {
  border-color: #fd849b;
  box-shadow: 0 4px 16px rgba(253,132,155,0.1);
}
#loveit-form-area .accC-card.has-selection {
  border-color: #48bb78;
}
#loveit-form-area .accC-card.has-selection.open {
  border-color: #fd849b;
}

#loveit-form-area .accC-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
#loveit-form-area .accC-header:hover {
  background: #fef7f8;
}
#loveit-form-area .accC-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
#loveit-form-area .accC-title {
  flex: 1;
  font-weight: 700;
  font-size: 0.92rem;
}
#loveit-form-area .accC-count-badge {
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  background: #f0e0e4;
  color: #999;
  transition: all 0.3s;
}
#loveit-form-area .accC-card.has-selection .accC-count-badge {
  background: #e6ffed;
  color: #38a169;
}
#loveit-form-area .accC-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: #ccc;
}
#loveit-form-area .accC-card.open .accC-arrow {
  transform: rotate(180deg);
  color: #fd849b;
}

#loveit-form-area .accC-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 20px;
}
#loveit-form-area .accC-card.open .accC-body {
  max-height: 2000px;
  padding: 4px 16px 20px;
}

/* --- Date Group --- */
#loveit-form-area .dateGroup {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #f0e8ea;
  transition: border-color 0.3s;
}
#loveit-form-area .dateGroup.expanded {
  border-color: #fd849b;
}
#loveit-form-area .dateGroup.has-checked {
  border-color: #48bb78;
}
#loveit-form-area .dateGroup.has-checked.expanded {
  border-color: #fd849b;
}

#loveit-form-area .dateGroup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
  user-select: none;
}
#loveit-form-area .dateGroup-header:hover {
  background: #fef7f8;
}
#loveit-form-area .dateGroup-date {
  font-weight: 700;
  font-size: 0.88rem;
  flex: 1;
  white-space: nowrap;
}
#loveit-form-area .dateGroup-place {
  font-size: 0.68rem;
  color: #888;
  background: #f5f0f2;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
#loveit-form-area .dateGroup-slots {
  font-size: 0.68rem;
  color: #999;
  white-space: nowrap;
}
#loveit-form-area .dateGroup-badge {
  font-size: 0.6rem;
  color: #fff;
  background: #fd849b;
  padding: 1px 7px;
  border-radius: 10px;
  display: none;
  white-space: nowrap;
}
#loveit-form-area .dateGroup.has-checked .dateGroup-badge {
  display: inline-block;
}
#loveit-form-area .dateGroup-arrow {
  width: 18px;
  height: 18px;
  color: #ccc;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}
#loveit-form-area .dateGroup.expanded .dateGroup-arrow {
  transform: rotate(180deg);
  color: #fd849b;
}

#loveit-form-area .dateGroup-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 14px;
  background: #faf7f8;
}
#loveit-form-area .dateGroup.expanded .dateGroup-body {
  max-height: 300px;
  padding: 12px 14px;
}

/* --- Time Chips --- */
#loveit-form-area .timeChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#loveit-form-area .timeChip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 2px solid #e8dfe1;
  border-radius: 50px;
  cursor: pointer;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s;
  user-select: none;
}
#loveit-form-area .timeChip:hover {
  border-color: #f0c0c8;
  background: #fef7f8;
}
#loveit-form-area .timeChip.checked {
  border-color: #fd849b;
  background: #fd849b;
  color: #fff;
}
#loveit-form-area .timeChip input {
  display: none;
}

/* --- Selection Summary --- */
#loveit-form-area .selected-summary {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fff3f5;
  border-radius: 12px;
  font-size: 0.82rem;
  color: #555;
  min-height: 42px;
  transition: all 0.3s;
}
#loveit-form-area .selected-summary strong {
  color: #fd849b;
  display: block;
  margin-bottom: 4px;
}
#loveit-form-area .selected-summary:empty::before {
  content: "未選択です";
  color: #ccc;
}
#loveit-form-area .summary-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.78rem;
  line-height: 1.8;
  flex-wrap: wrap;
}
#loveit-form-area .summary-line .s-icon { flex-shrink: 0; }
#loveit-form-area .summary-line .s-date { font-weight: 600; white-space: nowrap; }
#loveit-form-area .summary-line .s-place { color: #888; font-size: 0.72rem; white-space: nowrap; }
#loveit-form-area .summary-line .s-times { color: #fd849b; font-weight: 600; }

/* --- C案 Responsive --- */
@media (max-width: 640px) {
  #loveit-form-area .accC-header { padding: 14px 16px; gap: 10px; }
  #loveit-form-area .dateGroup-header { padding: 10px 12px; gap: 5px; }
  #loveit-form-area .dateGroup-date { font-size: 0.84rem; }
  #loveit-form-area .dateGroup-place { font-size: 0.65rem; padding: 2px 6px; }
  #loveit-form-area .dateGroup-slots { font-size: 0.65rem; }
  #loveit-form-area .timeChip { padding: 6px 12px; font-size: 0.8rem; }
}

/* ===== Footer: hide nav on mobile ===== */
@media (max-width: 921px) {
  .footer-nav-desktop {
    display: none !important;
  }
}

/* ===== Footer (Elementor template 134): nav link white override ===== */
.elementor-134 a,
.elementor-134 .elementor-button,
.elementor-134 .elementor-button-text,
.elementor-134 .elementor-widget-text-editor,
.elementor-134 .elementor-widget-heading a,
.elementor-134 .elementor-heading-title a,
.elementor-134 .elementor-widget-heading .elementor-heading-title a,
.elementor-134 p.elementor-heading-title a {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.elementor-134 a:hover,
.elementor-134 a:focus,
.elementor-134 .elementor-button:hover,
.elementor-134 a:hover .elementor-button-text,
.elementor-134 .elementor-heading-title a:hover,
.elementor-134 .elementor-heading-title a:focus {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 0.8;
}

/* ===== Utility classes (replacing inline styles) ===== */
#loveit-form-area .radio-group--row {
  flex-direction: row;
  flex-wrap: wrap;
}

#loveit-form-area .radio-item--flex {
  flex: 1;
  min-width: 120px;
}

#loveit-form-area .radio-group--row-gap {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

#loveit-form-area .radio-item--flex-center {
  flex: 1;
  min-width: 140px;
  text-align: center;
  justify-content: center;
}

#loveit-form-area .experience-row--mt {
  margin-top: 8px;
}

#loveit-form-area .form-section--mt {
  margin-top: 32px;
}

#loveit-form-area .form-hint--mt {
  margin-top: 4px;
}

#loveit-form-area .form-section-title--mb {
  margin-bottom: 24px;
}

#loveit-form-area .confirm-intro {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 20px;
}

#loveit-form-area .link-toppage {
  color: #fd849b;
  font-weight: 700;
}
