@charset "utf-8";
/* 全体レイアウト */
#fh5co-blog-section {
  padding: 40px 20px;
  background: #f9fafb;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.cnt-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: auto;
}

/* テーブルをフォーム風に */
.tbl02 {
  width: 100%;
  border-collapse: collapse;
}

.tbl02 th, 
.tbl02 td {
  padding: 12px 15px;
  text-align: left;
  vertical-align: top;
}

.tbl02 th {
  width: 30%;
  font-weight: 600;
  color: #333;
}

.tbl02 td {
  width: 70%;
}

/* 入力欄 */
.input-css {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.input-css:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  outline: none;
}

/* テキストエリア */
textarea.input-css {
  min-height: 120px;
  resize: vertical;
}

/* エラーメッセージ */
.err-form {
  margin-top: 5px;
  color: #dc2626;
  font-size: 14px;
}

/* ボタン */
#btnArea {
  text-align: center;
  margin-top: 25px;
}

.s-btn input[type="submit"] {
  background: #2563eb;
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.s-btn input[type="submit"]:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .tbl02, 
  .tbl02 tbody, 
  .tbl02 tr, 
  .tbl02 th, 
  .tbl02 td {
    display: block;
    width: 100%;
  }

  .tbl02 th {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
  }

  .tbl02 td {
    margin-bottom: 15px;
  }
}
