@charset "UTF-8";
/* =========================
   固定ページ
========================= */
.page__title {
  font-size: clamp(2.5rem, 2.61vw, 5rem);
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}
.page__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #182848 0%, #E26900 100%);
  border-radius: 999px;
}

.page__content .wpcf7 {
  padding-top: 5rem;
}
.page__content .wpcf7-form {
  display: grid;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .page__content .wpcf7-form {
    gap: 2rem;
  }
}
.page__content label {
  display: block;
  line-height: 1.6;
  color: #182848;
}
.page__content input[type=text],
.page__content input[type=email],
.page__content select,
.page__content textarea {
  width: 100%;
  margin-top: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(24, 40, 72, 0.18);
  border-radius: 8px;
  background: #fff;
  line-height: 1.6;
  color: #182848;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .page__content input[type=text],
  .page__content input[type=email],
  .page__content select,
  .page__content textarea {
    padding: 1.2rem 1.4rem;
    font-size: 0.95rem;
  }
}
.page__content input[type=text]::-moz-placeholder, .page__content input[type=email]::-moz-placeholder, .page__content select::-moz-placeholder, .page__content textarea::-moz-placeholder {
  color: rgba(24, 40, 72, 0.4);
}
.page__content input[type=text]::placeholder,
.page__content input[type=email]::placeholder,
.page__content select::placeholder,
.page__content textarea::placeholder {
  color: rgba(24, 40, 72, 0.4);
}
.page__content input[type=text]:focus,
.page__content input[type=email]:focus,
.page__content select:focus,
.page__content textarea:focus {
  outline: none;
  border-color: rgba(226, 105, 0, 0.8);
  box-shadow: 0 0 0 3px rgba(226, 105, 0, 0.12);
}

textarea {
  min-height: 180px;
  resize: vertical;
}
@media (max-width: 768px) {
  textarea {
    min-height: 160px;
  }
}

.wpcf7-submit {
  width: 60%;
  padding: 2.4rem 0;
  margin: 0 auto;
  border: 1px solid #E26900;
  border-radius: 999px;
  background: #E26900;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .wpcf7-submit {
    width: 100%;
    padding: 1.4rem 0;
  }
}
.wpcf7-submit:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.wpcf7-spinner {
  margin-left: 12px;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.875rem;
}

.wpcf7-response-output {
  margin: 2.4rem 0 0;
  padding: 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.profile-icon img {
  width: 300px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .profile-icon img {
    width: 200px;
  }
}/*# sourceMappingURL=page.css.map */