:root {
  --ink: #23251f;
  --muted: #6d7164;
  --line: #d8dccf;
  --paper: #fffdf7;
  --field: #f4f0df;
  --leaf: #456b3f;
  --orange: #e68b26;
  --blue: #6d9eb3;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.wire-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 2px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: 54px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.logo img {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--leaf);
  border-radius: 6px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: var(--white);
  color: var(--leaf);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  max-width: 1180px;
  width: 100%;
  padding: 120px 24px 96px;
  margin: 0 auto;
  color: var(--white);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 80px auto 56px 0;
  z-index: -1;
  width: min(680px, calc(100% - 48px));
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(18, 28, 25, 0.7), rgba(18, 28, 25, 0.24), transparent);
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-copy .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--leaf);
}

.hero-copy .button.secondary {
  background: transparent;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

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

.hero-media,
.page-hero-media {
  position: relative;
  min-height: 440px;
  background:
    linear-gradient(135deg, rgba(69, 107, 63, 0.14), rgba(230, 139, 38, 0.16)),
    repeating-linear-gradient(90deg, rgba(35, 37, 31, 0.08) 0 1px, transparent 1px 56px),
    var(--field);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: var(--field);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 24, 22, 0.64), rgba(14, 24, 22, 0.22), rgba(14, 24, 22, 0.06)),
    linear-gradient(180deg, rgba(14, 24, 22, 0.08), rgba(14, 24, 22, 0.2));
}

.photo-placeholder {
  position: absolute;
  inset: 42px 34px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(69, 107, 63, 0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 300px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(35, 37, 31, 0.12);
  font-size: 14px;
}

.home-menu {
  background: var(--white);
}

.home-menu .section-inner {
  padding-top: 34px;
  padding-bottom: 34px;
}

.home-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.home-menu-head h2 {
  margin: 0;
  font-size: 28px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.menu-card {
  display: grid;
  gap: 5px;
  min-height: 132px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.menu-card:last-child {
  border-right: 0;
}

.menu-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.menu-card strong {
  font-size: 18px;
  line-height: 1.35;
}

.menu-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.menu-card::after {
  content: ">";
  align-self: end;
  color: var(--leaf);
  font-weight: 900;
}

.menu-card:hover {
  background: #f8faf4;
  color: var(--leaf);
}

section {
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 24px;
}

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

h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.about-grid,
.page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: stretch;
}

.image-box,
.map-box,
.insta-box {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(109, 158, 179, 0.12), rgba(230, 139, 38, 0.1)),
    var(--white);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.about-photo {
  min-height: 390px;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.text-block {
  display: grid;
  gap: 18px;
  align-content: center;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fact {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--leaf);
  font-size: 22px;
}

.fact-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  margin: 8px 0 14px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.news-list {
  display: grid;
  gap: 14px;
}

.information {
  background: #f8faf4;
}

.info-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(230, 139, 38, 0.12), rgba(109, 158, 179, 0.12)),
    var(--white);
}

.info-feature h3 {
  margin-top: 10px;
}

.info-list {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.news-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-date {
  display: grid;
  gap: 4px;
  color: var(--leaf);
  font-weight: 800;
}

.news-date span {
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--field);
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.text-link::after {
  content: " >";
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.news-thumb,
.card-image {
  display: grid;
  place-items: center;
  border: 2px dashed var(--line);
  border-radius: 6px;
  background: var(--field);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.news-thumb {
  height: 96px;
}

.activity-grid,
.citrus-grid,
.sales-grid,
.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card-image {
  height: 118px;
  margin-bottom: 16px;
}

.season {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.month {
  min-height: 92px;
  padding: 12px;
  border-radius: 6px;
  background: var(--field);
  font-size: 13px;
}

.month strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
}

.price {
  margin-top: 14px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 800;
}

.shop-banner-list {
  display: grid;
  gap: 18px;
}

.shop-banner {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 168px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.shop-banner > * {
  position: relative;
}

.shop-banner div {
  padding-left: 0;
}

.shop-banner span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.shop-banner strong {
  display: block;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.shop-banner p {
  max-width: 560px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.shop-banner em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  color: var(--white);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.line-shop {
  background:
    linear-gradient(135deg, rgba(35, 37, 31, 0.12), rgba(35, 37, 31, 0.08)),
    #2c8f55;
}

.mercari {
  background:
    linear-gradient(135deg, rgba(35, 37, 31, 0.12), rgba(35, 37, 31, 0.08)),
    #c94d3f;
}

.furusato {
  background:
    linear-gradient(135deg, rgba(35, 37, 31, 0.12), rgba(35, 37, 31, 0.08)),
    #4d7892;
}

.furusato::before {
  content: "";
  width: 120px;
  min-height: 120px;
  border-radius: 8px;
  background-image: url("assets/banner-furusato.png");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.shop-brand-image {
  display: grid;
  place-items: center;
  width: 120px;
  min-height: 120px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(35, 37, 31, 0.08);
}

.shop-brand-image img {
  width: 100%;
  height: 100%;
  max-height: 76px;
  display: block;
  object-fit: contain;
}

.shop-hero-photo {
  min-height: 440px;
  background: var(--field);
}

.shop-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(230, 139, 38, 0.1), rgba(69, 107, 63, 0.08)),
    var(--paper);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.page-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-page-hero .section-inner {
  grid-template-columns: 1fr;
}

.partner-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 80px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.logo-box {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 2px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.greeting-hero .section-inner {
  grid-template-columns: 1fr;
}

.greeting-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.representative-photo {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(109, 158, 179, 0.14), rgba(230, 139, 38, 0.12)),
    var(--white);
  color: var(--muted);
  font-weight: 800;
}

.greeting-copy {
  display: grid;
  gap: 20px;
}

.greeting-copy h2 {
  margin-top: 0;
}

.greeting-copy p {
  color: var(--muted);
}

.representative-name {
  display: grid;
  justify-items: end;
  gap: 4px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.representative-name span {
  color: var(--muted);
  font-size: 13px;
}

.representative-name strong {
  font-size: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.contact-form,
.contact-side {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.check-row {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-row label span {
  margin-left: 6px;
  color: var(--orange);
  font-size: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(69, 107, 63, 0.28);
  outline-offset: 2px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-side h2 {
  margin-top: 0;
  font-size: 32px;
}

.contact-facts {
  grid-template-columns: 1fr;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #26372d;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 46px;
}

.footer-profile {
  display: grid;
  gap: 26px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
}

.footer-logo img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--white);
}

.footer-details {
  display: grid;
  gap: 0;
  margin: 0;
}

.footer-details div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-details dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.footer-details dd {
  margin: 0;
  font-size: 14px;
}

.footer-social {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-social > p {
  font-size: 18px;
  font-weight: 800;
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-link {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.social-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link strong {
  font-size: 17px;
}

.social-link small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero,
  .about-grid,
  .page-grid,
  .season,
  .page-hero .section-inner,
  .contact-layout,
  .footer-inner,
  .greeting-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 38px;
  }

  .hero-copy {
    padding: 72px 24px 46px;
    margin-left: 0;
  }

  .activity-grid,
  .citrus-grid,
  .sales-grid,
  .partner-cards,
  .fact-list {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shop-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .menu-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .menu-card:nth-child(2n) {
    border-right: 0;
  }

  .menu-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .menu-card:last-child {
    border-bottom: 0;
  }

  .info-feature {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 560px) {
  .header-inner {
    padding: 12px 16px;
  }

  .logo {
    width: auto;
    height: 48px;
    font-size: 19px;
  }

  .logo img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-photo img {
    min-height: 390px;
  }

  .photo-placeholder {
    inset: 24px 18px;
  }

  .hero-note {
    right: 18px;
    left: 18px;
    bottom: 18px;
    max-width: none;
  }

  .section-inner {
    padding: 54px 16px;
  }

  .home-menu .section-inner {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .home-menu-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card,
  .menu-card:nth-child(2n),
  .menu-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-card:last-child {
    border-bottom: 0;
  }

  .shop-banner {
    min-height: 0;
    padding: 22px;
  }

  .shop-brand-image,
  .furusato::before {
    width: 100%;
    height: 96px;
    min-height: 96px;
    margin-bottom: 18px;
  }

  .shop-banner div {
    padding-left: 0;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    padding: 48px 16px 34px;
  }

  .footer-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 16px;
  }
}
