/* =========================================================
   omoroi unified.css（Refactor）
   - 見た目は変えない
   - 重複定義を整理し、必要な差分だけ残す
========================================================= */

/* =========================================================
   Tokens / Base
========================================================= */
:root {
  --bg: #ffffff;
  --text: #1e1f1c;
  --muted: #5e6460;
  --green: #2f7b5e;
  --line: rgba(25, 33, 28, 0.08);
  --shadow: 0 8px 24px rgba(24, 35, 29, 0.08);
  --radius: 18px;
  --max-width: 1120px;

  /* Products accent presets */
  --accent-red: 219, 68, 55;
  --accent-blue: 66, 133, 244;
  --accent-yellow: 244, 180, 0;
  --accent-green: 47, 123, 94;
}

* { box-sizing: border-box; }
html, body { width: 100%; }

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Space Grotesk", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7; /* TOP基準 */
  overflow-x: clip; /* 横スクロール事故防止（見た目は変えない） */
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
iframe { display: block; max-width: 100%; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(47, 123, 94, 0.45);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid/Flex 子要素のはみ出し保険（統合） */
.hero__inner > *,
.news__inner > *,
.products__list > *,
.site-footer__inner > *,
.company-hero__inner > *,
.philo__inner > *,
.info__inner > *,
.contact__grid > * {
  min-width: 0;
}

/* =========================================================
   Common UI（共通部品）
========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.92);
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
  opacity: 0.45;
}

.muted { color: rgba(30, 31, 28, 0.78); }
.accent { color: var(--green); font-weight: 700; }

/* =========================================================
   Header（sticky + hamburger）
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__logo img {
  height: 62px;
  width: auto;
  display: block;
}

.site-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-wrap: nowrap;
}

.site-header__link {
  color: var(--muted);
  font-weight: 500;
}
.site-header__link:hover { color: var(--text); }

.site-header__cta {
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.site-header__cta:hover {
  background: var(--green);
  color: #ffffff;
}

/* Hamburger (Mobile) */
.site-header__toggle {
  margin-left: auto;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(25, 33, 28, 0.14);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 0;
}
.site-header__toggle-line {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(30, 31, 28, 0.78);
  border-radius: 2px;
}

@media (max-width: 760px) {
  .site-header__nav { display: none; }
  .site-header__toggle { display: inline-flex; }
}

/* Mobile Menu Overlay */
.site-header__mobile[hidden] { display: none; }
.site-header__mobile {
  position: fixed;
  inset: 0;
  z-index: 60;
}
.site-header__mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 20, 0.22);
  backdrop-filter: blur(10px);
}
.site-header__mobile-panel {
  position: absolute;
  top: 12px;
  right: 12px;
  width: min(92vw, 320px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(15, 24, 20, 0.18);
  border: 1px solid rgba(25, 33, 28, 0.1);
  padding: 14px 14px 16px;
}
.site-header__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 10px;
  border-bottom: 1px solid rgba(25, 33, 28, 0.06);
  margin-bottom: 10px;
}
.site-header__mobile-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(30, 31, 28, 0.72);
}
.site-header__mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(25, 33, 28, 0.12);
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: rgba(30, 31, 28, 0.7);
}
.site-header__mobile-nav { display: grid; gap: 4px; padding-top: 6px; }
.site-header__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(30, 31, 28, 0.88);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-header__mobile-link:hover {
  background: rgba(47, 123, 94, 0.06);
  color: var(--green);
}

/* CTA link（HTMLに存在していたので定義を保持） */
.site-header__mobile-link--cta {
  margin-top: 6px;
  border: 1px solid rgba(47, 123, 94, 0.28);
  color: var(--green);
}
.site-header__mobile-link--cta:hover {
  background: rgba(47, 123, 94, 0.08);
}

/* =========================================================
   Button（共通基準）
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button--primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(47, 123, 94, 0.22);
}
.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(47, 123, 94, 0.26);
}

.button--ghost {
  border: 1px solid rgba(25, 33, 28, 0.18);
  color: var(--text);
  background: transparent;
}
.button--ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.button__arrow {
  margin-left: 10px;
  width: 14px;
  height: 14px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.85;
}

/* =========================================================
   Hero（TOP）
========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 24px 120px;
}
.hero::before {
  content: "omoroi";
  position: absolute;
  left: -2%;
  top: 10%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.10em;
  font-size: clamp(90px, 14vw, 160px);
  color: rgba(15, 24, 20, 0.03);
  pointer-events: none;
  transform: rotate(-2deg);
  user-select: none;
  z-index: 0;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy {
  position: relative;
  left: -6px;
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.92);
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
}

.hero__title {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero__title-line1,
.hero__title-line2 { display: block; }

.hero__title-line1 { letter-spacing: 0.04em; }
.hero__title-line2 { margin-top: 10px; letter-spacing: 0.02em; }

.hero__title-focus {
  display: inline-block;
  background: linear-gradient(120deg, #2f7b5e 0%, #5fc08a 45%, #1f5c47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.06em;
  font-size: 1.08em;
}

.hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
}
.hero__subtitle::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
  opacity: 0.45;
}

.hero__lead { margin: 0 0 34px; color: var(--text); }
.hero__lead-strong {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.hero__lead-paragraph {
  margin: 0;
  color: rgba(30, 31, 28, 0.86);
  font-size: 14.5px;
  line-height: 1.9;
  max-width: 56ch;
}
.hero__lead-paragraph b { color: var(--green); font-weight: 700; }
.hero__lead-paragraph .bracket { font-weight: 700; color: rgba(30, 31, 28, 0.9); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.hero__stack { position: relative; }

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 24, 20, 0.16);
  transform: translate(8px, -10px);
}
.hero__image-wrap img { width: 100%; display: block; height: auto; }
.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__card {
  position: absolute;
  left: -16%;
  bottom: -12%;
  width: 40%;
  height: 70%;
  pointer-events: none;
}
.hero__card::before {
  content: "";
  position: absolute;
  left: 78%;
  bottom: -6%;
  width: 2px;
  height: 130%;
  background: var(--green);
  opacity: 0.55;
  transform: rotate(-15deg);
  transform-origin: bottom left;
  box-shadow: 0 0 8px rgba(47, 123, 94, 0.12);
}

/* =========================================================
   News（TOP / news単体 共通）
========================================================= */
.news {
  position: relative;
  padding: 58px 0;
  overflow: hidden;
}

.news__inner { position: relative; z-index: 1; }

.news__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.news__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.92);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}
.news__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
  opacity: 0.45;
}

.news__lead {
  margin: 0 0 18px;
  color: rgba(30, 31, 28, 0.78);
  font-size: 14px;
  max-width: 72ch;
}

.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(25, 33, 28, 0.06);
}
.news__item { border-bottom: 1px solid rgba(25, 33, 28, 0.06); }

.news__link {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px 0;
  align-items: center;
}

.news__date {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(30, 31, 28, 0.62);
  white-space: nowrap;
}

.news__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(30, 31, 28, 0.9);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

@media (hover: hover) {
  .news__link:hover .news__title { color: var(--green); }
  .news__link:hover { transform: translateY(-0.5px); }
}

.news__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

/* News: small button variant（見た目維持） */
.news .button { padding: 12px 20px; font-size: 14px; box-shadow: none; }
.news .button--ghost { border: 1px solid rgba(25, 33, 28, 0.12); }
.news .button--ghost:hover { border-color: rgba(47, 123, 94, 0.28); transform: translateY(-1px); }

/* =========================================================
   Products
========================================================= */
.products {
  position: relative;
  padding: 92px 0 108px;
  overflow: hidden;
}

.products__head {
  display: grid;
  gap: 10px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.products__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.92);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}
.products__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
  opacity: 0.45;
}

.products__list {
  display: grid;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.products__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.product-card {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.product-card__media {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(var(--accent, var(--accent-green)), 0.18),
    rgba(var(--accent, var(--accent-green)), 0.04) 55%,
    rgba(var(--accent, var(--accent-green)), 0) 70%
  );
  pointer-events: none;
  filter: blur(0.4px);
  opacity: 0.55;
}

.product-card__inner {
  padding: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  align-content: start;
  position: relative;
  z-index: 1;
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(47, 123, 94, 0.06);
  color: rgba(30, 31, 28, 0.86);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge--aim {
  background: rgba(25, 33, 28, 0.06);
  letter-spacing: 0.1em;
}

.product-card__icon {
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  padding: 2px 0;
}
.product-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(47, 123, 94, 0.8);
}

.product-card__title {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: 0.015em;
}

.product-card__desc {
  margin: 0;
  color: rgba(30, 31, 28, 0.82);
  font-size: 14.5px;
  line-height: 1.85;
  max-width: 62ch;
}

.product-card__note {
  color: rgba(30, 31, 28, 0.7);
  font-size: 13px;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(30, 31, 28, 0.76);
  font-size: 12.5px;
  background: rgba(25, 33, 28, 0.04);
}

.product-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Products: small button variant（見た目維持） */
.products .button { padding: 12px 20px; font-size: 14px; box-shadow: none; }
.products .button--primary { box-shadow: none; }
.products .button--primary:hover { transform: translateY(-1px); box-shadow: none; }
.products .button--ghost { border: 1px solid rgba(25, 33, 28, 0.12); }
.products .button--ghost:hover { border-color: rgba(47, 123, 94, 0.28); color: var(--green); }

/* =========================================================
   CTA（Footer直前）
========================================================= */
.cta {
  padding: 48px 0 72px;
  border-top: 1px solid rgba(25, 33, 28, 0.06);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.92);
}
.cta__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
  opacity: 0.45;
}

.cta__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.cta__lead {
  margin: 0;
  color: rgba(30, 31, 28, 0.78);
  font-size: 14.5px;
  max-width: 60ch;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* =========================================================
   Footer（共通）
========================================================= */
.site-footer {
  background: #181b19;
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 36px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.site-footer__brand { max-width: 420px; }

.site-footer__logo {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__tagline {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }

.site-footer__link {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.04em;
}
.site-footer__link:hover { color: #ffffff; }

.site-footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copyright {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   Company Page（company）
========================================================= */
.company-hero {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.company-hero::before {
  content: "COMPANY";
  position: absolute;
  left: -4%;
  top: 10%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(84px, 14vw, 150px);
  color: rgba(15, 24, 20, 0.03);
  pointer-events: none;
  user-select: none;
}

.company-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.company-hero__title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.company-hero__lead {
  margin: 0;
  max-width: 56ch;
  font-size: 15px;
  color: rgba(30, 31, 28, 0.8);
  line-height: 1.8; /* company側の“呼吸”維持 */
}

.company-hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 24, 20, 0.16);
  transform: translateY(4px);
}

/* MV */
.mv { padding: 48px 0 56px; position: relative; }
.mv__panel { position: relative; padding: 18px 0; }
.mv__grid  { display: block; } /* PC見た目（縦並び）固定 */

.mv__item {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
}
.mv__item--spaced { margin-bottom: 40px; }

.mv__item::after {
  content:"“”";
  position:absolute;
  right: 14px;
  top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.08em;
  color: rgba(15,24,20,0.06);
  pointer-events:none;
}

.mv__label {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(30, 31, 28, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mv__label::before {
  content:"";
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: rgba(47,123,94,0.22);
}

.mv__text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-wrap: balance;
}

.mv__sign {
  margin: 10px 0 0;
  font-size: 13.5px;
  color: rgba(30, 31, 28, 0.72);
}

.mv__logo {
  display: grid;
  gap: 10px;
  align-content: start;
}
.mv__logo img {
  width: 60%;
  height: auto;
  opacity: 0.98;
  filter: drop-shadow(0 10px 22px rgba(15, 24, 20, 0.08));
}
.mv__logo-note {
  margin: 0;
  font-size: 12.5px;
  color: rgba(30, 31, 28, 0.62);
  line-height: 1.7;
}

/* Philosophy × CEO */
.philo { padding: 56px 0 68px; }

.philo__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.philo__title {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.philo__text {
  margin: 0;
  max-width: 70ch;
  font-size: 15px;
  color: rgba(30, 31, 28, 0.82);
  line-height: 1.8; /* company側の“呼吸”維持 */
}
.philo__text p { margin: 0 0 14px; }
.philo__text p:last-child { margin-bottom: 0; }

.ceo-card {
  border-radius: 22px;
  padding: 18px;
  display: block; /* 現状の縦見た目固定 */
}

.ceo-card__photo {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(25, 33, 28, 0.06);
}

.ceo-card__name {
  margin: 0 0 2px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ceo-card__role {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: rgba(30, 31, 28, 0.7);
}

.ceo-card__msg {
  margin: 0;
  font-size: 13.5px;
  color: rgba(30, 31, 28, 0.78);
  line-height: 1.75;
}

/* Outline × Access */
.info { padding: 56px 0 96px; }

.info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info__block {
  border-radius: 22px;
  padding: 22px;
  min-width: 0;
}

.info__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-left: 12px; /* OUTLINE/ACCESS 左端揃え */
}

.info__title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.78);
}

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: 14.5px;
  table-layout: fixed;
}

.info-table th,
.info-table td {
  padding: 10px 12px;
  vertical-align: top;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info-table th {
  width: 140px;
  color: rgba(30, 31, 28, 0.72);
  font-weight: 700;
}

.info-table td {
  color: rgba(30, 31, 28, 0.86);
  font-weight: 500;
}

.address {
  margin: 0 0 12px;
  color: rgba(30, 31, 28, 0.82);
  font-size: 14.5px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  height: 300px;
  margin: 30px 0;
}
.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(30, 31, 28, 0.62);
  line-height: 1.7;
}

/* =========================================================
   Contact Page（contact）
========================================================= */
.page-hero {
  padding: 78px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "CONTACT";
  position: absolute;
  left: -4%;
  top: 12%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(74px, 12vw, 140px);
  color: rgba(15, 24, 20, 0.03);
  pointer-events: none;
  user-select: none;
}

.page-hero__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.page-hero__lead {
  margin: 0;
  max-width: 66ch;
  font-size: 14.5px;
  color: rgba(30, 31, 28, 0.8);
  line-height: 1.8;
}

.contact { padding: 22px 0 96px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

/* Form Panel */
.panel {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(25, 33, 28, 0.06);
  box-shadow: 0 18px 50px rgba(15, 24, 20, 0.06);
  padding: 22px 22px;
}

.panel__title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.78);
}

.panel__lead {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: rgba(30, 31, 28, 0.78);
  line-height: 1.9;
}

.form { display: grid; gap: 14px; }
.field { display: grid; gap: 8px; }

.field__label {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(30, 31, 28, 0.86);
  letter-spacing: 0.01em;
}

.field__req {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(47, 123, 94, 0.95);
  letter-spacing: 0.08em;
}

.control {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(25, 33, 28, 0.14);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(30, 31, 28, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.control::placeholder { color: rgba(30, 31, 28, 0.45); }
.control:focus {
  border-color: rgba(47, 123, 94, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 123, 94, 0.12);
  outline: none;
}
textarea.control { resize: vertical; min-height: 150px; }

.form__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  align-items: center;
}

/* contactのボタンだけ「元の700感」を維持（見た目一致） */
.contact .button { font-weight: 700; }

.form__note {
  margin: 0;
  font-size: 12.5px;
  color: rgba(30, 31, 28, 0.62);
  line-height: 1.7;
}
.form__note a {
  color: rgba(47, 123, 94, 0.95);
  font-weight: 700;
}

/* Side Panel */
.side { display: grid; gap: 14px; }

.info-box {
  border-radius: 22px;
  border: 1px solid rgba(25, 33, 28, 0.06);
  background: rgba(255, 255, 255, 0.55);
  padding: 18px 18px;
}

.info-box__title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(30, 31, 28, 0.78);
}

.dl { display: grid; gap: 10px; margin: 0; }
.dl__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: start;
}

.dl__dt {
  margin: 0;
  color: rgba(30, 31, 28, 0.68);
  font-weight: 700;
  font-size: 13px;
}

.dl__dd {
  margin: 0;
  color: rgba(30, 31, 28, 0.86);
  font-weight: 500;
  font-size: 13.5px;
  overflow-wrap: anywhere;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 123, 94, 0.06);
  color: rgba(30, 31, 28, 0.86);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   Reveal（統合）
========================================================= */
.js-reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  transition:
    opacity 0.8s cubic-bezier(.2,.8,.2,1),
    transform 0.8s cubic-bezier(.2,.8,.2,1),
    filter 0.8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform, filter;
}
.js-reveal.is-in,
.js-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.js-reveal[data-delay] { transition-delay: var(--delay, 0ms); }

/* data-reveal 併用 */
[data-reveal] { opacity: 1; transform: none; will-change: opacity, transform; }
.js [data-reveal] { opacity: 0; transform: translateY(10px); }
.js [data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js [data-reveal][data-reveal-delay="1"].is-inview { transition-delay: 80ms; }
.js [data-reveal][data-reveal-delay="2"].is-inview { transition-delay: 140ms; }
.js [data-reveal][data-reveal-delay="3"].is-inview { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal.is-in,
  .js-reveal.is-inview,
  .js [data-reveal],
  .js [data-reveal].is-inview {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================================================
   Responsive（統合）
========================================================= */
@media (max-width: 960px) {
  /* TOP */
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 72px; }
  .hero__copy { left: 0; max-width: 720px; }
  .hero__image-wrap { transform: translate(0, 0); }
  .hero__card { display: none; }

  .hero::before {
    top: 14%;
    left: -6%;
    font-size: clamp(84px, 16vw, 140px);
    color: rgba(15, 24, 20, 0.028);
  }

  .news { padding: 46px 0; }
  .news__link { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .news__date { font-size: 12.5px; }

  .products { padding: 78px 0 92px; }
  .products__row { grid-template-columns: 1fr; gap: 72px; }
  .products__list { gap: 72px; }

  .product-card__media {
    width: 210px;
    height: 210px;
    right: -34px;
    bottom: -34px;
  }

  .cta { padding: 56px 0; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .cta__actions { justify-content: flex-start; margin-top: 10px; }

  /* Company */
  .company-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .philo__inner { grid-template-columns: 1fr; }
  .info__inner { grid-template-columns: 1fr; }
  .info-table th { width: 120px; }

  /* Contact */
  .page-hero { padding: 64px 0 38px; }
  .contact { padding: 18px 0 72px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .site-header__inner { padding: 16px 18px; }
  .site-header__logo img { height: 50px; }

  /* TOP */
  .hero { padding: 64px 18px 96px; }

  .hero__title { font-size: clamp(30px, 8.2vw, 44px); line-height: 1.08; }
  .hero__title-line2 { margin-top: 8px; }

  .hero__lead-strong { font-size: 14px; }
  .hero__lead-paragraph { font-size: 14px; padding-left: 12px; }

  .hero__actions { gap: 12px; }
  .button { padding: 12px 22px; font-size: 14px; }

  .hero__eyebrow { font-size: 12.5px; }
  .news__actions { justify-content: flex-start; }

  /* Company */
  .company-hero { padding: 64px 0 48px; }
  .mv { padding: 34px 0 42px; }
  .philo { padding: 42px 0 54px; }

  .info { padding: 44px 0 72px; }
  .info__block { padding: 18px; border-radius: 18px; }

  .info-table { border-spacing: 0 8px; }
  .info-table th { width: 110px; }

  .map { height: 260px; }

  /* Contact */
  .panel { padding: 18px 18px; border-radius: 18px; }
  .info-box { padding: 16px 16px; border-radius: 18px; }

  .dl__row { grid-template-columns: 1fr; gap: 6px; }

  /* Footer */
  .site-footer { padding: 52px 0 32px; }
  .site-footer__inner { flex-direction: column; gap: 24px; }
  .site-footer__nav { gap: 16px; }
}
