/* ============================================================
   Seize Me Co.,Ltd. Corporate Site
   style.css — Design tokens / Base / Components / Pages
   ============================================================ */

/* ------------------------------------------------------------
   1. Design Tokens
------------------------------------------------------------ */
:root {
  /* Color — 信頼のダークグレー基調 + シャープブルー + ブランド花弁色 */
  --ink:        #1d242e;   /* 見出し */
  --text:       #3b4450;   /* 本文 */
  --muted:      #77818e;   /* 補足・日付 */
  --base:       #ffffff;
  --wash:       #f3f6fa;   /* パステルブルーグレーの面 */
  --line:       #e3e9f0;
  --blue:       #1a7fd4;   /* アクセント：シャープブルー（ロゴ花弁由来） */
  --blue-deep:  #0e5aa7;
  --green:      #8dc21f;   /* ロゴ "ME" グリーン */
  --orange:     #f08300;   /* 花弁 */
  --yellow:     #f2c200;   /* 花弁 */
  --footer-bg:  #20262e;

  /* Typography */
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Outfit", "Zen Kaku Gothic New", sans-serif;

  /* Layout */
  --container: 1120px;
  --header-h: 76px;
  --radius: 14px;
  --shadow-soft: 0 10px 34px rgba(29, 36, 46, .07);
  --shadow-hover: 0 18px 44px rgba(14, 90, 167, .14);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .21, 1);
}

/* ------------------------------------------------------------
   2. Base / Reset
------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ------------------------------------------------------------
   3. Common — Eyebrow / Heading / Button / Petal motif
------------------------------------------------------------ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ロゴ花弁由来の4色ドットマーカー（シグネチャ要素） */
.petal-dots {
  display: inline-flex;
  gap: 4px;
  flex-shrink: 0;
}
.petal-dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.petal-dots i:nth-child(1) { background: var(--orange); }
.petal-dots i:nth-child(2) { background: var(--yellow); }
.petal-dots i:nth-child(3) { background: var(--green); }
.petal-dots i:nth-child(4) { background: var(--blue); }

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  color: var(--ink);
  margin-top: 14px;
}

.section-lead {
  margin-top: 18px;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .35s var(--ease), color .35s var(--ease);
}
.btn .lucide { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover .lucide { transform: translateX(4px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(26, 127, 212, .28);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--base);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* テキストリンク（下線が左から伸びる） */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ink);
  position: relative;
  padding-bottom: 6px;
}
.link-more::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--blue);
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.link-more:hover::after { transform: scaleX(1); }
.link-more .lucide { width: 15px; height: 15px; color: var(--blue); }

/* ------------------------------------------------------------
   4. Header
------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img { height: 34px; width: auto; }

.gnav-list {
  display: flex;
  align-items: center;
  gap: 38px;
}
.gnav-link {
  position: relative;
  display: block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.gnav-link small {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--muted);
  line-height: 1.2;
  transition: color .3s var(--ease);
}
.gnav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.gnav-link:hover::after,
.gnav-link.is-current::after { transform: scaleX(1); }
.gnav-link:hover small { color: var(--blue); }

.gnav-cta {
  padding: 11px 26px;
  font-size: 13px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .3s;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------
   5. Footer
------------------------------------------------------------ */
.site-footer {
  background: var(--footer-bg);
  color: #cfd6de;
  padding: 72px 0 36px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand .footer-logotype {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
  line-height: 1;
}
.footer-brand .footer-logotype em {
  font-style: normal;
  color: var(--green);
}
.footer-brand p {
  margin-top: 18px;
  font-size: 13px;
  color: #99a3af;
  line-height: 2;
}
.footer-nav {
  display: flex;
  gap: 64px;
}
.footer-nav-col h4 {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  color: #7d8794;
  margin-bottom: 18px;
}
.footer-nav-col li + li { margin-top: 12px; }
.footer-nav-col a {
  font-size: 14px;
  color: #cfd6de;
  transition: color .3s var(--ease);
}
.footer-nav-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom small {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .06em;
  color: #7d8794;
}

/* Page-top */
.pagetop {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: grid;
  place-items: center;
  color: #cfd6de;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.pagetop:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}
.pagetop .lucide { width: 18px; height: 18px; }

/* ------------------------------------------------------------
   6. Scroll Reveal
------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ------------------------------------------------------------
   7. HOME — Hero
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 56px) 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 88% 8%, rgba(26,127,212,.10), transparent 62%),
    radial-gradient(760px 520px at 100% 88%, rgba(141,194,31,.08), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #f3f6fa 100%);
}

.hero-inner { position: relative; z-index: 2; }

.hero-copy {
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
  color: var(--ink);
}
.hero-copy .accent { color: var(--blue); }

.hero-sub {
  margin-top: 28px;
  max-width: 560px;
  font-size: 15px;
  line-height: 2.2;
  color: var(--muted);
}

.hero-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 花弁の装飾（ロゴモチーフ） */
.hero-petals {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-52%);
  width: clamp(340px, 42vw, 620px);
  opacity: .9;
  z-index: 1;
  animation: petal-drift 14s ease-in-out infinite alternate;
}
@keyframes petal-drift {
  from { transform: translateY(-52%) rotate(0deg); }
  to   { transform: translateY(-48%) rotate(4deg); }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(var(--blue), transparent);
  animation: scroll-line 2.2s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ------------------------------------------------------------
   9. HOME — Business
------------------------------------------------------------ */
.home-business {
  padding: 110px 0 120px;
  background: var(--wash);
}

.business-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.business-card {
  background: var(--base);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.business-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--blue), var(--green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s var(--ease);
}
.business-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.business-card:hover::before { transform: scaleY(1); }

.business-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,127,212,.1), rgba(141,194,31,.1));
  display: grid;
  place-items: center;
  color: var(--blue);
}
.business-icon .lucide { width: 26px; height: 26px; }

.business-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
}
.business-card h3 small {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: 6px;
}
.business-card p {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
  flex-grow: 1;
}

.business-more { margin-top: 52px; text-align: center; }

/* ------------------------------------------------------------
   10. HOME — Company
------------------------------------------------------------ */
.home-company { padding: 120px 0; }

.company-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.company-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.company-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.company-visual:hover img { transform: scale(1.04); }
.company-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(26,127,212,.16), transparent 55%);
  pointer-events: none;
}

.company-body p {
  margin-top: 26px;
  font-size: 15px;
  line-height: 2.3;
}
.company-body .link-more { margin-top: 36px; }

/* ------------------------------------------------------------
   11. HOME — Recruit Banner
------------------------------------------------------------ */
.home-recruit { padding: 0 0 120px; }

.recruit-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(28px, 7vw, 88px);
  background:
    radial-gradient(720px 420px at 90% 0%, rgba(26,127,212,.5), transparent 60%),
    radial-gradient(560px 380px at 4% 100%, rgba(141,194,31,.32), transparent 58%),
    linear-gradient(120deg, #1b2431 0%, #253247 100%);
  color: #fff;
}

.recruit-banner .eyebrow { color: #9fd0f5; }

.recruit-banner h2 {
  margin-top: 18px;
  font-family: var(--font-en);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.25;
}
.recruit-banner h2 em {
  font-style: normal;
  color: var(--green);
}
.recruit-banner p {
  margin-top: 20px;
  max-width: 560px;
  font-size: 15px;
  line-height: 2.2;
  color: rgba(255, 255, 255, .82);
}
.recruit-banner .btn {
  margin-top: 40px;
  background: #fff;
  color: var(--ink);
}
.recruit-banner .btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.recruit-petals {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: clamp(220px, 26vw, 360px);
  opacity: .5;
  pointer-events: none;
}

/* ------------------------------------------------------------
   12. Sub-page common (lower pages placeholder)
------------------------------------------------------------ */
.page-hero {
  padding: calc(var(--header-h) + 88px) 0 72px;
  background:
    radial-gradient(800px 400px at 92% 0%, rgba(26,127,212,.09), transparent 60%),
    linear-gradient(180deg, #fbfdff, #f3f6fa);
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .05em;
  margin-top: 14px;
}

.page-body { padding: 96px 0 130px; }
.page-body .placeholder-note {
  padding: 48px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* ------------------------------------------------------------
   13. Responsive
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-petals { right: -120px; opacity: .45; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }

  .header-logo img { height: 28px; }

  .menu-toggle { display: block; }

  .gnav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
    z-index: 105;
  }
  .gnav.is-open { opacity: 1; visibility: visible; }

  .gnav-list {
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }
  .gnav-link { font-size: 18px; }
  .gnav-link small { font-size: 11px; margin-top: 4px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }

  .pc-only { display: none; }

  .hero { min-height: auto; padding-bottom: 120px; }
  .hero-petals {
    right: -90px;
    top: auto;
    bottom: -70px;
    transform: none;
    width: 300px;
    opacity: .35;
    animation: none;
  }

  .home-news, .home-business, .home-company { padding: 76px 0; }
  .home-recruit { padding-bottom: 84px; }

  .news-item a {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 8px;
    padding: 22px 4px;
  }
  .news-item h3 {
    grid-column: 1 / -1;
    white-space: normal;
  }
  .news-item .lucide { display: none; }

  .business-grid { grid-template-columns: 1fr; gap: 20px; }
  .business-card { padding: 32px 26px; }

  .company-split { grid-template-columns: 1fr; }
  .company-visual { order: -1; }

  .footer-nav { gap: 40px; flex-wrap: wrap; }
}

/* ------------------------------------------------------------
   14. Sub-pages — 共通
------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 34px;
}
.breadcrumb a { transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .lucide { width: 13px; height: 13px; color: var(--line); }

.page-hero .page-lead {
  margin-top: 22px;
  max-width: 680px;
  font-size: 15px;
  line-height: 2.2;
  color: var(--muted);
}

/* 章見出しブロック */
.sec-head { margin-bottom: 52px; }

/* ステートメント（大きな主張文） */
.statement {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .05em;
  color: var(--ink);
}
.statement .accent { color: var(--blue); }

/* 下部CTA帯（全下層ページ共通） */
.cta-band { padding: 0 0 120px; }
.cta-band-inner {
  border-radius: 20px;
  background:
    radial-gradient(640px 360px at 88% 0%, rgba(26,127,212,.16), transparent 60%),
    var(--wash);
  padding: clamp(48px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-inner h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .05em;
}
.cta-band-inner p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* ------------------------------------------------------------
   15. Business page
------------------------------------------------------------ */
.biz-intro { padding: 100px 0 40px; }
.biz-intro .statement { max-width: 880px; }
.biz-intro p:not(.statement) {
  margin-top: 30px;
  max-width: 760px;
  font-size: 15px;
  line-height: 2.3;
  color: var(--muted);
}

.biz-list { padding: 64px 0 110px; }

.biz-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.biz-row:last-child { border-bottom: 1px solid var(--line); }

.biz-row-head .biz-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.biz-row-head h3 {
  margin-top: 12px;
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: .04em;
}
.biz-row-head .business-icon { margin-top: 24px; }

.biz-row-body > p {
  font-size: 15px;
  line-height: 2.3;
}
.biz-row-body > p + p { margin-top: 18px; }

.biz-points {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.biz-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--wash);
  border-radius: 10px;
  padding: 14px 16px;
  line-height: 1.7;
}
.biz-points .lucide {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 4px;
}

/* 開発姿勢セクション */
.biz-stance {
  padding: 100px 0 120px;
  background: var(--wash);
}
.stance-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stance-card {
  background: var(--base);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
}
.stance-card .stance-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--blue);
}
.stance-card h3 {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
}
.stance-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}

/* ------------------------------------------------------------
   16. Company page
------------------------------------------------------------ */
.ceo-message { padding: 100px 0; }
.message-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.message-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 3.4;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.message-visual img { width: 100%; height: 100%; object-fit: cover; }

.message-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--ink);
  letter-spacing: .05em;
  margin-top: 16px;
}
.message-body .message-text { margin-top: 34px; }
.message-body .message-text p {
  font-size: 15px;
  line-height: 2.4;
}
.message-body .message-text p + p { margin-top: 22px; }

.message-sign {
  margin-top: 40px;
  text-align: right;
}
.message-sign small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.message-sign strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .14em;
}

/* MVV */
.philosophy {
  padding: 100px 0 110px;
  background: var(--wash);
}
.mvv-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: var(--base);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--blue);
}
.mvv-card:nth-child(2) { border-top-color: var(--green); }
.mvv-card:nth-child(3) { border-top-color: var(--orange); }
.mvv-card .mvv-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.mvv-card h3 {
  margin-top: 16px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
  letter-spacing: .04em;
}
.mvv-card p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--muted);
}
.mvv-card ul { margin-top: 16px; }
.mvv-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--muted);
}
.mvv-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .55;
}
.mvv-card ul li strong { color: var(--ink); font-weight: 700; }

/* 会社概要テーブル */
.company-info { padding: 100px 0 110px; }
.info-table {
  margin-top: 48px;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}
.info-table th,
.info-table td {
  padding: 26px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 2;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 220px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.info-table td { color: var(--text); }
.info-table td small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* ------------------------------------------------------------
   17. Recruit page
------------------------------------------------------------ */
.recruit-intro { padding: 100px 0 20px; }
.recruit-intro .statement { max-width: 860px; }
.recruit-intro p:not(.statement) {
  margin-top: 30px;
  max-width: 740px;
  font-size: 15px;
  line-height: 2.3;
  color: var(--muted);
}

/* 求める人物像 */
.persona { padding: 90px 0 100px; }
.persona-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.persona-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.persona-card:hover {
  border-color: rgba(26,127,212,.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.persona-card .business-icon { margin-bottom: 20px; }
.persona-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
}
.persona-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--muted);
}

/* 募集職種アコーディオン */
.positions {
  padding: 100px 0;
  background: var(--wash);
}
.accordion { margin-top: 48px; }
.accordion details {
  background: var(--base);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.accordion details + details { margin-top: 18px; }

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  transition: background-color .3s var(--ease);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: #fafcfe; }

.accordion .pos-tag {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 6px 16px;
}
.accordion summary h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  flex-grow: 1;
}
.accordion .acc-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--blue);
  transition: transform .4s var(--ease), background-color .3s var(--ease);
}
.accordion .acc-icon .lucide { width: 16px; height: 16px; }
.accordion details[open] .acc-icon {
  transform: rotate(45deg);
  background: var(--wash);
}

.accordion .acc-body {
  padding: 6px 34px 40px;
  border-top: 1px solid var(--line);
}
.acc-table {
  width: 100%;
  border-collapse: collapse;
}
.acc-table th,
.acc-table td {
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 2;
  text-align: left;
  vertical-align: top;
}
.acc-table th {
  width: 150px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.acc-table td ul li {
  position: relative;
  padding-left: 16px;
}
.acc-table td ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* 働く環境 */
.environment { padding: 100px 0 110px; }
.env-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.env-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.env-item .business-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
}
.env-item .business-icon .lucide { width: 21px; height: 21px; }
.env-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.env-item p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}

/* ------------------------------------------------------------
   18. Contact page
------------------------------------------------------------ */
.contact-body { padding: 90px 0 120px; }
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-aside p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2.2;
  color: var(--muted);
}
.contact-aside .contact-note {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--wash);
  border-radius: var(--radius);
  font-size: 13px;
}

.contact-form {
  background: var(--base);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}

.form-field + .form-field { margin-top: 28px; }
.form-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.req, .opt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 4px;
  padding: 3px 8px;
  line-height: 1;
}
.req { background: var(--blue); color: #fff; }
.opt { background: var(--line); color: var(--muted); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--wash);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 15px 18px;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--base);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 127, 212, .12);
}
.form-field textarea { min-height: 180px; resize: vertical; }
.form-field ::placeholder { color: #a7b1bd; }

.form-consent {
  margin-top: 34px;
  text-align: center;
  font-size: 14px;
}
.form-consent label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}
.form-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}
.form-submit .btn {
  min-width: 280px;
  justify-content: center;
}
.form-submit .btn:disabled {
  background: var(--line);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* 送信完了 */
.form-done {
  text-align: center;
  padding: 60px 20px;
}
.form-done .business-icon {
  margin-inline: auto;
  margin-bottom: 24px;
  color: var(--green);
}
.form-done h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.form-done p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 2.1;
  color: var(--muted);
}

/* ------------------------------------------------------------
   19. Sub-pages Responsive
------------------------------------------------------------ */
@media (max-width: 900px) {
  .stance-grid,
  .mvv-grid,
  .persona-grid { grid-template-columns: 1fr 1fr; }
  .env-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .biz-intro, .ceo-message, .company-info,
  .recruit-intro, .persona, .positions,
  .environment, .biz-stance, .philosophy { padding-top: 72px; padding-bottom: 76px; }
  .biz-list { padding-bottom: 76px; }
  .cta-band { padding-bottom: 84px; }

  .biz-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 0;
  }
  .biz-row-head .business-icon { display: none; }

  .stance-grid,
  .mvv-grid,
  .persona-grid,
  .env-grid { grid-template-columns: 1fr; }

  .message-split { grid-template-columns: 1fr; }
  .message-visual {
    position: static;
    aspect-ratio: 16 / 10;
    max-width: 480px;
  }

  .info-table th { width: 120px; padding: 20px 8px; }
  .info-table td { padding: 20px 8px; }

  .accordion summary { padding: 22px 20px; gap: 14px; flex-wrap: wrap; }
  .accordion .acc-body { padding: 4px 20px 30px; }
  .acc-table th { width: 96px; }

  .contact-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   20. Privacy Policy page
------------------------------------------------------------ */
.policy-body { padding: 88px 0 120px; }
.policy-inner {
  max-width: 800px;
}
.policy-intro {
  font-size: 15px;
  line-height: 2.3;
  margin-bottom: 56px;
}
.policy-inner h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
  margin: 52px 0 18px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
  line-height: 1.6;
}
.policy-inner p {
  font-size: 14.5px;
  line-height: 2.2;
}
.policy-inner ul { margin-top: 12px; }
.policy-inner ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 2.2;
}
.policy-inner ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .55;
}
.policy-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-date {
  margin-top: 64px;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .policy-body { padding: 64px 0 84px; }
}

/* フォームエラー表示 */
.form-error {
  margin-top: 26px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #fdf1f1;
  border: 1px solid #f0c9c9;
  color: #b03a3a;
  font-size: 13.5px;
  line-height: 1.9;
}

/* ハニーポット欄（ボット対策：視覚的・支援技術的に非表示） */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
