/* Base Styles */
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background: #f4fdf4;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background: #2d6a4f;
  color: white;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.8em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #b7f397;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 1.8em;
  margin-top: 0;
}

/* Footer */
footer {
  background: #1b4332;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer a {
  color: #aaffc0;
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.95em;
}

/* Form Styling */
form {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
}

form button {
  background-color: #2d6a4f;
  color: white;
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #1b4332;
}
