body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #333;
  line-height: 1.8;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 20px;
  margin: 0;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.hero {
  background: #f5f6f3;
  padding: 80px 0;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section {
  padding: 60px 0;
}

.section h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.bg-light {
  background: #fafafa;
}

.list {
  list-style: disc;
  padding-left: 20px;
}

.note {
  font-size: 13px;
  color: #666;
}

.contact {
  background: #3b4a3f;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #fff;
  color: #3b4a3f;
  text-decoration: none;
  font-weight: bold;
}

.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
}

.hero {
  background-image:
    linear-gradient(rgba(245,246,243,0.85), rgba(245,246,243,0.85)),
    url("img/hero-spices.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
}

.product-item p {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.quality-image img {
  width: 100%;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .quality {
    grid-template-columns: 1fr;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid #eee;
  padding: 15px 10px;
  text-align: left;
  font-size: 14px;
}

.company-table th {
  width: 30%;
  color: #555;
  font-weight: normal;
}

.contact-form {
  margin-top: 30px;
  max-width: 600px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form button {
  background: #3b4a3f;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  cursor: pointer;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.hero-split {
  background: #f5f6f3;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 15px;
  color: #444;
}

.hero-image img {
  width: 100%;
  border-radius: 6px;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    margin-top: 30px;
  }
}

.required {
  color: #c00;
  margin-left: 4px;
}

.form-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
