:root {
  --green: #00745f;
  --green-dark: #005142;
  --orange: #f28c28;
  --yellow: #ffe08a;
  --ink: #26302d;
  --muted: #64726e;
  --line: #dce7e2;
  --paper: #ffffff;
  --soft: #f4f8f5;
  --blue: #2f7fb8;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}

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

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

[data-header] {
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(38, 48, 45, .08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  font-weight: 700;
  color: var(--green-dark);
}

.brand img {
  width: 142px;
  height: auto;
}

.brand span {
  font-size: 13px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: #41504b;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--green);
  color: #fff;
}

.menu-button {
  display: none;
  min-width: 64px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
}

.menu-button-label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.store-area-heading {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding: 0 0 10px 14px;
  border-bottom: 2px solid rgba(0, 116, 95, .18);
  border-left: 5px solid var(--green);
  color: var(--green-dark);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}

.store-area-heading:first-child {
  margin-top: 0;
}

.store-card[id^="area-"] {
  scroll-margin-top: 150px;
}

#leaflet-info {
  scroll-margin-top: 18px;
}

body.is-line-leaflet-entry #leaflet-info .leaflet-line-cta {
  display: none;
}

.hero {
  min-height: min(680px, calc(100vh - 60px));
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 70, 56, .48), rgba(255, 255, 255, .1) 56%, rgba(255, 255, 255, .32)),
    linear-gradient(0deg, rgba(0, 42, 34, .18), rgba(255, 255, 255, .34)),
    var(--hero-image, url("../assets/images/hero-variants/hero-consultation-chart.jpg")) center / cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0 76px;
}

.hero-inner > h1,
.hero-inner > p,
.hero-inner > .eyebrow,
.hero-inner > .hero-actions {
  max-width: 720px;
}

.hero-inner > h1 {
  max-width: 900px;
}

.hero-title-line {
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
.page-title h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  text-shadow: 0 2px 16px rgba(0, 40, 32, .58);
}

.hero h1,
.hero .eyebrow {
  text-shadow: 0 3px 18px rgba(0, 40, 32, .62);
}

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

.quick-guide {
  padding: 24px clamp(18px, 4vw, 56px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.quick-guide-card {
  display: block;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f6fbf7 100%);
  color: var(--ink);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.quick-guide-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.quick-guide-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.quick-guide-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(0, 102, 82, .12);
  transform: translateY(-2px);
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .12);
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--green-dark);
}

.card .button.light {
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.card .button.light:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 116, 95, .2);
  transform: translateY(-2px);
  opacity: 1;
}

.section {
  padding: 72px clamp(18px, 4vw, 56px);
}

.section.alt {
  background: var(--soft);
}

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

.anchor-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.anchor-nav .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px clamp(18px, 4vw, 56px);
}

.anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.anchor-nav a:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  opacity: 1;
}

.anchor-nav a.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  opacity: 1;
}

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

.section-head h2,
.page-title h1,
.card h2,
.site-footer h2 {
  letter-spacing: 0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.leaflet-head-copy {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.leaflet-line-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgba(0, 185, 0, .22);
  border-radius: 999px;
  padding: 8px 14px 8px 18px;
  background: #f2fff2;
  color: #087a1f;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 116, 95, .12);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.leaflet-line-cta:hover {
  border-color: rgba(0, 185, 0, .55);
  background: #eaffea;
  box-shadow: 0 14px 28px rgba(0, 116, 95, .18);
  transform: translateY(-1px);
}

.leaflet-line-cta img {
  width: auto;
  height: 36px;
  flex: 0 0 auto;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.store-card,
.product-card,
.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.card {
  padding: 24px;
}

.card h3,
.store-card h2,
.product-card h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  line-height: 1.35;
}

.card p,
.store-card p,
.product-card p,
.photo-card p {
  margin: 0;
  color: #44534f;
}

.media-card img,
.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.photo-card div {
  padding: 18px;
}

.photo-card img {
  margin-bottom: 0;
  border-radius: 0;
}

.photo-card h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.map-feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.area-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.area-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.area-stats div {
  display: grid;
  gap: 2px;
  min-height: 82px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.area-stats strong {
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.area-stats span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.shop-area-jump {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
}

.shop-area-jump strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.shop-area-jump div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-area-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.shop-area-jump a:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 20px rgba(0, 88, 72, .18);
  transform: translateY(-2px);
  opacity: 1;
}

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

.map-actions .button {
  min-height: 42px;
  padding: 9px 16px;
}

.nagano-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nagano-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-shape {
  fill: #35ad32;
  stroke: #35ad32;
  stroke-width: 2;
}

.map-region circle {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 5;
}

.map-region text {
  fill: var(--green-dark);
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 5;
  stroke-linejoin: round;
  font-size: 16px;
  font-weight: 800;
}

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

.page-title {
  padding: 72px clamp(18px, 4vw, 56px) 46px;
  background: var(--green-dark);
  color: #fff;
}

.page-title.shops-title {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 81, 66, .96) 0%, rgba(0, 116, 95, .66) 48%, rgba(0, 116, 95, .08) 100%),
    url("../assets/images/page-title-shops.jpg") center / cover;
}

.page-title.about-title {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 64, 52, .96) 0%, rgba(0, 92, 75, .7) 52%, rgba(0, 92, 75, .16) 100%),
    url("../assets/images/page-title-about.jpg") center / cover;
}

.page-title.campaign-title {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 81, 66, .96) 0%, rgba(0, 116, 95, .66) 48%, rgba(0, 116, 95, .08) 100%),
    url("../assets/images/page-title-campaign.jpg") center / cover;
}

.page-title.contact-title {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 81, 66, .96) 0%, rgba(0, 116, 95, .66) 48%, rgba(0, 116, 95, .08) 100%),
    url("../assets/images/page-title-contact.jpg") center / cover;
}

.page-title.leaflet-title {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 69, 56, .98) 0%, rgba(0, 116, 95, .84) 50%, rgba(210, 237, 218, .56) 100%);
}

.page-title.marcy-leaflet-title {
  background:
    linear-gradient(90deg, rgba(0, 69, 56, .98) 0%, rgba(0, 116, 95, .84) 48%, rgba(255, 226, 138, .62) 100%);
}

.page-title.leaflet-title::before,
.page-title.leaflet-title::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.page-title.leaflet-title::before {
  right: clamp(62px, 12vw, 210px);
  top: 50%;
  width: clamp(112px, 13vw, 180px);
  aspect-ratio: 1;
  border: 4px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  transform: translateY(-42%) rotate(-5deg);
  background:
    linear-gradient(90deg, transparent 43%, rgba(255, 255, 255, .66) 44% 56%, transparent 57%),
    linear-gradient(transparent 43%, rgba(255, 255, 255, .66) 44% 56%, transparent 57%),
    rgba(255, 255, 255, .08);
  box-shadow: 0 18px 36px rgba(0, 45, 36, .18);
}

.page-title.leaflet-title::after {
  right: clamp(24px, 5vw, 86px);
  top: 38px;
  width: 96px;
  height: 66px;
  border: 3px solid rgba(255, 255, 255, .46);
  border-radius: 8px;
  transform: rotate(9deg);
  background:
    linear-gradient(rgba(255, 255, 255, .6), rgba(255, 255, 255, .6)) 14px 17px / 68px 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, .48), rgba(255, 255, 255, .48)) 14px 31px / 52px 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, .38), rgba(255, 255, 255, .38)) 14px 45px / 62px 3px no-repeat;
}

.page-title.privacy-title {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 48%, rgba(226, 244, 225, .72) 0 15%, transparent 35%),
    linear-gradient(90deg, rgba(0, 64, 52, .98) 0%, rgba(0, 111, 89, .82) 50%, rgba(177, 220, 186, .54) 100%);
}

.page-title.privacy-title::before,
.page-title.privacy-title::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-title.privacy-title::before {
  right: clamp(72px, 14vw, 250px);
  top: 50%;
  width: clamp(112px, 12vw, 170px);
  aspect-ratio: 4 / 5;
  border: 4px solid rgba(255, 255, 255, .78);
  border-radius: 54% 54% 48% 48% / 36% 36% 66% 66%;
  box-shadow: 0 18px 42px rgba(0, 52, 42, .2);
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .9) 0 9%, transparent 10%),
    linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)) 50% 63% / 5px 19% no-repeat,
    linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .04));
}

.page-title.privacy-title::after {
  right: clamp(18px, 4vw, 72px);
  bottom: 34px;
  width: clamp(118px, 14vw, 190px);
  height: clamp(82px, 10vw, 132px);
  border: 3px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  opacity: .82;
  transform: rotate(7deg);
  background:
    linear-gradient(rgba(255, 255, 255, .76), rgba(255, 255, 255, .76)) 22px 27px / calc(100% - 44px) 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, .62), rgba(255, 255, 255, .62)) 22px 48px / 62% 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, .52), rgba(255, 255, 255, .52)) 22px 69px / 74% 3px no-repeat,
    rgba(255, 255, 255, .08);
}

.page-title.recruit-title {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, .24) 0 0, transparent 24%),
    linear-gradient(90deg, rgba(0, 81, 66, .98) 0%, rgba(0, 116, 95, .82) 48%, rgba(173, 218, 190, .5) 100%);
}

.page-title.recruit-title::before,
.page-title.recruit-title::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-title.recruit-title::before {
  right: clamp(24px, 8vw, 160px);
  bottom: 38px;
  width: min(360px, 36vw);
  aspect-ratio: 4 / 3;
  opacity: .55;
  background:
    radial-gradient(circle at 20% 30%, transparent 0 17px, rgba(255, 255, 255, .74) 18px 20px, transparent 21px),
    radial-gradient(circle at 50% 22%, transparent 0 17px, rgba(255, 255, 255, .74) 18px 20px, transparent 21px),
    radial-gradient(circle at 80% 30%, transparent 0 17px, rgba(255, 255, 255, .74) 18px 20px, transparent 21px),
    linear-gradient(rgba(255, 255, 255, .74), rgba(255, 255, 255, .74)) 16% 54% / 16% 2px no-repeat,
    linear-gradient(rgba(255, 255, 255, .74), rgba(255, 255, 255, .74)) 46% 50% / 18% 2px no-repeat,
    linear-gradient(rgba(255, 255, 255, .74), rgba(255, 255, 255, .74)) 74% 54% / 16% 2px no-repeat,
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, .72) 43% 44%, transparent 45%) 0 0 / 100% 100% no-repeat;
  border-bottom: 2px solid rgba(255, 255, 255, .66);
}

.page-title.recruit-title::after {
  right: clamp(18px, 5vw, 90px);
  top: 38px;
  width: 150px;
  height: 150px;
  opacity: .38;
  background:
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)) 50% 19% / 58px 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)) 50% 36% / 72px 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)) 50% 53% / 72px 3px no-repeat,
    linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)) 50% 70% / 52px 3px no-repeat;
  border: 3px solid rgba(255, 255, 255, .78);
  border-radius: 18px;
  transform: rotate(8deg);
}

.page-title.shops-title,
.page-title.about-title,
.page-title.campaign-title,
.page-title.contact-title,
.page-title.leaflet-title,
.page-title.privacy-title,
.page-title.recruit-title {
  display: block;
}

.page-title.shops-title h1,
.page-title.about-title h1,
.page-title.shops-title .eyebrow,
.page-title.about-title .eyebrow,
.page-title.shops-title p,
.page-title.about-title p,
.page-title.campaign-title h1,
.page-title.campaign-title .eyebrow,
.page-title.campaign-title p,
.page-title.contact-title h1,
.page-title.contact-title .eyebrow,
.page-title.contact-title p,
.page-title.leaflet-title h1,
.page-title.leaflet-title .eyebrow,
.page-title.leaflet-title p,
.page-title.privacy-title h1,
.page-title.privacy-title .eyebrow,
.page-title.privacy-title p,
.page-title.recruit-title h1,
.page-title.recruit-title .eyebrow,
.page-title.recruit-title p {
  text-shadow: 0 3px 18px rgba(0, 38, 30, .48);
}

.page-title > div {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-title p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d8f1ea;
}

.company-overview {
  padding: 28px;
}

.profile-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.profile-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list div:last-child {
  border-bottom: 0;
}

.profile-list dt {
  color: var(--green-dark);
  font-weight: 800;
}

.profile-list dd {
  margin: 0;
  color: var(--ink);
}

.message-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
}

.message-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.message-body h2 {
  margin-top: 0;
}

.message-body p {
  line-height: 1.95;
}

.message-name {
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 800;
  text-align: right;
}

.philosophy-panel img {
  object-fit: contain;
  background: #eef7f2;
}

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

.store-card {
  position: relative;
  min-height: 248px;
  padding: 20px;
}

.store-card-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}

.store-card .store-meta span:not(:first-child),
.store-card .store-actions {
  max-width: calc(100% - 152px);
}

.store-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
}

.store-actions {
  margin-top: 18px;
}

.store-actions .button {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
}

.store-actions .button:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 10px 22px rgba(0, 116, 95, .22);
  transform: translateY(-1px);
}

.store-card-photo {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 138px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(38, 48, 45, .14);
}

.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: #e8f5f0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 16px;
  background: var(--soft);
}

.product-card div {
  padding: 18px;
}

.product-slider {
  position: relative;
  overflow: hidden;
  padding: 0 54px;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--green) #e8f5f0;
}

.product-track::-webkit-scrollbar {
  height: 8px;
}

.product-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--green);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 116, 95, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--green-dark);
  box-shadow: 0 12px 28px rgba(38, 48, 45, .16);
  cursor: pointer;
  padding: 0;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  font-family: Arial, sans-serif;
  transform: translateY(-50%);
}

.slider-arrow::before {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.slider-arrow-prev::before {
  transform: rotate(-135deg);
}

.slider-arrow-next::before {
  transform: rotate(45deg);
}

.slider-arrow:hover {
  background: var(--green);
  color: #fff;
}

.slider-arrow-prev {
  left: 4px;
}

.slider-arrow-next {
  right: 4px;
}

.product-track .product-card {
  scroll-snap-align: start;
}

.leaflet-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.leaflet-card-actions .button {
  flex: 0 0 auto;
}

.leaflet-thumb {
  position: relative;
  flex: 1 1 128px;
  min-width: 116px;
  max-width: 160px;
  height: 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 10px 24px rgba(38, 48, 45, .12);
}

.leaflet-illust {
  position: absolute;
  inset: 9px;
  display: block;
  border: 2px solid #2aa33b;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #ffffff 0 28%, #fff7df 28% 100%);
  transform: rotate(-2deg);
}

.leaflet-illust::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 34px;
  height: 28px;
  border-radius: 4px;
  background: #fff;
  box-shadow: -5px -5px 0 rgba(42, 163, 59, .18);
  transform: rotate(8deg);
}

.leaflet-illust-head {
  display: block;
  margin: 0;
  padding: 6px 9px 5px;
  border-radius: 4px 4px 0 0;
  background: #2faa35;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.leaflet-illust-title {
  display: block;
  margin: 5px 9px 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.leaflet-illust-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 70px;
  margin: 7px 9px 0;
}

.leaflet-illust-products span {
  display: block;
  height: 15px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .55), transparent),
    #f3cf68;
  border: 1px solid rgba(0, 116, 95, .18);
}

.leaflet-illust-products span:nth-child(2) {
  background-color: #f29b76;
}

.leaflet-illust-products span:nth-child(3) {
  background-color: #9fd4e9;
}

.leaflet-illust-products span:nth-child(4) {
  background-color: #c8e69a;
}

.leaflet-illust-badge {
  position: absolute;
  right: 7px;
  top: 33px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e83f35;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transform: rotate(10deg);
}

.notice-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.notice-card-actions .button {
  flex: 0 0 auto;
}

.notice-illust {
  position: relative;
  flex: 1 1 112px;
  min-width: 104px;
  max-width: 138px;
  height: 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(38, 48, 45, .1);
}

.senior-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit-thumb span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 7px;
  background: rgba(0, 116, 95, .9);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.leaflet-widget {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.leaflet-widget iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: 0;
}

.leaflet-widget .actions {
  margin: 0;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.recruit-anchor {
  position: sticky;
  top: 78px;
  z-index: 25;
}

@media (min-width: 901px) {
  .anchor-nav {
    position: sticky;
    top: 78px;
    z-index: 24;
  }
}

.recruit-lead {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.recruit-lead h2,
.recruit-message-band h2,
.recruit-entry h2 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.22;
}

.recruit-lead p,
.recruit-message-band p,
.recruit-entry p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.9;
}

.recruit-lead-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 70, 56, .16);
}

.recruit-lead-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.recruit-message-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(240, 249, 244, .94)),
    url("../assets/images/recruit-thumb.png") right 30px center / 220px auto no-repeat;
}

.recruit-company-brief .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.recruit-company-brief h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: clamp(26px, 3vw, 36px);
}

.recruit-company-brief p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.recruit-message-band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-message-band li {
  padding: 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
}

.recruit-message-band li strong,
.recruit-message-band li span {
  display: block;
}

.recruit-message-band li strong {
  color: var(--green-dark);
  font-size: 18px;
}

.recruit-message-band li span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

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

.recruit-work-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit-work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.recruit-work-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--green-dark);
}

.job-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 28px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.store-mark {
  background: var(--green);
}

.pharmacy-mark {
  background: #1d79a8;
}

.buyer-mark {
  background: var(--orange);
}

.ec-mark {
  background: #4d5bb8;
}

.recruit-work-card .text-link {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}


.recruit-work-card p {
  line-height: 1.8;
}

.recruit-people-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.recruit-people-layout > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

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

.recruit-voice-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.recruit-voice-list span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 116, 95, .1);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.recruit-voice-list h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
}

.recruit-voice-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.recruit-env-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.recruit-person-card {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1.42fr);
  gap: 28px;
  align-items: start;
}

.recruit-person-photo {
  position: sticky;
  top: 154px;
}

.recruit-person-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.recruit-person-copy {
  color: var(--muted);
  line-height: 1.95;
}

.recruit-person-copy p {
  margin: 0 0 18px;
}

.recruit-person-copy a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.recruit-inline-image {
  margin: 8px 0 22px;
}

.recruit-inline-image img {
  display: block;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.recruit-inline-image.wide img {
  width: 100%;
}

.recruit-env-grid article {
  flex: 1 1 calc(25% - 16px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.recruit-env-grid article.wide {
  grid-column: 1 / -1;
}

.recruit-env-grid article.benefit-card {
  flex: 1 1 calc(33.333% - 16px);
}

.benefit-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  line-height: 1.8;
}

.recruit-env-grid strong {
  display: block;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.recruit-env-grid h3 {
  margin: 14px 0 8px;
  color: var(--green-dark);
}

.recruit-env-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.recruit-job-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.recruit-job-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}

.recruit-job-table div:last-child {
  border-bottom: 0;
}

.recruit-job-table dt,
.recruit-job-table dd {
  margin: 0;
  padding: 18px 20px;
}

.recruit-job-table dt {
  background: #f3faf6;
  color: var(--green-dark);
  font-weight: 800;
}

.recruit-job-table dd {
  color: var(--muted);
  line-height: 1.75;
}

.recruit-entry {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.recruit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-flow li {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.recruit-flow span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.recruit-flow strong,
.recruit-flow small {
  display: block;
}

.recruit-flow strong {
  margin-top: 14px;
  color: var(--green-dark);
}

.recruit-flow small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.65;
}

.recruit-entry-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.job-list-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.job-list-cta h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: clamp(26px, 3vw, 36px);
}

.job-list-cta p,
.job-result-count {
  margin: 0;
  color: var(--muted);
}

.job-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.job-filter-bar button,
.filter-submit {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.job-filter-bar button.light {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-dark);
}

.job-result-count {
  margin-bottom: 18px;
  font-weight: 700;
}

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

.job-card,
.job-detail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.job-card .button.light {
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.job-card .button.light:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 116, 95, .2);
  transform: translateY(-2px);
  opacity: 1;
}

.job-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 116, 95, .1);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.job-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.job-card .job-urgent-badge,
.job-detail-title .job-urgent-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  margin: 0;
  padding: 6px 11px;
  border-radius: 4px;
  background: #d9232e;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 7px 16px rgba(181, 23, 34, .2);
}

.job-card h3,
.job-detail-card h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
}

.job-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.job-card dl,
.job-detail-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.job-card dl div,
.job-detail-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
}

.job-card dt,
.job-detail-card dt {
  color: var(--green-dark);
  font-weight: 800;
}

.job-card dd,
.job-detail-card dd {
  margin: 0;
  color: var(--muted);
}

.job-detail-stack {
  display: grid;
  gap: 22px;
}

.job-detail-card {
  display: grid;
  grid-template-columns: minmax(260px, 30%) 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
}

.job-detail-photo {
  min-height: 100%;
}

.job-detail-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.job-detail-copy {
  min-width: 0;
}

.job-detail-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.job-detail-title {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.job-detail-title h2 {
  margin: 0;
}

.job-detail-lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.job-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.job-detail-tags span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 116, 95, .08);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.job-phone-box {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 116, 95, .18);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 116, 95, .08), rgba(255, 255, 255, .95));
}

.job-phone-box span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.job-phone-box a {
  color: var(--green-dark);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.job-detail-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.job-detail-table div {
  gap: 0 !important;
  border-bottom: 1px solid var(--line);
}

.job-detail-table div:last-child {
  border-bottom: 0;
}

.job-detail-table dt,
.job-detail-table dd {
  padding: 13px 15px;
}

.job-detail-table dt {
  background: #f3faf6;
}

.job-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.job-detail-actions .button.light:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 116, 95, .2);
  transform: translateY(-2px);
  opacity: 1;
}

.filter-modal[hidden] {
  display: none;
}

.filter-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .42);
}

.filter-modal-panel {
  position: relative;
  width: min(1020px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 32px;
  border-radius: 8px;
  background: #fff;
}

.filter-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.filter-modal h2 {
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.filter-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 28px;
  margin-bottom: 28px;
}

.filter-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
}

.filter-options input {
  width: 18px;
  height: 18px;
}

.notice-separator {
  width: 100%;
  margin: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.pickup-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(38, 48, 45, .1);
  max-width: 980px;
  margin: 0 auto;
}

.pickup-feature img,
.pdf-thumb-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition: filter .18s ease, transform .18s ease;
}

.gift-link-button {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.pickup-actions {
  display: flex;
  justify-content: flex-start;
  max-width: 980px;
  margin: 18px auto 0;
}

.notice-period {
  max-width: 980px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

@media (min-width: 901px) {
  .pickup-head {
    align-items: start;
    justify-content: flex-start;
    gap: 72px;
  }

  .pickup-head p {
    max-width: 620px;
    margin-top: 1.7em;
  }

  .store-section-title {
    white-space: nowrap;
  }
}

.line-section {
  background: #07b53b;
  color: #fff;
}

.line-cta {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: center;
}

.line-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.line-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, .92);
}

.line-section .eyebrow {
  color: #eaff72;
}

.line-button {
  background: #fff;
  color: #07862e;
}

.line-button:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  transform: translateY(-2px);
  opacity: 1;
}

.line-add-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 6px;
  line-height: 1;
  transition: transform .18s ease, filter .18s ease;
}

.line-add-button:hover {
  filter: brightness(1.04);
  opacity: 1;
  transform: translateY(-2px);
}

.line-add-button img {
  display: block;
  width: auto;
  height: 36px;
}

.line-visual {
  display: flex;
  justify-content: center;
}

.line-phone {
  width: min(100%, 480px);
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  gap: 20px;
  align-items: center;
  border: 10px solid #202824;
  border-radius: 26px;
  padding: 22px;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .2);
}

.line-phone span {
  display: inline-flex;
  border-radius: 999px;
  padding: 3px 10px;
  background: #07b53b;
  color: #fff;
  font-weight: 900;
}

.line-phone strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.15;
  white-space: nowrap;
}

.line-phone small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.line-qr {
  width: 142px;
  height: 142px;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(38, 48, 45, .12);
}

.line-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.notice-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(0, 116, 95, .18);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(38, 48, 45, .08);
}

.notice-card h2 {
  margin: 0;
  color: var(--green-dark);
}

.notice-body p {
  margin: 0;
  font-weight: 400;
  line-height: 1.8;
}

.attention-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  vertical-align: middle;
}

.tokubai-frame-wrap {
  position: relative;
}

.tokubai-frame-wrap iframe {
  display: block;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.tokubai-frame-wrap::after {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 3;
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(0, 81, 66, .94);
  color: #fff;
  box-shadow: 0 12px 28px rgba(38, 48, 45, .22);
  content: attr(data-tooltip);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: .2s ease;
}

.tokubai-frame-wrap:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.leaflet-schedule[hidden],
.campaign-pdf-card[hidden] {
  display: none !important;
}

.pdf-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.pdf-thumb-link {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(38, 48, 45, .12);
}

.pdf-thumb-link iframe {
  display: block;
  width: calc(100% + 28px);
  height: calc(clamp(360px, 38vw, 560px) + 28px);
  margin: -14px;
  border: 0;
  pointer-events: none;
  background: #fff;
  transition: filter .18s ease, transform .18s ease;
}

.pdf-thumb-link img {
  min-height: 260px;
}

.pdf-side-label {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  border-radius: 4px;
  padding: 5px 14px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
}

.pdf-hover-text {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(0, 81, 66, .94);
  color: #fff;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, -44%);
  transition: .18s ease;
}

.pdf-thumb-link::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(32, 32, 32, .34);
  content: "";
  opacity: 0;
  transition: .18s ease;
}

.pdf-thumb-link:hover iframe,
.pdf-thumb-link:hover img {
  filter: grayscale(1);
  transform: scale(1.01);
}

.pdf-thumb-link:hover::after,
.pdf-thumb-link:hover .pdf-hover-text {
  opacity: 1;
}

.leaflet-schedule .notice-period {
  margin-top: 14px;
  text-align: right;
}

.campaign-pdf-card {
  order: -1;
}

.campaign-pdf-thumb iframe {
  height: 330px;
}

.campaign-pdf-thumb img {
  height: 330px;
}

.pickup-pdf-thumb {
  aspect-ratio: auto;
  border: 0;
  box-shadow: none;
}

.pickup-pdf-thumb iframe {
  height: min(500px, 54vw);
  min-height: 280px;
}

.pickup-pdf-thumb img {
  height: auto;
  min-height: 0;
  max-height: none;
}

.pdf-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  font-weight: 800;
}

.campaign-period {
  display: inline-flex;
  margin: 0 0 10px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(0, 116, 95, .1);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.desktop-break {
  display: inline;
}

.support-card-layout,
.dpoint-layout,
.business-card,
.initiative-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.support-card-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-card-images img,
.dpoint-layout img,
.business-card > img,
.initiative-card > img,
.initiative-picture > img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.initiative-picture {
  display: block;
  width: 100%;
}

.initiative-picture > img {
  display: block;
}

.support-card-images img {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: #fff;
}

.support-card-copy strong {
  color: var(--orange);
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.support-steps div {
  border: 1px solid rgba(0, 116, 95, .14);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.support-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.support-steps strong,
.support-steps small {
  display: block;
}

.support-steps strong {
  color: var(--green-dark);
  font-size: 15px;
}

.support-steps small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.target-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.target-products strong {
  width: 100%;
}

.target-products span {
  display: inline-flex;
  border: 1px solid rgba(0, 116, 95, .16);
  border-radius: 999px;
  padding: 5px 10px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.support-store-button {
  background: var(--orange);
  color: #fff;
}

.support-store-button:hover {
  background: var(--green);
  color: #fff;
}

.dpoint-section {
  background: #fff7f7;
}

.dpoint-layout {
  grid-template-columns: 280px 1fr;
}

.dpoint-layout img {
  border: 1px solid rgba(215, 25, 32, .16);
  background: #fff;
  padding: 18px;
}

.business-stack,
.initiative-list {
  display: grid;
  gap: 22px;
}

.business-card,
.initiative-card {
  padding: 24px;
}

.business-card.reverse > img {
  order: 2;
}

.business-card.reverse {
  align-items: stretch;
}

.business-card.reverse > div,
.health-flow-card > div,
.recruit-person-copy,
.job-detail-copy {
  align-self: start;
}

.business-card.reverse > img,
.health-flow-card > img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.business-card > img {
  aspect-ratio: 3 / 2;
}

.ec-business-card {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
}

.business-card > img.cosmart-business-logo {
  width: 52%;
  max-width: 340px;
  aspect-ratio: auto;
  object-fit: contain;
  justify-self: center;
  padding: 20px;
  background: #fff;
}

.initiative-card {
  align-items: start;
}

.initiative-card > img,
.initiative-picture > img {
  aspect-ratio: 16 / 10;
}

.health-flow-card {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.compact-image-card {
  grid-template-columns: 320px 1fr;
  align-items: center;
}

.compact-image-card > img {
  aspect-ratio: 4 / 3;
}

.business-card h3,
.initiative-card h3 {
  margin-top: 0;
  color: var(--green-dark);
}

.business-card p,
.initiative-card p {
  line-height: 1.9;
}

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

.mall-links a {
  display: block;
  transition: .2s ease;
}

.mall-links a:hover {
  transform: translateY(-2px);
  opacity: .86;
}

.mall-links img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(38, 48, 45, .12);
}

.snack-reason {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.snack-reason img {
  width: 100%;
  border-radius: 8px;
}

.snack-reason h4 {
  margin: 0 0 10px;
  color: var(--orange);
}

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

.numbers-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f5faf7 0%, #fff 44%, #f8fbf9 100%);
}

.numbers-section .section-head {
  position: relative;
  padding-bottom: 24px;
}

.numbers-section .section-head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  content: "";
}

.number-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 0;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(25, 67, 55, .09);
}

.number-grid article::before {
  position: absolute;
  right: 16px;
  top: 14px;
  color: rgba(0, 116, 95, .1);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
  content: attr(data-symbol);
}

.number-grid article.wide {
  grid-column: span 2;
}

.number-grid article.metric-feature {
  grid-column: span 2;
  min-height: 260px;
  background: var(--green-dark);
}

.number-grid article.metric-history {
  background:
    linear-gradient(135deg, rgba(0, 81, 66, .98), rgba(0, 116, 95, .9));
}

.number-grid article.metric-people {
  background:
    linear-gradient(135deg, #bd272f, #e24c3f);
}

.number-grid article.metric-feature::before {
  color: rgba(255, 255, 255, .13);
  font-size: clamp(42px, 6vw, 82px);
}

.number-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.number-grid strong {
  display: block;
  position: relative;
  margin-top: 20px;
  color: var(--green-dark);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
}

.number-grid strong small {
  margin-left: 4px;
  font-size: .42em;
}

.number-grid strong em {
  color: var(--orange);
  font-style: normal;
}

.number-grid article > p {
  position: relative;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.number-grid .metric-feature span,
.number-grid .metric-feature strong,
.number-grid .metric-feature p {
  color: #fff;
}

.bar,
.split-bar {
  overflow: hidden;
  height: 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: #e7f2ee;
}

.bar::before {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--orange));
  content: "";
}

.split-bar {
  display: flex;
  height: 18px;
}

.split-bar i,
.split-bar b {
  display: block;
  height: 100%;
}

.split-bar i {
  background: var(--green);
}

.split-bar b {
  background: var(--orange);
}

.age-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  height: 140px;
  margin-top: 18px;
}

.age-bars i {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 26px;
  border-radius: 8px 8px 0 0;
  padding: 6px 4px;
  background: linear-gradient(180deg, var(--orange), var(--green));
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.age-bars i b {
  display: block;
  font-size: 16px;
}

.ratio-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.ratio-labels span:last-child {
  color: var(--orange);
}

.metric-ratio {
  grid-column: span 2;
}

.metric-overtime {
  grid-column: span 2;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--green-dark);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  line-height: 1.8;
}

.ec-floating-link {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 9000;
  display: grid;
  grid-template-columns: 82px auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(0, 116, 95, .16);
  border-radius: 999px;
  padding: 7px 12px 7px 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 26px rgba(38, 48, 45, .15);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.ec-floating-link img {
  width: 82px;
  height: 36px;
  object-fit: contain;
}

.ec-floating-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.ec-floating-link.recruit-floating-link {
  display: inline-flex;
  justify-content: center;
  min-width: 124px;
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, .86);
  background: linear-gradient(135deg, #f28c28, #e45f1e);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 16px 34px rgba(228, 95, 30, .28);
}

.ec-floating-link.recruit-floating-link span {
  display: block;
  width: 100%;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

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

.campaign-info-card img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fff;
}

.campaign-info-card ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  line-height: 1.75;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  color: var(--green-dark);
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 56px) 26px;
  background: #17231f;
  color: #eef7f3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.site-footer p,
.site-footer li {
  margin: 0 0 8px;
  color: #c8d8d2;
  font-size: 14px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.note {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.page-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9010;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: .2s ease;
}

.page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .brand span {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(82vw, 340px);
    padding: 92px 18px 24px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: -18px 0 44px rgba(0, 0, 0, .18);
    transform: translateX(105%);
    transition: transform .24s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
  }

  .site-nav::before {
    position: absolute;
    top: 24px;
    left: 18px;
    color: var(--green-dark);
    content: "MENU";
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
  }

  body:has(.site-nav.is-open)::before {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 32, 25, .35);
    content: "";
  }

  .menu-button {
    position: relative;
    z-index: 90;
  }

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

  .grid.three,
  .grid.four,
  .grid.two,
  .pdf-thumb-grid,
  .product-list,
  .feature,
  .map-feature,
  .line-cta,
  .recruit-lead,
  .recruit-company-brief .section-inner,
  .recruit-message-band,
  .recruit-people-layout,
  .recruit-person-card,
  .recruit-entry,
  .job-list-cta,
  .store-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .recruit-anchor {
    position: static;
  }

  .recruit-work-grid,
  .job-card-grid,
  .filter-options,
  .recruit-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-env-grid article,
  .recruit-env-grid article.benefit-card {
    flex-basis: calc(50% - 16px);
  }

  .job-detail-card {
    grid-template-columns: 1fr;
  }

  .business-card.reverse > img,
  .health-flow-card > img {
    height: auto;
    min-height: 0;
  }

  .job-detail-photo img {
    min-height: 220px;
    max-height: 340px;
  }

  .pdf-thumb-link iframe,
  .campaign-pdf-thumb iframe {
    height: 420px;
  }

  .recruit-entry-actions {
    grid-column: auto;
  }

  .recruit-person-photo {
    position: static;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .leaflet-head-copy {
    justify-items: stretch;
  }

  .leaflet-line-cta {
    justify-content: space-between;
    width: 100%;
    margin-top: 12px;
    padding-left: 14px;
    border-radius: 8px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom small {
    display: block;
    margin-top: 16px;
  }

}

@media (max-width: 520px) {
  .brand img {
    width: 118px;
  }

  .hero-inner {
    padding: 64px 0 54px;
  }

  .hero-title-line {
    white-space: normal;
  }

  .quick-guide-grid {
    grid-template-columns: 1fr;
  }

  .recruit-work-grid,
  .job-card-grid,
  .filter-options,
  .recruit-flow {
    grid-template-columns: 1fr;
  }

  .recruit-env-grid article,
  .recruit-env-grid article.benefit-card {
    flex-basis: 100%;
  }

  .job-detail-actions {
    flex-direction: column;
  }

  .page-title.recruit-title::before {
    width: 260px;
    opacity: .22;
  }

  .page-title.recruit-title::after {
    opacity: .18;
  }

  .recruit-message-band,
  .recruit-voice-list article,
  .recruit-env-grid article,
  .recruit-flow li {
    padding: 18px;
  }

  .pdf-thumb-link iframe,
  .campaign-pdf-thumb iframe {
    height: 360px;
  }

  .recruit-people-layout > img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .recruit-job-table div {
    grid-template-columns: 1fr;
  }

  .job-card dl div,
  .job-detail-card dl div {
    grid-template-columns: 1fr;
  }

  .recruit-job-table dt,
  .recruit-job-table dd {
    padding: 14px 16px;
  }

  .anchor-nav .section-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .button {
    width: 100%;
  }

  .leaflet-card-actions {
    align-items: stretch;
  }

  .notice-card-actions {
    align-items: stretch;
  }

  .leaflet-thumb {
    flex: 0 0 124px;
  }

  .notice-illust {
    flex: 0 0 124px;
  }

  .line-phone {
    width: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
    border-width: 7px;
    border-radius: 18px;
    padding: 14px;
  }

  .line-qr {
    width: 92px;
    height: 92px;
    padding: 5px;
    margin: 0;
  }

  .line-phone strong {
    margin-top: 10px;
    font-size: 19px;
  }

  .line-phone small {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (min-width: 901px) {
  #nissen-doryu {
    grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
  }

  #nissen-doryu > .initiative-picture {
    height: 100%;
  }

  #nissen-doryu > .initiative-picture > img {
    height: 100%;
    min-height: 620px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 44% center;
  }

  .recruit-person-card {
    align-items: stretch;
  }

  .recruit-person-photo {
    position: static;
    height: 100%;
  }

  .recruit-person-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #eef6f2;
  }

  .pdf-thumb-grid {
    gap: 22px;
  }

  .pdf-thumb-link {
    background: #fffdf5;
    box-shadow: 0 10px 26px rgba(38, 48, 45, .1);
  }

  .pdf-thumb-link iframe {
    height: clamp(260px, 28vw, 420px);
    background: #fffdf5;
  }
}

@media (max-width: 900px) {
  .hero {
    background-position: center, center, var(--hero-mobile-position, center center);
  }

  .site-header {
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 8px;
  }

  .brand {
    min-width: 0;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    z-index: auto;
    display: flex;
    flex: 0 0 calc(100% + 18px);
    width: calc(100% + 18px);
    margin-right: -18px;
    margin-left: 0;
    padding: 0 18px 4px 0;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #fff 0, #fff 82%, rgba(255, 255, 255, 0));
    box-shadow: none;
    transform: none;
    transition: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav::before,
  body:has(.site-nav.is-open)::before {
    content: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(0, 116, 95, .14);
    border-radius: 999px;
    padding: 9px 14px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(38, 48, 45, .08);
    font-size: 13px;
    white-space: nowrap;
  }

  .site-nav a:last-child {
    margin-right: 36px;
  }
}

#leaflet-info .pdf-thumb-grid {
  max-width: 1160px;
  margin: 0 auto;
}

#leaflet-info .leaflet-schedule {
  position: relative;
}

#leaflet-info .pdf-thumb-link {
  aspect-ratio: 1.48 / 1;
  background: #fffaf0;
  border-color: rgba(223, 143, 35, .18);
}

#leaflet-info .pdf-thumb-link iframe {
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  margin: -14px;
  background: #fffaf0;
  transform: scale(1);
  transform-origin: center center;
}

#leaflet-info .pdf-thumb-link:hover iframe {
  filter: grayscale(1);
  transform: scale(1.02);
}

#leaflet-info .notice-period {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 5;
  margin: 0;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, .92);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(38, 48, 45, .12);
}

.leaflet-page {
  display: grid;
  gap: 26px;
}

#leaflet-info .pdf-thumb-link iframe,
.campaign-pdf-thumb iframe {
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  margin: -14px;
}

.campaign-pdf-thumb {
  aspect-ratio: 1.42 / 1;
}

@media (max-width: 900px) {
  #leaflet-info .pdf-thumb-link {
    aspect-ratio: .86 / 1;
  }

  .campaign-pdf-thumb {
    aspect-ratio: .82 / 1;
  }

  .pickup-pdf-thumb {
    aspect-ratio: auto;
  }

  .pickup-pdf-thumb img {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
  }

  #leaflet-info .pdf-thumb-link iframe,
  .campaign-pdf-thumb iframe {
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    margin: -8px;
  }

  #leaflet-info .pdf-thumb-link:hover iframe,
  .campaign-pdf-thumb:hover iframe,
  .campaign-pdf-thumb:hover img,
  .pdf-thumb-link:hover iframe,
  .pdf-thumb-link:hover img {
    filter: none;
    transform: scale(1);
  }

  .pdf-thumb-link::after,
  .pdf-thumb-link:hover::after {
    opacity: 0;
  }

  .pdf-thumb-link .pdf-hover-text {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .pdf-thumb-link:hover .pdf-hover-text {
    opacity: 0;
  }
}

.leaflet-viewer-section {
  background: linear-gradient(180deg, #f1f7f4 0, #fff 280px);
}

.leaflet-page-nav {
  position: sticky;
  top: 92px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(0, 116, 95, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 26px rgba(24, 65, 53, .1);
  backdrop-filter: blur(10px);
}

.leaflet-page-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.leaflet-page-nav a:hover {
  background: var(--green);
  color: #fff;
}

.leaflet-panel {
  position: relative;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(0, 116, 95, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(28, 66, 55, .1);
}

.leaflet-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 8px 0 0 8px;
  background: var(--green);
  content: "";
}

.leaflet-panel-featured::before {
  background: var(--orange);
}

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

.leaflet-head h2 {
  margin: 2px 0 0;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.leaflet-open-button {
  width: auto;
  flex: 0 0 auto;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.leaflet-pdf {
  width: 100%;
  height: min(78vh, 760px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #edf4f0;
  box-shadow: inset 0 0 0 8px #f7faf8;
}

.leaflet-arrow {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.leaflet-arrow span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.leaflet-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

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

@media (max-width: 760px) {
  .area-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-card {
    min-height: 0;
  }

  .store-card-copy {
    width: 100%;
  }

  .store-card .store-meta span:not(:first-child),
  .store-card .store-actions {
    max-width: none;
  }

  .store-card-photo {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .page-title.shops-title,
  .page-title.about-title {
    min-height: 300px;
  }

  .page-title.privacy-title::before {
    right: 26px;
    width: 92px;
    opacity: .42;
  }

  .page-title.privacy-title::after {
    right: 8px;
    bottom: 22px;
    width: 96px;
    height: 68px;
    opacity: .28;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .message-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .notice-card,
  .support-card-layout,
  .dpoint-layout,
  .business-card,
  .initiative-card,
  .business-card.reverse,
  .ec-business-card,
  .compact-image-card,
  .campaign-card-grid {
    grid-template-columns: 1fr;
  }

  .business-card.reverse > img {
    order: 0;
  }

  .support-card-images,
  .support-steps,
  .mall-links,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .desktop-break {
    display: none;
  }

  .business-card > img.cosmart-business-logo {
    width: min(72%, 300px);
  }

  .number-grid article.wide {
    grid-column: auto;
  }

  .number-grid article.metric-feature,
  .number-grid article.metric-ratio,
  .number-grid article.metric-overtime {
    grid-column: auto;
  }

  .number-grid article {
    min-height: 190px;
  }

  .snack-reason {
    grid-template-columns: 84px 1fr;
  }

  .ec-floating-link {
    right: 12px;
    bottom: 74px;
    grid-template-columns: 70px;
    padding: 8px;
  }

  .ec-floating-link span {
    display: none;
  }

  .ec-floating-link img {
    width: 70px;
  }

  .ec-floating-link.recruit-floating-link {
    display: inline-flex;
    justify-content: center;
    min-width: 104px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .ec-floating-link.recruit-floating-link span {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .leaflet-head,
  .leaflet-back-grid {
    display: block;
  }

  .leaflet-page-nav {
    position: static;
    width: 100%;
  }

  .leaflet-open-button {
    width: 100%;
    margin-top: 12px;
  }

  .leaflet-head .text-link {
    display: inline-block;
    margin-top: 10px;
  }

  .leaflet-back-grid .leaflet-panel + .leaflet-panel {
    margin-top: 24px;
  }

  .leaflet-pdf {
    height: 68vh;
    min-height: 520px;
  }

  .page-title.leaflet-title::before {
    right: 24px;
    width: 90px;
    opacity: .34;
  }

  .page-title.leaflet-title::after {
    display: none;
  }
}
