/* ============================================================
   株式会社グレジャー — コーポレートサイト刷新案
   Design system: warm · human · editorial · 羅針盤を匂わせる
   Base palette fixed: white(warm) + navy + orange
   ============================================================ */

:root {
  /* ink — warm espresso brown (from logo wordmark) */
  --ink:        #3a2316;
  --ink-2:      #6d543f;
  --ink-3:      #9f8c78;
  --brand:      #7a4a24;
  --brand-deep: #2a1710;

  /* accent — brand orange (from logo mark) */
  --accent:      #f0901f;
  --accent-deep: #bd6411;
  --accent-soft: #f6b86f;
  --accent-wash: #fcecd6;

  /* surfaces — warm cream paper base */
  --paper:   #fcf8f1;
  --paper-2: #f4ece0;
  --paper-3: #ece0cf;
  --card:    #fffdf9;
  --line:    #e9ddca;
  --line-2:  #f0e7d7;

  /* type */
  --display: "Zen Old Mincho", "Noto Serif JP", serif;
  --sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", sans-serif;
  --latin: "Inter", sans-serif;

  /* shape */
  --r-card: 16px;
  --r-photo: 24px;
  --r-pill: 999px;
  --r-chip: 10px;

  /* shadows — warm brown tinted, soft */
  --sh-sm: 0 2px 8px -4px rgba(58,35,22,.16);
  --sh-md: 0 22px 50px -30px rgba(58,35,22,.34), 0 4px 14px -10px rgba(58,35,22,.14);
  --sh-lg: 0 40px 90px -40px rgba(58,35,22,.40);

  /* rhythm */
  --sec: 132px;
  --maxw: 1200px;
  --pad: 40px;
}

/* alternate base: cooler near-white (tweak) */
html[data-base="white"] {
  --paper:   #fffefb;
  --paper-2: #f6f4ef;
  --paper-3: #eceae3;
  --line:    #e7e4dc;
  --line-2:  #efece5;
}

/* density (tweak) */
html[data-density="compact"] { --sec: 96px; }

/* display font swap (tweak) */
html[data-display="shippori"] { --display: "Shippori Mincho", serif; }
html[data-display="gothic"]   { --display: "Zen Kaku Gothic New", sans-serif; }

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { margin: 0; font-weight: 700; line-height: 1.45; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- type utilities ---------- */
.display { font-family: var(--display); font-weight: 700; letter-spacing: .02em; }
.latin { font-family: var(--latin); }
.eyebrow {
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
}
.eyebrow.center::before { display: none; }

.kicker-ja {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ink-3);
}

/* orange marker highlight on key words */
.mark {
  background: linear-gradient(transparent 62%, var(--accent-wash) 62%, var(--accent-wash) 94%, transparent 94%);
  color: var(--accent-deep);
  padding: 0 .04em;
}
.mark-strong { color: var(--accent-deep); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--sec) 0; }
.section.soft { background: var(--paper-2); }
.section.ink {
  background:
    radial-gradient(1100px 560px at 80% -12%, #5a3318 0%, transparent 60%),
    linear-gradient(180deg, #3a2113, var(--brand-deep));
  color: #fff;
}

.sec-head { margin-bottom: 64px; }

/* full-bleed scenic band (section divider) */
.band { width: 100%; height: clamp(160px, 24vw, 340px);
  background: url('assets/band-mountains.jpg') center center / cover no-repeat; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.4;
  letter-spacing: .02em;
}
.sec-head.row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  padding: 15px 28px; border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn .arw { transition: transform .25s; }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -14px rgba(238,141,63,.9); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(238,141,63,.95); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { transform: translateY(-2px); background: var(--brand-deep); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--accent);
  transition: gap .25s, color .25s;
}
.link:hover { gap: 14px; color: var(--accent-deep); }
.link.on-ink { color: #fff; border-color: var(--accent-soft); }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.hdr.scrolled { border-color: var(--line); }
.hdr-in { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark-c { width: 34px; height: 34px; flex: none; }
.brand .bt { display: flex; flex-direction: column; line-height: 1.15; }
.brand .bt b { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: .04em; }
.brand .bt span { font-family: var(--latin); font-size: 9px; font-weight: 600; letter-spacing: .26em; color: var(--ink-3); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--ink-2); transition: color .2s; position: relative; }
.nav a::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .25s; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.hdr .btn { padding: 11px 20px; font-size: 13.5px; }
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 22px; height: 2px; background: var(--ink); transition: .3s; }

/* mobile menu */
.mnav { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 8vw, 110px); }
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero-bg.jpg') center bottom / cover no-repeat; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(252,248,241,.5) 0%, rgba(252,248,241,.28) 45%, rgba(252,248,241,.12) 72%, rgba(252,248,241,.42) 100%); }
html[data-base="white"] .hero-bg::after {
  background: linear-gradient(180deg, rgba(255,254,251,.55) 0%, rgba(255,254,251,.3) 45%, rgba(255,254,251,.15) 72%, rgba(255,254,251,.46) 100%); }
html[data-compass="soft"] .hero-bg::after { background: rgba(252,248,241,.74); }
html[data-hero="dark"] .hero-bg { display: none; }
.hero .hero-grid { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.32;
  letter-spacing: .02em;
  font-weight: 700;
}
.hero .lead { margin-top: 32px; font-size: 17px; line-height: 2.1; color: var(--ink-2); max-width: 30em; }
.hero .lead b { color: var(--ink); font-weight: 700; }
.hero .cta-row { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .meta { margin-top: 40px; display: flex; gap: 30px; flex-wrap: wrap; align-items: center;
  font-size: 13px; color: var(--ink-3); letter-spacing: .04em; }
.hero .meta .d { width: 1px; height: 12px; background: var(--line); }

/* hero portrait composition */
.hero-art { position: relative; display: flex; justify-content: center; }
.portrait-frame { position: relative; width: 100%; max-width: 420px; }
.portrait-frame image-slot,
.portrait-frame .ph-portrait {
  width: 100%; height: auto; aspect-ratio: 4/5; display: block;
  border-radius: var(--r-photo);
  box-shadow: var(--sh-md);
}
.portrait-cap {
  position: absolute; left: -22px; bottom: 26px;
  background: var(--card); border-radius: 14px; padding: 14px 20px;
  box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 13px;
}
.portrait-cap .nm { font-family: var(--display); font-size: 17px; font-weight: 700; }
.portrait-cap .rl { font-family: var(--latin); font-size: 10px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; }
.portrait-cap .seal { width: 38px; height: 38px; flex: none; }

/* compass / constellation motif — background */
.constellation-bg {
  position: absolute; pointer-events: none;
  color: var(--accent);
  top: 6%; right: -40px; width: 460px; height: auto; opacity: .5;
}
html[data-compass="soft"] .constellation-bg { opacity: .22; }

/* ---------- placeholders ---------- */
.ph {
  background:
    repeating-linear-gradient(135deg, var(--paper-3) 0 7px, var(--paper-2) 7px 14px);
  color: var(--ink-3);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--latin); font-size: 11px; letter-spacing: .12em; padding: 16px;
}
.ph-portrait { background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%); color: rgba(255,255,255,.7); }

/* ---------- header logo ---------- */
.logo-img { height: 38px; width: auto; display: block; }
@media (max-width: 600px){ .logo-img { height: 30px; } }
.logo-chip { display: inline-block; background: var(--paper); padding: 12px 18px; border-radius: 14px; }
.logo-chip img { height: 40px; width: auto; display: block; }
.ft-marks { display: flex; gap: 14px; align-items: center; margin-top: 24px; }
.ft-marks img { height: 50px; width: auto; background: #fff; border-radius: 10px; padding: 7px 9px; }

/* ---------- trust badges ---------- */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust .b { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-card);
  padding: 22px 26px; display: flex; align-items: center; gap: 20px; box-shadow: var(--sh-sm); }
.trust .bimg { width: 84px; height: 66px; flex: none; display: flex; align-items: center; justify-content: center; }
.trust .bimg img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.trust .b .t b { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: .01em; line-height: 1.5; }
.trust .b .t span { font-size: 12.5px; color: var(--ink-3); letter-spacing: .02em; }

/* ---------- greeting ---------- */
.greet { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px,6vw,90px); align-items: start; }
.greet h2 { font-family: var(--display); font-size: clamp(26px,3.4vw,40px); line-height: 1.5; letter-spacing: .02em; }
.greet .body p { font-size: 16px; line-height: 2.15; color: var(--ink-2); }
.greet .body p + p { margin-top: 22px; }
.greet .body b { color: var(--ink); font-weight: 700; }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar {
  position: relative; overflow: hidden;
  background: var(--card); border-radius: var(--r-card);
  padding: clamp(32px,3.4vw,52px); box-shadow: var(--sh-sm);
  border: 1px solid var(--line-2);
  transition: transform .3s, box-shadow .3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.pillar .tag { font-family: var(--latin); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.pillar h3 { font-family: var(--display); font-size: clamp(22px,2.4vw,29px); line-height: 1.5; margin: 22px 0 18px; letter-spacing:.02em;}
.pillar p { font-size: 14.5px; line-height: 2; color: var(--ink-2); }
.pillar .chips { margin: 26px 0 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12px; font-weight: 500; padding: 7px 14px; border-radius: var(--r-chip); background: var(--paper-2); color: var(--ink-2); }
.pillar.product { background: linear-gradient(155deg, #6a3f1e 0%, var(--brand-deep) 100%); color: #fff; border: none; }
.pillar.product .tag { color: var(--accent-soft); }
.pillar.product p { color: rgba(255,255,255,.85); }
.pillar.product .chip { background: rgba(255,255,255,.1); color: #fff; }
.pillar.product .glow { position: absolute; top: -80px; right: -80px; width: 280px; height: 280px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%); opacity: .22; }
.pmlogo { font-family: var(--latin); font-weight: 700; font-size: 22px; letter-spacing: .02em; color: var(--accent-soft); }

/* MeetMate screenshot */
.mm-shot { margin-top: 56px; border-radius: 16px; overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.16); background: #fff; }
.mm-bar { height: 40px; background: var(--paper-2); display: flex; align-items: center; padding: 0 18px; border-bottom: 1px solid var(--line); }
.mm-name { font-family: var(--latin); font-size: 12px; letter-spacing: .08em; color: var(--ink-3); }
.mm-shot img { width: 100%; display: block; }
.mm-cap { margin-top: 18px; font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,.62); text-align: center; max-width: 44em; margin-left: auto; margin-right: auto; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  position: relative; background: var(--card); border-radius: var(--r-card);
  padding: 36px 32px 30px; border: 1px solid var(--line-2);
  display: flex; flex-direction: column; min-height: 320px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.svc .no { font-family: var(--display); font-size: 30px; color: var(--accent); line-height: 1; }
.svc h3 { font-family: var(--display); font-size: 20px; letter-spacing: .02em; margin: 22px 0 18px; }
.svc li { font-size: 14px; color: var(--ink-2); padding: 9px 0; border-top: 1px solid var(--line-2); display: flex; gap: 10px; align-items: baseline; }
.svc li .d { display: none; }
.svc .foot { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.svc .foot .rd { font-family: var(--latin); font-size: 11px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; }
.svc .foot .ar { color: var(--accent-deep); font-size: 18px; }

/* training band */
.train { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.train .themes { display: flex; flex-wrap: wrap; gap: 10px; }
.train .themes span { font-size: 13px; font-weight: 500; padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--card); border: 1px solid var(--line); }

/* ---------- why us ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why .c { background: var(--card); border-radius: var(--r-card); padding: 40px 34px; border: 1px solid var(--line-2); }
.why .c .n { font-family: var(--latin); font-size: 11px; letter-spacing: .2em; color: var(--ink-3); }
.why .c .big { font-family: var(--display); font-size: clamp(24px,2.6vw,30px); color: var(--brand); line-height: 1.3; margin: 14px 0 4px; }
.why .c .u { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }
.why .c h3 { font-size: 16.5px; line-height: 1.7; margin-bottom: 14px; }
.why .c p { font-size: 14.5px; line-height: 2; color: var(--ink-2); }

/* ---------- founder ---------- */
.founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px,5vw,76px); align-items: start; }
.founder .pcol image-slot,
.founder .pcol .ph-portrait { width: 100%; height: auto; aspect-ratio: 3/4; border-radius: var(--r-photo); box-shadow: var(--sh-md); display:block;}
.founder .pcard { margin-top: 22px; }
.founder .pcard .nm { font-family: var(--display); font-size: 26px; font-weight: 700; }
.founder .pcard .en { font-family: var(--latin); font-size: 12px; letter-spacing: .12em; color: var(--ink-3); margin-top: 4px; }
.founder h2 { font-family: var(--display); font-size: clamp(26px,3.2vw,38px); line-height: 1.5; letter-spacing:.02em; margin-bottom: 26px; }
.founder .body p { font-size: 15.5px; line-height: 2.15; color: var(--ink-2); }
.founder .body p + p { margin-top: 20px; }
.founder .body b { color: var(--ink); }

/* timeline */
.tl { position: relative; margin-top: 44px; padding-left: 26px; }
.tl::before { content:""; position:absolute; left:4px; top:8px; bottom:8px; width:1px; background:var(--line); }
.tl .row { position: relative; display: grid; grid-template-columns: 130px 1fr; gap: 26px; padding-bottom: 24px; }
.tl .row::before { content:""; position:absolute; left:-26px; top:8px; width:9px; height:9px; border-radius:50%; background:var(--card); border:2px solid var(--accent); box-shadow:0 0 0 3px var(--paper); }
.tl .yr { font-family: var(--latin); font-size: 13px; font-weight: 600; color: var(--accent-deep); letter-spacing: .03em; }
.tl .ds { font-size: 14px; color: var(--ink-2); line-height: 1.9; }

/* quals */
.quals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.quals .q { padding: 15px 20px; border-radius: var(--r-chip); background: var(--card); border: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 14px; }
.quals .q .ck { color: var(--accent-deep); flex: none; }
.quals .q span { font-size: 14px; font-weight: 500; }

/* company table */
.company { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line-2); background: var(--card); }
.company .r { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 20px 28px; }
.company .r + .r { border-top: 1px solid var(--line-2); }
.company .k { font-family: var(--latin); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.company .v { font-size: 14px; line-height: 1.85; }

/* personal */
.personal { max-width: 700px; margin: 0 auto; text-align: center; }
.personal h3 { font-family: var(--display); font-size: 24px; margin-bottom: 22px; letter-spacing: .02em; }
.personal p { font-size: 16px; line-height: 2.1; color: var(--ink-2); }

/* ---------- founder's view / columns ---------- */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.col {
  background: var(--card); border-radius: var(--r-card); padding: 34px 30px;
  border: 1px solid var(--line-2); display: flex; flex-direction: column; min-height: 250px;
  transition: transform .3s, box-shadow .3s;
}
.col:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.col .cn { font-family: var(--latin); font-size: 11px; letter-spacing: .16em; color: var(--accent-deep); }
.col .tg { font-size: 12px; color: var(--ink-3); margin: 16px 0 12px; }
.col h3 { font-family: var(--display); font-size: 19px; line-height: 1.6; letter-spacing: .01em; margin-bottom: 14px; }
.col p { font-size: 14px; line-height: 1.95; color: var(--ink-2); flex: 1; }
.col .rd { margin-top: 22px; font-family: var(--latin); font-size: 11px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; display:flex; justify-content:space-between; align-items:center;}
.col .rd .ar { color: var(--accent-deep); font-size: 16px; }

/* ---------- works ---------- */
.works-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,70px); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags span { padding: 10px 18px; font-size: 13px; font-weight: 500; border-radius: var(--r-pill);
  background: var(--card); border: 1px solid var(--line); }
.lbl { font-family: var(--latin); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.outcomes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.outcome { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-card); padding: 30px 28px; }
.outcome .ind { font-size: 12px; color: var(--ink-3); margin-bottom: 10px; }
.outcome h4 { font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.outcome .res { padding-top: 16px; border-top: 1px solid var(--line-2); font-size: 14px; color: var(--ink-2); line-height: 1.85; }

/* ---------- news ---------- */
.news .row { display: grid; grid-template-columns: 120px 96px 1fr 28px; gap: 24px; align-items: center;
  padding: 24px 4px; border-top: 1px solid var(--line); transition: background .2s, padding .25s; cursor: pointer; }
.news .row:last-child { border-bottom: 1px solid var(--line); }
.news .row:hover { background: color-mix(in srgb, var(--accent-wash) 60%, transparent); padding-left: 14px; }
.news .dt { font-family: var(--latin); font-size: 13px; color: var(--ink-3); }
.news .cat { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-align: center; padding: 5px 0;
  border-radius: var(--r-pill); background: var(--paper-2); color: var(--ink-2); }
.news .tt { font-size: 14.5px; font-weight: 500; }
.news .ar { text-align: right; color: var(--accent-deep); }

/* ---------- contact CTA ---------- */
.cta-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.cta-wrap h2 { font-family: var(--display); font-size: clamp(30px,4vw,48px); line-height: 1.4; letter-spacing: .02em; }
.cta-wrap p { margin-top: 24px; font-size: 16px; line-height: 2.05; color: rgba(255,255,255,.82); max-width: 30em; }
.cta-wrap .btns { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.office { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-card); padding: 36px 34px; }
.office .lbl { color: rgba(255,255,255,.55); }
.office .it + .it { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.office .it b { display: block; font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .04em; margin-bottom: 6px; font-weight: 600; }
.office .it span { font-size: 14.5px; line-height: 1.8; }

/* ---------- footer ---------- */
.ft { background: var(--brand-deep); color: rgba(255,255,255,.7); padding: 70px 0 40px; }
.ft-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.ft .brand .bt b { color: #fff; }
.ft .fnav { display: flex; flex-direction: column; gap: 12px; }
.ft .fnav .h { font-family: var(--latin); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.ft .fnav a { font-size: 14px; color: rgba(255,255,255,.78); transition: color .2s; }
.ft .fnav a:hover { color: var(--accent-soft); }
.ft .desc { font-size: 13px; line-height: 1.95; color: rgba(255,255,255,.6); max-width: 24em; margin-top: 18px; }
.ft-bot { padding-top: 28px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .04em; }

/* ============================================================
   TWEAK-DRIVEN VARIANTS
   ============================================================ */

/* Hero: 大型タイポ主役 — drop the portrait, center the type */
html[data-hero="type"] .hero-art { display: none; }
html[data-hero="type"] .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 1120px; }
html[data-hero="type"] .hero h1 { font-size: clamp(34px, 6vw, 76px); }
html[data-hero="type"] .hero .eyebrow.auto, html[data-hero="type"] .hero .eyebrow { }
html[data-hero="type"] .hero .lead { margin-left: auto; margin-right: auto; max-width: 34em; }
html[data-hero="type"] .hero .cta-row,
html[data-hero="type"] .hero .meta { justify-content: center; }
html[data-hero="type"] .hero .eyebrow::before { display: none; }
html[data-hero="type"] .hero .constellation-bg { top: 4%; right: 50%; transform: translateX(50%); width: 620px; opacity: .3; }

/* Hero: 紺の世界観 — dark band hero */
html[data-hero="dark"] .hero {
  background:
    radial-gradient(900px 480px at 80% -10%, #5a3318 0%, transparent 58%),
    linear-gradient(180deg, #3a2113, var(--brand-deep));
  color: #fff;
}
html[data-hero="dark"] .hero .lead { color: rgba(255,255,255,.82); }
html[data-hero="dark"] .hero .lead b { color: #fff; }
html[data-hero="dark"] .hero .meta { color: rgba(255,255,255,.6); }
html[data-hero="dark"] .hero .btn-ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
html[data-hero="dark"] .hero .btn-ghost:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1.5px #fff; }
html[data-hero="dark"] .hero .mark { color: var(--accent-soft); background: linear-gradient(transparent 62%, rgba(238,141,63,.28) 62%, rgba(238,141,63,.28) 94%, transparent 94%); }
html[data-hero="dark"] .hero .eyebrow { color: var(--accent-soft); }
html[data-hero="dark"] .hero .constellation-bg { color: var(--accent-soft); opacity: .55; }
html[data-hero="dark"] .hdr { background: color-mix(in srgb, var(--brand-deep) 80%, transparent); }
html[data-hero="dark"] .hdr .brand .mark-c { color: #fff !important; }
html[data-hero="dark"] .hdr .brand .bt b { color: #fff; }
html[data-hero="dark"] .hdr .nav a { color: rgba(255,255,255,.78); }
html[data-hero="dark"] .hdr .nav a:hover { color: #fff; }
html[data-hero="dark"] .hdr.scrolled { border-color: rgba(255,255,255,.14); }
html[data-hero="dark"] .burger span { background: #fff; }
html[data-hero="dark"] .hdr .logo-img { background: var(--paper); border-radius: 9px; padding: 5px 11px; height: 42px; }

/* Accent: しっかり — orange shows up more */
html[data-accent="bold"] .mark { background: var(--accent); color: #fff; padding: .02em .16em; border-radius: 3px; }
html[data-accent="bold"] .svc .no,
html[data-accent="bold"] .col .cn { color: var(--accent-deep); }
html[data-accent="bold"] .btn-ghost { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent-deep); }
html[data-accent="bold"] .btn-ghost:hover { background: var(--accent); color: #fff; box-shadow: none; }
html[data-accent="bold"] .trust .b .ic { background: var(--accent); color: #fff; }
html[data-accent="bold"] .eyebrow::before { width: 34px; height: 2px; }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
  .rv.in { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  :root { --pad: 26px; --sec: 92px; }
  .nav { display: none; }
  .hdr .btn.hdr-cta { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: -1; }
  .portrait-frame { max-width: 360px; }
  .greet, .founder, .train, .cta-wrap { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .svc-grid, .why, .cols, .works-2, .outcomes, .ft-top { grid-template-columns: 1fr; }
  .svc-grid, .why, .cols { grid-template-columns: 1fr 1fr; }
/* trust card */
  .trust { grid-template-columns: 1fr; }
  .company .r { grid-template-columns: 1fr; gap: 6px; }
  .news .row { grid-template-columns: 96px 1fr; grid-template-areas: "dt tt" "cat tt"; row-gap: 4px; }
  .news .dt { grid-area: dt; } .news .cat { grid-area: cat; } .news .tt { grid-area: tt; } .news .ar { display: none; }

  /* mobile menu */
  .mnav { position: fixed; inset: 76px 0 auto 0; z-index: 55; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-md);
    display: none; flex-direction: column; padding: 14px var(--pad) 26px; }
  .mnav.open { display: flex; }
  .mnav a { padding: 14px 0; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--line-2); }
  .mnav .btn { margin-top: 18px; justify-content: center; }
  body.menu-open { overflow: hidden; }
  .burger.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.on span:nth-child(2) { opacity: 0; }
  .burger.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 600px) {
  :root { --pad: 20px; }
  .svc-grid, .why, .cols, .outcomes, .quals { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .sec-head { margin-bottom: 44px; }
  .portrait-cap { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .founder .pcol { max-width: 360px; margin: 0 auto; }
}
