:root {
  --static-green: #3f8a28;
  --static-green-bright: #57a83a;
  --static-ink: #212b23;
  --static-line: #e6e8e1;
  --static-header-height: 72px;
  --static-header-desktop-padding: 48px;
  --static-header-desktop-gap: 34px;
  --static-header-side-track: 140px;
}

html {
  overflow-x: hidden;
}

body {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(87, 168, 58, .46) !important;
  outline-offset: 3px;
}

.static-menu-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--static-line);
  border-radius: 10px;
  background: #fff;
  color: var(--static-green);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(33, 43, 35, .08);
}

.static-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.static-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.static-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.static-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

[data-static-placeholder="true"][aria-disabled="true"] {
  cursor: not-allowed !important;
  opacity: .68;
}

[data-static-placeholder="true"][aria-disabled="true"]:hover {
  transform: none !important;
}

.st-jibeon-item {
  flex: 0 0 auto;
}

.st-store-map-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  padding-bottom: 90px;
}

.st-store-map-visual,
.st-store-district-guide {
  width: 100%;
  background: #fff;
  border: 1px solid #e6e8e1;
  border-radius: 14px;
}

.st-store-map-visual {
  padding: 26px;
}

.st-store-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.st-store-district-guide {
  position: static;
  padding: 32px;
}

.st-store-zone-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.st-jibeon-item > a[data-static-disabled="true"] {
  cursor: default !important;
  background: #fbfaf6 !important;
}

.static-page-actions {
  position: relative;
  z-index: 6;
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.static-share {
  position: relative;
  flex: none;
}

.static-share-toggle {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.static-share-toggle:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .24);
  color: #fff;
}

.static-share-toggle[aria-expanded="true"] {
  border-color: #fff;
  background: #fff;
  color: var(--static-green);
}

.static-share-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 120;
  width: 184px;
  padding: 8px;
  border: 1px solid var(--static-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(33, 43, 35, .18);
}

.static-share-menu[hidden] {
  display: none !important;
}

.static-share-toggle[aria-expanded="false"] + .static-share-menu {
  display: none !important;
}

.static-share-menu::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 100%;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--static-line);
  border-left: 1px solid var(--static-line);
  background: #fff;
  transform: translateY(6px) rotate(45deg);
}

.static-share-item {
  appearance: none;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #243326;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.static-share-item svg {
  flex: none;
  color: var(--static-green);
}

.static-share-item:hover,
.static-share-item:focus-visible {
  background: #eef6e5;
  color: #2f6f20;
}

.st-transport-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.st-transport-summary,
.st-transport-routes {
  min-width: 0;
}

.st-transport-routes > div:first-child {
  padding-top: 0 !important;
}

.st-home-news-wrap,
.st-home-news-media,
.st-home-news-media .nt-row {
  min-width: 0;
}

.st-home-news-media > div {
  min-width: 0;
}

.st-event-banner {
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid #dde5d8;
  border-radius: 14px;
  background: #fbf8ed;
  box-shadow: 0 14px 34px rgba(45, 77, 49, .08);
}

.st-event-banner__link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 46px 54px;
  color: inherit;
  background-image:
    linear-gradient(90deg, rgba(255, 253, 246, .99) 0%, rgba(255, 253, 246, .94) 42%, rgba(255, 253, 246, .44) 62%, rgba(255, 253, 246, .08) 78%),
    url("img/fresh-illust.png");
  background-position: center;
  background-size: cover;
  transition: box-shadow .22s ease, transform .22s ease;
}

.st-event-banner__link:hover {
  color: inherit;
  transform: translateY(-2px);
}

.st-event-banner__content {
  position: relative;
  z-index: 1;
  max-width: 54%;
}

.st-event-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e9f5e2;
  color: var(--static-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.st-event-banner h3 {
  margin: 0 0 14px;
  color: var(--static-ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.st-event-banner p {
  margin: 0 0 25px;
  color: #6f746b;
  font-size: 18px;
  line-height: 1.7;
}

.st-event-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 6px;
  background: var(--static-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background .18s ease, transform .18s ease;
}

.st-event-banner__link:hover .st-event-banner__cta,
.st-event-banner__link:focus-visible .st-event-banner__cta {
  background: #34701f;
  transform: translateX(2px);
}

.st-footer-divider {
  margin: 20px 0 14px !important;
}

.st-footer-legal {
  margin-top: 0;
}

@media (min-width: 901px) {
  .st-header .st-inner {
    max-width: 1600px !important;
    padding: 12px var(--static-header-desktop-padding) !important;
    gap: var(--static-header-desktop-gap) !important;
  }

  .st-header .st-nav {
    gap: 24px !important;
  }

  .st-header .st-nav-item {
    min-width: auto !important;
    padding: 30px 0 !important;
    font-size: 17px !important;
    text-align: center !important;
  }

  .st-header .st-nav-item > span:last-child {
    right: 8% !important;
    bottom: 17px !important;
    left: 8% !important;
  }

  .st-header .st-mega {
    padding: 24px 0 30px !important;
    border-top-color: #dfe9da !important;
    background: #f3f8f0 !important;
    box-shadow: 0 22px 46px rgba(33, 43, 35, .14) !important;
  }

  .st-mega-inner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 1600px;
    min-height: 0 !important;
    margin: 0 auto;
    padding: 0 40px;
  }

  .st-mega-col {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    min-width: 0;
    min-height: 214px;
    padding: 22px 18px !important;
    border: 1px solid #e0e8dc;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(48, 76, 53, .055);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .st-mega-col:hover {
    border-color: #bad6ad;
    box-shadow: 0 14px 30px rgba(48, 76, 53, .10);
    transform: translateY(-2px);
  }

  .st-mega-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 13px;
    padding: 0 8px 13px;
    border-bottom: 1px solid #e5ebe1;
    color: #25462a;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
  }

  .st-mega-title::before {
    content: "";
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--static-green-bright);
    box-shadow: 0 0 0 4px rgba(87, 168, 58, .12);
  }

  .st-mega-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px !important;
    border-radius: 8px;
    color: #626b61 !important;
    font-size: 15px !important;
    line-height: 1.45;
    transition: background .18s ease, color .18s ease, transform .18s ease !important;
  }

  .st-mega-link::before {
    content: "";
    flex: none;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9aaa96;
    transition: background .18s ease, transform .18s ease;
  }

  .st-mega-link:hover,
  .st-mega-link:focus-visible {
    background: #edf6e8;
    color: #2f7422 !important;
    font-weight: 700;
    transform: translateX(2px);
  }

  .st-mega-link:hover::before,
  .st-mega-link:focus-visible::before {
    background: var(--static-green-bright);
    transform: scale(1.35);
  }
}

@media (min-width: 1200px) {
  .st-header .st-inner {
    display: grid !important;
    grid-template-columns: var(--static-header-side-track) minmax(0, 1fr) var(--static-header-side-track);
  }

  .st-header .st-logo {
    justify-self: start;
  }

  .st-header .st-nav {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px !important;
    width: 100%;
    align-items: stretch;
  }

  .st-header .st-header-right {
    justify-self: end;
  }

  .st-header .st-nav-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    font-size: 19px !important;
  }

  .st-header .st-nav-item > span:last-child {
    right: auto !important;
    left: 50% !important;
    width: min(72px, 70%);
    transform: translateX(-50%);
  }

  .st-mega-inner {
    padding-right: calc(var(--static-header-desktop-padding) + var(--static-header-side-track) + var(--static-header-desktop-gap));
    padding-left: calc(var(--static-header-desktop-padding) + var(--static-header-side-track) + var(--static-header-desktop-gap));
  }
}

@media (max-width: 1100px) {
  .st-store-zone-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.static-menu-open {
    overflow: hidden;
  }

  .st-store-map-layout {
    gap: 20px;
    padding-bottom: 64px;
  }

  .st-store-map-visual {
    padding: 10px;
  }

  .st-store-district-guide {
    padding: 24px 18px;
  }

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

  .st-home-news-wrap {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .st-home-news-media {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 28px 20px !important;
  }

  .st-transport-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .st-event-banner {
    margin-top: 44px;
  }

  .st-event-banner__link {
    min-height: 360px;
    padding: 36px 24px;
    background-image:
      linear-gradient(90deg, rgba(255, 253, 246, .99) 0%, rgba(255, 253, 246, .95) 54%, rgba(255, 253, 246, .54) 76%, rgba(255, 253, 246, .18) 100%),
      url("img/fresh-illust.png");
    background-position: 68% center;
  }

  .st-event-banner__content {
    max-width: 82%;
  }

  .st-event-banner h3 {
    font-size: 28px;
  }

  .st-event-banner p {
    font-size: 16px;
  }

  body.static-menu-open::before {
    content: "";
    position: fixed;
    inset: var(--static-header-height) 0 0;
    z-index: 98;
    background: rgba(20, 34, 24, .38);
    backdrop-filter: blur(2px);
  }

  .st-header {
    min-height: var(--static-header-height) !important;
  }

  .st-header .st-inner {
    min-height: var(--static-header-height) !important;
    padding: 10px 16px !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  .st-header .st-logo img {
    height: 44px !important;
    max-width: 102px;
    object-fit: contain;
  }

  .st-header .st-header-right {
    margin-left: auto !important;
    gap: 8px !important;
  }

  .st-header .st-btn-join {
    display: inline-flex !important;
    min-height: 44px !important;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
    font-size: 12px !important;
    line-height: 1.25;
    white-space: nowrap;
  }

  .static-menu-toggle {
    display: inline-flex;
  }

  .st-header .st-nav {
    position: fixed !important;
    top: var(--static-header-height) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 101 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
    max-height: calc(100dvh - var(--static-header-height));
    margin: 0 !important;
    padding: 10px 18px 18px !important;
    overflow: auto !important;
    border-top: 1px solid var(--static-line);
    background: #fff;
    box-shadow: 0 18px 38px rgba(33, 43, 35, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  body.static-menu-open .st-header .st-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .st-header .st-nav-item {
    display: flex !important;
    align-items: center;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 12px 8px !important;
    border-bottom: 1px solid #eef0ea;
    font-size: 17px !important;
    text-align: left !important;
  }

  .st-header .st-nav-item > span:not(:last-child) {
    display: inline !important;
  }

  .st-header .st-nav-item > span:last-child {
    display: none;
  }

  .st-header .st-mega {
    display: none !important;
  }

  .st-container {
    padding-top: var(--static-header-height) !important;
  }

  .st-content {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .st-hero {
    min-height: auto !important;
    align-items: stretch !important;
    background-image:
      linear-gradient(90deg, rgba(250, 247, 238, .97) 0%, rgba(250, 247, 238, .92) 45%, rgba(250, 247, 238, .56) 100%),
      url("img/hero-market-illust.png") !important;
    background-position: 58% center !important;
  }

  .st-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px !important;
    padding: 42px 18px 32px !important;
  }

  .st-hero-text,
  .st-hero-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .st-hero-title {
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.12 !important;
    margin-bottom: 16px !important;
  }

  .st-hero-desc {
    max-width: 32em;
    margin-bottom: 22px !important;
    color: #4f584f !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .st-hero-desc br {
    display: none;
  }

  .st-hero-search {
    width: 100%;
    padding: 14px 16px !important;
    border-radius: 22px !important;
  }

  .st-hero-search-row {
    gap: 8px !important;
  }

  .st-hero-search-row input {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 8px 0 !important;
    font-size: 15px !important;
  }

  .st-hero-search-row button {
    width: 48px !important;
    min-width: 48px;
    height: 48px !important;
    min-height: 48px;
  }

  .st-hero-tags {
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .st-hero-tags button {
    min-height: 44px;
    padding: 8px 13px !important;
  }

  .st-hero-panel {
    border-radius: 12px !important;
  }

  .st-hero-panel > div:first-child {
    padding: 22px 20px !important;
  }

  .st-hero-panel > div:last-child > a {
    min-height: 72px;
    padding: 12px !important;
  }

  .st-subhero {
    min-height: 240px !important;
    background-position: center !important;
  }

  .st-subhero h1 {
    font-size: clamp(29px, 9vw, 38px) !important;
    line-height: 1.15 !important;
  }

  .st-subhero p {
    max-width: 32em;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .st-subnav {
    margin-top: -34px !important;
    margin-bottom: 38px !important;
    overflow: hidden;
  }

  body.static-share-open .st-subnav {
    overflow: visible !important;
  }

  .static-page-actions {
    gap: 6px;
  }

  .static-share-menu {
    width: min(184px, calc(100vw - 32px));
  }

  .st-subnav > div > div {
    justify-content: flex-start !important;
    max-width: calc(100vw - 28px) !important;
    margin: 0 auto !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .st-subnav a,
  .st-subnav strong {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px !important;
    white-space: nowrap;
  }

  #content button,
  #content input,
  #content select,
  #content textarea,
  #content [role="button"],
  #content [data-static-control="true"] {
    min-height: 44px;
  }

  #content input,
  #content select,
  #content textarea {
    max-width: 100%;
  }

  #content .st-cat {
    min-height: 92px;
  }

  #content [style*="overflow-x:auto"],
  #content [style*="overflow-x: auto"] {
    max-width: 100%;
    overscroll-behavior-inline: contain;
  }

  .st-board-table {
    display: grid;
    gap: 10px;
    border-top: 0 !important;
  }

  .st-board-table-head {
    display: none !important;
  }

  .st-board-table--notice > a {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-rows: auto auto;
    gap: 6px 10px !important;
    align-items: center !important;
    padding: 15px 14px !important;
    border: 1px solid var(--static-line) !important;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(33, 43, 35, .05);
  }

  .st-board-table--notice > a > :nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    min-width: 38px;
    padding-top: 1px;
  }

  .st-board-table--notice > a > :nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
    overflow: visible !important;
    white-space: normal !important;
    line-height: 1.45;
  }

  .st-board-table--notice > a > :nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    text-align: left !important;
  }

  .st-board-table--notice > a > :nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    text-align: right !important;
  }

  .st-board-table--member > sc-for {
    display: contents;
  }

  .st-board-table--member > sc-for > div,
  .st-board-table--member > div:not(.st-board-table-head) {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-rows: auto auto auto;
    gap: 6px 10px !important;
    align-items: center !important;
    padding: 15px 14px !important;
    border: 1px solid var(--static-line) !important;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(33, 43, 35, .05);
  }

  .st-board-table--member > sc-for > div > :nth-child(1),
  .st-board-table--member > div:not(.st-board-table-head) > :nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    min-width: 34px;
    padding-top: 3px;
  }

  .st-board-table--member > sc-for > div > :nth-child(2),
  .st-board-table--member > div:not(.st-board-table-head) > :nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
    text-align: left !important;
  }

  .st-board-table--member > sc-for > div > :nth-child(3),
  .st-board-table--member > div:not(.st-board-table-head) > :nth-child(3) {
    grid-column: 2 / 4;
    grid-row: 2;
    overflow: visible !important;
    flex-wrap: wrap;
    line-height: 1.45;
  }

  .st-board-table--member > sc-for > div > :nth-child(3) > span,
  .st-board-table--member > div:not(.st-board-table-head) > :nth-child(3) > span {
    overflow: visible !important;
    white-space: normal !important;
  }

  .st-board-table--member > sc-for > div > :nth-child(4),
  .st-board-table--member > div:not(.st-board-table-head) > :nth-child(4) {
    grid-column: 2;
    grid-row: 3;
    text-align: left !important;
  }

  .st-board-table--member > sc-for > div > :nth-child(5),
  .st-board-table--member > div:not(.st-board-table-head) > :nth-child(5) {
    grid-column: 3;
    grid-row: 3;
    text-align: right !important;
  }

  .st-footer button {
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  .st-header .st-logo img {
    height: 40px !important;
    max-width: 92px;
  }

  .st-header .st-btn-join {
    max-width: 102px;
    padding: 7px 9px !important;
    white-space: normal;
  }

  .st-eyebrow {
    font-size: 16px !important;
  }

  .st-hero-search-row input::placeholder {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
