﻿:root {
  --green-900: #194d22;
  --green-700: #2f7b33;
  --green-100: #e8f4df;
  --gold: #f4bd2a;
  --orange: #e86b1d;
  --ink: #25251f;
  --muted: #68685f;
  --line: #d9dece;
  --paper: #fffdf7;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(25, 77, 34, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  background: var(--paper);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(28, 57, 39, .16);
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  display: block;
  color: var(--green-900);
  font-size: 1.18rem;
  line-height: 1.2;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--green-900);
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav .cart-link {
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-700);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(510px, calc(100svh - 190px));
  padding: 34px 0 24px;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.9) 48%, rgba(255, 253, 247, 0.58) 100%),
    url("images/hero-brazil-landscape.jpg") center right / cover;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-700);
  font-weight: 800;
}

h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  line-height: 1.08;
}

.lead {
  margin: 18px 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--green-700);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--green-900);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--green-700);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.hero-proof div {
  border-top: 3px solid var(--gold);
  padding-top: 10px;
}

.hero-proof dt {
  color: var(--green-900);
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-origin {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.hero-origin figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(25, 77, 34, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-origin figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-main-photo,
.origin-main-photo img {
  min-height: 330px;
}

.origin-subgrid {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(150px, 0.34fr) minmax(0, 0.38fr);
  gap: 14px;
}

.origin-landscape-photo,
.origin-landscape-photo img {
  min-height: 150px;
}

.hero-origin figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 900;
}

.origin-note {
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.origin-note span {
  display: block;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.origin-note strong {
  display: block;
  margin-top: 4px;
  color: var(--green-900);
  font-size: 1.15rem;
  line-height: 1.35;
}

.origin-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.coupon-strip {
  padding: 10px 0;
  background: var(--green-900);
}

.coupon-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  overflow: hidden;
  border-radius: 8px;
  padding: 14px;
  color: var(--green-900);
  text-decoration: none;
  background: var(--white);
  box-shadow: var(--shadow);
}

.coupon-copy {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.3;
}

.coupon-banner strong {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.2;
}

.coupon-banner img {
  display: block;
  width: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 6px;
}

.trust-band {
  border-block: 1px solid var(--line);
  background: var(--green-100);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 18px 16px;
}

.trust-list strong {
  display: block;
  color: var(--green-900);
}

.trust-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.choice-section {
  background: linear-gradient(180deg, var(--white), #f4f8ed);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.choice-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  background: var(--white);
}

.choice-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.choice-card:hover img {
  transform: translateY(-4px);
}

.choice-label {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.78rem;
  font-weight: 900;
}

.choice-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.3rem;
  line-height: 1.25;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.origin-advice-section {
  background: var(--paper);
}

.origin-advice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.origin-advice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.origin-advice-card h3 {
  margin: 8px 0 10px;
  color: var(--green-900);
  font-size: 1.2rem;
  line-height: 1.35;
}

.origin-advice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.origin-advice-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.origin-advice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.origin-advice-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-700);
  background: var(--paper);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.origin-advice-links a:hover {
  border-color: var(--green-700);
  background: var(--green-100);
}

.section {
  padding: 48px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.count {
  white-space: nowrap;
  color: var(--green-700);
  font-weight: 800;
}

.filters {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.filters select,
.filters input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-image {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f6f8f1);
}

.product-image img {
  max-height: 180px;
  object-fit: contain;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badges span {
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-card h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.08rem;
  line-height: 1.35;
}

.product-card h3 a {
  text-decoration: none;
}

.product-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-actions {
  align-self: end;
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.price {
  margin: 0;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
}

.price span {
  margin-left: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-form {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 8px;
}

.cart-form label {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.cart-form select,
.cart-form button {
  min-height: 42px;
  border-radius: 8px;
  font: inherit;
}

.cart-form select {
  border: 1px solid var(--line);
  background: var(--white);
}

.cart-form button {
  border: 0;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-item {
  display: block;
  border-left: 5px solid var(--gold);
  padding: 16px;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.guide-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.guide-item h3 {
  margin: 0 0 6px;
  color: var(--green-900);
}

.guide-item p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 42px 0 34px;
  background: linear-gradient(180deg, var(--green-100), var(--paper));
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: center;
}

.page-hero-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-hero-image img {
  display: block;
  width: 100%;
}

.newcomer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 28px);
  background: var(--white);
}

.newcomer-card h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.newcomer-card p {
  margin: 0;
  color: var(--muted);
}

.newcomer-card img {
  width: 100%;
}

.commitment-grid,
.purpose-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.commitment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commitment-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.commitment-grid img {
  width: 34px;
  margin-bottom: 8px;
}

.commitment-grid h3,
.purpose-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  line-height: 1.35;
}

.commitment-grid p,
.purpose-grid p {
  margin: 0;
  color: var(--muted);
}

.wide-photo {
  margin: 20px 0 0;
}

.wide-photo img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.purpose-section {
  background: #f4f8ed;
}

.purpose-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.purpose-grid article {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.purpose-grid img {
  width: 100%;
}

.purpose-grid .button {
  margin-top: 14px;
}

.newcomer-closing {
  margin: 20px 0 0;
  color: var(--muted);
  text-align: center;
}

.freedial {
  margin: 14px auto 0;
  text-align: center;
}

.freedial img {
  max-width: 360px;
}

.compare-image-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.compare-image-stack img,
.compare-wide-chart img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.compare-point-grid,
.compare-chart-grid,
.radar-card-grid {
  display: grid;
  gap: 14px;
}

.compare-point-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-point-grid article,
.compare-chart-grid figure,
.radar-card-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.compare-point-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.compare-point-grid p {
  margin: 0;
  color: var(--muted);
}

.compare-prose {
  margin-top: 18px;
  border-left: 5px solid var(--gold);
  padding: 14px 16px;
  background: var(--white);
}

.compare-prose p {
  margin: 0;
  color: var(--muted);
}

.compare-chart-section,
.compare-radar {
  background: #f4f8ed;
}

.compare-chart-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-chart-grid figure,
.compare-wide-chart {
  margin: 0;
}

.compare-chart-grid figcaption {
  margin-top: 10px;
  color: var(--green-900);
  font-weight: 900;
  text-align: center;
}

.purpose-chart-card figcaption {
  margin: 0 0 12px;
}

.purpose-chart {
  display: grid;
  gap: 10px;
}

.purpose-chart-scale,
.purpose-chart-note {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.purpose-chart-scale {
  color: var(--green-900);
  font-weight: 900;
}

.purpose-chart-scale span:first-child {
  color: #256f95;
}

.purpose-chart-scale span:last-child {
  color: var(--green-700);
}

.purpose-chart-scale strong {
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--green-100);
}

.purpose-chart-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.purpose-chart-note span:first-child {
  grid-column: 1 / 2;
}

.purpose-chart-note span:last-child {
  grid-column: 3 / 4;
}

.purpose-chart-body {
  display: block;
  padding-bottom: 4px;
}

.purpose-axis {
  display: none;
}

.purpose-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(5px, 1.2vw, 12px);
  min-height: 315px;
  align-items: stretch;
  padding-left: 54px;
}

.purpose-axis-labels {
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 0;
  width: 46px;
  color: var(--ink);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 900;
}

.axis-unit {
  position: absolute;
  top: 2px;
  left: 12px;
  color: #5c4b32;
  font-size: 0.78rem;
  line-height: 1.05;
  text-align: center;
}

.axis-arrow {
  position: absolute;
  left: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  border: 2px solid currentColor;
  background: var(--white);
  font-size: 0.82rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.axis-arrow::before,
.axis-arrow::after {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-color: currentColor;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.axis-arrow::before {
  top: -10px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.axis-arrow::after {
  bottom: -10px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.axis-arrow-arte {
  top: 58px;
  height: 108px;
  color: #67b932;
}

.axis-arrow-flavo {
  top: 167px;
  height: 102px;
  color: #f0a11b;
}

.axis-arrow-arte::after,
.axis-arrow-flavo::before {
  display: none;
}

.purpose-bars article {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  min-width: 0;
}

.purpose-bars h3 {
  min-height: 64px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(0.72rem, 1.25vw, 0.98rem);
  line-height: 1.28;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.bar-wrap {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1px 1fr;
  min-height: 250px;
  justify-items: center;
}

.zero-line {
  width: 100%;
  border-top: 1px dotted #7f7668;
}

.bar {
  position: relative;
  display: block;
  width: clamp(18px, 3vw, 36px);
  align-self: end;
  border-radius: 4px 4px 0 0;
}

.bar b {
  position: absolute;
  left: 50%;
  width: max-content;
  max-width: min(104px, 14vw);
  transform: translateX(-50%);
  color: var(--ink);
  font-size: clamp(0.62rem, 1.05vw, 0.82rem);
  line-height: 1.2;
  text-align: center;
}

.bar.arte {
  height: calc(var(--arte) * 2.55px);
  background: linear-gradient(180deg, #87cf39, #58a91e);
}

.bar.arte b {
  bottom: 100%;
  margin-bottom: 4px;
}

.bar.flavo {
  height: calc(var(--flavo) * 2.55px);
  align-self: start;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(180deg, #f6bd32, #f08a18);
}

.bar.flavo b {
  top: 100%;
  margin-top: 4px;
}

.purpose-chart-caption {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.cost-chart-card {
  overflow: hidden;
}

.cost-chart-card figcaption {
  margin: 0 0 12px;
}

.cost-chart {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 390;
  min-height: 320px;
  border: 1px solid #b7b7a8;
  border-radius: 4px;
  padding: 26px 20px 38px 52px;
  background:
    linear-gradient(135deg, rgba(255, 227, 227, 0.72) 0 50%, rgba(255, 255, 255, 0) 50%),
    repeating-linear-gradient(to right, transparent 0 calc(100% / 6 - 1px), rgba(133, 128, 113, 0.45) calc(100% / 6 - 1px) calc(100% / 6)),
    repeating-linear-gradient(to bottom, transparent 0 calc(100% / 4 - 1px), rgba(133, 128, 113, 0.45) calc(100% / 4 - 1px) calc(100% / 4)),
    #fffdf7;
}

.cost-plot {
  position: relative;
  width: 100%;
  height: 100%;
}

.cost-line {
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #347b35 0 8px, transparent 8px 14px);
  transform: rotate(-31deg);
  transform-origin: left bottom;
}

.cost-y-label,
.cost-x-label {
  position: absolute;
  color: #5c4b32;
  font-weight: 900;
  line-height: 1.25;
}

.cost-y-label {
  top: 38%;
  left: 12px;
  font-size: clamp(0.74rem, 1.45vw, 1rem);
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.cost-x-label {
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  font-size: clamp(0.82rem, 1.6vw, 1.05rem);
}

.cost-callout {
  position: absolute;
  z-index: 2;
  border-radius: 5px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.72rem, 1.3vw, 0.96rem);
  line-height: 1.35;
  font-weight: 900;
}

.cost-callout-good {
  top: 34px;
  left: 86px;
  border: 2px solid #f03572;
  color: #f03572;
}

.cost-callout-capsule {
  right: 12px;
  bottom: 78px;
  border: 2px solid #137ce4;
  color: #137ce4;
}

.cost-point {
  position: absolute;
  left: calc(var(--x) / 12000 * 100%);
  bottom: calc(var(--y) / 400 * 100%);
  z-index: 3;
  width: clamp(13px, 2vw, 21px);
  height: clamp(13px, 2vw, 21px);
  transform: translate(-50%, 50%) rotate(45deg);
}

.cost-point.product {
  background: #4d8f3a;
}

.cost-point.average {
  background: #f18b18;
}

.cost-point b {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  width: max-content;
  max-width: 138px;
  transform: translateX(-50%) rotate(-45deg);
  color: var(--ink);
  font-size: clamp(0.56rem, 1vw, 0.74rem);
  line-height: 1.15;
  text-align: center;
}

.cost-point.average b {
  color: #f18b18;
}

.cost-point[style*="--x: 5400"] b,
.cost-point[style*="--x: 4600"] b {
  top: calc(100% + 8px);
  bottom: auto;
}

.responsive-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--white);
  background: var(--green-700);
}

.compare-table tbody th {
  color: var(--green-900);
  background: #f7fbf1;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table th img {
  display: inline-block;
  width: 42px;
  max-height: 52px;
  margin-right: 8px;
  object-fit: contain;
  vertical-align: middle;
}

.product-compare-table th img {
  width: 54px;
  max-height: 68px;
}

.compare-table a {
  color: var(--green-700);
  font-weight: 900;
}

.compare-wide-chart {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.radar-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 16px;
}

.radar-card-grid img {
  display: block;
  width: 100%;
}

.advanced-compare-section {
  background: #f4f8ed;
}

.compare-feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 22px);
  background: var(--white);
}

.compare-feature-block.reverse {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
}

.compare-feature-block.reverse div {
  order: 2;
}

.compare-feature-block.reverse img {
  order: 1;
}

.compare-feature-block h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.3;
}

.compare-feature-block p {
  margin: 0;
  color: var(--muted);
}

.compare-feature-block img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.compare-check-box {
  margin: 18px 0;
  border: 2px solid var(--green-700);
  border-radius: 8px;
  padding: 16px;
  background: #fffdf2;
}

.compare-check-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.compare-check-box p {
  margin: 0;
  color: var(--muted);
}

.legacy-compare-section {
  padding-top: 34px;
}

.legacy-content {
  max-width: 980px;
}

.legacy-content h1 {
  display: none;
}

.legacy-content .pageTitle,
.legacy-content .subTitle {
  margin: 28px 0 14px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.3;
}

.legacy-content .subTit {
  margin: 24px 0 12px;
  color: var(--green-900);
  font-size: 1.25rem;
}

.legacy-content p,
.legacy-content li,
.legacy-content dd {
  color: var(--ink);
}

.legacy-content p {
  margin: 0 0 14px;
}

.legacy-content img {
  max-width: 100%;
  height: auto;
}

.legacy-content #catch img,
.legacy-content #point img[src*="purpose.png"],
.legacy-content #cosper img[src*="cost-performance.png"] {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.legacy-content .list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 1.25em;
}

.legacy-content .orange {
  color: var(--orange);
}

.legacy-content .green {
  color: var(--green-700);
}

.legacy-content .middle {
  font-size: 1.05em;
}

.legacy-content .cbox,
.legacy-content #compare_box {
  overflow: hidden;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.legacy-content .r_image {
  float: right;
  max-width: min(260px, 42%);
  margin: 0 0 12px 18px;
}

.legacy-content .r_image img {
  width: 100%;
}

.legacy-content table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
  background: var(--white);
}

.legacy-content th,
.legacy-content td {
  border: 1px solid var(--line);
  padding: 10px;
  vertical-align: top;
}

.legacy-content thead th,
.legacy-content table.userTable_03 > tbody > tr > th:first-child {
  color: var(--green-900);
  background: #f4f8ed;
}

.legacy-content .thumbnail {
  width: 70px;
  max-height: 90px;
  object-fit: contain;
}

.legacy-content .date,
.legacy-content .reference {
  color: var(--muted);
  font-size: 0.92rem;
}

.qa-section {
  background: var(--white);
}

.qa-jump {
  position: sticky;
  top: 76px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 34px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.qa-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-900);
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.qa-category {
  scroll-margin-top: 138px;
  margin-top: 54px;
}

.qa-category:first-of-type {
  margin-top: 0;
}

.qa-list {
  display: grid;
  gap: 12px;
}

.qa-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.qa-list summary {
  position: relative;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  color: var(--green-900);
  font-weight: 800;
  line-height: 1.55;
  list-style: none;
}

.qa-list summary::-webkit-details-marker {
  display: none;
}

.qa-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 1rem;
  line-height: 24px;
  text-align: center;
}

.qa-list details[open] summary::after {
  content: "-";
}

.qa-list details > div {
  padding: 0 18px 18px;
  color: var(--ink);
}

.qa-list details > div p,
.qa-list details > div ul,
.qa-list details > div ol {
  margin: 0;
}

.qa-list details > div a {
  color: var(--green-700);
  font-weight: 800;
}

.qa-contact {
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-100);
}

.qa-contact h2 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.qa-contact p {
  margin: 0 0 18px;
  max-width: 70ch;
}

.regular-section {
  background: var(--white);
}

.regular-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 46px;
}

.regular-benefits article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-100);
}

.regular-benefits strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-900);
  font-size: 1.2rem;
}

.regular-benefits p {
  margin: 0;
}

.regular-guide {
  scroll-margin-top: 110px;
  margin-bottom: 56px;
}

.regular-guide ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: regular-step;
}

.regular-guide li {
  counter-increment: regular-step;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.regular-guide li::before {
  content: counter(regular-step);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-weight: 800;
}

.regular-guide strong,
.regular-guide span {
  display: block;
}

.regular-guide strong {
  margin-bottom: 6px;
  color: var(--green-900);
}

.regular-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e7bd8d;
  border-radius: 8px;
  background: #fff4df;
}

.regular-note p {
  margin: 0;
}

.regular-items {
  scroll-margin-top: 110px;
}

.regular-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.regular-card + .regular-card {
  margin-top: 16px;
}

.regular-image {
  display: grid;
  place-items: center;
  min-height: 172px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

.regular-image img {
  max-height: 150px;
  object-fit: contain;
}

.regular-body h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.regular-body p {
  margin: 0 0 12px;
}

.regular-kicker {
  color: var(--muted);
  font-weight: 800;
}

.regular-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}

.regular-price strong {
  color: var(--orange);
  font-size: 1.45rem;
}

.regular-price span {
  color: #b22318;
  font-weight: 800;
}

.regular-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.regular-form label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.regular-form select {
  min-width: 74px;
  min-height: 42px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.regular-form button {
  min-height: 42px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-700);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.wakeari-section {
  background: var(--white);
}

.wakeari-intro {
  max-width: 76ch;
  margin-bottom: 44px;
  font-size: 1.06rem;
}

.wakeari-intro p {
  margin: 0 0 14px;
}

.wakeari-stock,
.wakeari-notes {
  scroll-margin-top: 110px;
  margin-top: 48px;
}

.empty-stock {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.empty-stock h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.empty-stock p {
  margin: 0 0 18px;
}

.wakeari-notes ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: wakeari-note;
}

.wakeari-notes li {
  counter-increment: wakeari-note;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.wakeari-notes li::before {
  content: counter(wakeari-note);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-weight: 800;
}

.guide-section {
  background: var(--white);
}

.guide-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 52px;
}

.guide-index a {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}

.guide-index img {
  width: 100%;
  border-radius: 6px;
}

.guide-index strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.guide-index span {
  color: var(--muted);
  line-height: 1.55;
}

.guide-block {
  scroll-margin-top: 122px;
  margin-top: 56px;
}

.guide-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guide-benefits article,
.postage-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-100);
}

.guide-benefits h3,
.postage-box h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1.2rem;
}

.guide-benefits p,
.postage-box p {
  margin: 0;
}

.order-steps {
  display: grid;
  gap: 16px;
}

.order-steps article {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.order-steps img {
  border-radius: 6px;
  background: var(--white);
}

.order-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-900);
  font-size: 1.12rem;
}

.order-steps p {
  margin: 0;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.guide-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.guide-table th,
.guide-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  color: var(--green-900);
  background: var(--green-100);
}

.guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.postage-box {
  margin-top: 18px;
}

.postage-box dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
}

.postage-box dl div {
  padding: 10px;
  border-radius: 6px;
  background: var(--white);
}

.postage-box dt {
  color: var(--muted);
  font-weight: 800;
}

.postage-box dd {
  margin: 0;
  color: var(--green-900);
  font-weight: 900;
}

.naruhodo-section {
  background: var(--white);
}

.naruhodo-intro {
  max-width: 76ch;
  margin-bottom: 42px;
  font-size: 1.06rem;
}

.naruhodo-intro p {
  margin: 0 0 14px;
}

.naruhodo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.naruhodo-grid article {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.naruhodo-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--white);
}

.naruhodo-grid div {
  padding: 16px;
}

.naruhodo-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1.16rem;
  line-height: 1.35;
}

.naruhodo-grid p {
  margin: 0;
  color: var(--ink);
}

.naruhodo-feature .guide-benefits a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-700);
  font-weight: 900;
}

.naruhodo-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-700);
  font-weight: 900;
}

.article-section {
  background: var(--white);
}

.article-layout {
  max-width: 860px;
}

.article-breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-breadcrumb a {
  color: var(--green-700);
  font-weight: 800;
}

.article-layout h1 {
  margin: 0 0 20px;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.article-layout p {
  max-width: 72ch;
  margin: 0 0 1.15em;
  font-size: 1.04rem;
}

.article-layout figure {
  margin: 24px 0;
}

.article-layout figure img {
  width: 100%;
  border-radius: 8px;
}

.article-hero-image {
  margin-top: 0;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legacy-content #point,
.legacy-content #purpose,
.legacy-content #nomiyasusa,
.legacy-content #cosper,
.legacy-content #mainproducts {
  scroll-margin-top: 96px;
}

.product-hero {
  padding: 34px 0 32px;
  background: linear-gradient(180deg, var(--green-100), var(--paper));
}

.product-hero-banner {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-hero-banner img {
  display: block;
  width: 100%;
}

.product-hero-banner-contain {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 28px;
}

.product-hero-banner-contain img {
  width: auto;
  max-height: 320px;
  object-fit: contain;
}

.product-hero-summary {
  max-width: 760px;
  margin-top: 22px;
}

.product-hero-image {
  display: grid;
  min-height: 340px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-hero-image img {
  max-height: 280px;
  object-fit: contain;
}

.detail-top-points {
  padding-top: 36px;
}

.detail-price {
  margin: 18px 0 0;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
}

.detail-price span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.detail-panel,
.detail-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.detail-panel h2,
.detail-note h2 {
  margin: 0 0 12px;
  color: var(--green-900);
}

.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
}

.detail-panel li::marker {
  color: var(--green-700);
}

.detail-main {
  min-width: 0;
}

.section-heading.compact {
  margin-bottom: 14px;
}

.variant-list {
  display: grid;
  gap: 10px;
}

.variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.variant-row h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 6px;
  color: var(--green-900);
}

.variant-row p {
  margin: 0;
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 900;
}

.variant-row p span {
  margin-left: 5px;
  color: var(--muted);
  font-size: 0.8rem;
}

.variant-note {
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.78rem;
}

.review-mini-link {
  display: inline-flex;
  margin-top: 8px;
}

.review-mini-link img {
  display: block;
  max-width: 142px;
}

.detail-cart-form {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}

.detail-cart-form label {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.detail-cart-form select,
.detail-cart-form button {
  min-height: 42px;
  border-radius: 8px;
  font: inherit;
}

.detail-cart-form select {
  border: 1px solid var(--line);
  background: var(--white);
}

.detail-cart-form button {
  border: 0;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
}

.detail-cart-form button:disabled {
  color: var(--muted);
  background: #e7e2d3;
  cursor: not-allowed;
}

.detail-note-section {
  padding-top: 0;
}

.detail-note p {
  margin: 0;
  color: var(--muted);
}

.detail-story {
  padding-bottom: 24px;
}

.detail-readable {
  max-width: 900px;
}

.detail-story-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-story-section:first-child {
  padding-top: 0;
}

.detail-story-section h2 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.25;
}

.detail-story-section h3 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.detail-story-section p {
  margin: 0 0 16px;
}

.detail-story-section figure {
  margin: 18px 0;
}

.detail-story-section figure img,
.detail-banner img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.detail-story-section .mn-lp-image {
  margin: 0;
}

.detail-story-section .mn-lp-image img {
  border-radius: 0;
  box-shadow: none;
}

.detail-story-section:has(.mn-lp-image) {
  padding: 12px 0;
  border-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.feature-grid article,
.overview-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.feature-grid img {
  float: left;
  width: 58px;
  margin: 0 12px 8px 0;
}

.notice-text {
  border-left: 4px solid var(--gold);
  padding: 10px 14px;
  background: #fff8dc;
  color: var(--muted);
}

.mn-spray-band {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: clamp(18px, 4vw, 30px);
}

.mn-spray-band.mint {
  background: #d8f0e7;
}

.mn-spray-band.green {
  background: #416831;
  color: var(--white);
}

.mn-spray-band.green p,
.mn-spray-band.green .mn-caption {
  color: rgba(255, 255, 255, 0.92);
}

.mn-photo-grid,
.mn-scene-grid {
  display: grid;
  gap: 12px;
}

.mn-photo-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.mn-scene-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mn-photo-slot {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px dashed rgba(25, 77, 34, 0.38);
  border-radius: 8px;
  padding: 18px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-align: center;
}

.mn-spray-band.green .mn-photo-slot {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
}

.mn-flavor-card,
.mn-recommend {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background: linear-gradient(180deg, #fff, #f7f1ea);
  border: 1px solid var(--line);
}

.mn-flavor-card img,
.mn-recommend img {
  max-height: 190px;
  object-fit: contain;
}

.mn-recommend ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.mn-recommend li::marker {
  color: var(--green-700);
}

.mn-caption {
  margin: 0;
  font-size: 0.92rem;
}

.mn-after-overview {
  padding-top: 0;
}

.mn-usage-box,
.mn-caution-box {
  margin-bottom: 18px;
  border-radius: 8px;
  padding: clamp(18px, 4vw, 26px);
  color: var(--white);
}

.mn-usage-box {
  background: #486f32;
}

.mn-caution-box {
  background: #81672e;
}

.mn-usage-box h2,
.mn-caution-box h2,
.mn-qa h2 {
  margin: 0 0 12px;
}

.mn-usage-box ul,
.mn-caution-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.mn-qa {
  border-radius: 8px;
  padding: clamp(18px, 4vw, 26px);
  background: var(--white);
  border: 1px solid var(--line);
}

.mn-qa dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.mn-qa dt {
  color: var(--green-900);
  font-weight: 900;
}

.mn-qa dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.media-text {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 18px 0;
}

.media-text img {
  width: 100%;
  border-radius: 8px;
}

.set-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.set-image-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  background: var(--white);
}

.set-image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: contain;
}

.set-image-grid h3 {
  margin: 8px 0 0;
  color: var(--green-900);
  font-size: 0.98rem;
}

.detail-overview-section {
  padding-top: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.overview-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.overview-grid p {
  margin: 0;
  color: var(--muted);
}

.detail-banner {
  max-width: 720px;
  margin: 22px auto 0;
}

.detail-banner--small img {
  width: 40%;
  max-width: 320px;
  margin-inline: auto;
}

.detail-reviews {
  padding-top: 0;
}

.review-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.review-box > img {
  display: block;
  width: min(600px, 100%);
  margin: 0 auto 16px;
}

.review-list {
  display: grid;
  gap: 16px;
}

.review-card {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.review-card h3 {
  margin: 0;
  color: var(--green-900);
}

.review-card p {
  margin: 8px 0 0;
}

.review-rating {
  color: var(--orange);
  font-weight: 900;
}

.review-date {
  color: var(--muted);
  font-size: 0.86rem;
}

.review-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.review-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.review-read-more {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-700);
  font-weight: 900;
}

.review-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.review-pagination button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-900);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.review-pagination button[aria-current="page"] {
  color: var(--white);
  background: var(--green-700);
}

.review-provider {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.detail-link-row {
  margin: 18px 0 0;
  text-align: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 18px 0;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  margin-top: 24px;
  padding: 34px 0 40px;
  color: var(--white);
  background: var(--green-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  font-size: 1.2rem;
}

.footer-brand p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-links section {
  display: grid;
  gap: 7px;
}

.footer-links h2 {
  margin: 0 0 4px;
  color: #fff5b6;
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer-utility-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-utility-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .page-hero-inner,
  .product-hero-summary,
  .feature-grid,
  .commitment-grid,
  .purpose-grid,
  .compare-point-grid,
  .compare-chart-grid,
  .compare-feature-block,
  .compare-feature-block.reverse,
  .set-image-grid,
  .overview-grid,
  .choice-grid,
  .product-grid,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-top: 24px;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.9) 58%, rgba(255, 253, 247, 0.72) 100%),
      url("images/hero-brazil-landscape.jpg") center / cover;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero .lead {
    font-size: 0.98rem;
  }

  .hero-inner,
  .page-hero-inner,
  .product-hero-summary,
  .detail-layout,
  .variant-row,
  .feature-grid,
  .newcomer-card,
  .commitment-grid,
  .purpose-grid,
  .compare-point-grid,
  .compare-chart-grid,
  .compare-feature-block,
  .compare-feature-block.reverse,
  .set-image-grid,
  .media-text,
  .mn-photo-grid,
  .mn-scene-grid,
  .mn-flavor-card,
  .mn-recommend,
  .overview-grid,
  .choice-grid,
  .product-grid,
  .guide-grid,
  .filters,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .purpose-grid article {
    grid-template-columns: 1fr;
  }

  .compare-feature-block.reverse div,
  .compare-feature-block.reverse img {
    order: initial;
  }

  .legacy-content .r_image {
    float: none;
    max-width: 100%;
    margin: 0 0 12px;
  }

  .legacy-content table {
    display: block;
    overflow-x: auto;
  }

  .purpose-grid img {
    max-width: 240px;
  }

  .purpose-chart-body {
    display: block;
  }

  .purpose-bars {
    min-height: 255px;
    padding-left: 40px;
    gap: 4px;
  }

  .bar-wrap {
    min-height: 190px;
  }

  .purpose-axis-labels {
    top: 50px;
    width: 34px;
  }

  .axis-unit {
    left: 5px;
    font-size: 0.62rem;
  }

  .axis-arrow {
    left: 7px;
    width: 24px;
    font-size: 0.65rem;
  }

  .axis-arrow-arte {
    top: 47px;
    height: 92px;
  }

  .axis-arrow-flavo {
    top: 139px;
    height: 88px;
  }

  .purpose-bars h3 {
    min-height: 58px;
  }

  .bar.arte {
    height: calc(var(--arte) * 1.95px);
  }

  .bar.flavo {
    height: calc(var(--flavo) * 1.95px);
  }

  .cost-chart {
    min-height: 280px;
    padding: 22px 10px 34px 38px;
  }

  .cost-callout {
    padding: 5px 7px;
  }

  .cost-callout-good {
    top: 18px;
    left: 56px;
  }

  .cost-callout-capsule {
    right: 6px;
    bottom: 54px;
  }

  .cost-point b {
    max-width: 88px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 22px;
  }

  .hero-proof div {
    padding-top: 7px;
  }

  .hero-proof dt {
    font-size: 0.98rem;
  }

  .hero-proof dd {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .hero-origin figure,
  .hero-origin figure img {
    min-height: 230px;
  }

  .origin-subgrid {
    grid-template-columns: 1fr;
  }

  .origin-advice-grid,
  .origin-advice-card {
    grid-template-columns: 1fr;
  }

  .origin-landscape-photo,
  .origin-landscape-photo img {
    min-height: 180px;
  }

  .coupon-strip {
    padding: 8px 0;
  }

  .coupon-banner {
    padding: 10px;
  }

  .coupon-banner img {
    width: 100%;
    max-height: none;
  }

  .choice-card,
  .choice-card.featured {
    min-height: auto;
  }

  .choice-card img,
  .choice-card.featured img {
    height: 170px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-form {
    grid-template-columns: 1fr;
  }

  .detail-cart-form {
    grid-template-columns: 1fr;
  }

  .regular-benefits,
  .regular-guide ol {
    grid-template-columns: 1fr;
  }

  .regular-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .regular-image {
    min-height: 150px;
  }

  .regular-form {
    align-items: stretch;
    flex-direction: column;
  }

  .regular-form label,
  .regular-form select,
  .regular-form button {
    width: 100%;
  }

  .guide-benefits,
  .postage-box dl {
    grid-template-columns: 1fr;
  }

  .order-steps article {
    grid-template-columns: 1fr;
  }

  .order-steps img {
    width: 100%;
  }
}

.review-page-hero .lead {
  max-width: 640px;
}

.review-hero-card {
  display: grid;
  gap: 0;
}

.review-hero-card img {
  width: min(360px, 86%);
  margin: 20px auto 8px;
  object-fit: contain;
}

.review-hero-card figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.review-hero-card figcaption strong {
  color: var(--green-900);
}

.review-hero-card figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-summary-section {
  padding-bottom: 0;
}

.review-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-summary-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-summary-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-summary-grid strong {
  display: block;
  color: var(--green-900);
  font-size: 1.35rem;
}

.review-summary-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.review-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.review-tools button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--green-900);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.review-tools button[aria-current="true"] {
  border-color: var(--green-700);
  color: var(--white);
  background: var(--green-700);
}

.review-page-box {
  padding: clamp(16px, 3vw, 24px);
}

.review-page-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-page-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper);
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.review-card-head .review-date {
  flex: 0 0 auto;
  margin-top: 2px;
  text-align: right;
}

.review-empty {
  margin: 0;
  color: var(--muted);
}

.review-guide-section {
  padding-top: 0;
}

@media (max-width: 760px) {
  .review-summary-grid,
  .review-page-list {
    grid-template-columns: 1fr;
  }

  .review-card-head {
    display: block;
  }

  .review-card-head .review-date {
    text-align: left;
  }
}

.review-page-hero .lead {
  max-width: 640px;
}

.review-hero-card {
  display: grid;
  gap: 0;
}

.review-hero-card img {
  width: min(360px, 86%);
  margin: 20px auto 8px;
  object-fit: contain;
}

.review-hero-card figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.review-hero-card figcaption strong {
  color: var(--green-900);
}

.review-hero-card figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-summary-section {
  padding-bottom: 0;
}

.review-summary-grid,
.product-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-summary-grid article,
.product-review-card,
.review-page-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-summary-grid article {
  padding: 18px;
}

.review-summary-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-summary-grid strong {
  display: block;
  color: var(--green-900);
  font-size: 1.35rem;
}

.review-summary-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-review-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.product-review-image {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--paper);
}

.product-review-image img {
  width: 100%;
  max-height: 132px;
  object-fit: contain;
}

.product-review-body h3 {
  margin: 6px 0 8px;
  font-size: 1.04rem;
  line-height: 1.35;
}

.product-review-body h3 a {
  color: var(--green-900);
}

.product-review-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-review-meta span {
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-review-links,
.review-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-review-links a,
.review-filter button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-700);
  background: var(--paper);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}

.review-filter {
  margin: 0 0 18px;
}

.review-filter button {
  min-height: 40px;
  cursor: pointer;
}

.product-review-links a:hover,
.review-filter button:hover {
  border-color: var(--green-700);
  background: var(--green-100);
}

.review-filter button.is-active {
  border-color: var(--green-700);
  color: var(--white);
  background: var(--green-700);
}

.review-page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-page-card {
  padding: 16px;
}

.review-page-product {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.review-page-product a {
  color: var(--green-700);
}

.review-page-stars {
  color: var(--orange);
  font-weight: 900;
}

.review-page-title {
  margin-top: 8px;
  color: var(--green-900);
  font-weight: 900;
}

.review-page-text {
  margin: 8px 0 0;
}

.review-page-author {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-guide-section {
  padding-top: 0;
}

@media (max-width: 860px) {
  .review-summary-grid,
  .product-review-grid,
  .review-page-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-review-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .product-review-image img {
    max-height: 96px;
  }
}

.contact-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.contact-hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-hero-panel span,
.contact-method-label {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-hero-panel strong {
  display: block;
  color: var(--green-900);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.contact-hero-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-method-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-method-card.primary-card {
  background: linear-gradient(180deg, var(--green-100), var(--white));
}

.contact-method-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 1.25rem;
}

.contact-method-card h3 a {
  color: var(--green-900);
}

.contact-method-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-method-card .button {
  margin-top: 16px;
}

.contact-before-section {
  padding-top: 0;
}

@media (max-width: 760px) {
  .contact-method-grid {
    grid-template-columns: 1fr;
  }
}

.company-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
}

.company-hero-panel,
.company-info-card,
.company-message-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.company-hero-panel {
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.company-hero-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.82rem;
  font-weight: 900;
}

.company-hero-panel strong {
  display: block;
  color: var(--green-900);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.company-hero-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.company-info-card {
  overflow: hidden;
}

.legal-heading {
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  color: var(--green-900);
  background: #f4f8ed;
  font-size: 1.18rem;
}

.legal-heading:first-child {
  border-top: 0;
}

.legal-intro,
.legal-body {
  padding: 18px;
}

.legal-intro p,
.legal-body p {
  margin: 0 0 0.8em;
}

.legal-intro p:last-child,
.legal-body p:last-child {
  margin-bottom: 0;
}

.legal-body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.3em;
}

.legal-body li::marker {
  color: var(--green-700);
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
}

.company-info-table th,
.company-info-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
}

.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
  border-bottom: 0;
}

.company-info-table th {
  width: 180px;
  color: var(--green-900);
  background: var(--green-100);
  font-weight: 900;
}

.company-info-table td p {
  margin: 0 0 0.8em;
}

.company-info-table td p:last-child {
  margin-bottom: 0;
}

.company-message-section {
  padding-top: 0;
}

.company-message-card {
  padding: clamp(18px, 4vw, 28px);
}

.company-message-card h2 {
  margin: 0 0 10px;
  color: var(--green-900);
}

.company-message-card > p {
  margin: 0 0 18px;
  color: var(--muted);
}

@media (max-width: 680px) {
  .company-info-table,
  .company-info-table tbody,
  .company-info-table tr,
  .company-info-table th,
  .company-info-table td {
    display: block;
    width: 100%;
  }

  .company-info-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .company-info-table td {
    padding-top: 8px;
  }
}




