/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #1f3a4a;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, p { margin: 0; }

:root {
  --color-primary: #1f5d7a;
  --color-primary-dark: #143f55;
  --color-accent: #2bb673;
  --color-line: #06c755;
  --color-text: #1f3a4a;
  --color-muted: #6b7e8a;
  --color-border: #e3ebf0;
  --color-bg-light: #eef4f7;
  --radius: 8px;
  --shadow-card: 0 2px 8px rgba(31, 93, 122, 0.08);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}
.section-light {
  background: var(--color-bg-light);
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--color-text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  transition: opacity .2s, transform .2s, background .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn .arrow { font-size: 18px; line-height: 1; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-outline {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 12px 32px;
}
.btn-outline-sm {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-line {
  background: var(--color-line);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.btn-line-sm {
  background: var(--color-line);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.line-icon {
  display: inline-block;
  background: #fff;
  color: var(--color-line);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 4px;
  line-height: 1.2;
  white-space: nowrap;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4ba6c8, #1f5d7a);
  border-radius: 50%;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: #fff;
  border-radius: 50%;
  clip-path: polygon(0 50%, 70% 30%, 100% 50%, 70% 70%);
}
.logo-text {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
}
.logo-text strong {
  font-weight: 700;
}
.global-nav ul {
  display: flex;
  gap: 28px;
}
.global-nav a {
  font-size: 14px;
  color: var(--color-text);
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.global-nav a:hover { color: var(--color-primary); }
.global-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-primary);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 480px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.35) 55%, rgba(255,255,255,0) 75%),
    url('fv-pc.png') center/cover no-repeat,
    linear-gradient(180deg, #c8e8e0 0%, #8fc9b8 100%);
  display: flex;
  align-items: center;
  padding: 72px 0;
}
@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.85) 60%),
      url('fv-sp.png') center top/cover no-repeat,
      linear-gradient(180deg, #c8e8e0 0%, #8fc9b8 100%);
    min-height: 560px;
    align-items: flex-end;
    padding: 48px 0;
  }
}
.hero-inner {
  position: relative;
}
.hero-text h1 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}
.hero-text p {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== Features Bar ========== */
.features-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.features-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
}
.divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
}

/* ========== Icons (CSS-only) ========== */
.ico {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.ico-truck { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 6h11v9H3zM14 9h4l3 3v3h-7zM6 18a2 2 0 100-4 2 2 0 000 4zm12 0a2 2 0 100-4 2 2 0 000 4z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 6h11v9H3zM14 9h4l3 3v3h-7zM6 18a2 2 0 100-4 2 2 0 000 4zm12 0a2 2 0 100-4 2 2 0 000 4z'/></svg>"); }
.ico-snow { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2v20M2 12h20M5 5l14 14M19 5L5 19'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='black' stroke-width='2' fill='none'><path d='M12 2v20M2 12h20M5 5l14 14M19 5L5 19'/></svg>"); background: none; }
.ico-snow { background: var(--color-primary); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path stroke='black' stroke-width='2' fill='none' stroke-linecap='round' d='M12 2v20M2 12h20M5 5l14 14M19 5L5 19'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path stroke='black' stroke-width='2' fill='none' stroke-linecap='round' d='M12 2v20M2 12h20M5 5l14 14M19 5L5 19'/></svg>"); }
.ico-shield { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2L4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2L4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3z'/></svg>"); }
.ico-fish { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M2 12c2-4 6-6 10-6s7 2 10 6c-3 4-6 6-10 6S4 16 2 12zm14-1a1 1 0 110 2 1 1 0 010-2z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M2 12c2-4 6-6 10-6s7 2 10 6c-3 4-6 6-10 6S4 16 2 12zm14-1a1 1 0 110 2 1 1 0 010-2z'/></svg>"); }
.ico-camera { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 4l-2 2H4a2 2 0 00-2 2v10a2 2 0 002 2h16a2 2 0 002-2V8a2 2 0 00-2-2h-3l-2-2H9zm3 5a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 4l-2 2H4a2 2 0 00-2 2v10a2 2 0 002 2h16a2 2 0 002-2V8a2 2 0 00-2-2h-3l-2-2H9zm3 5a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6z'/></svg>"); }
.ico-check { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M7 2h8l4 4v14a2 2 0 01-2 2H7a2 2 0 01-2-2V4a2 2 0 012-2zm3 14l-3-3 1.4-1.4L10 13.2l4.6-4.6L16 10l-6 6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M7 2h8l4 4v14a2 2 0 01-2 2H7a2 2 0 01-2-2V4a2 2 0 012-2zm3 14l-3-3 1.4-1.4L10 13.2l4.6-4.6L16 10l-6 6z'/></svg>"); }
.ico-user { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-5 0-9 2.5-9 6v2h18v-2c0-3.5-4-6-9-6z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-5 0-9 2.5-9 6v2h18v-2c0-3.5-4-6-9-6z'/></svg>"); }
.ico-truck-lg, .ico-thermo, .ico-shield-lg, .ico-mail, .ico-line-green {
  width: 40px; height: 40px;
}
.ico-truck-lg { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 6h11v9H3zM14 9h4l3 3v3h-7zM6 18a2 2 0 100-4 2 2 0 000 4zm12 0a2 2 0 100-4 2 2 0 000 4z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M3 6h11v9H3zM14 9h4l3 3v3h-7zM6 18a2 2 0 100-4 2 2 0 000 4zm12 0a2 2 0 100-4 2 2 0 000 4z'/></svg>"); }
.ico-thermo { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M14 14.76V4a2 2 0 10-4 0v10.76a4 4 0 104 0z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M14 14.76V4a2 2 0 10-4 0v10.76a4 4 0 104 0z'/></svg>"); }
.ico-shield-lg { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2L4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2L4 5v6c0 5 3.5 9.5 8 11 4.5-1.5 8-6 8-11V5l-8-3z'/></svg>"); }
.ico-mail { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M2 6a2 2 0 012-2h16a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V6zm2 0l8 5 8-5H4z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M2 6a2 2 0 012-2h16a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V6zm2 0l8 5 8-5H4z'/></svg>"); }
.ico-line-green { background: var(--color-line); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 3C6.5 3 2 6.6 2 11c0 2.7 1.7 5 4.3 6.5-.2.7-.6 2.4-.7 2.7-.1.4.1.4.4.3.2-.1 3-2 4.2-2.8.6.1 1.2.1 1.8.1 5.5 0 10-3.6 10-8s-4.5-8-10-8z'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 3C6.5 3 2 6.6 2 11c0 2.7 1.7 5 4.3 6.5-.2.7-.6 2.4-.7 2.7-.1.4.1.4.4.3.2-.1 3-2 4.2-2.8.6.1 1.2.1 1.8.1 5.5 0 10-3.6 10-8s-4.5-8-10-8z'/></svg>"); }

/* ========== Species Grid ========== */
.species-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.species-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.species-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.species-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #d6e4ea;
}
.species-body {
  padding: 16px;
  position: relative;
}
.species-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.species-body p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}
.card-arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 18px;
  color: var(--color-muted);
}

/* ========== Reasons Grid ========== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.reason-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-icon .ico {
  width: 36px;
  height: 36px;
}
.reason-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}
.reason-item p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.8;
}

/* ========== Info Grid ========== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.info-item {
  padding: 32px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-right: 1px solid var(--color-border);
}
.info-item:last-child { border-right: none; }
.info-icon { flex-shrink: 0; }
.info-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-body p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
}
.link-detail {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: underline;
}

/* ========== Guide Grid ========== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.guide-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-card);
}
.guide-card:hover { transform: translateY(-4px); }
.guide-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #d6e4ea;
}
.guide-body {
  padding: 18px;
  position: relative;
}
.guide-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}
.guide-body p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
}
.center-link {
  text-align: center;
}

/* ========== Blog Grid ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #2c3e50;
  position: relative;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.blog-date {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 3px;
}
.blog-tag {
  background: rgba(255,255,255,0.9);
  color: var(--color-text);
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 3px;
}
.blog-body {
  padding: 16px;
}
.blog-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}
.blog-body p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.contact-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon .ico {
  width: 32px;
  height: 32px;
}
.contact-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-body p {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

/* ========== Footer ========== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 48px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 12px;
  line-height: 1.7;
}
.footer-nav li {
  margin-bottom: 10px;
  font-size: 13px;
}
.footer-nav a:hover { color: var(--color-primary); }
.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--color-muted);
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
}

/* ========== Subpage ========== */
.page-header {
  background: linear-gradient(135deg, #e8f1f5 0%, #d6e6ed 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}
.page-header p {
  font-size: 14px;
  color: var(--color-muted);
}
.breadcrumb {
  font-size: 12px;
  color: var(--color-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: var(--color-border); }

.content-block {
  max-width: 820px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-text);
}
.content-block h2:first-child { margin-top: 0; }
.content-block h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--color-text);
}
.content-block p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.9;
}
.content-block ul, .content-block ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 6px;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.content-block th, .content-block td {
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
.content-block th {
  background: var(--color-bg-light);
  font-weight: 700;
  width: 30%;
}

/* showcase / product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: #d6e4ea;
}
.product-body {
  padding: 16px;
}
.product-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-body .meta {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.product-body .price {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}
.badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 4px;
}
.badge-sold {
  background: #9aa6ad;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-bar a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
  transition: all .2s;
}
.filter-bar a:hover, .filter-bar a.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* contact form */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.form-row {
  margin-bottom: 20px;
}
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-row label .required {
  color: #e74c3c;
  font-size: 12px;
  margin-left: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 32px;
}
.form-submit button {
  min-width: 240px;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s;
}
.form-submit button:hover { opacity: 0.9; }

.line-block {
  max-width: 720px;
  margin: 48px auto 0;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.line-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.line-block p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .global-nav { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { padding: 24px; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .info-item:last-child { border-bottom: none; }
  .guide-grid, .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 28px; }
  .section-title { font-size: 22px; }
  .section { padding: 48px 0; }
}
@media (max-width: 560px) {
  .species-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }

  /* Header LINE button on mobile */
  .header-inner { gap: 12px; }
  .btn-line {
    padding: 8px 12px;
    font-size: 12px;
    writing-mode: horizontal-tb;
  }
  .btn-line .line-icon {
    font-size: 10px;
    padding: 1px 5px;
  }

  /* Hero copy: keep first line together */
  .hero-text h1 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }
  .hero-text p { font-size: 13px; }
  .hero-text p br { display: none; }

  /* Features bar: 1 item per row, left-aligned */
  .features-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .feature-item {
    justify-content: flex-start;
  }
  .divider { display: none; }

  .reason-item p br { display: none; }
  .reason-item h3 { font-size: 15px; }
  .reason-item p { font-size: 12px; }
  .reason-icon { width: 64px; height: 64px; margin-bottom: 14px; }
}
