/* ========================================
   お問い合わせページ
======================================== */

/* リード文 */
.contact__lead {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: var(--sumi);
  margin-bottom: 48px;
}

.contact__sub-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.contact__tel:hover {
  color: var(--beige);
}

/* フォーム全体 */
.contact__form {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ハニーポット非表示 */
.contact__honeypot {
  display: none;
}

/* フィールド共通 */
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-family: var(--font-gothic);
  font-size: 14px;
  font-weight: 500;
  color: var(--sumi);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact__required {
  display: inline-block;
  background: var(--beige);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 2px;
}

/* テキスト入力 */
.contact__input,
.contact__textarea,
.contact__select {
  width: 100%;
  font-family: var(--font-gothic);
  font-size: 15px;
  color: var(--sumi);
  background: var(--white);
  border: 1px solid #d4ccc4;
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.7;
}

.contact__input:focus,
.contact__textarea:focus,
.contact__select:focus {
  outline: none;
  border-color: var(--beige);
  box-shadow: 0 0 0 3px rgba(190, 164, 129, 0.15);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #bbb;
}

.contact__textarea {
  resize: vertical;
  min-height: 160px;
}

/* セレクトボックス */
.contact__select-wrap {
  position: relative;
}

.contact__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: var(--beige);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.contact__select {
  cursor: pointer;
  padding-right: 40px;
}

/* プライバシーポリシー */
.contact__field--privacy {
  margin-top: 8px;
}

.contact__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--sumi);
  line-height: 1.7;
}

.contact__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--beige);
  cursor: pointer;
}

.contact__checkbox-label a {
  color: var(--beige);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__checkbox-label a:hover {
  color: var(--sumi);
}

/* 送信ボタン */
.contact__submit {
  text-align: center;
  margin-top: 16px;
}

.contact__btn {
  min-width: 240px;
  padding: 16px 40px;
  font-size: 15px;
}

/* ========================================
   モバイル
======================================== */
@media (max-width: 768px) {
  .contact__sub-btns {
    flex-direction: column;
    gap: 16px;
  }

  .contact__btn {
    width: 100%;
  }
}
