@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
.c-main {
  background: white;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
}

.c-contact__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.c-title {
  margin: 0 0 24px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #4b5563;
}

.c-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 0px 20px 15px;
  display: grid;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

.c-field {
  display: grid;
}
.c-field__label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
}

.c-req {
  color: #f7941d;
  font-weight: 700;
}

.c-input,
select,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-input:focus,
select:focus,
textarea:focus {
  border-color: #f7941d;
  box-shadow: 0 0 0 2px rgba(255, 132, 0, 0.3);
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center/20px 20px;
  padding-right: 40px;
}

textarea {
  min-height: 200px;
  resize: vertical;
}

.c-error {
  min-height: 18px;
  font-size: 13px;
  color: #f7941d;
}

.c-actions {
  padding-top: 8px;
  text-align: center;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  min-width: 160px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.c-btn--primary {
  background: #f7941d;
  color: #fff;
}
.c-btn--primary:hover {
  background: rgb(241.9358974359, 135.9551282051, 8.5641025641);
  transform: translateY(-1px);
}
.c-btn--primary:active {
  transform: translateY(0);
}

@media (max-width: 750px) {
  .c-btn {
    width: 100%;
  }
}/*# sourceMappingURL=contact.css.map */