@charset "UTF-8";

/* Contact ページ全体 */
.contact-page {
  background: #f9f9f9;
  padding: 80px 20px;
}
.contact-section {
  text-align: center;
}

/* 内側のコンテナ */
.contact-section .inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* タイトルと説明 */
.page-title {
  font-size: 3.5rem;
  position: relative;
  display: inline-block; /* タイトル幅に合わせる */
  padding-bottom: 16px;
  margin-bottom: 40px;
  text-align: center;
}

.page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50%; /* 線の長さを調整（例: 50%） */
  height: 2px;
  background-color: #333;
}
.page-lead {
  margin-bottom: 20px;
  color: #666;
}
.inner {
  text-align: left;
}

/* フォーム部分 */
.contact-form-area .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-area input,
.contact-form-area textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

/* 送信ボタン */
.contact-form-area input[type="submit"] {
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form-area input[type="submit"]:hover {
  background: #666;
}
