@charset "UTF-8";

.contact-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: #f1faf8;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  display: none; /* 装飾ブロブ無効化（背景を単色で統一）*/
  z-index: 0;
}
.contact-section .inner {
  position: relative;
  z-index: 1;
}
.contact-lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #555;
}
.contact-tel-link {
  color: #4DB6AC;
  font-weight: 700;
  font-size: 1.8rem;
}
.sp-br {
  display: none;
}
@media screen and (max-width: 767px) {
  .contact-lead {
    text-align: left;
  }
  .sp-br {
    display: inline;
  }
}
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: #333;
}
.form-group label .req {
  color: #e53e3e;
  font-size: 1.2rem;
  margin-left: 8px;
  font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1.5rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4DB6AC;
  box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.15);
}
.form-group textarea {
  height: 180px;
  resize: vertical;
}
.form-error {
  color: #e53e3e;
  font-size: 1.2rem;
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #e53e3e;
}
.form-group.has-error .form-error {
  display: block;
}
.checkbox-label {
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.checkbox-label a {
  color: #4DB6AC;
  text-decoration: underline;
}
.submit-area {
  text-align: center;
  margin-top: 40px;
}
.btn-submit {
  display: inline-block;
  padding: 16px 60px;
  background: #F5A623;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
  font-family: inherit;
}
.btn-submit:hover {
  background: #e6951a;
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/*---------------------------------------------
    thanks（送信完了）
---------------------------------------------*/
.thanks-section {
  padding: 80px 0;
  background: #f1faf8;
}
.thanks-box {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 64px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.thanks-box i {
  font-size: 6.4rem;
  color: #4DB6AC;
  margin-bottom: 24px;
}
.thanks-box h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #333;
}
.thanks-box p {
  font-size: 1.5rem;
  line-height: 2.0;
  color: #555;
  margin-bottom: 36px;
}
.thanks-box .btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .thanks-box {
    padding: 48px 24px;
  }
  .thanks-box i {
    font-size: 5.2rem;
  }
}

/*---------------------------------------------
    confirm（入力内容の確認）
---------------------------------------------*/
.confirm-section {
  padding: 60px 0 80px;
  background: #f1faf8;
}
.confirm-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 44px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.confirm-lead {
  text-align: center;
  color: #777;
  font-size: 1.4rem;
  margin-bottom: 28px;
}
.confirm-row {
  padding: 16px 2px;
  border-bottom: 1px solid #eee;
}
.confirm-label {
  font-weight: 700;
  font-size: 1.2rem;
  color: #4DB6AC;
  margin-bottom: 4px;
}
.confirm-value {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}
.confirm-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.confirm-actions form {
  margin: 0;
}
.confirm-actions .btn-back,
.confirm-actions .btn-send {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 40px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  transition: all 0.3s;
}
.confirm-actions .btn-send {
  background: #F5A623;
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}
.confirm-actions .btn-send:hover {
  background: #e6951a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.4);
}
.confirm-actions .btn-back {
  background: #fff;
  color: #666;
  border: 2px solid #ddd;
}
.confirm-actions .btn-back:hover {
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .confirm-card {
    padding: 32px 22px;
  }
  .confirm-actions {
    flex-direction: column-reverse;
  }
  .confirm-actions .btn-back,
  .confirm-actions .btn-send,
  .confirm-actions form {
    width: 100%;
  }
  .confirm-actions .btn-send {
    width: 100%;
  }
}
