@charset "UTF-8";
/* ==================================================
  Base & Common Styles (全ページ共通のスタイル)
   ================================================== */
body {
  font-family: "Inter", sans-serif;
  background: #f8f9fa;
  color: #111;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 640px;
  margin: 60px auto 40px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}
.container .download-note {
  display: block;
  margin-top: 8px;
}

h1 {
  color: #00b050;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
h1 + p {
  text-align: center;
  margin-bottom: 2rem;
}

label {
  display: block;
  font-weight: 600;
  margin-top: 16px;
}

main input,
main textarea,
main select {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}
main button {
  background: #00b050;
  color: #fff;
  border: none;
  padding: 12px 24px;
  margin-top: 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
main button:hover:not(:disabled) {
  background: #009443;
}
main button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
main .success,
main .error {
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}
main .success {
  color: #00b050;
}
main .error {
  color: #c00;
}

/* ==================================================
  Modal Styles (全ページ共通のモーダルスタイル)
   ================================================== */
.modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.modal-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0 0 16px;
  color: #00b050;
  text-align: center;
}
.modal-content p {
  margin: 8px 0;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.modal-buttons button {
  width: 48%;
}

.missing-list {
  background: #ffeaea;
  border: 1px solid #f5b5b5;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  color: #b30000;
  font-size: 0.95rem;
}

a {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

footer p {
  text-align: center;
}

/* ==================================================
  Page Specific Styles (ページ固有のスタイル)
   ================================================== */
/* for reservation.html & inquiry.html */
#missingFields strong {
  font-size: 1.25rem;
  margin-left: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 500;
  min-width: 164px;
  cursor: pointer;
}
.checkbox-group .date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px; /* AM／PM の間隔 */
}
.checkbox-group input[type=checkbox] {
  width: auto;
  margin-right: 6px;
  margin-top: 0;
  accent-color: #00B053;
}

.privacy-consent {
  margin-top: 3rem;
}
.privacy-consent label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.privacy-consent label .privacyAgree {
  width: auto;
  margin: 0 8px 0 0;
}
.privacy-consent label a {
  display: inline;
  margin: 0 -4px 0 0;
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.spinner-overlay.hidden {
  display: none;
}

#formStatus {
  text-align: center;
}

@media (max-width: 768px) {
  .container {
    margin: 0 0 30px;
  }
  .container h1 {
    font-size: 1.5rem;
  }
  .checkbox-group .date-row {
    gap: 0;
  }
  .modal-content {
    width: 80%;
  }
  footer p {
    font-size: 12px;
  }
}
@media (min-width: 430px) {
  .privacy-consent label {
    white-space: nowrap;
  }
}/*# sourceMappingURL=sub-style.css.map */