@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 全体の設定 */
body {
  margin: 0;
  padding: 0;
  background-color: #e8ecef;
  color: #333;

  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

/* ヘッダー */
header {
  text-align: center;
  background-color: transparent;
}

header h1 a {
  text-decoration: none;
  color: silver;
  font-size: 4rem;
  -webkit-text-stroke: 1.5px #4b3832;

  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
}

/* メインセクション */
main.section {
  max-width: 600px;
  margin: 0 auto;
}

main.section h2 {
  font-size: 2rem;
  color: #00608d;
  text-align: center;
}

/* フォーム全体 */
form {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ラベルと入力項目 */
form label {
  display: block;
  font-weight: bold;
  color: #1c305c;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
  margin-bottom: 20px;
  box-sizing: border-box;
}

form textarea {
   height: 200px;
  resize: none; 
}

/* 送信ボタン */
form button[type="submit"] {
  display: block;
  margin: 0 auto;
  background-color: #4b3832;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;

  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

form button[type="submit"]:hover {
  background-color: #664032;
}

/* フッター */
footer {
  background-color: #c0c6c9;
  color: #333;
  text-align: center;
  padding: 20px 10px;
  font-size: 1.2em;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

footer a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e8ecef;
}

.footer-top,
.footer-bottom {
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: #777;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  main.section {
    padding: 20px 10px;
  }

  main.section h2 {
    font-size: 2rem;
  }

  footer {
    font-size: 0.9em;
    padding: 10px 5px;
  }

  .footer-copy {
    font-size: 10px;
  }
}
