/* Marketing site — local UI styles */
:root {
  color-scheme: light;
  --lm-canvas-width: 1920px;
  --lm-content-width: 1600px;
  --lm-content-x: calc((var(--lm-canvas-width) - var(--lm-content-width)) / 2);
  --lm-hero-scale: 0.9090909;
  --lm-hero-media-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1760 760'%3E%3Cpath fill='white' d='M44 0L1760 0L1760 200L1365 200L1365 336L1212 336C1207.13 336 1202.43 335.27 1198 333.92L1198 712C1198 736.3 1178.3 760 1154 760L44 760C19.7 760 0 740.3 0 716L0 44C0 19.7 19.7 0 44 0Z'/%3E%3C/svg%3E");
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: #F4F4F4; font-family: var(--font-jp); color:#111111; }
html body {
  overflow-x: visible;
  overflow-y: visible;
}

/* Site header */
.lm-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px var(--lm-content-x) 24px;
  background: rgba(244,244,244,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.lm-header__logo { display: inline-flex; }
.lm-header__logo img { height: 40px; width: auto; display: block; }
.lm-header__nav { display: flex; gap: 60px; }
.lm-header__nav a {
  font: 500 16px/1 var(--font-jp); color: #111111;
  letter-spacing: 0.04em; text-decoration: none;
}
.lm-header__actions { display: flex; gap: 16px; }
.lm-header__button {
  width: 180px; height: 48px; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.lm-header__menu,
.lm-header__drawer { display: none; }

/* Capsule buttons */
.lm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 28px; border-radius: 40px; border: 0;
  font: 500 15px/1 var(--font-jp); letter-spacing: 0.04em; cursor: pointer;
  transition: opacity 160ms cubic-bezier(.22,1,.36,1), transform 120ms;
}
.lm-btn:hover { opacity: 0.85; }
.lm-btn:active { transform: scale(.98); }
.lm-btn-primary   { background:#111; color:#fff; }
.lm-btn-secondary { background:#D9D9D9; color:#111111; }

/* Big detail pills */
.lm-pill-large {
  display:inline-flex; align-items:center; justify-content:center;
  width: 320px; height: 76px; border:0; cursor:pointer;
  background:#9F9F9F; color:#fff; border-radius: 24px;
  font: 700 22px/1 var(--font-jp); letter-spacing: 0.16em;
  transition: opacity 160ms;
}
.lm-pill-large:hover { opacity: .85; }
.lm-pill-outline {
  display:inline-flex; align-items:center; justify-content:space-between;
  width: var(--lm-pill-width, 280px);
  height: var(--lm-pill-height, 64px);
  padding: var(--lm-pill-padding, 0 28px);
  background:#F4F4F4; border:1px solid #E0E0E0; border-radius: 50px; cursor:pointer;
  font: 500 var(--lm-pill-font-size, 18px)/1 var(--font-jp);
  letter-spacing: var(--lm-pill-letter-spacing, 0.08em);
  color:#111111;
  transition: background 160ms, border-color 160ms, color 160ms, transform 160ms;
}
.lm-pill-outline:hover { background:#FFF; }
.lm-pill-outline .circle {
  width: var(--lm-pill-circle-size, 32px);
  height: var(--lm-pill-circle-size, 32px);
  border-radius: 50%; background:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  font: 500 var(--lm-pill-circle-font-size, 16px)/1 var(--font-jp);
  letter-spacing:.12em; color:#111111;
}
.lm-pill-outline--section-action {
  --lm-pill-width: 315px;
  --lm-pill-height: 76px;
  --lm-pill-padding: 0 40px;
  --lm-pill-gap: 16px;
  --lm-pill-content-shift: 3px;
  background-color: #3a3a3a; border-color: #3a3a3a; color: #fff;
  position: relative;
  justify-content: center;
  gap: var(--lm-pill-gap);
  text-align: center;
}
.lm-pill-outline--section-action > span:first-child {
  white-space: nowrap;
  transform: translateX(var(--lm-pill-content-shift));
}
.lm-pill-outline--section-action .circle {
  position: static;
  flex: 0 0 var(--lm-pill-circle-size, 32px);
  letter-spacing: 0;
  transform: translateX(var(--lm-pill-content-shift));
}
.lm-pill-outline--section-action:hover {
  background: #111; border-color: #111; color: #fff;
  transform: translateY(-1px);
}
.lm-pill-outline--section-action:hover .circle {
  background: #F4F4F4; color: #111;
}
.lm-pill-outline.lm-pill-outline--back-action {
  --lm-pill-width: 290px;
  --lm-pill-height: 64px;
  --lm-pill-padding: 0 30px;
  --lm-pill-gap: 14px;
  --lm-pill-font-size: 15px;
  --lm-pill-letter-spacing: .08em;
  color: #fff;
}
.lm-pill-outline--back-action > span:first-child,
.lm-pill-outline--back-action .circle,
.lm-pill-outline--back-action .label {
  transform: none;
}
.lm-pill-outline--back-action .label {
  white-space: nowrap;
}
.lm-pill-outline--service-consult {
  --lm-pill-width: 360px;
  --lm-pill-padding: 0 36px;
  --lm-pill-gap: 16px;
  --lm-pill-font-size: 18px;
  --lm-pill-letter-spacing: 0.08em;
  margin-top: 8px;
  text-decoration: none;
}
.lm-pill-outline--service-consult > span:first-child {
  white-space: nowrap;
}
/* Round arrow buttons (PICK UP carousel) */
.lm-arrow-btn {
  width: 48px; height: 48px; border-radius: 50%; border:1px solid #E0E0E0;
  background:#fff; cursor:pointer; font:500 18px/1 var(--font-jp); color:#111111;
  transition: background 160ms;
}
.lm-arrow-btn:hover { background:#F4F4F4; }

/* Top hero */
.lm-hero {
  position: relative;
  width: var(--lm-canvas-width);
  height: clamp(750px, calc(11.17vw + 635.47px), 850px);
  margin: 0 auto;
}
.lm-hero__stage {
  position: absolute;
  left: var(--lm-content-x);
  top: 24px;
  width: 1760px;
  height: 760px;
  transform: scale(var(--lm-hero-scale));
  transform-origin: top left;
}
.lm-hero__media {
  position: absolute;
  left: 0;
  top: 0;
  width: 1760px;
  height: 760px;
  overflow: hidden;
  background: transparent;
  clip-path: path('M 44 0 L 1760 0 L 1760 200 L 1365 200 L 1365 336 L 1212 336 C 1207.13 336 1202.43 335.27 1198 333.92 L 1198 712 C 1198 736.3 1178.3 760 1154 760 L 44 760 C 19.7 760 0 740.3 0 716 L 0 44 C 0 19.7 19.7 0 44 0 Z');
}
.lm-hero__media-image {
  position: absolute;
  inset: 0;
  background: url(../assets/top-hero-collage-desktop.png) center/cover no-repeat;
}
.lm-hero__media-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lm-hero__media-row {
  display: flex;
  gap: 4px;
}
.lm-hero__media-row--top { height: 198px; }
.lm-hero__media-row--bottom { flex: 1 1 0; }
.lm-hero__tile {
  background-size: cover;
  background-repeat: no-repeat;
}
.lm-hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(244,244,244,0) 41%, rgba(244,244,244,0.79) 62%, rgba(244,244,244,1) 82%);
}
.lm-hero__headline {
  position: absolute;
  left: 60px;
  top: 476px;
  width: 900px;
  z-index: 2;
}
.lm-hero__headline h1 {
  font: 700 56px/1.4 var(--font-jp);
  letter-spacing: 0.06em;
  color: #111111;
  margin: 0;
}
.lm-hero__sp-break { display: none; }
.lm-hero__en {
  font: 500 18px/1.6 var(--font-jp);
  letter-spacing: 0.06em;
  color: rgba(17,17,17,.7);
  margin-top: 18px;
}
.lm-hero__headline p {
  font: 400 16px/1.84 var(--font-jp);
  letter-spacing: 0.04em;
  color: #111111;
  margin: 28px 0 0;
  max-width: 540px;
}
.lm-hero__pickup {
  position: absolute;
  left: 1198px;
  top: 198px;
  width: 562px;
  height: 562px;
  background: #F4F4F4;
  border-radius: 72px 0 0 0;
  z-index: 3;
}
.lm-hero__pickup-inner {
  position: absolute;
  left: 44px;
  top: 44px;
  width: 518px;
  height: 518px;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 32px;
}
.lm-hero__pickup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.lm-hero__pickup h2 {
  font: 700 32px/1 var(--font-en);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 6px;
  margin: 0;
  color: #111;
}
.lm-hero__pickup-ja {
  font: 500 12px/1 var(--font-jp);
  letter-spacing: 0.16em;
  color: rgba(0,0,0,.55);
  margin-top: 12px;
}
.lm-hero__pickup-arrows {
  display: flex;
  gap: 8px;
}
.lm-hero__pickup-arrows .lm-arrow-btn {
  width: 36px;
  height: 36px;
  font-size: 16px;
}
.lm-hero__pickup-image {
  height: 200px;
  margin-top: 24px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
}
.lm-hero__pickup h3 {
  font: 500 22px/1.5 var(--font-jp);
  color: #111111;
  letter-spacing: 0.06em;
  margin: 24px 0 0;
}
.lm-hero__pickup-date {
  font: 500 13px/1 var(--font-jp);
  letter-spacing: 0.12em;
  color: rgba(0,0,0,.5);
  margin-top: auto;
  padding-top: 16px;
}

/* Service card — A-variant (kept for compatibility) */
.lm-svc-card {
  background:#fff; border-radius: 28px; padding: 22px;
  display:flex; flex-direction:column; gap:14px;
  transition: transform 320ms cubic-bezier(.22,1,.36,1);
}
.lm-svc-card:hover { transform: translateY(-2px); }
.lm-svc-card .thumb {
  width:100%; height:160px; border-radius: 20px; background-size:cover; background-position:center;
}
.lm-svc-card .title { font: 700 18px/1.2 var(--font-jp); letter-spacing:.06em; color:#111111; }
.lm-svc-card .copy  { font: 400 13px/1.8 var(--font-jp); letter-spacing:.04em; color:#111111; }

/* Service card — B-variant: image on top, title + copy beneath, no surrounding card */
.lm-svc-card-b {
  display:flex; flex-direction:column; gap: 14px;
}
.lm-svc-card-b .thumb {
  width: 100%; aspect-ratio: 348 / 197; border-radius: 32px;
  background-size: cover; background-position: center;
  transition: transform 480ms cubic-bezier(.22,1,.36,1);
}
.lm-svc-card-b:hover .thumb { transform: scale(1.02); }
.lm-svc-card-b .title { font: 700 20px/1 var(--font-jp); letter-spacing:.06em; color:#111111; margin-top: 12px; }
.lm-svc-card-b .copy  { font: 400 14px/1.8 var(--font-jp); letter-spacing:.04em; color:#111111; }

/* News card (photo card with asymmetric label) */
.lm-news-card {
  position:relative; aspect-ratio: 1.78/1; border-radius: 32px; overflow:visible;
  background:#F4F4F4;
  transition: transform 480ms cubic-bezier(.22,1,.36,1);
}
.lm-news-card__image {
  position:absolute; inset:0; z-index:0;
  border-radius: inherit;
  background-size: cover; background-position: center;
}
.lm-news-card:hover { transform: scale(1.01); }
.lm-news-card .label {
  position:absolute; left:-2px; bottom:-2px; z-index:1; width: calc(88% + 2px);
  border-radius: 0 40px 20px 0;
  background:#F4F4F4; padding: 18px 26px 20px 28px;
  display:flex; flex-direction:column; gap:8px;
}
.lm-news-card .eyebrow { font:500 12px/1 var(--font-jp); letter-spacing:.12em; color:rgba(0,0,0,.55); }
.lm-news-card .title   { font:500 17px/1.4 var(--font-jp); letter-spacing:.04em; color:#111111; }
.lm-news-card .date    { font:500 11px/1 var(--font-jp); letter-spacing:.12em; color:rgba(0,0,0,.5); }
.lm-news-card .arrow {
  position:absolute; right: 22px; bottom: 24px; z-index:2; width: 32px; height: 32px;
  border-radius:50%; background: rgba(0,0,0,.35); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size: 18px; letter-spacing:.12em;
}
.lm-news-card .copy {
  font: 400 12px/1.6 var(--font-jp);
  letter-spacing: .04em; color: rgba(17,17,17,.7); margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────────
   Section header (used by REASON / PRODUCTION SYSTEM / WORKS / COMPANY / CONTACT)
   ────────────────────────────────────────────────────────────── */
.lm-section { width: var(--lm-canvas-width); margin: 0 auto; padding: 120px var(--lm-content-x); box-sizing: border-box; }
.lm-section--dark { background: #111111; color: #F4F4F4; }
.lm-section-action { margin-top: 56px; display: flex; }
.lm-section-action--center { justify-content: center; }
.lm-grid { display: grid; gap: 32px; }
.lm-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lm-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lm-grid--works-secondary { margin-top: 32px; }
.lm-section-head { display:flex; justify-content:space-between; align-items:flex-end; gap: 80px; margin-bottom: 64px; }
.lm-section-head h2 {
  font: 700 64px/1 var(--font-en); letter-spacing: 0.02em;
  text-decoration: underline; text-underline-offset: 12px; text-decoration-thickness: 3px;
  color: #111; margin: 0;
}
.lm-section--dark .lm-section-head h2 { color: #F4F4F4; text-decoration-color: #F4F4F4; }
.lm-section-head .ja { font: 700 18px/1 var(--font-jp); letter-spacing: 0.12em; color: #111111; margin-top: 18px; }
.lm-section--dark .lm-section-head .ja { color: rgba(244,244,244,.85); }
.lm-section-head .lead {
  flex: 0 0 720px; font: 400 16px/1.84 var(--font-jp); letter-spacing: 0.04em;
  color: #111111;
}
.lm-section--dark .lm-section-head .lead { color: rgba(244,244,244,.85); }

/* ── HOME SERVICE: intro panel + card grid ───────────────────── */
.lm-home-service {
  position: relative; width: var(--lm-canvas-width); margin: 0 auto; padding: 0 0 80px;
}
.lm-home-service__inner {
  width: var(--lm-content-width); margin: 0 auto;
  display: grid; grid-template-columns: 420px 1fr; gap: 60px;
  padding-top: 120px; align-items: start;
}
.lm-home-service__intro {
  background: #fff; border-radius: 32px; padding: 60px 48px;
}
.lm-home-service__title {
  font: 700 48px/1 var(--font-en); letter-spacing: 0.02em;
  margin: 0; color: #111;
  text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 12px;
}
.lm-home-service__ja {
  font: 700 18px/1 var(--font-jp); letter-spacing: 0.06em;
  color: #111111; margin-top: 16px;
}
.lm-home-service__copy {
  font: 400 14px/1.8 var(--font-jp); color: #111111;
  letter-spacing: 0.04em; margin-top: 28px; max-width: 360px;
}
.lm-home-service__action { margin-top: 80px; }
.lm-home-service__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  column-gap: 32px; row-gap: 56px; align-items: start;
}

/* ── REASON: 4-up strength cards ─────────────────────────────── */
.lm-reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.lm-reason-card {
  background:#fff; border-radius: 28px; padding: 40px 32px 36px;
  display:flex; flex-direction:column; gap: 18px; min-height: 320px;
  transition: transform 320ms var(--ease-out);
}
.lm-reason-card:hover { transform: translateY(-2px); }
.lm-reason-card .num {
  font: 700 14px/1 var(--font-en); letter-spacing: 0.16em; color: rgba(17,17,17,.5);
}
.lm-reason-card h3 {
  font: 700 22px/1.4 var(--font-jp); letter-spacing: 0.06em; color:#111111; margin: 0;
}
.lm-reason-card p {
  font: 400 14px/1.84 var(--font-jp); letter-spacing: 0.04em; color: rgba(17,17,17,.78); margin: 0;
}
.lm-reason-stats { display:flex; gap: 80px; margin-top: 64px; padding: 40px 8px 0; border-top: 1px solid rgba(17,17,17,.12); }
.lm-reason-stats .stat { display:flex; flex-direction:column; gap: 8px; }
.lm-reason-stats .stat .v { font: 700 56px/1 var(--font-en); letter-spacing: 0.02em; color:#111111; }
.lm-reason-stats .stat .v small { font: 700 22px/1 var(--font-en); letter-spacing: 0.04em; margin-left: 6px; opacity:.7; }
.lm-reason-stats .stat .l { font: 500 13px/1 var(--font-jp); letter-spacing: 0.12em; color: rgba(17,17,17,.6); }

/* ── PRODUCTION SYSTEM: connected step track on cream ──────────── */
.lm-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 24px;
}
.lm-track-line { display: none; }
.lm-track-item { display:flex; flex-direction:column; gap: 16px; }
.lm-track-photo {
  width: 100%; aspect-ratio: 348 / 197; background-size: cover; background-position: center;
  border: 1px solid rgba(17,17,17,.1); border-radius: 32px;
  filter: grayscale(8%);
}

/* マーカー: [ドット] [ラベル] ────── (破線が残り幅いっぱい) */
.lm-track-marker {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0 6px;
}
.lm-track-dot {
  flex: 0 0 auto;
  width: 14px; height: 14px; border-radius: 50%;
  background: #F4F4F4; border: 2px solid #111;
}
.lm-track-marker .lm-track-n {
  flex: 0 0 auto;
  font: 700 12px/1 var(--font-en); letter-spacing: .22em; color: #111;
  white-space: nowrap;
}
/* テキストの右側だけに、隣カラムのドット手前まで伸びる破線 */
.lm-track-marker .lm-track-line-after {
  flex: 1 1 auto;
  height: 0;
  border-top: 1.5px dashed rgba(17,17,17,.55);
  margin-right: -32px; /* gap分はみ出させて隣のドット手前まで届かせる */
}
.lm-track-item:last-child .lm-track-marker .lm-track-line-after { display: none; }

.lm-track-title { font: 700 22px/1.4 var(--font-jp); letter-spacing: .06em; color:#111; margin: 4px 0 0; }
.lm-track-copy  { font: 400 13px/1.84 var(--font-jp); letter-spacing: .04em; color: rgba(17,17,17,.78); margin: 0; }

/* ── PRODUCTION SYSTEM: 4-step process ───────────────────────── */
.lm-process { display:grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.lm-step {
  background:#fff; border-radius: 28px; overflow:hidden;
  display:flex; flex-direction:column;
}
.lm-step .photo { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; }
.lm-step .body { padding: 28px 28px 32px; display:flex; flex-direction:column; gap: 12px; flex: 1; }
.lm-step .step-num {
  display:inline-flex; align-items:center; gap: 10px;
  font: 700 12px/1 var(--font-en); letter-spacing: 0.16em; color: rgba(17,17,17,.55);
}
.lm-step .step-num::before {
  content:''; width: 28px; height: 1px; background: #111111; opacity:.4;
}
.lm-step h3 { font: 700 20px/1.4 var(--font-jp); letter-spacing: 0.06em; color:#111111; margin: 0; }
.lm-step p  { font: 400 13px/1.8 var(--font-jp); letter-spacing: 0.04em; color: rgba(17,17,17,.78); margin: 0; }

/* ── NEWS: list rows ─────────────────────────────────────────── */
.lm-news-list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid rgba(17,17,17,.18);
}
.lm-news-row {
  display: grid;
  grid-template-columns: 140px 140px 1fr 48px;
  align-items: center;
  gap: 32px;
  padding: 28px 8px;
  border-bottom: 1px solid rgba(17,17,17,.18);
  cursor: pointer;
  transition: background 200ms cubic-bezier(.22,1,.36,1), padding 200ms cubic-bezier(.22,1,.36,1);
}
.lm-news-row:hover { background: #fff; padding-left: 24px; padding-right: 24px; }
.lm-news-row .date {
  font: 700 14px/1 var(--font-en); letter-spacing: 0.16em; color: #111111;
}
.lm-news-row .cat {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; padding: 0 14px; border-radius: 9999px;
  border: 1px solid rgba(17,17,17,.32);
  font: 700 11px/1 var(--font-en); letter-spacing: 0.18em; color: #111111;
  white-space: nowrap; justify-self: start;
}
.lm-news-row .title {
  font: 500 17px/1.6 var(--font-jp); letter-spacing: 0.04em; color: #111111;
  text-wrap: pretty;
}
.lm-news-row .arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: #9F9F9F; border: 1px solid rgba(17,17,17,.18);
  display: inline-flex; align-items: center; justify-content: center;
  font: 500 16px/1 var(--font-jp); color: #FFFFFF;
  transition: background 200ms, transform 200ms;
  justify-self: end;
}
.lm-news-row:hover .arrow { background: #111111; color: #F4F4F4; transform: translateX(2px); }

.lm-news-filter-section {
  padding-top: 0;
  padding-bottom: 16px;
}

.lm-news-list-section {
  padding-top: 0;
}

.lm-news-list-section .lm-news-list {
  border-top: 0;
}

/* ──────────────────────────────────────────────────────────────
   下層ページ共通: パンくず
   ────────────────────────────────────────────────────────────── */
.lm-breadcrumb {
  width: var(--lm-canvas-width); max-width: 100%; margin: 0 auto;
  padding: 24px var(--lm-content-x) 0;
  font: 500 13px/1 var(--font-jp); letter-spacing: 0.12em;
  color: rgba(17,17,17,.6);
  display: flex; align-items: center; gap: 8px;
}
.lm-breadcrumb a { color: rgba(17,17,17,.6); text-decoration: none; }
.lm-breadcrumb a:hover { color: #111; text-decoration: underline; text-underline-offset: 4px; }
.lm-breadcrumb .sep { opacity: .5; }
.lm-breadcrumb .cur { color: #111; }

/* ──────────────────────────────────────────────────────────────
   下層ページ共通: PageHero
   ────────────────────────────────────────────────────────────── */
.lm-page-hero { width: var(--lm-canvas-width); margin: 0 auto; padding: 64px var(--lm-content-x) 80px; }
.lm-page-hero .inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
  border-bottom: 1px solid rgba(17,17,17,.18);
  padding-bottom: 56px;
}
.lm-page-hero .head .en {
  font: 700 96px/1 var(--font-en); letter-spacing: 0.02em; margin: 0;
  color: #111;
}
.lm-page-hero .head .ja {
  font: 700 18px/1 var(--font-jp); letter-spacing: 0.16em;
  color: #111; margin-top: 24px;
}
.lm-page-hero .lead {
  font: 400 16px/1.95 var(--font-jp); letter-spacing: .04em;
  color: rgba(17,17,17,.84); margin: 0;
  max-width: 720px;
}

/* ──────────────────────────────────────────────────────────────
   SERVICES: アンカー目次
   ────────────────────────────────────────────────────────────── */
.lm-svc-index {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid rgba(17,17,17,.18);
}
.lm-svc-index li { border-bottom: 1px solid rgba(17,17,17,.18); }
.lm-svc-index li:nth-child(odd) { border-right: 1px solid rgba(17,17,17,.18); }
.lm-svc-index a {
  display: grid; grid-template-columns: 80px 1fr 32px; align-items: center;
  gap: 24px; padding: 28px 32px;
  text-decoration: none; color: #111;
  transition: background 200ms var(--ease-out), padding 200ms var(--ease-out);
}
.lm-svc-index a:hover { background: #fff; padding-left: 40px; }
.lm-svc-index .no {
  font: 700 14px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.5);
}
.lm-svc-index .jp {
  font: 700 18px/1.4 var(--font-jp); letter-spacing: .06em; color: #111;
}
.lm-svc-index .jp .status {
  font: 500 12px/1 var(--font-jp); letter-spacing: .12em; color: rgba(17,17,17,.5);
  margin-left: 12px; font-style: normal;
}
.lm-svc-index .arrow {
  width: 32px; height: 32px; border-radius: 50%; background: #fff;
  border: 1px solid rgba(17,17,17,.2);
  display: inline-flex; align-items: center; justify-content: center;
  font: 500 14px/1 var(--font-jp); color: #111;
  transition: background 200ms, color 200ms, transform 200ms;
}
.lm-svc-index a:hover .arrow { background: #111; color: #F4F4F4; transform: translateY(2px); }

/* ──────────────────────────────────────────────────────────────
   SERVICES: 詳細セクション
   ────────────────────────────────────────────────────────────── */
.lm-svc-list { display: flex; flex-direction: column; gap: 120px; }
.lm-svc-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  scroll-margin-top: 100px;
}
.lm-svc-detail.is-flip .media { order: 2; }
.lm-svc-detail .media {
  position: relative; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden;
}
.lm-svc-detail .media .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 600ms var(--ease-out);
}
.lm-svc-detail:hover .media .photo { transform: scale(1.02); }
.lm-svc-detail .media .badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(17,17,17,.82); color: #F4F4F4;
  padding: 8px 18px; border-radius: 9999px;
  font: 700 11px/1 var(--font-en); letter-spacing: .22em;
  backdrop-filter: blur(4px);
}
.lm-svc-detail.is-pending .media .photo { filter: grayscale(0.9) opacity(0.7); }

.lm-svc-detail .body { display: flex; flex-direction: column; gap: 20px; }
.lm-svc-detail .body .no {
  font: 700 13px/1 var(--font-en); letter-spacing: .24em; color: rgba(17,17,17,.5);
}
.lm-svc-detail .body .jp {
  font: 700 40px/1.4 var(--font-jp); letter-spacing: .04em;
  color: #111; margin: 0;
}
.lm-svc-detail .body .en {
  font: 700 14px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55);
  margin-top: -8px;
}
.lm-svc-detail .body .tagline {
  font: 700 18px/1.6 var(--font-jp); letter-spacing: .06em; color: #111;
}
.lm-svc-detail .body .body-copy {
  font: 400 15px/1.95 var(--font-jp); letter-spacing: .04em;
  color: rgba(17,17,17,.84); margin: 0;
  text-wrap: pretty;
}
.lm-svc-detail .scope {
  margin-top: 8px; padding-top: 24px;
  border-top: 1px solid rgba(17,17,17,.18);
}
.lm-svc-detail .scope .k {
  font: 700 12px/1 var(--font-en); letter-spacing: .22em;
  color: rgba(17,17,17,.55);
}
.lm-svc-detail .scope ul {
  margin: 18px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
.lm-svc-detail .scope li {
  position: relative; padding-left: 18px;
  font: 500 14px/1.6 var(--font-jp); letter-spacing: .04em; color: #111;
}
.lm-svc-detail .scope li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: #111;
}
.lm-svc-detail.is-pending .scope li { color: rgba(17,17,17,.45); }
.lm-svc-detail.is-pending .scope li::before { background: rgba(17,17,17,.4); }
/* ──────────────────────────────────────────────────────────────
   WORKS: 一覧
   ────────────────────────────────────────────────────────────── */
.lm-works-filter {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  border-bottom: 1px solid rgba(17,17,17,.18);
  padding-bottom: 24px;
}
.lm-works-filter .chip {
  display: inline-flex; align-items: center; height: 40px; padding: 0 20px;
  border-radius: 9999px; border: 1px solid rgba(17,17,17,.2);
  background: transparent; cursor: pointer;
  font: 700 12px/1 var(--font-en); letter-spacing: .14em; color: #111;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.lm-works-filter .chip:hover { background: #fff; }
.lm-works-filter .chip.is-on { background: #111; color: #F4F4F4; border-color: #111; }
.lm-works-filter .count {
  margin-left: auto;
  font: 500 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55);
}

.lm-works-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 40px;
}
.lm-work-card {
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: #111;
  transition: transform 320ms var(--ease-out);
}
.lm-work-card:hover { transform: translateY(-4px); }
.lm-work-card .thumb {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border-radius: 28px; overflow: hidden;
  background-size: cover; background-position: center;
}
.lm-work-card .thumb::after {
  content:''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 320ms var(--ease-out);
}
.lm-work-card:hover .thumb::after { background: rgba(0,0,0,.08); }
.lm-work-card .thumb .arrow {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; background: #F4F4F4; color: #111;
  display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
  transition: transform 320ms var(--ease-out), background 320ms;
}
.lm-work-card:hover .thumb .arrow { background: #111; color: #F4F4F4; transform: translate(2px,-2px); }
.lm-work-card .meta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 4px;
}
.lm-work-card .cat {
  font: 700 11px/1 var(--font-en); letter-spacing: .22em; color: #111;
  padding: 6px 12px; border: 1px solid rgba(17,17,17,.32); border-radius: 9999px;
}
.lm-work-card .date {
  font: 700 12px/1 var(--font-en); letter-spacing: .16em; color: rgba(17,17,17,.55);
}
.lm-work-card .t {
  font: 700 18px/1.5 var(--font-jp); letter-spacing: .04em; color: #111; margin: 0;
}
.lm-work-card .c {
  font: 400 13px/1.84 var(--font-jp); letter-spacing: .04em;
  color: rgba(17,17,17,.78); margin: 0;
}
.lm-work-card .client {
  font: 500 12px/1 var(--font-en); letter-spacing: .18em;
  color: rgba(17,17,17,.5); margin-top: auto; padding-top: 4px;
}

/* ──────────────────────────────────────────────────────────────
   WORKS DETAIL
   ────────────────────────────────────────────────────────────── */
.lm-work-detail-head { max-width: 1100px; }
.lm-work-detail-head .meta { display:flex; gap: 16px; align-items:center; margin-bottom: 24px; }
.lm-work-detail-head .cat {
  font: 700 11px/1 var(--font-en); letter-spacing: .22em; color: #111;
  padding: 6px 14px; border: 1px solid rgba(17,17,17,.32); border-radius: 9999px;
}
.lm-work-detail-head .date { font: 700 14px/1 var(--font-en); letter-spacing: .16em; color: rgba(17,17,17,.55); }
.lm-work-detail-head .t { font: 700 56px/1.4 var(--font-jp); letter-spacing: .04em; margin: 0; }
.lm-work-detail-head .lead { font: 400 18px/1.95 var(--font-jp); letter-spacing: .04em; color: rgba(17,17,17,.78); margin: 24px 0 0; }
.lm-work-detail-head .client { font: 700 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55); margin-top: 32px; }

.lm-work-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.lm-work-gallery .main { aspect-ratio: 16/10; border-radius: 28px; background-size: cover; background-position: center; }
.lm-work-gallery .subs { display: flex; flex-direction: column; gap: 24px; }
.lm-work-gallery .sub { flex: 1; border-radius: 28px; background-size: cover; background-position: center; min-height: 200px; }

.lm-work-detail-grid { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.lm-work-detail-grid .aside { position: sticky; top: 120px; }
.lm-work-detail-grid .aside .k { font: 700 11px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55); }
.lm-work-detail-grid .aside .v { font: 600 16px/1.6 var(--font-jp); letter-spacing: .04em; color: #111; margin-top: 10px; }

.lm-work-detail-table { margin: 0; }
.lm-work-detail-table .row { display: grid; grid-template-columns: 180px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid rgba(17,17,17,.18); }
.lm-work-detail-table .row:first-child { border-top: 1px solid rgba(17,17,17,.18); }
.lm-work-detail-table dt { font: 700 13px/1.4 var(--font-jp); letter-spacing: .12em; color: rgba(17,17,17,.6); margin: 0; }
.lm-work-detail-table dd { font: 500 15px/1.95 var(--font-jp); letter-spacing: .04em; color: #111; margin: 0; text-wrap: pretty; }

.lm-work-pager {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center;
  padding: 32px 0; border-top: 1px solid rgba(17,17,17,.18); border-bottom: 1px solid rgba(17,17,17,.18);
}
.lm-work-pager a { text-decoration: none; color: #111; display: flex; flex-direction: column; gap: 8px; }
.lm-work-pager .next { text-align: right; }
.lm-work-pager .index { justify-self: center; flex-direction: row; text-decoration: none; }
.lm-work-pager .index.lm-pill-outline--back-action {
  --lm-pill-width: 246px;
  --lm-pill-height: 64px;
  --lm-pill-padding: 0 30px;
  --lm-pill-gap: 14px;
  --lm-pill-font-size: 15px;
  --lm-pill-letter-spacing: .08em;
}
.lm-work-pager .k { font: 700 11px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55); }
.lm-work-pager .t { font: 600 15px/1.4 var(--font-jp); letter-spacing: .04em; color: #111; }

/* ──────────────────────────────────────────────────────────────
   PAGINATION (NEWS等)
   ────────────────────────────────────────────────────────────── */
.lm-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 64px; }
.lm-pagination .page {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(17,17,17,.2);
  background: transparent; cursor: pointer;
  font: 700 13px/1 var(--font-en); letter-spacing: .12em; color: #111;
  transition: background 200ms, color 200ms;
}
.lm-pagination .page:hover:not(:disabled) { background: #fff; }
.lm-pagination .page.is-on { background: #111; color: #F4F4F4; border-color: #111; }
.lm-pagination .page:disabled { opacity: .35; cursor: not-allowed; }

/* ──────────────────────────────────────────────────────────────
   NEWS DETAIL (article)
   ────────────────────────────────────────────────────────────── */
.lm-article-wrap { background: transparent; }
.lm-article { max-width: 880px; margin: 0 auto; }

/* エディトリアル日付 */
.lm-article-date {
  display: flex; align-items: baseline; gap: 12px;
  margin: 8px 0 28px;
  font-family: var(--font-en);
  color: #111;
}
.lm-article-date .y { font: 700 56px/1 var(--font-en); letter-spacing: .02em; }
.lm-article-date .md { font: 700 56px/1 var(--font-en); letter-spacing: .02em; opacity: .85; }
.lm-article-date .sep { font: 300 56px/1 var(--font-en); color: rgba(17,17,17,.32); }
.lm-article-date .sep.small { padding: 0 6px; }
.lm-article-date .full { display: none; }

/* カテゴリ（単独行） */
.lm-article-cat {
  display: inline-block;
  font: 700 11px/1 var(--font-en); letter-spacing: .24em;
  padding: 8px 16px; border-radius: 9999px;
  margin-bottom: 28px;
}
.lm-cat--press   { background: #111; color: #F4F4F4; }
.lm-cat--notice  { background: transparent; color: #111; border: 1px solid rgba(17,17,17,.55); }
.lm-cat--project { background: rgba(17,17,17,.08); color: #111; }
.lm-cat--company { background: transparent; color: rgba(17,17,17,.7); border: 1px solid rgba(17,17,17,.32); }

/* タイトル */
.lm-article-title {
  font: 700 36px/1.55 var(--font-jp); letter-spacing: .04em;
  margin: 0 0 56px; text-wrap: pretty;
  padding-bottom: 40px; border-bottom: 1px solid rgba(17,17,17,.18);
}

/* 本文 */
.lm-article-body p {
  font: 400 16px/2.0 var(--font-jp); letter-spacing: .04em; color: #111;
  margin: 0 0 32px; text-wrap: pretty;
}
.lm-article-body p:last-child { margin-bottom: 0; }

/* 一覧へ戻る */
.lm-article-foot { margin-top: 64px; }

/* PREV/NEXT — 2カラム + 下にindex */
.lm-news-pager {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.lm-news-pager a {
  text-decoration: none; color: #111;
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px; border: 1px solid rgba(17,17,17,.18); border-radius: 20px;
  background: #fff;
  min-height: 120px;
  transition: background .2s ease, transform .2s ease;
}
.lm-news-pager a:hover { background: #111; color: #F4F4F4; transform: translateY(-2px); }
.lm-news-pager a:hover .k { color: rgba(244,244,244,.7); }
.lm-news-pager .next { text-align: right; }
.lm-news-pager .k {
  font: 700 11px/1 var(--font-en); letter-spacing: .22em;
  color: rgba(17,17,17,.55);
}
.lm-news-pager .t {
  font: 600 16px/1.55 var(--font-jp); letter-spacing: .04em;
  text-wrap: pretty;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lm-news-pager-index {
  display: flex; justify-content: center; margin-top: 32px;
}
.lm-news-pager-index .index {
  font: 700 13px/1 var(--font-en); letter-spacing: .22em; color: #111;
  padding: 16px 36px; border: 1px solid #111; border-radius: 9999px;
  text-decoration: none;
}
.lm-news-pager-index .index.lm-pill-outline--back-action {
  display: inline-flex;
  font: 500 var(--lm-pill-font-size, 15px)/1 var(--font-jp);
  letter-spacing: var(--lm-pill-letter-spacing, .08em);
  color: #fff;
}
.lm-news-pager-index .index:hover { background: #111; color: #F4F4F4; }

/* ──────────────────────────────────────────────────────────────
   COMPANY PAGE
   ────────────────────────────────────────────────────────────── */
.lm-section.lm-company-about {
  padding-top: 80px;
}
.lm-company-about {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
}
.lm-company-about .lm-section-head {
  align-items: flex-end;
  margin-bottom: 48px;
}
.lm-company-about .lm-section-head .lead {
  display: none;
}
.lm-company-about > .lm-section-head,
.lm-company-about > .lm-about-body {
  position: relative;
  z-index: 1;
}
.lm-about-body { position: relative; min-height: 600px; }
.lm-about-body .copy { position: relative; z-index: 3; width: 980px; }
.lm-about-body .copy p {
  font: 400 16px/1.86 var(--font-jp);
  letter-spacing: .04em; color: #111; margin: 0 0 24px; text-wrap: pretty;
}
.lm-about-collage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lm-about-collage__tile {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: 0 20px 56px rgba(17,17,17,.10);
}
.lm-about-collage__tile--edge {
  width: 214px;
  height: 258px;
  left: -184px;
  top: 246px;
  z-index: 1;
}
.lm-about-collage__tile--left {
  width: 423px;
  height: 258px;
  left: 50px;
  top: 370px;
  z-index: 1;
}
.lm-about-collage__tile--center {
  width: 570px;
  height: 359px;
  left: 530px;
  top: 260px;
  z-index: 4;
}
.lm-about-collage__tile--right {
  width: 648px;
  height: 292px;
  left: 1320px;
  top: -44px;
  z-index: 5;
  background-position: center;
}
.lm-about-collage__tile--large {
  width: 532px;
  height: 359px;
  left: 1166px;
  top: 322px;
  z-index: 2;
  background-position: center;
}

@media (min-width: 1025px) and (max-width: 1919px) {
  #root[data-screen-label="Company"] {
    --lm-canvas-width: 100%;
    --lm-content-width: min(calc(100vw - clamp(96px, 10vw, 200px)), 1600px);
    --lm-content-x: max(48px, calc((100vw - var(--lm-content-width)) / 2));
    --lm-about-collage-scale: .66;
    --lm-about-collage-offset: 56px;
  }

  #root[data-screen-label="Company"] .lm-company-about {
    min-height: clamp(780px, 56vw, 1000px);
  }

  #root[data-screen-label="Company"] .lm-section.lm-company-about {
    padding-bottom: clamp(88px, 6.25vw, 120px);
  }

  #root[data-screen-label="Company"] .lm-company-about .lm-section-head {
    margin-bottom: clamp(36px, 3vw, 48px);
  }

  #root[data-screen-label="Company"] .lm-about-body {
    min-height: clamp(500px, 39vw, 600px);
  }

  #root[data-screen-label="Company"] .lm-about-body .copy {
    width: clamp(760px, 65vw, 980px);
  }

  #root[data-screen-label="Company"] .lm-about-body .copy p {
    font-size: clamp(14px, 1vw, 16px);
  }

  #root[data-screen-label="Company"] .lm-about-collage {
    width: 1600px;
    height: 680px;
    inset: auto;
    left: 0;
    top: var(--lm-about-collage-offset);
    transform: scale(var(--lm-about-collage-scale));
    transform-origin: top left;
  }

  #root[data-screen-label="Company"] .lm-about-collage__tile {
    border-radius: clamp(20px, 1.45vw, 28px);
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  #root[data-screen-label="Company"] {
    --lm-about-collage-scale: .74;
    --lm-about-collage-offset: 48px;
  }
}

@media (min-width: 1366px) and (max-width: 1919px) {
  #root[data-screen-label="Company"] {
    --lm-about-collage-scale: .82;
    --lm-about-collage-offset: 24px;
  }
}

@media (min-width: 1536px) and (max-width: 1919px) {
  #root[data-screen-label="Company"] {
    --lm-about-collage-scale: .91;
    --lm-about-collage-offset: 0px;
  }
}

@media (min-width: 1720px) and (max-width: 1919px) {
  #root[data-screen-label="Company"] {
    --lm-about-collage-scale: 1;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  #root[data-screen-label="Company"] .lm-header {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  #root[data-screen-label="Company"] .lm-header__logo img {
    height: 34px;
  }

  #root[data-screen-label="Company"] .lm-header__nav {
    gap: 34px;
  }

  #root[data-screen-label="Company"] .lm-header__nav a {
    font-size: 14px;
    white-space: nowrap;
  }

  #root[data-screen-label="Company"] .lm-header__actions {
    gap: 12px;
  }

  #root[data-screen-label="Company"] .lm-header__button {
    width: 150px;
    height: 44px;
    font-size: 14px;
  }
}

.lm-company-table { margin: 0; }
.lm-company-table .row { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 24px 0; border-bottom: 1px solid rgba(17,17,17,.18); }
.lm-company-table .row:first-child { border-top: 1px solid rgba(17,17,17,.18); }
.lm-company-table dt { font: 700 13px/1.4 var(--font-jp); letter-spacing: .12em; color: rgba(17,17,17,.6); margin: 0; }
.lm-company-table dd { font: 500 16px/1.6 var(--font-jp); letter-spacing: .04em; color: #111; margin: 0; }

.lm-philosophy { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.lm-philosophy .portrait { aspect-ratio: 4/5; border-radius: 28px; background-size: cover; background-position: center; }
.lm-philosophy .msg .k { font: 700 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(244,244,244,.6); }
.lm-philosophy .msg p { font: 400 15px/1.95 var(--font-jp); letter-spacing: .04em; color: rgba(244,244,244,.92); margin: 24px 0 0; text-wrap: pretty; }
.lm-philosophy .sign { display: flex; align-items: baseline; gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(244,244,244,.2); }
.lm-philosophy .sign .role { font: 500 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(244,244,244,.6); }
.lm-philosophy .sign .name { font: 700 22px/1 var(--font-jp); letter-spacing: .12em; color: #F4F4F4; }

.lm-map { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; }
.lm-map .map-area { aspect-ratio: 16/10; border-radius: 28px; background: #DCDCDC; display: flex; align-items: center; justify-content: center; }
.lm-map .map-area .placeholder { font: 700 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.4); }
.lm-map .addr .k { font: 700 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55); }
.lm-map .addr .v { font: 500 16px/1.84 var(--font-jp); letter-spacing: .04em; color: #111; margin: 14px 0 0; }

/* ──────────────────────────────────────────────────────────────
   CONTACT FORM
   ────────────────────────────────────────────────────────────── */
.lm-form { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.lm-form-block { display: flex; flex-direction: column; gap: 14px; }
.lm-form-block .lab { font: 700 14px/1 var(--font-jp); letter-spacing: .12em; color: #111; display: flex; align-items: center; gap: 12px; }
.lm-form-block .req { font: 700 10px/1 var(--font-en); letter-spacing: .18em; padding: 5px 9px; border-radius: 4px; background: #111; color: #F4F4F4; }
.lm-form-block .opt { font: 700 10px/1 var(--font-en); letter-spacing: .18em; padding: 5px 9px; border-radius: 4px; background: rgba(17,17,17,.1); color: rgba(17,17,17,.6); }
.lm-form-block .hint { font: 500 11px/1 var(--font-jp); letter-spacing: .12em; color: rgba(17,17,17,.5); }
.lm-form input[type="text"], .lm-form input[type="email"], .lm-form input[type="tel"], .lm-form textarea {
  background: #fff; border: 1px solid rgba(17,17,17,.18); border-radius: 16px;
  padding: 18px 22px; font: 400 15px/1.6 var(--font-jp); letter-spacing: .04em; color: #111;
  transition: border-color 200ms;
}
.lm-form input:focus, .lm-form textarea:focus { outline: none; border-color: #111; }
.lm-form textarea { resize: vertical; min-height: 200px; }
.lm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lm-form .types { display: flex; flex-wrap: wrap; gap: 12px; }
.lm-form .type-chip { display: inline-flex; align-items: center; gap: 0; cursor: pointer; }
.lm-form .type-chip input { display: none; }
.lm-form .type-chip span {
  display: inline-flex; align-items: center; height: 48px; padding: 0 22px;
  border: 1px solid rgba(17,17,17,.2); border-radius: 9999px; background: transparent;
  font: 500 14px/1 var(--font-jp); letter-spacing: .06em; color: #111;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.lm-form .type-chip:hover span { background: #fff; }
.lm-form .type-chip.is-on span { background: #111; color: #F4F4F4; border-color: #111; }
.lm-form .file-box { display: flex; flex-direction: column; gap: 12px; padding: 24px; border: 1px dashed rgba(17,17,17,.32); border-radius: 16px; cursor: pointer; }
.lm-form .file-box input { display: none; }
.lm-form .file-box .cta { display: inline-flex; align-items: center; height: 44px; padding: 0 24px; border-radius: 9999px; background: #111; color: #F4F4F4; font: 700 13px/1 var(--font-en); letter-spacing: .16em; align-self: flex-start; }
.lm-form .file-box .hint-text { font: 500 12px/1 var(--font-jp); letter-spacing: .06em; color: rgba(17,17,17,.55); }
.lm-form-agree .agree { display: inline-flex; align-items: center; gap: 12px; font: 500 14px/1 var(--font-jp); }
.lm-form-agree a { color: #111; text-underline-offset: 4px; }
.lm-form-submit { display: flex; flex-direction: column; gap: 16px; align-items: center; padding-top: 16px; border-top: 1px solid rgba(17,17,17,.18); }
.lm-form-submit .reply { font: 500 13px/1.6 var(--font-jp); letter-spacing: .04em; color: rgba(17,17,17,.6); margin: 0; }
.lm-form-submit .lm-form-submit-button {
  justify-content: center;
  gap: 16px;
  min-width: 320px;
  height: 64px;
  padding: 0 32px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 9999px;
  box-shadow: 0 12px 28px rgba(17,17,17,.10);
}
.lm-form-submit .lm-form-submit-button:hover {
  background: #111;
  opacity: 1;
}
.lm-form-submit .lm-form-submit-button > span:first-child {
  transform: translateX(3px);
}
.lm-form-submit .lm-form-submit-button .arrow {
  position: static;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: #F4F4F4;
  color: #111;
  transform: translateX(3px);
}

/* ──────────────────────────────────────────────────────────────
   THANKS
   ────────────────────────────────────────────────────────────── */
.lm-thanks { max-width: 720px; margin: 80px auto; text-align: center; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.lm-thanks .k { font: 700 12px/1 var(--font-en); letter-spacing: .24em; color: rgba(17,17,17,.5); }
.lm-thanks h1 { font: 700 40px/1.5 var(--font-jp); letter-spacing: .04em; margin: 0; }
.lm-thanks p { font: 400 16px/1.95 var(--font-jp); letter-spacing: .04em; color: rgba(17,17,17,.78); margin: 0; }
.lm-thanks .ctas { display: flex; gap: 16px; margin-top: 16px; }
.lm-thanks .ctas .lm-thanks-button {
  --lm-pill-width: 280px;
  --lm-pill-height: 68px;
  --lm-pill-padding: 0 34px;
  --lm-pill-gap: 14px;
  --lm-pill-font-size: 15px;
  --lm-pill-letter-spacing: .08em;
  width: var(--lm-pill-width);
  min-width: var(--lm-pill-width);
  height: var(--lm-pill-height);
  flex: 0 0 var(--lm-pill-width);
}
.lm-thanks .ctas {
  justify-content: center;
}

/* ──────────────────────────────────────────────────────────────
   POLICY
   ────────────────────────────────────────────────────────────── */
.lm-policy-toc { display: flex; gap: 40px; padding: 24px 0 64px; border-bottom: 1px solid rgba(17,17,17,.18); margin-bottom: 80px; flex-wrap: wrap; }
.lm-policy-toc a { text-decoration: none; color: #111; font: 700 13px/1 var(--font-en); letter-spacing: .18em; padding-bottom: 6px; border-bottom: 1px solid transparent; transition: border-color 200ms; }
.lm-policy-toc a:hover { border-bottom-color: #111; }
.lm-policy { display: grid; grid-template-columns: 280px 1fr; gap: 80px; padding: 56px 0; border-top: 1px solid rgba(17,17,17,.18); scroll-margin-top: 100px; }
.lm-policy header .k { font: 700 12px/1 var(--font-en); letter-spacing: .24em; color: rgba(17,17,17,.5); }
.lm-policy header h2 { font: 700 32px/1.4 var(--font-jp); letter-spacing: .06em; margin: 16px 0 0; text-decoration: none; }
.lm-policy .body p { font: 400 15px/1.95 var(--font-jp); letter-spacing: .04em; margin: 0 0 20px; text-wrap: pretty; }
.lm-policy .body ol { padding-left: 1.4em; margin: 0 0 20px; }
.lm-policy .body ol li { font: 400 15px/1.95 var(--font-jp); letter-spacing: .04em; margin: 0 0 8px; }
.lm-policy .body .meta { font: 500 12px/1.6 var(--font-jp); letter-spacing: .12em; color: rgba(17,17,17,.5); margin-top: 32px; }

/* ── COMPANY: photo mosaic + small fact strip ─────────────────── */
.lm-co-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
}
.lm-co-mosaic > div { background-size: cover; background-position: center; position: relative; overflow: hidden; border-radius: 32px; }
.lm-co-mosaic .m-large { grid-column: 1; grid-row: 1 / span 2; }
.lm-co-mosaic .m-tall  { grid-column: 2; grid-row: 1 / span 2; }
.lm-co-mosaic .m-mid:nth-of-type(3) { grid-column: 3; grid-row: 1; }
.lm-co-mosaic .m-mid:nth-of-type(4) { grid-column: 3; grid-row: 2; }
.lm-co-mosaic .m-wide  { display: none; }
.lm-co-mosaic .cap {
  position:absolute; left: 24px; bottom: 24px; right: 24px;
  display:flex; flex-direction:column; gap: 8px;
  color:#F4F4F4; text-shadow: 0 1px 24px rgba(0,0,0,.5);
}
.lm-co-mosaic .cap .k { font: 700 11px/1 var(--font-en); letter-spacing: .22em; opacity:.85; }
.lm-co-mosaic .cap .t { font: 700 28px/1.4 var(--font-jp); letter-spacing: .06em; }

.lm-co-strip {
  display:grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(17,17,17,.18);
}
.lm-co-strip .meta .k { font: 700 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55); }
.lm-co-strip .meta h3 { font: 700 32px/1.4 var(--font-jp); letter-spacing: .06em; margin: 14px 0 18px; color:#111; }
.lm-co-strip .meta p  { font: 400 15px/1.95 var(--font-jp); letter-spacing: .04em; color: rgba(17,17,17,.78); margin: 0; }
.lm-co-strip .lm-pill-outline--section-action { margin-top: 24px; }
.lm-co-strip .facts { margin: 0; display: grid; grid-template-columns: 1fr; row-gap: 18px; }
.lm-co-strip .facts > div {
  display:grid; grid-template-columns: 100px 1fr; align-items: baseline;
  padding-bottom: 16px; border-bottom: 1px dashed rgba(17,17,17,.22);
}
.lm-co-strip .facts dt { font: 700 12px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55); margin: 0; }
.lm-co-strip .facts dd { font: 600 16px/1.4 var(--font-jp); letter-spacing: .04em; color:#111; margin: 0; }

/* ── COMPANY: side-by-side intro + table ─────────────────────── */
.lm-company { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.lm-company .intro p {
  font: 400 16px/1.95 var(--font-jp); letter-spacing: 0.04em; color: #111111;
  margin: 0 0 32px;
}
.lm-company .table { background:#fff; border-radius: 28px; padding: 48px 56px; }
.lm-company .table dl { margin: 0; display:grid; grid-template-columns: 140px 1fr; row-gap: 20px; column-gap: 32px; }
.lm-company .table dt { font: 500 13px/1.6 var(--font-jp); letter-spacing: 0.12em; color: rgba(17,17,17,.55); margin: 0; }
.lm-company .table dd { font: 500 15px/1.6 var(--font-jp); letter-spacing: 0.04em; color:#111111; margin: 0; }

/* ── CONTACT: lower dark split panel ─────────────────────────── */
.lm-contact-cta {
  background: #111111;
  padding-top: 80px;
  padding-bottom: 80px;
}
.lm-contact-cta__panel {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0;
  border-radius: 32px 32px 32px 0; overflow: hidden;
  background: #111111;
}
.lm-contact-cta__photo {
  position: relative; min-height: 560px;
  background:
    linear-gradient(180deg, rgba(17,17,17,.12), rgba(17,17,17,.46)),
    url(../assets/top-contact-consultation.jpg) center/cover;
}
.lm-contact-cta__badge {
  position: absolute; top: 32px; left: 32px;
  background: #F4F4F4; color: #111111; padding: 10px 18px; border-radius: 9999px;
  font: 700 12px/1 var(--font-en); letter-spacing: .22em;
}
.lm-contact-cta__caption {
  position: absolute; left: 40px; bottom: 40px; color: #F4F4F4;
  text-shadow: 0 1px 24px rgba(0,0,0,.55); max-width: 440px;
}
.lm-contact-cta__caption-k {
  font: 700 11px/1 var(--font-en); letter-spacing: .22em; opacity: .9;
}
.lm-contact-cta__caption-title {
  font: 700 32px/1.4 var(--font-jp); letter-spacing: .06em; margin-top: 10px;
}
.lm-contact-cta__body {
  padding: 64px 68px; display: flex; flex-direction: column; gap: 20px;
}
.lm-contact-cta__eyebrow {
  font: 700 12px/1 var(--font-en); letter-spacing: .24em; color: rgba(244,244,244,.52);
}
.lm-contact-cta__title {
  font: 700 88px/1 var(--font-en); letter-spacing: .01em; color: #F4F4F4; margin: 0;
}
.lm-contact-cta__ja {
  font: 700 22px/1 var(--font-jp); letter-spacing: .12em; color: #F4F4F4; margin-top: 14px;
}
.lm-contact-cta__copy {
  font: 400 16px/1.95 var(--font-jp); letter-spacing: .04em;
  color: rgba(244,244,244,.78); max-width: 520px; margin: 0;
}
.lm-contact-cta__copy-unit {
  display: inline-block;
}
.lm-contact-cta__actions {
  display: flex; flex-direction: column; gap: 12px; margin-top: 4px;
}
.lm-contact-cta .lm-contact-btn {
  height: 76px;
  padding: 0 32px;
  border-radius: 22px;
  font-size: 18px;
  width: 100%;
}
.lm-contact-cta .lm-contact-btn .arrow {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}
.lm-contact-cta__info {
  display: flex; gap: 48px; margin-top: 10px; padding-top: 20px;
  border-top: 1px solid rgba(244,244,244,.18);
}
.lm-contact-cta__info-label {
  font: 700 12px/1 var(--font-en); letter-spacing: .24em; color: rgba(244,244,244,.52);
}
.lm-contact-cta__info-value {
  font: 700 18px/1 var(--font-en); letter-spacing: .04em; color: #F4F4F4; margin-top: 8px;
}
.lm-contact-btn {
  display:flex; align-items:center; justify-content:space-between;
  height: 88px; padding: 0 36px; border-radius: 24px; border: 0; cursor:pointer;
  font: 700 22px/1 var(--font-jp); letter-spacing: 0.12em;
  transition: transform 160ms var(--ease-out), opacity 160ms;
}
.lm-contact-btn:hover { transform: translateY(-1px); }
.lm-contact-btn .arrow {
  width: 44px; height: 44px; border-radius: 50%;
  display:inline-flex; align-items:center; justify-content:center; font-size: 18px;
}
.lm-contact-btn--primary   { background:#F4F4F4; color:#111111; }
.lm-contact-btn--primary .arrow { background:#111111; color:#F4F4F4; }
.lm-contact-btn--secondary { background: transparent; color:#F4F4F4; border:1px solid rgba(244,244,244,.4); }
.lm-contact-btn--secondary .arrow { background:#F4F4F4; color:#111111; }
.lm-contact-btn--dark { background: #111; color: #F4F4F4; width: 100%; }
.lm-contact-btn--dark .arrow { background: rgba(244,244,244,.18); color: #F4F4F4; }
.lm-contact-btn--light-outline {
  background: #F4F4F4; color: #111; border: 1px solid #111; width: 100%;
}
.lm-contact-btn--light-outline .arrow { background: #111; color: #F4F4F4; }
.lm-contact-btn,
.lm-contact-btn:link,
.lm-contact-btn:visited { text-decoration: none; }

/* ── HOME CONTACT: split photo panel ─────────────────────────── */
.lm-home-contact { background: #F4F4F4; }
.lm-home-contact__panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 32px; overflow: hidden;
  border: 1px solid rgba(17,17,17,.12); background: #fff;
}
.lm-home-contact__photo {
  position: relative; min-height: 640px;
  background: url(../assets/top-contact-consultation.jpg) center/cover;
}
.lm-home-contact__badge {
  position: absolute; top: 32px; left: 32px;
  background: #F4F4F4; color: #111; padding: 10px 18px; border-radius: 9999px;
  font: 700 12px/1 var(--font-en); letter-spacing: .22em;
}
.lm-home-contact__caption {
  position: absolute; left: 40px; bottom: 40px; color: #F4F4F4;
  text-shadow: 0 1px 24px rgba(0,0,0,.5); max-width: 440px;
}
.lm-home-contact__caption-k {
  font: 700 11px/1 var(--font-en); letter-spacing: .22em; opacity: .9;
}
.lm-home-contact__caption-title {
  font: 700 32px/1.4 var(--font-jp); letter-spacing: .06em; margin-top: 10px;
}
.lm-home-contact__body {
  padding: 80px 72px; display: flex; flex-direction: column; gap: 24px;
}
.lm-home-contact__eyebrow {
  font: 700 12px/1 var(--font-en); letter-spacing: .24em; color: rgba(17,17,17,.55);
}
.lm-home-contact__title {
  font: 700 96px/1 var(--font-en); letter-spacing: .01em; margin: 0;
}
.lm-home-contact__ja {
  font: 700 22px/1 var(--font-jp); letter-spacing: .12em; margin-top: 14px;
}
.lm-home-contact__copy {
  font: 400 16px/1.95 var(--font-jp); letter-spacing: .04em;
  color: rgba(17,17,17,.78); max-width: 520px; margin: 0;
}
.lm-home-contact__actions {
  display: flex; flex-direction: column; gap: 14px; margin-top: 8px;
}
.lm-home-contact__info {
  display: flex; gap: 48px; margin-top: 16px; padding-top: 24px;
  border-top: 1px solid rgba(17,17,17,.18);
}
.lm-home-contact__info-label {
  font: 700 12px/1 var(--font-en); letter-spacing: .24em; color: rgba(17,17,17,.55);
}
.lm-home-contact__info-value {
  font: 700 18px/1 var(--font-en); letter-spacing: .04em; margin-top: 8px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.lm-footer {
  background: #F4F4F4; color: #111; padding: 80px var(--lm-content-x) 40px;
  border-top: 1px solid rgba(17,17,17,.18);
}
.lm-footer__top {
  display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 40px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(17,17,17,.18);
}
.lm-footer__brand {
  display: inline-flex; align-items: center;
}
.lm-footer__brand img { height: 56px; width: auto; display: block; }
.lm-footer__tagline {
  font: 600 11px/1 var(--font-en); letter-spacing: .24em;
  color: rgba(17,17,17,.55); text-align: right;
}
.lm-footer__grid {
  display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 56px; padding-top: 56px;
}
.lm-footer__title {
  font: 700 13px/1 var(--font-en); letter-spacing: .22em; color: rgba(17,17,17,.55);
}
.lm-footer__text {
  font: 500 14px/1.84 var(--font-jp); letter-spacing: .04em; margin: 18px 0 0;
}
.lm-footer__title--spaced { margin-top: 32px; }
.lm-footer__list {
  margin: 18px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.lm-footer__item {
  font: 500 14px/1.4 var(--font-jp); letter-spacing: .04em;
}
.lm-footer__link {
  color: #111; text-decoration: none; border-bottom: 1px solid transparent;
  transition: border-color 160ms;
}
.lm-footer__link:hover { border-bottom-color: currentColor; }
.lm-footer__bottom {
  border-top: 1px solid rgba(17,17,17,.18); margin-top: 56px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font: 500 11px/1 var(--font-en); letter-spacing: .18em; color: rgba(17,17,17,.55);
}
.lm-footer__legal { display: flex; gap: 24px; }
.lm-footer__legal a { color: inherit; text-decoration: none; }

/* Responsive foundation: 1024px and below uses real layout instead of page scaling. */
@media (max-width: 1024px) {
  :root {
    --lm-canvas-width: 100%;
    --lm-content-width: calc(100vw - 48px);
    --lm-content-x: 24px;
    --lm-hero-scale: 1;
  }

  html,
  body {
    min-width: 0;
  }

  #stage {
    height: auto !important;
    overflow: visible !important;
  }

  #root {
    width: 100% !important;
    transform: none !important;
  }

  .lm-header {
    min-height: 72px;
    padding: 18px var(--lm-content-x);
  }

  .lm-header__logo img { height: 32px; }
  .lm-header__nav,
  .lm-header__actions { display: none; }

  .lm-header__menu {
    position: relative;
    z-index: 52;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(17,17,17,.16);
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .lm-header__menu span {
    width: 18px;
    height: 1.5px;
    background: #111;
    transition: transform 200ms, opacity 200ms;
  }

  .lm-header.is-open .lm-header__menu span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .lm-header.is-open .lm-header__menu span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

  .lm-header__drawer {
    position: fixed;
    z-index: 51;
    top: 72px;
    right: var(--lm-content-x);
    left: auto;
    width: min(520px, calc(100vw - (var(--lm-content-x) + var(--lm-content-x))));
    display: block;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px) scale(.985);
    transform-origin: top right;
    padding: 20px 22px 22px;
    border: 1px solid rgba(17,17,17,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 46px rgba(17,17,17,.12);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .lm-header.is-open .lm-header__drawer {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .lm-header__drawer-nav {
    display: grid;
    gap: 0;
    counter-reset: drawer-nav;
  }

  .lm-header__drawer-nav a {
    counter-increment: drawer-nav;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(17,17,17,.10);
    color: #111;
    text-decoration: none;
    font: 700 14px/1.35 var(--font-jp);
    letter-spacing: .06em;
  }

  .lm-header__drawer-nav a::before {
    content: counter(drawer-nav, decimal-leading-zero);
    font: 700 9px/1 var(--font-en);
    letter-spacing: .16em;
    color: rgba(17,17,17,.42);
  }

  .lm-header__drawer-nav a::after {
    content: '→';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #F4F4F4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: 500 13px/1 var(--font-jp);
    color: rgba(17,17,17,.78);
  }

  .lm-header__drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .lm-header__drawer-actions .lm-header__button {
    width: 100%;
    height: 42px;
    font-size: 12.5px;
    letter-spacing: .03em;
  }

  .lm-hero {
    width: 100% !important;
    height: auto !important;
    padding: 24px var(--lm-content-x) 80px;
    overflow: hidden;
  }

  .lm-hero__stage {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
  }

  .lm-hero__media {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 600px !important;
    clip-path: none !important;
    border-radius: 32px;
  }

  .lm-hero__media-row--top { height: 42% !important; }
  .lm-hero__media-row--bottom { flex: 1 1 0 !important; }

  .lm-hero__wash {
    background: linear-gradient(180deg, rgba(244,244,244,0) 28%, rgba(244,244,244,.72) 56%, rgba(244,244,244,.98) 80%);
  }

  .lm-hero__headline {
    left: 32px !important;
    top: 350px !important;
    width: min(620px, calc(100% - 64px)) !important;
  }

  .lm-hero__headline h1 {
    font-size: 46px;
    line-height: 1.32;
  }

  .lm-hero__en {
    margin-top: 14px;
    font-size: 15px;
  }

  .lm-hero__headline p {
    margin-top: 18px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.78;
  }

  .lm-hero__pickup {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: min(480px, calc(100% - 32px)) !important;
    height: auto !important;
    margin: 24px 16px 0 auto;
    background: transparent;
    border-radius: 0;
  }

  .lm-hero__pickup-inner {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 20px 52px rgba(17,17,17,.14);
  }

  .lm-hero__pickup h2 { font-size: 26px; }
  .lm-hero__pickup-image { height: 160px; border-radius: 20px; }
  .lm-hero__pickup h3 { font-size: 18px; }

  .lm-section {
    width: 100%;
    padding: 88px var(--lm-content-x);
  }

  .lm-section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }

  .lm-section-head h2 {
    font-size: 52px;
    line-height: 1.12;
    text-underline-offset: 10px;
  }

  .lm-section-head .ja {
    font-size: 16px;
    margin-top: 14px;
  }

  .lm-section-head .lead {
    flex-basis: auto;
    max-width: 760px;
    font-size: 14px;
  }

  .lm-pill-outline--section-action {
    --lm-pill-width: min(315px, 100%);
    --lm-pill-height: 64px;
    --lm-pill-padding: 0 34px;
    --lm-pill-gap: 14px;
    --lm-pill-font-size: 15px;
  }

  .lm-home-service {
    width: 100%;
    padding: 0 0 72px;
  }

  .lm-home-service__inner {
    width: var(--lm-content-width);
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 88px;
  }

  .lm-home-service__intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px 40px;
    align-items: end;
    padding: 40px;
  }

  .lm-home-service__copy {
    max-width: 560px;
    margin-top: 24px;
  }

  .lm-home-service__action {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }

  .lm-home-service__grid,
  .lm-grid--3,
  .lm-grid--2,
  .lm-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lm-track-marker .lm-track-line-after { display: none; }

  .lm-news-row {
    grid-template-columns: 120px 110px 1fr 38px;
    gap: 20px;
    padding: 24px 0;
  }

  .lm-news-row .arrow {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .lm-news-filter-section {
    padding-top: 0;
    padding-bottom: 14px;
  }

  .lm-news-list-section {
    padding-top: 0;
  }

  .lm-news-row:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .lm-co-mosaic {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 260px 260px;
  }

  .lm-co-mosaic .m-large { grid-column: 1; grid-row: 1 / span 2; }
  .lm-co-mosaic .m-tall { grid-column: 2; grid-row: 1; }
  .lm-co-mosaic .m-mid:nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .lm-co-mosaic .m-mid:nth-of-type(4) { display: none; }

  .lm-co-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lm-home-contact__panel {
    grid-template-columns: 1fr;
  }

  .lm-contact-cta__panel {
    grid-template-columns: 1fr;
    border-radius: 32px;
  }

  .lm-contact-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lm-home-contact__photo {
    min-height: 420px;
  }

  .lm-contact-cta__photo {
    min-height: 360px;
  }

  .lm-home-contact__body {
    padding: 48px;
  }

  .lm-contact-cta__body {
    padding: 42px;
  }

  .lm-home-contact__title {
    font-size: 72px;
  }

  .lm-contact-cta__title {
    font-size: 64px;
  }

  .lm-footer {
    padding: 64px var(--lm-content-x) 32px;
  }

  .lm-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --lm-content-width: calc(100vw - 40px);
    --lm-content-x: 20px;
  }

  .lm-header {
    min-height: 68px;
    padding: 16px var(--lm-content-x);
  }

  .lm-header__logo img { height: 28px; }
  .lm-header__menu { width: 44px; height: 44px; }
  .lm-header__drawer {
    top: 68px;
    padding: 18px 20px 20px;
    border-radius: 24px;
  }

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

  .lm-hero {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .lm-hero__media {
    height: auto !important;
    aspect-ratio: 1122 / 1402;
    border-radius: 28px;
  }

  .lm-hero__media-image {
    background-image: url(../assets/top-hero-collage-mobile.png);
    background-size: cover;
    background-position: center top;
  }

  .lm-hero__wash {
    background: linear-gradient(180deg, rgba(244,244,244,0) 34%, rgba(244,244,244,.54) 64%, rgba(244,244,244,.96) 90%);
  }

  .lm-hero__media-row--top { height: 40% !important; }

  .lm-hero__headline {
    left: 22px !important;
    top: clamp(218px, 60vw, 264px) !important;
    width: calc(100% - 44px) !important;
  }

  .lm-hero__headline h1 {
    font-size: 32px;
    line-height: 1.38;
    letter-spacing: .04em;
  }

  .lm-hero__en {
    font-size: 12px;
    line-height: 1.5;
  }

  .lm-hero__headline p {
    font-size: 12px;
    line-height: 1.72;
  }

  .lm-hero__headline p br { display: none; }

  .lm-hero__pickup {
    width: calc(100% - 18px) !important;
    margin: 28px auto 0;
  }

  .lm-hero__pickup-inner {
    padding: 22px;
    border-radius: 24px;
  }

  .lm-hero__pickup-head {
    align-items: center;
  }

  .lm-hero__pickup h2 { font-size: 22px; }
  .lm-hero__pickup-ja { font-size: 11px; }
  .lm-hero__pickup-arrows .lm-arrow-btn { width: 32px; height: 32px; }
  .lm-hero__pickup-image { height: 132px; margin-top: 20px; }
  .lm-hero__pickup h3 { font-size: 15px; line-height: 1.5; }

  .lm-section {
    padding: 72px var(--lm-content-x);
  }

  .lm-section-head {
    gap: 20px;
    margin-bottom: 34px;
  }

  .lm-section-head h2,
  .lm-home-service__title {
    font-size: 40px;
    line-height: 1.4;
  }

  .lm-section-head .ja,
  .lm-home-service__ja {
    font-size: 14px;
    letter-spacing: .08em;
  }

  .lm-section-head .lead {
    font-size: 13px;
    line-height: 1.8;
  }

  .lm-home-service {
    padding-bottom: 56px;
  }

  .lm-home-service__inner {
    width: var(--lm-content-width);
    gap: 40px;
    padding-top: 56px;
  }

  .lm-home-service__intro {
    display: block;
    padding: 30px 26px;
    border-radius: 26px;
  }

  .lm-home-service__copy {
    font-size: 13px;
  }

  .lm-home-service__action {
    margin-top: 32px;
  }

  .lm-home-service__grid,
  .lm-grid--3,
  .lm-grid--2,
  .lm-track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lm-svc-card-b .thumb,
  .lm-track-photo {
    border-radius: 24px;
  }

  .lm-svc-card-b .title,
  .lm-track-title {
    font-size: 18px;
  }

  .lm-news-card {
    border-radius: 26px;
    aspect-ratio: 348 / 197;
    overflow: hidden;
  }

  .lm-news-card .label {
    width: calc(78% + 2px);
    padding: 14px 18px 16px 20px;
    border-radius: 0 28px 18px 0;
    gap: 6px;
  }

  .lm-news-card .title {
    font-size: 14px;
  }

  .lm-news-card .copy {
    display: none;
  }

  .lm-news-card .arrow {
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
    font-size: 15px;
    background: #9F9F9F;
    box-shadow: 0 10px 24px rgba(17,17,17,.16);
  }

  .lm-news-row {
    grid-template-columns: 1fr 34px;
    gap: 10px 16px;
    padding: 24px 0;
  }

  .lm-news-filter-section {
    padding-top: 0;
    padding-bottom: 12px;
  }

  .lm-news-list-section {
    padding-top: 0;
  }

  .lm-news-row .date,
  .lm-news-row .cat {
    grid-column: 1;
  }

  .lm-news-row .date {
    font-size: 14px;
    letter-spacing: .18em;
  }

  .lm-news-row .cat {
    width: fit-content;
    height: 30px;
    padding: 0 14px;
  }

  .lm-news-row .title {
    grid-column: 1;
    font-size: 15px;
    line-height: 1.62;
  }

  .lm-news-row .arrow {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lm-pagination {
    margin-top: 44px;
    gap: 8px;
  }

  .lm-pagination .page {
    width: 42px;
    height: 42px;
  }

  .lm-co-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 160px;
    gap: 12px;
  }

  .lm-co-mosaic .m-large { grid-column: 1 / span 2; grid-row: 1; }
  .lm-co-mosaic .m-tall { grid-column: 1; grid-row: 2; }
  .lm-co-mosaic .m-mid:nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .lm-co-mosaic .cap .t { font-size: 20px; }

  .lm-co-strip {
    margin-top: 36px;
    padding-top: 32px;
  }

  .lm-co-strip .meta h3 {
    font-size: clamp(18px, 4.8vw, 24px);
    letter-spacing: .02em;
    line-height: 1.45;
    white-space: nowrap;
  }

  .lm-co-strip .facts > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lm-home-contact__photo {
    min-height: 320px;
  }

  .lm-contact-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .lm-contact-cta__photo {
    min-height: 280px;
  }

  .lm-home-contact__caption {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .lm-contact-cta__caption {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .lm-home-contact__caption-title {
    font-size: 22px;
  }

  .lm-contact-cta__caption-title {
    font-size: 22px;
  }

  .lm-home-contact__body {
    padding: 34px 26px;
  }

  .lm-contact-cta__body {
    padding: 30px 26px;
  }

  .lm-home-contact__title {
    font-size: 46px;
  }

  .lm-contact-cta__title {
    font-size: 44px;
  }

  .lm-home-contact__ja {
    font-size: 16px;
  }

  .lm-contact-cta__ja {
    font-size: 16px;
  }

  .lm-contact-btn {
    height: 68px;
    padding: 0 22px;
    border-radius: 20px;
    font-size: 15px;
  }

  .lm-contact-btn .arrow {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 16px;
  }

  .lm-home-contact__info {
    flex-direction: column;
    gap: 20px;
  }

  .lm-contact-cta__info {
    flex-direction: column;
    gap: 20px;
  }

  .lm-footer {
    padding-top: 52px;
  }

  .lm-footer__top,
  .lm-footer__grid,
  .lm-footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
    gap: 28px;
  }

  .lm-footer__brand {
    align-self: start;
  }

  .lm-footer__brand img {
    height: 40px;
  }

  .lm-footer__tagline {
    text-align: left;
    line-height: 1.5;
  }

  .lm-footer__bottom {
    align-items: start;
  }

  .lm-footer__legal {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

@media (max-width: 1024px) {
  .lm-page-hero {
    width: 100%;
    padding: 56px var(--lm-content-x) 72px;
  }

  .lm-page-hero .inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }

  .lm-page-hero .head .en {
    font-size: 64px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .lm-page-hero .lead {
    max-width: 720px;
    font-size: 14px;
  }

  .lm-works-filter {
    gap: 10px;
    padding-bottom: 22px;
  }

  .lm-works-filter .chip {
    height: 38px;
    padding: 0 18px;
    font-size: 11px;
  }

  .lm-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 32px;
  }

  .lm-work-card {
    gap: 12px;
  }

  .lm-work-card .thumb {
    border-radius: 24px;
  }

  .lm-work-card .meta {
    align-items: flex-start;
    gap: 12px;
  }

  .lm-work-card .cat {
    min-height: 28px;
    line-height: 1.15;
    white-space: normal;
  }

  .lm-contact-btn .arrow {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .lm-svc-index {
    grid-template-columns: 1fr;
  }

  .lm-svc-index li:nth-child(odd) {
    border-right: 0;
  }

  .lm-svc-index a {
    grid-template-columns: 72px minmax(0, 1fr) 32px;
    gap: 20px;
    padding: 24px 0;
  }

  .lm-svc-index a:hover {
    padding-left: 0;
  }

  .lm-svc-detail,
  .lm-philosophy,
  .lm-map {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lm-svc-detail.is-flip .media {
    order: 0;
  }

  .lm-svc-list {
    gap: 88px;
  }

  .lm-svc-detail .body .jp {
    font-size: 32px;
  }

  .lm-company-about {
    min-height: auto;
  }

  .lm-about-body {
    isolation: isolate;
    min-height: clamp(820px, 82vw, 860px);
    padding: clamp(28px, 4vw, 44px) 0 clamp(210px, 24vw, 260px);
    border-radius: 34px;
    overflow: hidden;
    background: transparent;
  }

  .lm-about-body::before {
    content: "";
    position: absolute;
    inset: -24px 31% 24% -24px;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(105deg, rgba(244,244,244,.94) 0%, rgba(244,244,244,.86) 54%, rgba(244,244,244,.52) 76%, rgba(244,244,244,0) 100%),
      radial-gradient(circle at 26% 32%, rgba(255,255,255,.82) 0 18%, rgba(255,255,255,0) 58%);
    filter: blur(8px);
  }

  .lm-about-body .copy {
    width: 100%;
    max-width: min(680px, 63%);
    padding: clamp(20px, 3vw, 32px) 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .lm-about-collage {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: auto;
    margin-top: 0;
    overflow: visible;
  }

  .lm-about-collage__tile--edge {
    width: clamp(132px, 18vw, 184px);
    height: clamp(159px, 22vw, 222px);
    left: -86px;
    top: 36%;
  }

  .lm-about-collage__tile--left {
    width: clamp(330px, 44vw, 460px);
    height: clamp(202px, 27vw, 281px);
    left: -76px;
    top: auto;
    bottom: 24px;
  }

  .lm-about-collage__tile--center {
    width: clamp(360px, 46vw, 480px);
    height: clamp(227px, 29vw, 303px);
    left: auto;
    right: -48px;
    top: clamp(490px, 50vw, 520px);
  }

  .lm-about-collage__tile--right {
    width: clamp(350px, 47vw, 480px);
    height: clamp(158px, 21vw, 216px);
    left: auto;
    right: -128px;
    top: -12px;
  }

  .lm-about-collage__tile--large {
    width: clamp(300px, 38vw, 380px);
    height: clamp(202px, 25.5vw, 256px);
    left: auto;
    right: -92px;
    top: 250px;
    bottom: auto;
  }

  .lm-company-table .row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lm-philosophy .portrait {
    aspect-ratio: 16 / 10;
  }

  .lm-company-table dd,
  .lm-map .addr .v {
    overflow-wrap: anywhere;
  }

  .lm-work-detail-head {
    max-width: 900px;
  }

  .lm-work-detail-head .t {
    font-size: clamp(36px, 5vw, 46px);
    line-height: 1.45;
  }

  .lm-work-detail-head .lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .lm-work-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lm-work-gallery .main {
    aspect-ratio: 16 / 9;
    border-radius: 26px;
  }

  .lm-work-gallery .subs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .lm-work-gallery .sub {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
  }

  .lm-work-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lm-work-detail-grid .aside {
    position: static;
    display: grid;
    grid-template-columns: minmax(96px, .28fr) minmax(0, 1fr);
    gap: 14px 24px;
    padding: 24px;
    border: 1px solid rgba(17,17,17,.16);
    border-radius: 24px;
    background: #fff;
  }

  .lm-work-detail-grid .aside .k {
    margin-top: 0 !important;
  }

  .lm-work-detail-table .row {
    grid-template-columns: 150px 1fr;
    gap: 24px;
  }

  .lm-work-pager {
    gap: 20px;
  }

  .lm-work-pager .t {
    font-size: 14px;
  }

  .lm-article {
    max-width: 760px;
  }

  .lm-article-wrap {
    padding-bottom: 80px !important;
  }

  .lm-article-date .y,
  .lm-article-date .md,
  .lm-article-date .sep {
    font-size: 44px;
  }

  .lm-article-title {
    font-size: 30px;
    margin-bottom: 48px;
  }

  .lm-news-pager {
    gap: 18px;
  }

  .lm-news-pager a {
    min-height: 108px;
    padding: 26px;
    border-radius: 18px;
  }

  .lm-form {
    gap: 40px;
  }

  .lm-form-grid {
    gap: 24px;
  }

  .lm-form .type-chip span {
    min-height: 44px;
    height: auto;
    padding: 12px 20px;
    line-height: 1.35;
  }

  .lm-thanks {
    margin: 48px auto;
  }

  .lm-policy-toc {
    gap: 18px 28px;
    padding: 18px 0 42px;
    margin-bottom: 48px;
  }

  .lm-policy {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 0;
  }

  .lm-policy header h2 {
    max-width: 760px;
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .lm-page-hero {
    padding: 42px var(--lm-content-x) 56px;
  }

  .lm-page-hero .head .en {
    font-size: 42px;
  }

  .lm-page-hero .head .ja {
    font-size: 14px;
    margin-top: 16px;
  }

  .lm-page-hero .lead {
    font-size: 13px;
  }

  .lm-breadcrumb {
    gap: 7px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .lm-breadcrumb a,
  .lm-breadcrumb .sep {
    flex: 0 0 auto;
  }

  .lm-breadcrumb .cur {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lm-works-filter {
    gap: 10px 8px;
    padding-bottom: 22px;
  }

  .lm-works-filter .chip {
    height: 38px;
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: .12em;
  }

  .lm-works-filter .count {
    flex-basis: 100%;
    margin-left: 0;
    text-align: right;
  }

  .lm-works-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .lm-work-card .thumb {
    border-radius: 24px;
  }

  .lm-work-card .thumb .arrow {
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lm-work-card .t {
    font-size: 19px;
    line-height: 1.45;
  }

  .lm-work-card .c {
    font-size: 14px;
    line-height: 1.8;
  }

  .lm-svc-index a {
    grid-template-columns: 1fr 32px;
    gap: 8px 16px;
    padding: 18px 0;
  }

  .lm-svc-index .no,
  .lm-svc-index .jp {
    grid-column: 1;
  }

  .lm-svc-index .no {
    font-size: 12px;
  }

  .lm-svc-index .jp {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .04em;
  }

  .lm-svc-index .arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .lm-svc-detail {
    gap: 28px;
  }

  .lm-svc-detail .body {
    gap: 16px;
  }

  .lm-svc-detail .body .jp {
    font-size: 24px;
  }

  .lm-svc-detail .body .tagline {
    font-size: 15px;
  }

  .lm-svc-detail .body .body-copy {
    font-size: 14px;
    line-height: 1.9;
  }

  .lm-svc-detail .scope {
    padding-top: 20px;
  }

  .lm-svc-detail .scope ul {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .lm-about-collage {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    inset: auto;
    justify-self: center;
    width: min(100%, 640px);
    height: auto;
    aspect-ratio: 900 / 720;
    margin-top: 0;
    margin-bottom: clamp(24px, calc(3px + 5.3vw), 44px);
    border-radius: 0;
    overflow: visible;
    isolation: isolate;
    background: url(../assets/company-about-collage-mobile.png) center top / contain no-repeat;
    transform: scale(clamp(1.08, calc(.977 + 2.65vw), 1.18));
    transform-origin: center top;
  }

  .lm-about-collage::after {
    display: none;
  }

  .lm-about-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    overflow: visible;
  }

  .lm-about-body::before {
    display: none;
  }

  .lm-about-body .copy {
    display: block;
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .lm-about-body .copy p {
    position: relative;
    font-size: 14px;
    line-height: 1.9;
    margin: 24px 0 0;
  }

  .lm-about-body .copy p:first-child {
    width: auto;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .lm-about-collage__tile--edge {
    display: none;
  }

  .lm-about-collage__tile--left {
    display: none;
  }

  .lm-about-collage__tile--center {
    display: none;
  }

  .lm-about-collage__tile--right {
    display: none;
  }

  .lm-about-collage__tile--large {
    display: none;
  }

  .lm-company-table .row {
    padding: 20px 0;
  }

  .lm-company-table dt {
    font-size: 12px;
  }

  .lm-company-table dd {
    font-size: 15px;
    line-height: 1.7;
  }

  .lm-philosophy .msg p {
    font-size: 14px;
    line-height: 1.9;
  }

  .lm-philosophy .sign {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .lm-map .map-area .placeholder {
    max-width: 240px;
    text-align: center;
    line-height: 1.5;
  }

  .lm-map .map-area {
    width: 100%;
  }

  .lm-work-detail-head .meta {
    gap: 10px;
    margin-bottom: 18px;
  }

  .lm-work-detail-head .cat {
    font-size: 10px;
    letter-spacing: .16em;
    padding: 6px 12px;
  }

  .lm-work-detail-head .date {
    font-size: 12px;
  }

  .lm-work-detail-head .t {
    font-size: 27px;
    line-height: 1.55;
  }

  .lm-work-detail-head .lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .lm-work-detail-head .client {
    margin-top: 24px;
    font-size: 11px;
    line-height: 1.5;
  }

  .lm-work-gallery {
    gap: 12px;
  }

  .lm-work-gallery .main {
    border-radius: 24px;
  }

  .lm-work-gallery .subs {
    gap: 12px;
  }

  .lm-work-gallery .sub {
    border-radius: 18px;
  }

  .lm-work-detail-grid {
    gap: 28px;
  }

  .lm-work-detail-grid .aside {
    grid-template-columns: minmax(82px, .36fr) minmax(0, 1fr);
    gap: 12px 16px;
    padding: 20px;
    border-radius: 20px;
  }

  .lm-work-detail-grid .aside .k {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .lm-work-detail-grid .aside .v {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .lm-work-detail-table .row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .lm-work-detail-table dt {
    font-size: 12px;
  }

  .lm-work-detail-table dd {
    font-size: 14px;
    line-height: 1.9;
  }

  .lm-work-pager {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .lm-work-pager .index {
    order: -1;
    padding: 14px 22px;
    text-align: center;
  }

  .lm-work-pager .index.lm-pill-outline--back-action {
    --lm-pill-width: 220px;
    --lm-pill-height: 52px;
    --lm-pill-padding: 0 22px;
    --lm-pill-gap: 10px;
    --lm-pill-font-size: 13px;
    --lm-pill-circle-size: 24px;
    --lm-pill-circle-font-size: 13px;
    width: var(--lm-pill-width);
    margin: 0 auto;
  }

  .lm-work-pager .prev,
  .lm-work-pager .next {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(17,17,17,.18);
    border-radius: 16px;
    background: #fff;
    text-align: left;
  }

  .lm-work-pager .k {
    font-size: 11px;
    letter-spacing: .22em;
  }

  .lm-work-pager .t {
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .lm-article-wrap {
    padding-bottom: 64px !important;
  }

  .lm-article-date {
    align-items: center;
    gap: 7px;
    margin: 0 0 20px;
  }

  .lm-article-date .y,
  .lm-article-date .md,
  .lm-article-date .sep {
    font-size: 34px;
  }

  .lm-article-date .sep.small {
    padding: 0 3px;
  }

  .lm-article-cat {
    margin-bottom: 22px;
    padding: 7px 14px;
    font-size: 10px;
  }

  .lm-article-title {
    font-size: 23px;
    line-height: 1.62;
    margin-bottom: 34px;
    padding-bottom: 28px;
  }

  .lm-article-body p {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .lm-article-foot {
    margin-top: 44px;
    display: flex;
    justify-content: center;
  }

  .lm-article-foot .lm-pill-outline {
    width: 100%;
  }

  .lm-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
  }

  .lm-article-meta .lm-article-date {
    display: inline-flex;
    align-items: center;
    margin: 0;
    flex: 0 1 auto;
    min-height: 26px;
  }

  .lm-article-meta .lm-article-date .y,
  .lm-article-meta .lm-article-date .md,
  .lm-article-meta .lm-article-date .sep {
    display: none;
  }

  .lm-article-meta .lm-article-date .full {
    display: inline;
    font: 700 13px/1 var(--font-en);
    letter-spacing: .16em;
    color: #111;
  }

  .lm-article-meta .lm-article-date .sep.small {
    padding: 0 2px;
  }

  .lm-article-meta .lm-article-cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 26px;
    margin-bottom: 0;
    padding: 0 13px;
    border: 1px solid rgba(17,17,17,.32);
    background: transparent;
    color: #111;
    font-size: 10px;
    letter-spacing: .16em;
  }

  .lm-article-title {
    font-size: 20px;
    line-height: 1.68;
    margin-bottom: 30px;
  }

  .lm-article-foot .lm-pill-outline--back-action {
    --lm-pill-width: 256px;
    --lm-pill-height: 52px;
    --lm-pill-padding: 0 22px;
    --lm-pill-gap: 10px;
    --lm-pill-font-size: 13px;
    --lm-pill-circle-size: 24px;
    --lm-pill-circle-font-size: 13px;
    width: var(--lm-pill-width);
    margin: 0 auto;
  }

  .lm-news-pager {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lm-news-pager .next {
    text-align: left;
  }

  .lm-news-pager a {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .lm-news-pager .t {
    font-size: 14px;
    line-height: 1.6;
  }

  .lm-news-pager-index {
    margin-top: 24px;
    justify-content: center;
  }

  .lm-news-pager-index .index {
    width: 100%;
    padding: 15px 24px;
    text-align: center;
  }

  .lm-news-pager-index .index.lm-pill-outline--back-action {
    --lm-pill-width: 220px;
    --lm-pill-height: 52px;
    --lm-pill-padding: 0 22px;
    --lm-pill-gap: 10px;
    --lm-pill-font-size: 13px;
    --lm-pill-circle-size: 24px;
    --lm-pill-circle-font-size: 13px;
    width: var(--lm-pill-width);
    padding: var(--lm-pill-padding);
    margin: 0 auto;
  }

  .lm-form {
    gap: 32px;
  }

  .lm-form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lm-form-block {
    gap: 12px;
  }

  .lm-form-block .lab {
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .lm-form-block .hint {
    flex-basis: 100%;
    line-height: 1.5;
  }

  .lm-form input[type="text"],
  .lm-form input[type="email"],
  .lm-form input[type="tel"],
  .lm-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 14px;
  }

  .lm-form textarea {
    min-height: 180px;
  }

  .lm-form .types {
    gap: 10px 8px;
  }

  .lm-form .type-chip span {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 13px;
    letter-spacing: .04em;
  }

  .lm-form .file-box {
    padding: 20px;
    border-radius: 14px;
  }

  .lm-form .file-box .cta {
    height: 42px;
    padding: 0 20px;
    font-size: 11px;
  }

  .lm-form-agree .agree {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.7;
  }

  .lm-form-submit {
    gap: 14px;
  }

  .lm-form-submit .lm-contact-btn {
    width: 100%;
    max-width: 360px;
    min-width: 0 !important;
  }

  .lm-form-submit .lm-form-submit-button {
    height: 58px;
    gap: 14px;
  }

  .lm-form-submit .lm-form-submit-button .arrow {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .lm-form-submit .reply {
    font-size: 12px;
    line-height: 1.75;
    text-align: center;
  }

  .lm-thanks {
    margin: 36px auto;
    gap: 20px;
  }

  .lm-thanks h1 {
    font-size: 27px;
    line-height: 1.55;
  }

  .lm-thanks p {
    font-size: 14px;
    line-height: 1.9;
  }

  .lm-thanks .ctas {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .lm-thanks .ctas .lm-thanks-button {
    --lm-pill-width: min(280px, 100%);
    --lm-pill-height: 60px;
    --lm-pill-padding: 0 26px;
    --lm-pill-gap: 12px;
    --lm-pill-font-size: 13.5px;
    --lm-pill-circle-size: 28px;
    --lm-pill-circle-font-size: 14px;
    width: var(--lm-pill-width);
    min-width: 0;
    height: var(--lm-pill-height);
    flex-basis: auto;
    margin: 0 auto;
  }

  .lm-policy-toc {
    display: grid;
    gap: 14px;
    padding: 8px 0 32px;
    margin-bottom: 36px;
  }

  .lm-policy-toc a {
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: .14em;
  }

  .lm-policy {
    gap: 18px;
    padding: 34px 0;
    scroll-margin-top: 80px;
  }

  .lm-policy header h2 {
    font-size: 22px;
    line-height: 1.55;
    letter-spacing: .04em;
    margin-top: 12px;
  }

  .lm-policy .body p,
  .lm-policy .body ol li {
    font-size: 14px;
    line-height: 1.9;
  }

  .lm-policy .body ol {
    padding-left: 1.25em;
  }
}

@media (max-width: 768px) {
  .lm-news-row {
    grid-template-columns: auto minmax(0, 1fr) 34px;
    gap: 10px 16px;
    align-items: start;
  }

  .lm-news-row .date {
    grid-column: 1;
    grid-row: 1;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    align-self: center;
  }

  .lm-news-row .cat {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .lm-news-row .title {
    grid-column: 1 / span 2;
    grid-row: 2;
  }

  .lm-news-row .arrow {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lm-hero__sp-break {
    display: block;
  }

  .lm-hero__pickup {
    width: min(100%, 480px) !important;
    margin: 28px auto 0 !important;
  }

  .lm-co-strip .lm-pill-outline--section-action {
    display: flex;
    margin: 24px auto 0;
  }
}

@media (min-width: 560px) and (max-width: 767px) {
  .lm-hero {
    padding-bottom: 58px;
  }

  .lm-hero__media {
    aspect-ratio: 1672 / 941;
    border-radius: 30px;
  }

  .lm-hero__media-image {
    background-image: url(../assets/top-hero-collage-tablet.png);
    background-size: cover;
    background-position: center top;
  }

  .lm-hero__wash {
    background:
      radial-gradient(circle at 26% 58%, rgba(244,244,244,.9) 0 14%, rgba(244,244,244,.62) 30%, rgba(244,244,244,0) 54%),
      linear-gradient(180deg, rgba(244,244,244,0) 28%, rgba(244,244,244,.74) 58%, rgba(244,244,244,.98) 94%);
  }

  .lm-hero__headline {
    top: clamp(142px, calc(16.7vw + 48px), 178px) !important;
    width: min(560px, calc(100% - 56px)) !important;
  }

  .lm-hero__pickup {
    width: min(430px, calc(100% - 72px)) !important;
    margin-top: 24px !important;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .lm-hero {
    padding-top: 24px;
    padding-bottom: 64px;
  }

  .lm-hero__stage {
    min-height: 0;
  }

  .lm-hero__media {
    height: auto !important;
    aspect-ratio: 1672 / 941;
    border-radius: 32px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .lm-hero__media-image {
    background-image: url(../assets/top-hero-collage-tablet.png);
    background-size: cover;
    background-position: center top;
  }

  .lm-hero__wash {
    background: linear-gradient(180deg, rgba(244,244,244,0) 38%, rgba(244,244,244,.44) 68%, rgba(244,244,244,.96) 96%);
  }

  .lm-hero__headline {
    left: 32px !important;
    top: clamp(230px, calc(59.1vw - 224px), 308px) !important;
    width: min(600px, calc(100% - 64px)) !important;
  }

  .lm-hero__headline h1 {
    font-size: clamp(34px, 4.2vw, 38px);
    line-height: 1.38;
    letter-spacing: .04em;
  }

  .lm-hero__en {
    font-size: 13px;
    line-height: 1.55;
  }

  .lm-hero__headline p {
    max-width: 460px;
    font-size: 13px;
    line-height: 1.74;
  }

  .lm-hero__pickup {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: min(430px, calc(100% - 64px)) !important;
    height: auto !important;
    margin: 28px auto 0 !important;
    background: transparent;
    border-radius: 0;
  }

  .lm-hero__pickup-inner {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    padding: 24px;
    border-radius: 26px;
    box-shadow: 0 22px 54px rgba(17,17,17,.14);
  }

  .lm-hero__pickup h2 { font-size: 24px; }
  .lm-hero__pickup-ja { margin-top: 8px; font-size: 10px; }
  .lm-hero__pickup-arrows .lm-arrow-btn { width: 30px; height: 30px; font-size: 13px; }
  .lm-hero__pickup-image { height: 142px; margin-top: 18px; border-radius: 18px; }
  .lm-hero__pickup h3 { margin-top: 18px; font-size: 16px; line-height: 1.45; }
  .lm-hero__pickup-date { font-size: 11px; padding-top: 12px; }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .lm-hero {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .lm-hero__stage {
    min-height: clamp(390px, calc(48.78vw - 50px), 450px);
  }

  .lm-hero__media {
    height: auto !important;
    aspect-ratio: 3520 / 1520;
    border-radius: 0;
    -webkit-mask-image: var(--lm-hero-media-mask);
    mask-image: var(--lm-hero-media-mask);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .lm-hero__media-image {
    background-size: 100% auto;
    background-position: center top;
  }

  .lm-hero__wash {
    background: linear-gradient(180deg, rgba(244,244,244,0) 34%, rgba(244,244,244,.76) 62%, rgba(244,244,244,1) 86%);
  }

  .lm-hero__headline {
    top: clamp(200px, calc(69.92vw - 430px), 286px) !important;
    width: min(780px, calc(100% - 64px)) !important;
  }

  .lm-hero__headline h1 {
    font-size: 40px;
    line-height: 1.34;
  }

  .lm-hero__pickup {
    --lm-pickup-offset: clamp(21px, 2.38vw, 24px);
    --lm-pickup-padding: clamp(19px, 2.2vw, 22px);
    --lm-pickup-radius: clamp(16px, 1.78vw, 18px);
    position: absolute !important;
    top: clamp(96px, 10.75vw, 110px) !important;
    right: 0 !important;
    left: auto !important;
    width: clamp(272px, 30.5vw, 312px) !important;
    height: clamp(272px, 30.5vw, 312px) !important;
    margin: 0;
    background: #F4F4F4;
    border-radius: clamp(35px, 3.9vw, 40px) 0 0 0;
  }

  .lm-hero__pickup-inner {
    position: absolute !important;
    left: var(--lm-pickup-offset) !important;
    top: var(--lm-pickup-offset) !important;
    width: calc(100% - var(--lm-pickup-offset)) !important;
    height: calc(100% - var(--lm-pickup-offset)) !important;
    padding: var(--lm-pickup-padding);
    border-radius: var(--lm-pickup-radius);
  }

  .lm-hero__pickup h2 { font-size: 24px; }
  .lm-hero__pickup-ja { margin-top: 8px; font-size: 10px; }
  .lm-hero__pickup-arrows .lm-arrow-btn { width: 30px; height: 30px; font-size: 13px; }
  .lm-hero__pickup-image { height: clamp(112px, 12vw, 128px); margin-top: 18px; border-radius: 18px; }
  .lm-hero__pickup h3 { margin-top: 18px; font-size: 16px; line-height: 1.45; }
  .lm-hero__pickup-date { font-size: 11px; padding-top: 12px; }

  .lm-svc-detail {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 48px;
  }

  .lm-svc-detail.is-flip .media {
    order: 2;
  }

  .lm-svc-detail .body .jp {
    font-size: 30px;
  }

  .lm-svc-detail .body .body-copy {
    font-size: 14px;
    line-height: 1.9;
  }

  .lm-philosophy {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
  }

  .lm-philosophy .portrait {
    aspect-ratio: 4 / 3;
  }

  .lm-map {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
    gap: 40px;
  }

  .lm-map .map-area {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 900px) {
  .lm-svc-detail .media {
    aspect-ratio: 16 / 10;
  }

  .lm-pill-outline--service-consult {
    display: flex;
    margin: 10px auto 0;
  }
}
