.faq-section {
  margin-bottom: 40px;
}

.faq-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f2fafe;
  padding: 16px;
  border-radius: 6px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--main-color);
}

.faq-answer {
  color: #444;
  font-size: 15px;
}

.contact-form-section {
  margin-top: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: bold;
  color: var(--text-color);
}

.form-input,
.form-textarea,
.form-select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--main-color);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  align-self: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: var(--main-color);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0092c7;
}

.form-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.form-error {
  color: red;
  font-size: 13px;
}

/* ✅ ローディングトースト */
.loading-toast {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  display: none;
  animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ✅ モーダルの背景 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4;
}

/* ✅ モーダル本体 */
.modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.modal button {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  background: var(--main-color);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.modal button:hover {
  background-color: #0092c7;
}

.ivry {
  width: 100%;
  height: 2000px;
}
