:root {
  --ink: #16241c;
  --muted: #617066;
  --paper: #f7f5ee;
  --paper-2: #ece7d8;
  --forest: #183d2c;
  --cedar: #2f6b46;
  --moss: #91a66f;
  --river: #4f8390;
  --gold: #b68a3d;
  --line: rgba(22, 36, 28, .16);
  --white: #fffdf7;
  --shadow: 0 18px 55px rgba(20, 33, 25, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.preview-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(22,36,28,.08) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(var(--paper), #eee8d9);
}

.preview-shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.preview-hero { padding: 76px 0 42px; }
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.preview-hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: 0;
}
.lead { max-width: 760px; margin: 22px 0 0; color: #3d4d42; font-size: clamp(16px, 2vw, 19px); }
.notice {
  margin-top: 28px;
  padding: 14px 16px;
  border-left: 5px solid var(--gold);
  background: rgba(255, 253, 247, .72);
  max-width: 820px;
  font-size: 14px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 70px;
}
.preview-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.preview-card .visual {
  height: 138px;
  background: center / cover no-repeat;
}
.preview-card .body { padding: 22px; }
.preview-card h2 { margin: 0 0 10px; font-size: 22px; line-height: 1.35; }
.preview-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.button-row { display: flex; gap: 10px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.button.secondary { background: transparent; color: var(--forest); border: 1px solid var(--line); }

.site-body { background: #fbfaf6; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 4vw, 54px);
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { font-weight: 900; letter-spacing: .04em; }
.site-nav nav { display: flex; gap: clamp(12px, 2.2vw, 28px); align-items: center; font-size: 14px; color: #34473a; }
.nav-cta { padding: 8px 13px; border-radius: 999px; background: var(--forest); color: #fff; font-weight: 800; }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(80px, 10vw, 140px) clamp(22px, 6vw, 86px) clamp(54px, 7vw, 90px);
  color: white;
  background:
    linear-gradient(90deg, rgba(9, 25, 17, .84), rgba(9, 25, 17, .24)),
    var(--hero-image) center / cover no-repeat;
}
.hero-content { width: min(880px, 100%); }
.hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(43px, 8vw, 104px);
  line-height: .98;
  letter-spacing: 0;
}
.hero p { width: min(620px, 100%); margin: 24px 0 0; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.9); }
.hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero .button { background: #f5f0df; color: var(--forest); }
.hero .button.secondary { color: white; border-color: rgba(255,255,255,.45); background: transparent; }

.section { padding: clamp(58px, 8vw, 96px) clamp(22px, 6vw, 86px); }
.section.alt { background: #edf0e5; }
.section.dark { background: var(--forest); color: white; }
.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 30px; }
.section-head h2 {
  width: min(660px, 100%);
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.12;
}
.section-head p { width: min(440px, 100%); margin: 0; color: var(--muted); }
.dark .section-head p, .dark .kicker { color: rgba(255,255,255,.72); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.service-card h3 { margin: 0 0 14px; font-size: 21px; line-height: 1.35; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card strong { display: block; margin-bottom: 18px; color: var(--gold); font-size: 13px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}
.split-copy h2 {
  margin: 0 0 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(31px, 5vw, 62px);
  line-height: 1.1;
}
.split-copy p { color: var(--muted); }
.feature-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--img) center / cover no-repeat;
  box-shadow: var(--shadow);
}
.timeline { display: grid; gap: 12px; margin-top: 22px; }
.step { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.step b { color: var(--gold); font-family: Georgia, serif; font-size: 22px; }
.step span { display: block; border-bottom: 1px solid var(--line); padding-bottom: 13px; }

.info-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.05); }
.info-table th, .info-table td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.18); text-align: left; vertical-align: top; }
.info-table th { width: 170px; color: rgba(255,255,255,.68); font-weight: 700; }

.footer { padding: 38px clamp(22px, 6vw, 86px); background: #111d16; color: rgba(255,255,255,.74); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.news-list { display: grid; gap: 0; max-width: 880px; }
.news-item {
  display: grid;
  grid-template-columns: 120px 130px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.news-item time { color: var(--muted); font-family: Georgia, serif; font-size: 15px; }
.news-tag {
  justify-self: start;
  align-self: center;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}
.news-tag.alt { background: #dfe7d6; }
.news-tag.river { background: #dbe7ea; color: var(--river); }
.news-item p { margin: 0; font-size: 15px; }
.editable-note {
  margin-top: 30px;
  padding: 16px 18px;
  border-left: 5px solid var(--cedar);
  background: var(--white);
  max-width: 880px;
  font-size: 14px;
  color: var(--muted);
}

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.stat-card { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.stat-card b { display: block; font-family: "Yu Mincho", serif; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; color: var(--forest); }
.stat-card span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }
.dark .stat-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.dark .stat-card b { color: #f1e8cf; }
.dark .stat-card span { color: rgba(255,255,255,.72); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid .tile { aspect-ratio: 4 / 3; border-radius: 8px; background: var(--img) center / cover no-repeat; box-shadow: var(--shadow); }

.contact-info { margin: 18px 0 6px; display: grid; gap: 0; }
.contact-info > div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-info dt { margin: 0; color: var(--muted); font-weight: 700; font-size: 14px; }
.contact-info dd { margin: 0; font-size: 15px; }

.faq-grid { display: grid; gap: 14px; max-width: 880px; }
.faq-item { padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.faq-item h3 { margin: 0 0 8px; font-size: 16px; }
.faq-item p { margin: 0; color: var(--muted); font-size: 14px; }

.gallery-body { background: #f4f2e9; }
.gallery-header { padding: 54px clamp(18px, 4vw, 52px) 28px; }
.gallery-header h1 { margin: 0; font-family: "Yu Mincho", serif; font-size: clamp(34px, 6vw, 72px); line-height: 1.05; }
.gallery-header p { max-width: 820px; color: var(--muted); }
.design-section { padding: 18px clamp(18px, 4vw, 52px) 56px; }
.design-section h2 { margin: 0 0 18px; font-size: 20px; }
.design-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.design-card {
  position: relative;
  min-height: 330px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(22,36,28,.14);
  background: #fff;
}
.design-card .shot {
  min-height: 270px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(var(--photo-overlay, rgba(255,255,255,.54)), var(--photo-overlay, rgba(255,255,255,.54))),
    var(--photo) center / cover no-repeat,
    var(--bg, #f6f2e7);
  color: var(--fg, #16241c);
  position: relative;
  isolation: isolate;
}
.design-card .shot.image {
  background:
    linear-gradient(var(--overlay, rgba(0,0,0,.18)), var(--overlay, rgba(0,0,0,.18))),
    var(--img) center / cover no-repeat;
}
.design-card .shot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 4px;
  z-index: -1;
  box-shadow: inset 0 0 0 1px rgba(22,36,28,.1);
}
.design-card .shot::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: .45;
  z-index: -1;
}
.mini-brand { font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.mini-title {
  margin: 18px 0 0;
  font-size: clamp(27px, 2.25vw, 31px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  word-break: keep-all;
  line-break: strict;
  text-wrap: balance;
}
.mini-title .line {
  display: block;
  white-space: nowrap;
}
.mini-brand,
.mini-title {
  width: fit-content;
  max-width: 92%;
  padding: 6px 9px;
  border-radius: 3px;
  background: var(--label-bg, rgba(255,253,247,.76));
  backdrop-filter: blur(5px);
}
.serif .mini-title, .serif .mini-brand { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; }
.mincho .mini-title { writing-mode: vertical-rl; min-height: 150px; }
.mincho .mini-title .line { display: inline; white-space: normal; }
.design-card .meta { padding: 14px 16px 16px; background: rgba(255,255,255,.9); }
.design-card h3 { margin: 0 0 4px; font-size: 16px; }
.design-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.t01 { --bg:#fbfaf6; --fg:#173225; --photo:url('forest-ridge.png'); --photo-overlay:rgba(255,253,247,.62); }
.t02 { --bg:#e8ede2; --fg:#1f3f2d; --photo:url('river-village.png'); --photo-overlay:rgba(232,237,226,.60); }
.t03 { --bg:#193929; --fg:#f6efd8; --photo:url('forest-ridge.png'); --photo-overlay:rgba(20,48,33,.54); --label-bg:rgba(24,61,44,.72); }
.t04 { --bg:#f5efe2; --fg:#3d3021; --photo:url('timber-texture.png'); --photo-overlay:rgba(245,239,226,.58); }
.t05 { --bg:#202827; --fg:#f6e9c9; --photo:url('timber-texture.png'); --photo-overlay:rgba(28,32,29,.55); --label-bg:rgba(32,40,39,.72); }
.t06 { --bg:#ece7d8; --fg:#15281e; --photo:url('forest-ridge.png'); --photo-overlay:rgba(236,231,216,.54); }
.t07 { --bg:#fffdf7; --fg:#242d25; --photo:url('forest-ridge.png'); --photo-overlay:rgba(255,253,247,.46); }
.t08 { --bg:#10251c; --fg:#d8c087; --photo:url('forest-ridge.png'); --photo-overlay:rgba(13,34,24,.62); --label-bg:rgba(16,37,28,.74); }
.t09 { --bg:#f2f1e8; --fg:#183d2c; --photo:url('river-village.png'); --photo-overlay:rgba(242,241,232,.62); }
.t10 { --bg:#dfebe9; --fg:#16313a; --photo:url('river-village.png'); --photo-overlay:rgba(224,238,234,.45); }
.t11 { --bg:#f8f3e8; --fg:#4c2e1d; --photo:url('river-village.png'); --photo-overlay:rgba(248,243,232,.64); }
.t12 { --bg:#e7ede0; --fg:#263d2c; --photo:url('river-village.png'); --photo-overlay:rgba(231,237,224,.58); }
.t13 { --bg:#132820; --fg:#f9f4e8; --photo:url('timber-texture.png'); --photo-overlay:rgba(15,32,24,.50); --label-bg:rgba(19,40,32,.72); }
.t14 { --bg:#f4f6ef; --fg:#2d513a; --photo:url('river-village.png'); --photo-overlay:rgba(244,246,239,.66); }
.t15 { --bg:#e6ddd0; --fg:#241d18; --photo:url('timber-texture.png'); --photo-overlay:rgba(230,221,208,.58); }
.t16 { --bg:#203b4a; --fg:#f6f1df; --photo:url('drone-grid.png'); --photo-overlay:rgba(20,45,54,.44); --label-bg:rgba(32,59,74,.72); }
.t17 { --bg:#f6f6f2; --fg:#14241b; --photo:url('drone-grid.png'); --photo-overlay:rgba(246,246,242,.62); }
.t18 { --bg:#243f2e; --fg:#f1e5c5; --photo:url('drone-grid.png'); --photo-overlay:rgba(36,63,46,.50); --label-bg:rgba(36,63,46,.72); }
.t19 { --bg:#f0ebe0; --fg:#294d42; --photo:url('drone-grid.png'); --photo-overlay:rgba(240,235,224,.60); }
.t20 { --bg:#101b22; --fg:#e5f1ed; --photo:url('drone-grid.png'); --photo-overlay:rgba(7,18,24,.55); --label-bg:rgba(16,27,34,.74); }
.t21 { --bg:#f9f8f1; --fg:#234536; --photo:url('drone-grid.png'); --photo-overlay:rgba(249,248,241,.63); }
.t22 { --bg:#263227; --fg:#e9dfc2; --photo:url('drone-grid.png'); --photo-overlay:rgba(38,50,39,.55); --label-bg:rgba(38,50,39,.72); }
.t23 { --bg:#eef2ec; --fg:#17392f; --photo:url('forest-ridge.png'); --photo-overlay:rgba(238,242,236,.60); }
.t24 { --bg:#f1e7d5; --fg:#3b2d23; --photo:url('timber-texture.png'); --photo-overlay:rgba(245,231,213,.50); }
.t25 { --bg:#173225; --fg:#f4f0e2; --photo:url('drone-grid.png'); --photo-overlay:rgba(23,50,37,.50); --label-bg:rgba(23,50,37,.73); }
.t26 { --bg:#f7f5ee; --fg:#334034; --photo:url('forest-ridge.png'); --photo-overlay:rgba(247,245,238,.62); }
.t27 { --bg:#dfe8d8; --fg:#1f3529; --photo:url('forest-ridge.png'); --photo-overlay:rgba(229,240,218,.42); }
.t28 { --bg:#1d2b39; --fg:#f3f0df; --photo:url('drone-grid.png'); --photo-overlay:rgba(29,43,57,.54); --label-bg:rgba(29,43,57,.72); }
.t29 { --bg:#f4eadc; --fg:#39291f; --photo:url('river-village.png'); --photo-overlay:rgba(244,234,220,.56); }
.t30 { --bg:#15231b; --fg:#edf4df; --photo:url('river-village.png'); --photo-overlay:rgba(12,29,20,.48); --label-bg:rgba(21,35,27,.74); }

.l01 .shot { justify-content: space-between; align-items: flex-start; }
.l01 .mini-title { font-size: 34px; border-left: 5px solid var(--gold); }

.l02 .shot { justify-content: center; align-items: center; text-align: center; }
.l02 .mini-brand { margin-bottom: 12px; }
.l02 .mini-title { margin-top: 0; font-size: 35px; }

.l03 .shot { justify-content: flex-end; align-items: flex-end; text-align: right; }
.l03 .mini-brand { margin-bottom: auto; }
.l03 .mini-title { font-size: 30px; }

.l04 .shot {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 12px;
}
.l04 .mini-brand { grid-column: 1 / -1; align-self: start; }
.l04 .mini-title { grid-column: 1; margin-top: 0; font-size: 28px; }

.l05 .shot { justify-content: flex-end; padding: 0; }
.l05 .mini-brand {
  margin: 22px 22px auto;
  background: rgba(255,253,247,.86);
}
.l05 .mini-title {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 18px 22px 22px;
  border-radius: 0;
  background: rgba(19,34,26,.78);
  color: #fff7de;
}

.l06 .shot { align-items: flex-end; justify-content: space-between; }
.l06 .mini-title {
  writing-mode: vertical-rl;
  min-height: 166px;
  margin: 0;
  font-size: 28px;
}

.l07 .shot { justify-content: flex-start; align-items: flex-start; }
.l07 .mini-title {
  order: -1;
  margin: 0 0 14px;
  width: min(100%, 320px);
  max-width: 100%;
  font-size: 37px;
}
.l07 .mini-brand { margin-top: auto; }

.l08 .shot { justify-content: center; align-items: flex-start; }
.l08 .mini-brand {
  align-self: flex-end;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  line-height: 1.25;
}
.l08 .mini-title { margin-top: 18px; font-size: 32px; }

.l09 .shot { padding-top: 16px; }
.l09 .mini-brand {
  width: 100%;
  max-width: 100%;
  padding: 9px 12px;
  border-top: 3px double currentColor;
  border-bottom: 1px solid currentColor;
  text-align: center;
  background: rgba(255,253,247,.82);
}
.l09 .mini-title { margin-top: auto; font-size: 31px; }

.l10 .shot { justify-content: center; align-items: center; text-align: center; }
.l10 .mini-title {
  max-width: 86%;
  margin-top: 10px;
  padding: 14px 18px;
  font-size: 30px;
  border: 1px solid rgba(255,255,255,.58);
}

.l11 .shot { justify-content: flex-end; align-items: flex-start; }
.l11 .mini-brand { border-left: 4px solid currentColor; }
.l11 .mini-title {
  margin-top: 12px;
  padding-left: 18px;
  border-left: 8px solid var(--gold);
}

.l12 .shot { justify-content: flex-start; align-items: stretch; }
.l12 .mini-brand {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.l12 .mini-title {
  margin-top: auto;
  align-self: flex-start;
}
.l12 .shot::after {
  content: "森林データ　自然　ギャラリー";
  left: 22px;
  right: 22px;
  bottom: auto;
  top: 66px;
  height: auto;
  padding: 7px 10px;
  border: 1px solid currentColor;
  font-size: 11px;
  text-align: center;
  opacity: .72;
  z-index: 0;
}

.l13 .shot { justify-content: center; align-items: center; text-align: center; }
.l13 .mini-brand,
.l13 .mini-title {
  background: rgba(255,253,247,.88);
  color: #2d2118;
}
.l13 .mini-title {
  margin-top: 12px;
  padding: 16px 20px;
  border: 2px solid rgba(58,38,22,.42);
}

.l14 .shot { justify-content: space-between; align-items: flex-start; }
.l14 .mini-title {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.86);
  font-size: 29px;
}
.l14 .shot::after {
  content: "森林整備 / 組合員支援 / ドローン相談";
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: auto;
  padding: 8px 10px;
  border: 0;
  background: rgba(24,61,44,.88);
  color: white;
  font-size: 11px;
  text-align: center;
  opacity: 1;
  z-index: 0;
}

.l15 .shot { justify-content: center; align-items: flex-start; overflow: hidden; }
.l15 .mini-brand { align-self: flex-end; }
.l15 .mini-title {
  transform: rotate(-3deg);
  margin-top: 28px;
  font-size: 34px;
  box-shadow: 10px 10px 0 rgba(22,36,28,.14);
}

.l16 .shot {
  justify-content: flex-start;
  align-items: flex-start;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(var(--photo-overlay, rgba(20,45,54,.44)), var(--photo-overlay, rgba(20,45,54,.44))),
    var(--photo) center / cover no-repeat;
}
.l16 .mini-title { margin-top: auto; font-size: 29px; }
.l16 .shot::after {
  content: "ORTHO / POINT CLOUD";
  left: auto;
  right: 22px;
  bottom: 22px;
  width: auto;
  height: auto;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.56);
  font-size: 10px;
  opacity: .9;
  z-index: 0;
}

.l17 .shot { justify-content: flex-start; align-items: flex-start; }
.l17 .mini-title { margin-top: 14px; font-size: 31px; }
.l17 .shot::after {
  content: "面積 128ha　境界 42点　進捗 86%";
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: auto;
  padding: 9px 10px;
  border: 1px solid rgba(22,36,28,.28);
  background: rgba(255,253,247,.78);
  font-size: 11px;
  opacity: 1;
  z-index: 0;
}

.l18 .shot { justify-content: center; align-items: flex-end; text-align: right; }
.l18 .mini-brand {
  writing-mode: vertical-rl;
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  max-width: none;
}
.l18 .mini-title { font-size: 32px; }

.l19 .shot {
  justify-content: flex-end;
  align-items: flex-start;
  background:
    linear-gradient(90deg, rgba(255,253,247,.78) 0 48%, rgba(24,61,44,.36) 48% 100%),
    var(--photo) center / cover no-repeat;
}
.l19 .mini-title { max-width: 58%; font-size: 28px; }

.l20 .shot { justify-content: center; align-items: center; text-align: center; }
.l20 .mini-brand,
.l20 .mini-title { background: transparent; backdrop-filter: none; color: currentColor; }
.l20 .mini-title {
  margin-top: 8px;
  max-width: 94%;
  font-size: 36px;
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

.l21 .shot { justify-content: flex-start; align-items: flex-end; text-align: right; }
.l21 .mini-title { margin-top: 16px; font-size: 30px; }
.l21 .shot::after {
  content: "";
  left: 22px;
  top: 92px;
  right: auto;
  bottom: 22px;
  width: 38%;
  height: auto;
  border: 1px dashed rgba(22,36,28,.38);
  border-radius: 4px;
  opacity: .9;
}

.l22 .shot { justify-content: space-between; align-items: flex-start; }
.l22 .mini-brand {
  background: #f6e08d;
  color: #17251d;
  border: 1px solid rgba(0,0,0,.18);
}
.l22 .mini-title {
  width: 100%;
  max-width: 100%;
  font-size: 28px;
  background: rgba(38,50,39,.82);
}

.l23 .shot { justify-content: center; align-items: flex-start; }
.l23 .mini-brand { margin-bottom: 18px; }
.l23 .mini-title {
  max-width: 72%;
  font-size: 38px;
  line-height: 1.02;
}

.l24 .shot { justify-content: flex-end; align-items: stretch; padding: 18px; }
.l24 .mini-brand {
  align-self: flex-start;
  margin-bottom: auto;
}
.l24 .mini-title {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(80,47,25,.32);
}

.l25 .shot { justify-content: flex-start; align-items: stretch; }
.l25 .mini-brand {
  width: 100%;
  max-width: 100%;
  font-size: 11px;
  text-align: right;
  background: transparent;
  backdrop-filter: none;
}
.l25 .mini-title {
  margin-top: auto;
  max-width: 78%;
  font-size: 31px;
}

.l26 .shot { justify-content: flex-end; align-items: flex-start; }
.l26 .mini-title { margin-top: 12px; font-size: 30px; }
.l26 .shot::after {
  content: "組合員相談　施業受付";
  left: auto;
  right: 22px;
  top: 22px;
  bottom: auto;
  width: 120px;
  height: 74px;
  padding: 12px;
  border: 1px solid rgba(22,36,28,.18);
  background: rgba(255,253,247,.82);
  box-shadow: -10px 10px 0 rgba(22,36,28,.10);
  font-size: 12px;
  line-height: 1.55;
  opacity: 1;
  z-index: 0;
}

.l27 .shot { justify-content: space-between; align-items: flex-start; }
.l27 .mini-brand {
  writing-mode: vertical-rl;
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
}
.l27 .mini-title { max-width: 70%; font-size: 32px; }

.l28 .shot { justify-content: center; align-items: center; text-align: center; }
.l28 .mini-brand {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.l28 .mini-title { margin: 0; font-size: 37px; }

.l29 .shot { justify-content: flex-end; align-items: flex-start; }
.l29 .mini-brand {
  position: absolute;
  left: 22px;
  top: 22px;
}
.l29 .mini-title {
  max-width: 82%;
  padding: 16px 18px;
  font-size: 31px;
  background: rgba(255,253,247,.84);
}

.l30 .shot { justify-content: center; align-items: center; text-align: center; }
.l30 .mini-brand {
  background: transparent;
  backdrop-filter: none;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.l30 .mini-title {
  max-width: 94%;
  margin-top: 18px;
  padding: 18px 20px;
  font-size: 38px;
  border: 1px solid rgba(255,255,255,.38);
}

@media (max-width: 900px) {
  .preview-grid, .service-grid, .design-grid, .split { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
  .site-nav { align-items: flex-start; }
  .site-nav nav { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 640px) {
  .preview-shell { width: min(100% - 28px, 1120px); }
  .preview-hero { padding-top: 52px; }
  .site-nav { position: static; display: block; }
  .site-nav nav { margin-top: 10px; justify-content: flex-start; gap: 10px; font-size: 13px; }
  .hero { min-height: 720px; }
  .info-table th, .info-table td { display: block; width: 100%; padding: 12px 0; }
  .news-item { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .stat-grid { grid-template-columns: 1fr; }
}
