/* ===============================
   CONTACT PAGE
   depends on common.css
================================ */

/* コンテナ */
#container {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* フォーム全体 */
form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 入力ブロック */
.input-area {
  margin-bottom: 24px;
}

/* ラベル（h4） */
.input-area h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* input / textarea 共通 */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: #fafafa;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  line-height: 1.5;
}

/* フォーカス時 */
input:focus,
textarea:focus {
  outline: none;
  border-color: #3a6cff;
  background: #fff;
}

/* 送信ボタン */
.btn-border {
  display: inline-block;
  padding: 10px 28px;
  font-size: 14px;
  letter-spacing: 0.1em;
  background: #3a6cff;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.btn-border:hover {
  opacity: 0.85;
}

/* 右寄せ */
#right_area {
  text-align: right;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {

  form {
    padding: 20px;
  }

  .btn-border {
    width: 100%;
    text-align: center;
  }

  #right_area {
    text-align: center;
  }
}
