:root {
  --green-900: #0f5a43;
  --green-800: #16684d;
  --green-700: #1f7a59;
  --green-100: #edf7f1;
  --green-050: #f6fbf8;
  --orange-500: #f26a21;
  --orange-600: #e65d12;
  --text: #20322b;
  --muted: #5e7369;
  --line: #d7e5dc;
  --white: #ffffff;
  --danger-bg: #fff7f3;
  --danger-line: #f3c3b6;
  --danger-text: #c44d1a;
  --shadow: 0 10px 24px rgba(18, 76, 56, 0.08);
  --container: 1120px;
}

/* --------------------
   Base
-------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 220px);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --------------------
   Header
-------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  color: #ffffff;
  background:
    linear-gradient(rgba(15, 90, 67, 0.88), rgba(31, 122, 89, 0.84)),
    url("images/header1.png") center center / cover no-repeat;
  box-shadow: 0 8px 18px rgba(8, 48, 35, 0.18);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
}

.brand {
  min-width: 0;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  margin-bottom: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.brand-sub,
.header-note,
.footer small {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.header-right {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 1 auto;
}

.header-note {
  max-width: 360px;
  font-size: 0.88rem;
  line-height: 1.25;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.header-note strong {
  display: block;
  margin-top: 2px;
  color: #f1d36e;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

/* --------------------
   News
-------------------- */
.news-bar {
  padding-top: 12px;
}

.news-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid #efe3b2;
  border-radius: 16px;
  background: #fffef9;
  box-shadow: var(--shadow);
}

.news-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: #fff2c9;
  color: #886104;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.news-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 8px;
  border-bottom: 1px dashed #eadfaa;
}

.news-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.news-date {
  color: #886104;
  font-size: 0.88rem;
  font-weight: 700;
}

.news-list a:hover {
  color: var(--green-800);
}

/* --------------------
   Search
-------------------- */
.search-wrap {
  padding: 10px 0 6px;
  background: transparent;
  border-bottom: 0;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbf8 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.search-input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  font-size: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(31, 122, 89, 0.12);
}

.search-btn {
  min-width: 160px;
  height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(242, 106, 33, 0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(242, 106, 33, 0.28);
}

.search-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(242, 106, 33, 0.2);
}

.search-btn:focus-visible {
  outline: 3px solid rgba(242, 106, 33, 0.22);
  outline-offset: 2px;
}

/* --------------------
   Common buttons / headings
-------------------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(242, 106, 33, 0.22);
}

.btn-secondary {
  border: 1px solid var(--green-700);
  background: var(--white);
  color: var(--green-800);
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green-800);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* --------------------
   Top page hero
-------------------- */
.hero {
  padding: 12px 0 8px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy p {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--muted);
}

.hero-visual {
  min-height: 250px;
  border-radius: 20px;
  overflow: hidden;
  background: #eef6f2;
}

.hero-photo,
.ship-photo,
.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------
   Trust area
-------------------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 14px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 66px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 14px rgba(21, 90, 65, 0.05);
}

.trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-100);
}

.trust-pill strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.25;
}

.trust-pill span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.trust-icon img,
.step-emoji img,
.reason-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* --------------------
   Common section layout
-------------------- */
.section {
  padding: 8px 0;
}

.section-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* --------------------
   Flow
-------------------- */
.flow-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 12px;
}

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

.step-card {
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fcfa);
  text-align: center;
}

.step-no {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-800);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.step-emoji {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-card h3,
.reason-card h3,
.ship-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.step-card p,
.reason-card p,
.ship-card p,
.quick-nav a span {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.quick-nav {
  display: grid;
  gap: 8px;
}

.quick-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--green-050);
  color: var(--green-900);
  font-weight: 800;
}

.quick-nav a::after {
  content: "›";
  font-size: 1.2rem;
}

/* --------------------
   Reason
-------------------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.reason-card,
.ship-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfdfc);
}

.reason-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-100);
}

/* --------------------
   Shipping
-------------------- */
.ship-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 10px;
}

.ship-visual {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #eef6f2;
}

.shipping-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shipping-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px dashed var(--line);
}

.shipping-list strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.shipping-list span {
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
}

/* --------------------
   Contact
-------------------- */
.contact-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-image {
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #eef6f2;
}

/* --------------------
   Notice
-------------------- */
.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--danger-line);
  border-radius: 18px;
  background: var(--danger-bg);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--danger-text);
}

.notice p {
  margin: 0;
  color: #7a5c51;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --------------------
   Footer
-------------------- */
.footer {
  margin-top: 18px;
  padding: 20px 0 24px;
  color: rgba(255, 255, 255, 0.95);
  background:
    linear-gradient(rgba(8, 46, 35, 0.88), rgba(8, 46, 35, 0.94)),
    url("images/footer1.png") center center / cover no-repeat;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.footer small {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

/* --------------------
   Responsive
-------------------- */
@media (max-width: 900px) {
  .hero-card,
  .flow-layout,
  .ship-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 220px;
  }

  .contact-image {
    min-height: 180px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .topbar-inner {
    gap: 8px;
    padding: 6px 0;
  }

  .brand-mark {
    font-size: 1.7rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .header-note {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .pill-btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .search-row,
  .news-card,
  .news-list li {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .section-card {
    padding: 12px;
    border-radius: 18px;
  }

  .hero-visual {
    min-height: 210px;
    order: -1;
  }

  .trust-row,
  .step-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .notice {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .search-btn {
    width: 100%;
  }

  .shipping-list li {
    flex-direction: column;
    gap: 4px;
  }

  .shipping-list span {
    white-space: normal;
  }

  .ship-visual,
  .contact-image {
    display: none;
  }

  .news-card {
    padding: 10px 12px;
  }

  .section-header p,
  .news-date,
  .news-list a,
  .step-card p,
  .reason-card p,
  .shipping-list strong,
  .shipping-list span,
  .notice p {
    font-size: 0.84rem;
  }

  .footer a {
    min-width: 0;
    width: 100%;
  }
}

.reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reason-card h3,
.reason-card p {
  width: 100%;
  text-align: center;
}

.reason-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 760px) {
  .reason-card {
    align-items: center;
    text-align: center;
  }

  .reason-card h3,
  .reason-card p {
    text-align: center;
  }

  .reason-icon {
    justify-content: center;
  }
}

.reason-grid .reason-icon {
  background: transparent;
  box-shadow: none;
  border: 0;
}

.reason-grid .reason-icon img {
  display: block;
  background: transparent;
}