/* ============================================================
   SHIGO十色 LP — airy white world (image 1)
   teal × sky-blue × green, navy ink, rainbow logo accent
   ============================================================ */
:root {
  /* ink / neutrals — Brand Navy #1C3C5C (regulation) + tuned tints */
  --navy:   #1C3C5C;  /* regulation Brand Navy */
  --navy2:  #294a6a;
  --ink:    #294159;
  --ink-soft:#46586f;
  --muted:  #6b7e92;
  --faint:  #93a3b4;
  --line:   #e4eaf1;
  --line-soft:#eef3f8;

  /* brand — PRIMARY THEME = red/coral family (regulation Coral #DC7464).
     NOTE: --teal* token names retained for compatibility but repurposed to coral. */
  --teal:   #DC7464;  /* Coral — primary theme */
  --teal-d: #C2543F;  /* deep coral — text/icon/button contrast */
  --teal-l: #E89C8E;  /* light coral */
  --teal-50:#FCEDE9;  /* coral 50 tint (soft bg) */
  --teal-100:#F6D8D0; /* coral 100 tint (border) */
  --tealblue:#54ACB4; /* Teal Blue — top-left tile */
  --blue:   #60A0C0;  /* Sky Blue tile */
  --blue-d: #4582b0;
  --sky:    #7bb5d8;
  --green:  #64AC6C;  /* Green tile */
  --green-d:#4f9559;
  --purple: #6C649C;  /* Purple tile */
  --amber:  #E49C3C;  /* Orange tile */
  --yellow: #F4DC34;  /* Yellow tile */

  /* warm accent (emphasis only) — coral & pink tiles (regulation) */
  --coral:  #DC7464;
  --pink:   #DC6C94;
  --orange: #E49C3C;

  /* surfaces */
  --bg:     #ffffff;
  --bg-soft:#f5f8fa;
  --bg-mist:#eef4f7;

  /* gradients — logo tile colors */
  --grad-band: linear-gradient(118deg, #54ACB4 0%, #60A0C0 18%, #34A494 38%, #64AC6C 56%, #E49C3C 78%, #DC7464 100%);
  --grad-band-soft: linear-gradient(118deg, #bcdde2 0%, #c2d8ec 22%, #b8e0d4 44%, #cfe7bd 62%, #f4e2b0 80%, #eec7ba 100%);
  --grad-teal: linear-gradient(135deg, #E5897A, #CF6450);
  --grad-accent: linear-gradient(92deg, #e08672, #cf6450);

  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --pill: 999px;

  --shadow-xs: 0 1px 2px rgba(22,49,78,.05);
  --shadow-sm: 0 2px 10px rgba(22,49,78,.06);
  --shadow:    0 14px 38px -16px rgba(22,49,78,.18), 0 2px 8px rgba(22,49,78,.05);
  --shadow-lg: 0 30px 70px -28px rgba(22,49,78,.24);

  --font: "Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic","Meiryo",system-ui,sans-serif;
  --font-num: "Inter","Noto Sans JP",system-ui,sans-serif;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; padding: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }

/* ============ Logo ============ */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__lockup { height: 40px; width: auto; display: block; }
.hero__logo .logo__lockup { height: 58px; }
.logo__mark { width: 40px; height: 40px; object-fit: contain; flex: 0 0 auto; }
.logo__type {
  font-weight: 700; font-size: 24px; letter-spacing: .12em; color: var(--navy);
  font-family: var(--font-num); white-space: nowrap;
}
.logo__type .i-dot { color: inherit; }
.logo__type .ten { font-family: var(--font-num); font-weight: 500; letter-spacing: .02em; }
.logo__type .iro { font-family: var(--font); color: var(--navy); letter-spacing: .04em; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(22,49,78,.06);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink-soft); font-size: 13.5px; font-weight: 600; transition: color .15s; }
.nav a:hover { color: var(--teal-d); }
.nav__cta {
  background: var(--grad-teal); color: #fff !important;
  padding: 10px 20px; border-radius: var(--pill);
  font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 18px -8px rgba(220,116,100,.6);
}
.nav__cta:hover { transform: translateY(-1px); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 30px; border-radius: var(--pill);
  font-size: 15px; font-weight: 700; letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn .chev {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
}
.btn-primary {
  background: var(--grad-teal); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(220,116,100,.6);
}
.btn-primary .chev { background: rgba(255,255,255,.22); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(220,116,100,.68); }
.btn-ghost {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost .chev { border: 1.5px solid var(--navy); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-white {
  background: #fff; color: var(--teal-d);
  box-shadow: var(--shadow);
}
.btn-white .chev { background: var(--teal-50); color: var(--teal-d); }
.btn-white:hover { transform: translateY(-2px); }

/* ============ Section scaffold ============ */
section { position: relative; padding: 104px 0; }
.eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.eyebrow.is-center { justify-content: center; }
.eyebrow .num { font-family: var(--font-num); font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.eyebrow .bar { width: 50px; height: 2px; background: var(--teal-l); border-radius: 2px; }
.eyebrow .tag {
  font-family: var(--font-num); font-size: 12px; letter-spacing: .26em;
  font-weight: 700; color: var(--teal-d);
}
.s-title {
  font-size: 38px; line-height: 1.45; font-weight: 800; color: var(--navy);
  margin: 0 0 14px; letter-spacing: .01em; text-wrap: balance;
}
.s-title .em { color: var(--teal-d); }
.s-title .coral {
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.s-lead { font-size: 18px; font-weight: 600; color: var(--ink-soft); margin: 0 0 52px; }
.s-lead.is-center { text-align: center; }

/* deco circles */
.deco { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.deco-1 { top: -140px; right: -160px; width: 460px; height: 460px;
  background: radial-gradient(circle at 35% 35%, rgba(220,116,100,.10), transparent 64%); }
.deco-2 { bottom: -160px; left: -180px; width: 520px; height: 520px;
  background: radial-gradient(circle at 60% 35%, rgba(91,149,207,.09), transparent 64%); }
.container.rel { position: relative; z-index: 1; }

/* ============ HERO ============ */
.hero { padding: 70px 0 110px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero__eyebrow .num { font-family: var(--font-num); font-size: 16px; font-weight: 700; color: var(--navy); }
.hero__eyebrow .line { width: 58px; height: 1.5px; background: var(--teal); }
.hero__logo { margin-bottom: 30px; }
.hero__logo .logo__mark { width: 58px; height: 58px; }
.hero__logo .logo__type { font-size: 38px; }
.hero h1 {
  font-size: 40px; line-height: 1.5; font-weight: 800; color: var(--navy);
  margin: 0 0 24px; letter-spacing: .01em;
}
.hero h1 .em { color: var(--teal-d); }
.hero__sub { font-size: 16px; line-height: 2; color: var(--ink-soft); margin: 0 0 36px; max-width: 540px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust { margin-top: 30px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.hero__trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

.hero__visual { position: relative; width: 100%; max-width: 540px; margin-left: auto; aspect-ratio: 1/1; }
.hero__photo {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  box-shadow: 0 40px 90px -34px rgba(22,49,78,.28);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual::before {
  content: ""; position: absolute; inset: -10%; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(220,116,100,.12), transparent 60%);
  z-index: -1;
}
.hero__chip {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 2;
}
.hero__chip .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--teal-50);
  display: flex; align-items: center; justify-content: center; color: var(--teal-d); }
.hero__chip .k { font-size: 11px; color: var(--muted); font-weight: 600; }
.hero__chip .v { font-size: 20px; font-weight: 800; color: var(--navy); font-family: var(--font-num); line-height: 1.1; }
.hero__chip.c1 { left: -28px; top: 26%; }
.hero__chip.c2 { right: -22px; bottom: 20%; }

/* ============ section header pill (deck style) ============ */
.head-pill {
  display: inline-block; margin: 0 auto 8px; padding: 14px 46px;
  background: #fff; border-radius: var(--pill);
  font-size: 26px; font-weight: 800; color: var(--navy);
  box-shadow: var(--shadow-sm); position: relative; z-index: 2;
}

/* ============ 02 PROBLEM ============ */
.problem { background: var(--bg-soft); }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.pcard { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.pcard__title { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.45; }
.pcard__title small { font-size: 16px; color: var(--ink-soft); font-weight: 700; }
.pcard__ic { flex: 0 0 52px; }
.pcard__hr { height: 1px; background: var(--line); margin: 4px 0 22px; }
.pcard__klabel { text-align: center; font-size: 14px; color: var(--ink-soft); font-weight: 700; margin-bottom: 6px; }
.pcard__sub { text-align: center; font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.pcard__metric { text-align: center; font-family: var(--font-num); font-weight: 800; line-height: 1.05; letter-spacing: -.01em;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pcard__metric .big { font-size: 62px; }
.pcard__metric .jp { font-family: var(--font); font-size: 30px; }
.pcard__metric .pct { font-size: 40px; }
.pcard__metric .note-inline { font-family: var(--font); font-size: 17px; color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft); font-weight: 700; }
.pcard__src { margin-top: auto; padding-top: 18px; text-align: center; font-size: 11.5px; color: var(--faint); line-height: 1.6; }

/* ============ 03 COST ============ */
.cost__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 52px; align-items: center; }
.cost__pill { display: inline-flex; align-items: center; gap: 10px; padding: 11px 24px;
  background: var(--grad-teal); color: #fff; border-radius: var(--pill); font-size: 14px; font-weight: 700;
  margin: 14px 0 28px; box-shadow: 0 12px 24px -12px rgba(220,116,100,.5); }
.cost__icons { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; text-align: center; margin-bottom: 24px; }
.cost__ic svg { width: 50px; height: 50px; margin: 0 auto 8px; }
.cost__ic .l { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.cost__hr { height: 1px; background: var(--line); margin: 6px 0 20px; }
.cost__formula { font-size: 16px; font-weight: 700; color: var(--navy2); margin-bottom: 8px; }
.cost__total { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 30px; }
.cost__total .red { font-family: var(--font-num); font-size: 40px;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cost__total .red .jp { font-family: var(--font); font-size: 26px; }
.cost__visual { position: relative; }
.cost__photo { width: 100%; aspect-ratio: 1/1.04; border-radius: 50% 50% 50% 50% / 46% 46% 54% 54%; overflow: hidden; box-shadow: var(--shadow-lg); }
.cost__photo img { width: 100%; height: 100%; object-fit: cover; }
.cost__banner {
  position: absolute; right: -10px; bottom: 24px; max-width: 250px;
  background: var(--grad-accent); color: #fff; border-radius: 18px; padding: 22px 24px;
  box-shadow: 0 20px 44px -18px rgba(239,106,147,.6);
}
.cost__banner .big { font-size: 24px; font-weight: 800; line-height: 1.5; }
.cost__banner .small { font-size: 13px; opacity: .92; margin-top: 6px; }

/* ============ Generic 2-col table (gap/method/analysis/improve) ============ */
.dtable { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin: 0 auto; max-width: 940px; }
.dtable .thr { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); }
.dtable .thr > div { padding: 16px 28px; color: #fff; font-weight: 700; font-size: 16px; text-align: center; }
.dtable .thr > div:first-child { border-right: 1px solid rgba(255,255,255,.16); }
.dtable .tr { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line-soft); }
.dtable .tr:last-child { border-bottom: none; }
.dtable .tr > div { padding: 18px 28px; font-size: 15.5px; font-weight: 600; }
.dtable .tr > .c-left { color: var(--ink-soft); border-right: 1px solid var(--line-soft); display: flex; align-items: center; gap: 12px; }
.dtable .tr > .c-right { color: var(--navy); font-weight: 700; }
.dtable .num-dot { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; font-family: var(--font-num); }

/* gap table enlarged */
.gap .dtable { max-width: 1080px; }
.gap .dtable .thr > div { padding: 22px 36px; font-size: 19px; }
.gap .dtable .tr > div { padding: 26px 36px; font-size: 18px; }
.gap .dtable .num-dot { flex: 0 0 32px; width: 32px; height: 32px; font-size: 15px; }

/* gap flow */
.flow { display: grid; grid-template-columns: repeat(7, 1fr); align-items: center; gap: 6px; margin: 44px auto 0; max-width: 1000px; }
.flow__node { aspect-ratio: 1/1; background: #fff; border: 1.5px solid var(--teal-100); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; text-align: center; padding: 10px;
  box-shadow: 0 8px 18px -10px rgba(220,116,100,.3); }
.flow__node svg { width: 30px; height: 30px; }
.flow__node .t { font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.flow__arr { display: flex; align-items: center; justify-content: center; color: var(--teal); }
.flow__arr svg { width: 18px; height: 18px; }
.banner-line { display: block; max-width: 560px; margin: 40px auto 0; text-align: center; background: var(--navy);
  color: #fff; padding: 18px 30px; border-radius: var(--pill); font-size: 19px; font-weight: 800; letter-spacing: .12em;
  box-shadow: 0 16px 32px -14px rgba(22,49,78,.5); }

/* generic emphasis banner (rounded card) */
.emphasis {
  max-width: 940px; margin: 44px auto 0; background: #fff; border-radius: var(--radius-xl);
  padding: 28px 36px; text-align: center; box-shadow: var(--shadow); font-size: 24px; font-weight: 800; color: var(--navy);
}
.emphasis .coral { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ 04 method (なぜ従来施策) ============ */
.method { background: var(--bg-soft); }
.failgrid { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.failcard { display: grid; grid-template-columns: 64px 1fr; grid-template-areas: "ic name" "ic fail"; align-items: center; gap: 4px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; box-shadow: var(--shadow-sm); position: relative; }
.failcard__ic { grid-area: ic; width: 56px; height: 56px; border-radius: 16px; background: var(--teal-50); color: var(--teal-d);
  display: flex; align-items: center; justify-content: center; }
.failcard__ic svg { width: 32px; height: 32px; }
.failcard__name { grid-area: name; font-size: 18px; font-weight: 800; color: var(--navy); }
.failcard__arrow { display: none; }
.failcard__fail { grid-area: fail; display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.failcard__fail b { color: var(--coral); font-weight: 800; }
.failcard__fail .x { flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; background: #fde6ec; color: var(--coral);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.method__bridge { display: flex; flex-direction: column; align-items: center; margin: 30px 0 0; color: var(--teal-l); }
.method__bridge-line { width: 2px; height: 26px; background: linear-gradient(180deg, transparent, var(--teal-l)); }
.method__bridge-chev { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1.5px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center; color: var(--teal-d); box-shadow: var(--shadow-sm); margin-top: -2px; }
.emphasis__ic { display: inline-flex; vertical-align: -5px; margin-right: 10px; width: 26px; height: 26px; color: var(--coral); }
.emphasis__ic svg { width: 26px; height: 26px; }

/* ============ 05.5 engagement survey intro ============ */
.esurvey { overflow: hidden; }
.esurvey__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.esurvey__lead { font-size: 16px; line-height: 1.95; color: var(--ink-soft); font-weight: 600; margin: 0 0 26px; }
.esurvey__points { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 16px; }
.esurvey__points li { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.esurvey__points .ic { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px; background: var(--teal-50); color: var(--teal-d); display: flex; align-items: center; justify-content: center; }
.esurvey__points .ic svg { width: 22px; height: 22px; }
.esurvey__points b { display: block; color: var(--navy); font-size: 15.5px; font-weight: 800; margin-bottom: 2px; }

.esurvey__visual { position: relative; }
.surveycard { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 30px 30px 26px; box-shadow: var(--shadow-lg); overflow: hidden; }
.surveycard__bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--grad-band); }
.surveycard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.surveycard__title { font-size: 16px; font-weight: 800; color: var(--navy); }
.surveycard__chip { font-family: var(--font-num); font-size: 12px; font-weight: 600; color: var(--muted); background: var(--bg-soft); padding: 5px 12px; border-radius: 999px; }
.surveycard__score { display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: center; margin-bottom: 22px; }
.gauge { position: relative; width: 130px; height: 130px; }
.gauge svg { width: 130px; height: 130px; }
.gauge__num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-num); font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; }
.gauge__num span { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.surveycard__kpis { display: grid; gap: 10px; }
.skpi { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 8px; font-size: 13px; }
.skpi:last-child { border-bottom: none; }
.skpi .k { color: var(--ink-soft); font-weight: 600; }
.skpi .v { font-family: var(--font-num); font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.skpi .v i { font-style: normal; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 5px; }
.skpi .v.up i { color: #3f9a63; background: #e9f5ee; }
.skpi .v.down i { color: #c25744; background: #fbe7e2; }
.surveycard__bars { display: grid; gap: 11px; }
.sbar { display: grid; grid-template-columns: 52px 1fr 28px; gap: 12px; align-items: center; font-size: 12.5px; }
.sbar .nm { color: var(--ink-soft); font-weight: 600; }
.sbar .track { height: 9px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.sbar .track i { display: block; height: 100%; border-radius: 999px; }
.sbar .vv { font-family: var(--font-num); font-weight: 700; color: var(--navy); text-align: right; }
.surveycard__float { position: absolute; right: -14px; bottom: -16px; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 12px 18px; display: flex; align-items: center; gap: 12px; z-index: 2; }
.surveycard__float .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.surveycard__float .ic svg { width: 20px; height: 20px; }
.surveycard__float .tx { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.surveycard__float .tx b { color: var(--navy); font-weight: 800; }

/* ============ merged-section inner divider ============ */
.merge-divider { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 64px auto 14px; max-width: 760px; }
.merge-divider::before, .merge-divider::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.merge-divider span { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: .04em; white-space: nowrap; }

/* ============ 06 SOLUTION steps ============ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 30px 0 0; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 58px 22px 30px; text-align: center; box-shadow: var(--shadow-sm); }
.step__badge { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); width: 54px; height: 54px; border-radius: 50%;
  background: var(--grad-teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-num); font-weight: 700; font-size: 22px;
  box-shadow: 0 10px 22px -8px rgba(220,116,100,.55); }
.step:nth-child(2) .step__badge { background: linear-gradient(135deg,#5b95cf,#3f78b8); box-shadow: 0 10px 22px -8px rgba(91,149,207,.5); }
.step__t { font-size: 22px; font-weight: 800; color: var(--teal-d); margin: 4px 0 14px; }
.step:nth-child(2) .step__t { color: var(--blue-d); }
.step__ic { width: 84px; height: 84px; margin: 8px auto 16px; }
.step__hr { height: 1px; background: var(--line); margin: 0 0 14px; }
.step__cap { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }
.step__arr { position: absolute; right: -13px; top: 50%; transform: translateY(-50%); z-index: 3; color: var(--teal-l); }
.step:last-child .step__arr { display: none; }

.quote-pill { display: flex; align-items: center; gap: 18px; max-width: 760px; margin: 44px auto 0; padding: 20px 32px;
  background: #fff; border: 1.5px solid var(--teal-100); border-radius: var(--pill); box-shadow: 0 12px 28px -14px rgba(220,116,100,.34); }
.quote-pill .heart { flex: 0 0 52px; height: 52px; border-radius: 50%; background: var(--teal-50); display: flex; align-items: center; justify-content: center; color: var(--teal-d); }
.quote-pill .t { font-size: 19px; font-weight: 800; color: var(--navy); }
.quote-pill .t .coral { color: var(--coral); }
.quote-pill .t .teal { color: var(--teal-d); }

/* ============ 07 SURVEY (11 categories) ============ */
.survey { background: var(--bg-soft); }
.survey__cats { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.scat { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-radius: var(--radius); background: #fff;
  font-weight: 800; font-size: 17px; color: var(--navy); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.scat .badge { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; color: #fff; font-family: var(--font-num); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.scat.t-pink   { border-left: 4px solid #e8638d; } .scat.t-pink   { color: #16314e; }
.scat.t-blue   { border-left: 4px solid #4f86c4; }
.scat.t-blue2  { border-left: 4px solid #5b95cf; }
.scat.t-green  { border-left: 4px solid #5aa566; }
.scat.t-green2 { border-left: 4px solid #5aa566; }
.scat.t-purple { border-left: 4px solid #8d6acf; }
.scat.t-purple2{ border-left: 4px solid #8d6acf; }
.scat.t-amber  { border-left: 4px solid #d99a3e; }
.scat.t-lav    { border-left: 4px solid #c45a9c; }
.survey__table { max-width: 1080px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.survey__row { display: grid; grid-template-columns: 1.05fr 1fr 1.25fr; align-items: center; border-bottom: 1px solid #fff; }
.survey__row.head { background: var(--navy); }
.survey__row.head > div { color: #fff; font-weight: 700; font-size: 15px; padding: 15px 24px; text-align: center; }
.survey__row > div { padding: 13px 24px; font-size: 14.5px; }
.survey__cat { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 16px; }
.survey__cat .badge { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; color: #fff; font-family: var(--font-num); font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.survey__role, .survey__ex { color: var(--ink-soft); font-weight: 600; text-align: center; }
/* tinted rows */
.survey__row.t-pink   { background: #fde6ec; } .survey__row.t-pink   .survey__cat { color: #d6517f; }
.survey__row.t-blue   { background: #e2eefb; } .survey__row.t-blue   .survey__cat { color: #3f78b8; }
.survey__row.t-blue2  { background: #e8f1fc; } .survey__row.t-blue2  .survey__cat { color: #4f86c4; }
.survey__row.t-green  { background: #e3f4e7; } .survey__row.t-green  .survey__cat { color: #4f9a5c; }
.survey__row.t-green2 { background: #e9f6ec; } .survey__row.t-green2 .survey__cat { color: #5aa566; }
.survey__row.t-purple { background: #efe7fb; } .survey__row.t-purple .survey__cat { color: #8159c9; }
.survey__row.t-purple2{ background: #f3edfb; } .survey__row.t-purple2.survey__cat { color: #8d6acf; }
.survey__row.t-amber  { background: #fdf2dd; } .survey__row.t-amber  .survey__cat { color: #c98a2e; }
.survey__row.t-lav    { background: #fbe9f3; } .survey__row.t-lav    .survey__cat { color: #c45a9c; }
.survey__cat .badge.b-pink{background:#e8638d} .survey__cat .badge.b-blue{background:#4f86c4} .survey__cat .badge.b-green{background:#5aa566} .survey__cat .badge.b-purple{background:#8d6acf} .survey__cat .badge.b-amber{background:#d99a3e}
.survey__foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 24px; }

/* ===== 6-group survey (A–F factor model / regulation group colors) ===== */
.survey__groups { max-width: 1000px; margin: 0 auto; display: grid; gap: 14px; }
.sgroup { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: center;
  background:#fff; border:1px solid var(--line); border-left:5px solid var(--g);
  border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow-sm); }
.sgroup__head { display:flex; align-items:center; gap:12px; }
.sgroup__ltr { flex:0 0 36px; width:36px; height:36px; border-radius:10px; background:var(--g);
  color:#fff; font-family:var(--font-num); font-weight:800; font-size:18px;
  display:flex; align-items:center; justify-content:center; }
.sgroup__name { font-size:18px; font-weight:800; color:var(--g); line-height:1.3; }
.sgroup__name small { display:block; font-size:11px; font-weight:700; color:var(--muted); letter-spacing:.04em; }
.sgroup__cats { display:flex; flex-wrap:wrap; gap:9px; }
.scat2 { display:inline-flex; align-items:center; gap:9px; background:#f4f7fa; border:1px solid var(--line);
  border-radius:999px; padding:8px 16px 8px 8px; font-size:14.5px; font-weight:700; color:var(--navy); }
.scat2 i { flex:0 0 24px; width:24px; height:24px; border-radius:50%; background:var(--g); color:#fff;
  font-family:var(--font-num); font-weight:700; font-size:12px; font-style:normal;
  display:flex; align-items:center; justify-content:center; }
.sgroup.gA{--g:#8A95A1} .sgroup.gB{--g:#4a90d9} .sgroup.gC{--g:#5BAA63}
.sgroup.gD{--g:#8C7CC0} .sgroup.gE{--g:#C99700} .sgroup.gF{--g:#DC6C94}
@media (max-width:680px){ .sgroup{ grid-template-columns:1fr; gap:12px; } }

/* ============ 08 DASHBOARD (dark) ============ */
.dash-wrap { max-width: 1080px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(150deg, #0f2236 0%, #16314e 60%, #1a2c45 100%); box-shadow: var(--shadow-lg); padding: 40px 40px 44px; }
.dash-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: center; margin-bottom: 30px; }
.dash-title { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.4; margin: 0; }
.dash-title .blue { color: #7fb0e8; }
.dash-sub { color: #9fb2c8; font-size: 14px; margin-top: 10px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.kpi { border-radius: 14px; padding: 16px 16px 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }
.kpi::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; }
.kpi.k1::before { background: linear-gradient(90deg,#2bb6a6,#84c25f); }
.kpi.k2::before { background: linear-gradient(90deg,#f4944f,#ef6a93); }
.kpi.k3::before { background: linear-gradient(90deg,#ef6a93,#f4944f); }
.kpi .lbl { font-family: var(--font-num); font-size: 10px; letter-spacing: .14em; color: #9fb2c8; font-weight: 600; }
.kpi .val { font-family: var(--font-num); font-size: 44px; font-weight: 800; color: #fff; line-height: 1.05; margin: 6px 0 4px; }
.kpi.k2 .val { color: #f6a06a; }
.kpi .assess { font-size: 22px; font-weight: 800; color: #f6896a; display: flex; align-items: center; gap: 8px; }
.kpi .assess .d { width: 9px; height: 9px; border-radius: 50%; background: #f6896a; }
.kpi .delta { font-size: 11px; color: #8fa6bd; }
.dash-note { background: rgba(239,106,147,.10); border: 1px solid rgba(239,106,147,.3); border-radius: 12px; padding: 14px 20px; color: #ffd3df; font-size: 13.5px; }
.dash-note b { color: #ff9bb4; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dpanel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 20px 22px; }
.dpanel h4 { margin: 0 0 4px; color: #fff; font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.dpanel h4 .nb { width: 22px; height: 22px; border-radius: 6px; background: var(--grad-accent); color: #fff; font-family: var(--font-num); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dpanel .h-sub { color: #8fa6bd; font-size: 11.5px; margin-bottom: 16px; }
.donut-wrap { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; }
.risk-leg { font-size: 12px; }
.risk-leg .r { display: grid; grid-template-columns: 1fr auto; gap: 6px; align-items: center; margin-bottom: 12px; color: #c7d4e2; }
.risk-leg .r .nm { display: flex; align-items: center; gap: 8px; }
.risk-leg .r .sw { width: 10px; height: 10px; border-radius: 3px; }
.risk-leg .r .pc { font-family: var(--font-num); font-weight: 700; color: #fff; font-size: 15px; }
.risk-leg .track { grid-column: 1 / -1; height: 5px; border-radius: 4px; background: rgba(255,255,255,.08); overflow: hidden; }
.risk-leg .track i { display: block; height: 100%; border-radius: 4px; }
.struct-row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,.03); margin-bottom: 10px; border-left: 3px solid; }
.struct-row .n { font-family: var(--font-num); font-weight: 800; font-size: 18px; color: #fff; }
.struct-row .tx b { color: #fff; font-size: 13.5px; display: block; }
.struct-row .tx span { color: #9fb2c8; font-size: 11.5px; }
.struct-row .pip { margin-left: auto; font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }

/* ============ analysis criteria ============ */
.criteria { display: grid; grid-template-columns: 1.3fr .9fr; gap: 28px; align-items: start; max-width: 1000px; margin: 0 auto; }
.criteria__box { background: #fff; border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.criteria__box h4 { margin: 0 0 16px; font-size: 17px; font-weight: 800; color: var(--navy); }
.crit-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.crit-item:last-child { border-bottom: none; }
.crit-item .chip { flex: 0 0 auto; font-family: var(--font-num); font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 999px; }
.crit-item .chip.low { background: #e9f5ee; color: #3f9a63; }
.crit-item .chip.mid { background: #fdf2dd; color: #c98a2e; }
.crit-item .chip.high { background: #fde6ec; color: #d6517f; }
.crit-item .lbl { font-weight: 700; color: var(--navy); }
.criteria__hl { background: var(--grad-accent); color: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: 0 18px 40px -18px rgba(239,106,147,.5); display: flex; flex-direction: column; justify-content: center; }
.criteria__hl .big { font-size: 22px; font-weight: 800; line-height: 1.6; }
.criteria__hl .small { font-size: 13px; opacity: .92; margin-top: 12px; }

/* ============ 09 LGBTQ ============ */
.lgbtq { background: var(--grad-band); color: #fff; }
.lgbtq .head-pill { color: var(--navy); }
.lgbtq__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: center; max-width: 1000px; margin: 0 auto; }
.lgbtq__lead { font-size: 26px; font-weight: 800; line-height: 1.8; color: #fff; }
.lgbtq__card { background: #fff; border-radius: var(--radius-xl); padding: 14px 30px; box-shadow: var(--shadow-lg); }
.lgbtq__item { display: flex; align-items: center; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line-soft); }
.lgbtq__item:last-child { border-bottom: none; }
.lgbtq__item .n { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-num); font-weight: 700; font-size: 19px; }
.lgbtq__item .tx { font-size: 15.5px; font-weight: 700; color: var(--navy); line-height: 1.6; }
.lgbtq__item .tx em { color: var(--teal-d); font-style: normal; }

/* ============ 11 expected effect ============ */
.effect__table { max-width: 980px; margin: 0 auto 36px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.effect__row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.effect__row.head > div { padding: 16px; color: #fff; font-weight: 700; text-align: center; font-size: 15px; }
.effect__row.head .h1c { background: var(--teal); }
.effect__row.head .h2c { background: #7d8a97; }
.effect__row.head .h3c { background: var(--blue-d); }
.effect__row:not(.head) { background: #fff; border-bottom: 1px solid var(--line-soft); }
.effect__row:not(.head):last-child { border-bottom: none; }
.effect__row:not(.head) > div { padding: 18px 16px; text-align: center; }
.effect__row .met { font-weight: 800; color: var(--navy); }
.effect__row .before { color: var(--muted); font-weight: 600; }
.effect__row .after { color: var(--teal-d); font-weight: 800; font-size: 19px; }
.roi-box { max-width: 980px; margin: 0 auto; background: var(--bg-mist); border-radius: var(--radius-lg); padding: 28px 32px; text-align: center; border: 1px dashed var(--teal-l); }
.roi-box h4 { margin: 0 0 8px; font-size: 19px; font-weight: 800; color: var(--navy); }
.roi-box p { margin: 4px 0; font-size: 16px; color: var(--ink-soft); font-weight: 600; }
.roi-box .hl { color: var(--teal-d); font-weight: 800; }
.roi-box .mini { font-size: 13px; color: var(--muted); }

/* ============ 12 comparison ============ */
.compare { background: var(--bg-soft); }
.compare__table { max-width: 1000px; margin: 0 auto 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
.compare__row { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; }
.compare__row.head > div { padding: 15px; font-weight: 700; text-align: center; font-size: 14.5px; color: #fff; }
.compare__row.head .c0 { background: var(--navy); }
.compare__row.head .c1 { background: #7d8a97; }
.compare__row.head .c2 { background: #7d8a97; }
.compare__row.head .c3 { background: var(--grad-teal); }
.compare__row:not(.head) { border-bottom: 1px solid var(--line-soft); }
.compare__row:not(.head):last-child { border-bottom: none; }
.compare__row:not(.head) > div { padding: 16px; text-align: center; font-weight: 700; }
.compare__row .rowlbl { color: var(--navy); }
.compare__row .own { background: var(--teal-50); }
.mk { font-size: 20px; font-weight: 800; }
.mk.o { color: var(--teal-d); } .mk.tri { color: #d99a3e; } .mk.x { color: #c2cdd8; } .mk.dbl { color: var(--teal-d); font-size: 22px; }
.diffs { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.diff { background: #fff; border-radius: var(--radius-lg); padding: 28px 26px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.diff .n { position: absolute; top: -18px; left: 24px; width: 40px; height: 40px; border-radius: 50%; background: var(--grad-accent); color: #fff; font-family: var(--font-num); font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px -8px rgba(239,106,147,.5); }
.diff .t { margin-top: 12px; font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.5; }

/* ============ 13 process steps ============ */
.proc { background: var(--grad-band-soft); }
.proc .head-pill { color: var(--navy); }
.proc__lead { text-align: center; color: var(--navy2); font-weight: 700; font-size: 18px; margin: 0 0 48px; }
.proc__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; max-width: 1040px; margin: 0 auto; }
.proc__card { background: #fff; border-radius: var(--radius-lg); padding: 26px 22px 28px; box-shadow: var(--shadow); text-align: center; position: relative; }
.proc__step { font-family: var(--font-num); font-size: 22px; font-weight: 800; color: var(--teal-d); margin-bottom: 14px; }
.proc__ic { width: 56px; height: 56px; margin: 0 auto 14px; color: var(--teal-d); }
.proc__t { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.45; margin-bottom: 10px; }
.proc__meta { font-size: 12px; color: var(--muted); font-weight: 600; }
.proc__foot { text-align: center; margin: 44px auto 0; font-size: 22px; font-weight: 800; color: var(--navy); }

/* ============ 14 pricing ============ */
.price-hero { max-width: 680px; margin: 0 auto; background: #fff; border-radius: var(--radius-xl); padding: 52px 40px 46px;
  text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--line); position: relative; overflow: hidden; }
.price-hero::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: var(--grad-band); }
.price-hero__label { display: inline-block; font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: .04em;
  background: var(--teal-50); padding: 8px 24px; border-radius: var(--pill); margin-bottom: 18px; }
.price-hero__main { display: flex; align-items: baseline; justify-content: center; gap: 4px; line-height: 1; margin-bottom: 14px; }
.price-hero__main .num { font-family: var(--font-num); font-size: 96px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.price-hero__main .unit { font-size: 34px; font-weight: 800; color: var(--navy); }
.price-hero__main .from { font-size: 44px; font-weight: 800; color: var(--teal-d); margin-left: 2px; }
.price-hero__desc { font-size: 16px; font-weight: 600; color: var(--ink-soft); margin-bottom: 30px; }
.price-hero__cta { margin: 0 auto; }
.pricing__banner { max-width: 760px; margin: 0 auto 40px; background: #fff; border-radius: var(--radius-xl); padding: 26px; text-align: center; box-shadow: var(--shadow); }
.pricing__banner .k { font-size: 17px; font-weight: 800; color: var(--navy); }
.pricing__banner .v { font-size: 30px; font-weight: 800; margin-top: 4px;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1040px; margin: 0 auto; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan.feat { border: 2px solid var(--teal); box-shadow: var(--shadow); position: relative; }
.plan.feat::before { content: "おすすめ"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-teal); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 999px; }
.plan__name { font-size: 19px; font-weight: 800; color: var(--navy); }
.plan__desc { font-size: 13px; color: var(--ink-soft); margin: 10px 0 18px; line-height: 1.7; min-height: 44px; }
.plan__price { font-family: var(--font-num); font-size: 30px; font-weight: 800; color: var(--navy); }
.plan__price small { font-size: 14px; color: var(--muted); font-family: var(--font); font-weight: 600; }
.plan__free { display: inline-block; margin-top: 10px; background: var(--grad-accent); color: #fff; font-weight: 700; font-size: 14px; padding: 8px 18px; border-radius: 999px; }
.plan__note { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ============ 15 company ============ */
.company { background: var(--grad-band); color: #fff; }
.company .head-pill { color: var(--navy); }
.company__lead { text-align: center; font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 48px; }
.company__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 940px; margin: 0 auto; }
.company__card { background: #fff; border-radius: var(--radius-xl); padding: 38px 34px; box-shadow: var(--shadow-lg); text-align: center; }
.company__logo { height: 64px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.company__desc { font-size: 14.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.85; text-align: left; }

/* odinary logo recreate */
.odinary { display: inline-flex; align-items: center; gap: 6px; }
.odinary .ring { width: 44px; height: 44px; border-radius: 50%; background: conic-gradient(from 90deg, #e0568f, #f4944f, #c9c84a, #5aa566, #2bb6a6, #4f86c4, #8159c9, #e0568f); -webkit-mask: radial-gradient(circle, transparent 11px, #000 12px); mask: radial-gradient(circle, transparent 11px, #000 12px); }
.odinary .txt { font-family: var(--font-num); font-size: 34px; font-weight: 700; color: var(--navy); letter-spacing: .01em; }
.company__sub { font-family: var(--font-num); font-size: 13px; color: var(--ink-soft); letter-spacing: .14em; margin-top: 4px; }
/* honne logo recreate */
.honne { display: inline-flex; align-items: center; gap: 12px; }
.honne .bubble { width: 50px; height: 44px; border-radius: 12px 12px 12px 4px; background: linear-gradient(135deg,#f49152,#ef7a3c); position: relative; }
.honne .bubble::before, .honne .bubble::after { content: ""; position: absolute; top: 18px; width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.honne .bubble::before { left: 14px; } .honne .bubble::after { left: 28px; }
.honne .txt { font-size: 28px; font-weight: 800; color: var(--navy); }
.honne .txt small { display: block; font-family: var(--font-num); font-size: 9px; letter-spacing: .12em; color: var(--muted); font-weight: 600; }

/* ============ CONTACT (funnel) ============ */
.contact { background: var(--navy); color: #fff; overflow: hidden; }
.contact .deco-c1 { position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(220,116,100,.28), transparent 64%); }
.contact .deco-c2 { position: absolute; bottom: -160px; left: -140px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle at 60% 40%, rgba(91,149,207,.22), transparent 64%); }
.contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: start; }
.contact__intro .tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 24px; }
.contact__intro .tag .pip { background: var(--grad-accent); padding: 2px 10px; border-radius: 999px; font-size: 11px; }
.contact__intro h2 { font-size: 34px; font-weight: 800; line-height: 1.5; margin: 0 0 18px; color: #fff; }
.contact__intro p { color: #b9c8d8; font-size: 15px; line-height: 1.9; margin: 0 0 28px; }
.contact__list { list-style: none; padding: 0; margin: 0 0 30px; }
.contact__list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; color: #d7e2ee; font-size: 14.5px; font-weight: 600; }
.contact__list li svg { flex: 0 0 22px; color: var(--teal-l); }
.contact__meta { display: flex; flex-direction: column; gap: 6px; color: #9fb2c8; font-size: 13px; }
.contact__meta b { color: #fff; font-family: var(--font-num); font-size: 17px; }

.form { background: #fff; border-radius: var(--radius-xl); padding: 36px 36px 32px; box-shadow: var(--shadow-lg); color: var(--ink); }
.form__row { margin-bottom: 18px; }
.form__row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form label .req { color: var(--coral); font-size: 11px; margin-left: 6px; }
.form label .opt { color: var(--faint); font-size: 11px; margin-left: 6px; font-weight: 600; }
.form input, .form select, .form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-size: 14.5px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(220,116,100,.15); }
.form textarea { resize: vertical; min-height: 96px; }
.form__choices { display: flex; flex-wrap: wrap; gap: 10px; }
.form__choices label { display: inline-flex; align-items: center; gap: 8px; margin: 0; padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .15s; }
.form__choices input { width: auto; accent-color: var(--teal); }
.form__choices label:has(input:checked) { border-color: var(--teal); background: var(--teal-50); color: var(--teal-d); }
.form__consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.form__consent input { width: auto; margin-top: 3px; accent-color: var(--teal); }
.form__consent a { color: var(--teal-d); text-decoration: underline; }
.form__submit { width: 100%; justify-content: center; }
.form__success { display: none; text-align: center; padding: 30px 10px; }
.form__success.show { display: block; }
.form__success .ck { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--teal-50); display: flex; align-items: center; justify-content: center; color: var(--teal-d); }
.form__success h3 { font-size: 21px; color: var(--navy); margin: 0 0 10px; }
.form__success p { color: var(--ink-soft); font-size: 14px; }
.form.is-sent .form__fields { display: none; }

/* ===== HubSpot embedded form (inside .form white card) ===== */
.form .hs-form fieldset { max-width: none !important; }
.form .hs-form-field { margin-bottom: 16px; }
.form .hs-form-field > label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form .hs-form-field > label .hs-form-required { color: var(--coral); margin-left: 4px; }
.form .hs-input:not([type=checkbox]):not([type=radio]) {
  width: 100% !important; box-sizing: border-box; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 14.5px; font-family: var(--font); color: var(--ink); background: #fff; }
.form textarea.hs-input { min-height: 96px; resize: vertical; }
.form .hs-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(220,116,100,.15); }
.form .input { margin-right: 0 !important; }
.form .hs-form .inputs-list { list-style: none; margin: 6px 0 0; padding: 0; }
.form .hs-form-checkbox, .form .hs-form-radio, .form .hs-form-booleancheckbox { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 6px; }
.form .hs-input[type=checkbox], .form .hs-input[type=radio] { width: auto !important; accent-color: var(--teal); margin-right: 8px; }
.form .hs-button {
  width: 100%; border: none; cursor: pointer; padding: 16px 30px; border-radius: var(--pill);
  font-size: 15px; font-weight: 700; color: #fff; background: var(--grad-teal); margin-top: 6px;
  box-shadow: 0 14px 30px -12px rgba(220,116,100,.6); transition: transform .15s; }
.form .hs-button:hover { transform: translateY(-2px); }
.form .hs-error-msg, .form .hs-error-msgs label { color: #c0392b; font-size: 12px; font-weight: 600; }
.form .legal-consent-container, .form .hs-richtext { font-size: 12px; color: var(--muted); line-height: 1.7; margin-top: 4px; }
.form .legal-consent-container a, .form .hs-richtext a { color: var(--teal-d); text-decoration: underline; }
.form .submitted-message { font-size: 15px; color: var(--navy); font-weight: 700; text-align: center; padding: 20px 0; }

/* ============ Footer ============ */
.site-footer { background: #0e2335; color: #c3d0de; padding: 54px 0 30px; }
.site-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.site-footer .logo__type { color: #fff; }
.site-footer .logo__type .ten { color: #fff; }
.site-footer__tag { color: #8da0b4; font-size: 13px; margin-top: 12px; max-width: 320px; line-height: 1.8; }
.site-footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.site-footer__col h5 { color: #fff; font-size: 13px; margin: 0 0 14px; font-weight: 700; }
.site-footer__col a { display: block; color: #a9bace; font-size: 13px; margin-bottom: 9px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 12px; color: #7e93a8; }

/* ============ decorative logo parts (scattered per section) ============ */
.part-deco {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  width: 96px; height: auto; opacity: .85;
  filter: drop-shadow(0 10px 20px rgba(22,49,78,.14));
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .part-deco { animation: partFloat 7s ease-in-out infinite; }
}
@keyframes partFloat {
  0%,100% { transform: var(--rot) translateY(0); }
  50%     { transform: var(--rot) translateY(-12px); }
}
.contact .part-deco, .company .part-deco, .lgbtq .part-deco, .proc .part-deco { opacity: .9; }
@media (max-width: 920px) { .part-deco { display: none; } }

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

/* ============ responsive ============ */
@media (max-width: 1000px) {
  .s-title { font-size: 30px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { font-size: 32px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cost__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 40px 16px; }
  .step__arr { display: none !important; }
  .flow { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .flow__arr { display: none; }
  .dash-top { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .criteria { grid-template-columns: 1fr; }
  .lgbtq__grid { grid-template-columns: 1fr; }
  .compare__row { grid-template-columns: 1.2fr 1fr 1fr 1fr; font-size: 13px; }
  .diffs { grid-template-columns: 1fr; }
  .proc__grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; }
  .company__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav { display: none; }
  .nav__cta { display: inline-flex; }
  .s-title { font-size: 24px; line-height: 1.45; }
  .head-pill { font-size: 20px; padding: 12px 28px; }
  .hero h1 { font-size: 27px; }
  .hero__logo .logo__type { font-size: 32px; }
  .steps { grid-template-columns: 1fr; }
  .survey__row { grid-template-columns: 1fr; }
  .esurvey__grid { grid-template-columns: 1fr; gap: 44px; }
  .survey__cats { grid-template-columns: 1fr; }
  .failgrid { grid-template-columns: 1fr; }
  .price-hero__main .num { font-size: 72px; }
  .survey__row.head { display: none; }
  .survey__role, .survey__ex { text-align: left; padding-top: 0; }
  .survey__role::before { content: "役割："; color: var(--faint); font-weight: 600; }
  .survey__ex::before { content: "設問例："; color: var(--faint); font-weight: 600; }
  .dtable .thr > div, .dtable .tr > div { padding: 14px 16px; font-size: 14px; }
  .flow { grid-template-columns: 1fr 1fr; }
  .effect__row { font-size: 13px; }
  .effect__row.head > div, .effect__row:not(.head) > div { padding: 12px 8px; }
  .compare__row { font-size: 11.5px; }
  .compare__row.head > div, .compare__row:not(.head) > div { padding: 11px 6px; }
  .proc__grid { grid-template-columns: 1fr; }
  .form { padding: 26px 22px; }
  .form__row.two { grid-template-columns: 1fr; }
  .dash-wrap { padding: 26px 20px 30px; }
  .dash-kpis { grid-template-columns: 1fr; }
  .cost__banner { position: static; max-width: none; margin-top: 18px; }

  /* ---- mobile fix: cost section ---- */
  .cost__formula { font-size: 14px; line-height: 1.7; }
  .cost__total { font-size: 20px; word-break: keep-all; overflow-wrap: anywhere; }
  .cost__total .red { font-size: 30px; }
  .cost__total .red .jp { font-size: 20px; }

  /* ---- mobile fix: gap section (本質課題テーブル) ---- */
  .gap .dtable .thr > div { padding: 12px 10px; font-size: 13.5px; }
  .gap .dtable .tr > div { padding: 14px 10px; font-size: 13.5px; line-height: 1.55; word-break: break-word; }
  .gap .dtable .num-dot { flex: 0 0 22px; width: 22px; height: 22px; font-size: 11.5px; }
  .gap .dtable .tr > .c-left { gap: 8px; }
  .dtable .thr > div { padding: 12px 10px; font-size: 13.5px; }
  .dtable .tr > div { padding: 14px 10px; font-size: 13.5px; word-break: break-word; }

  /* ---- mobile fix: gap flow (横並びを縦並びに) ---- */
  .flow { grid-template-columns: 1fr; gap: 10px; }
  .flow__node { aspect-ratio: auto; border-radius: 14px; padding: 16px 18px; flex-direction: row; gap: 14px; justify-content: flex-start; }
  .flow__node svg { width: 26px; height: 26px; flex: 0 0 26px; }
  .flow__node .t { text-align: left; font-size: 14px; }
  .flow__arr { transform: rotate(90deg); }
  .banner-line { font-size: 14px; padding: 14px 18px; letter-spacing: .05em; }

  /* ---- mobile fix: compare table ---- */
  .compare__table { font-size: 11px; }
  .compare__row { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .compare__row.head > div { padding: 10px 4px; font-size: 11px; line-height: 1.35; word-break: keep-all; overflow-wrap: anywhere; }
  .compare__row:not(.head) > div { padding: 12px 4px; font-size: 12px; }
  .mk { font-size: 16px; } .mk.dbl { font-size: 18px; }

  /* ---- mobile fix: effect table (improve節) ---- */
  .effect__row.head > div { padding: 10px 6px; font-size: 12px; line-height: 1.4; }
  .effect__row:not(.head) > div { padding: 12px 6px; font-size: 12px; }
  .effect__row .after { font-size: 14px; }

  /* ---- mobile fix: pricing ---- */
  .price-hero { padding: 36px 22px 30px; }
  .price-hero__label { font-size: 14px; padding: 6px 18px; }
  .price-hero__main { flex-wrap: nowrap; gap: 2px; }
  .price-hero__main .num { font-size: 64px; }
  .price-hero__main .unit { font-size: 24px; }
  .price-hero__main .from { font-size: 30px; }
  .price-hero__desc { font-size: 14px; }
  .pricing__banner .v { font-size: 22px; }

  /* ---- mobile fix: process steps ---- */
  .proc__lead { font-size: 14px; margin-bottom: 30px; line-height: 1.7; }
  .proc__foot { font-size: 16px; line-height: 1.6; }

  /* ---- mobile fix: company ---- */
  .company__lead { font-size: 18px; margin-bottom: 30px; line-height: 1.6; }
  .company__card { padding: 28px 22px; }
  .company__desc { font-size: 13.5px; }

  /* ---- mobile fix: hero copy ---- */
  .hero h1 { font-size: 24px; line-height: 1.5; }
  .hero__sub { font-size: 14px; }

  /* ---- mobile fix: emphasis banner / section pills ---- */
  .emphasis { font-size: 17px; padding: 22px 20px; line-height: 1.6; }
  .head-pill { font-size: 16px; padding: 10px 22px; line-height: 1.5; word-break: keep-all; overflow-wrap: anywhere; }

  /* ---- mobile fix: contact intro ---- */
  .contact__intro h2 { font-size: 22px; line-height: 1.55; }
  .contact__list li { font-size: 14px; }

  /* ---- mobile fix: footer (logo too big) ---- */
  .site-footer__top .logo__mark { width: 32px; height: 32px; }
  .site-footer__top .logo__type { font-size: 22px; }

  /* ---- mobile fix: scatter parts のはみ出し防止 ---- */
  body { overflow-x: hidden; }
}

/* ============ multi-color accents (logo blue / green / orange, rotated) ============ */
/* esurvey bullets */
.esurvey__points li:nth-child(1) .ic { background:#e7f0f9; color:#4f86c4; }
.esurvey__points li:nth-child(2) .ic { background:#e8f3ea; color:#5aa566; }
.esurvey__points li:nth-child(3) .ic { background:#f9eed9; color:#d98e2f; }

/* solution steps */
.steps .step:nth-child(1) .step__badge { background: linear-gradient(135deg,#36ad9b,#277f72); box-shadow: 0 10px 22px -8px rgba(49,162,145,.5); }
.steps .step:nth-child(1) .step__t { color:#277f72; }
.steps .step:nth-child(2) .step__badge { background: linear-gradient(135deg,#6aa8d6,#4f86c4); box-shadow: 0 10px 22px -8px rgba(79,134,196,.5); }
.steps .step:nth-child(2) .step__t { color:#4582b0; }
.steps .step:nth-child(3) .step__badge { background: linear-gradient(135deg,#76bd7f,#5aa566); box-shadow: 0 10px 22px -8px rgba(90,165,102,.5); }
.steps .step:nth-child(3) .step__t { color:#4f9559; }
.steps .step:nth-child(4) .step__badge { background: linear-gradient(135deg,#eaa953,#d98e2f); box-shadow: 0 10px 22px -8px rgba(217,142,47,.5); }
.steps .step:nth-child(4) .step__t { color:#c47f28; }

/* process steps */
.proc__grid .proc__card:nth-child(1) .proc__step, .proc__grid .proc__card:nth-child(1) .proc__ic { color:#277f72; }
.proc__grid .proc__card:nth-child(2) .proc__step, .proc__grid .proc__card:nth-child(2) .proc__ic { color:#4582b0; }
.proc__grid .proc__card:nth-child(3) .proc__step, .proc__grid .proc__card:nth-child(3) .proc__ic { color:#4f9559; }
.proc__grid .proc__card:nth-child(4) .proc__step, .proc__grid .proc__card:nth-child(4) .proc__ic { color:#c47f28; }

/* fail cards icons */
.failgrid .failcard:nth-child(1) .failcard__ic { background:#ecf6f4; color:#277f72; }
.failgrid .failcard:nth-child(2) .failcard__ic { background:#e7f0f9; color:#4f86c4; }
.failgrid .failcard:nth-child(3) .failcard__ic { background:#e8f3ea; color:#5aa566; }
.failgrid .failcard:nth-child(4) .failcard__ic { background:#f9eed9; color:#d98e2f; }

/* gap flow nodes (nodes are children 1,3,5,7) */
.flow .flow__node:nth-child(1) { border-color:#bfe2db; }
.flow .flow__node:nth-child(3) { border-color:#c5dcef; }
.flow .flow__node:nth-child(5) { border-color:#cfe7c8; }
.flow .flow__node:nth-child(7) { border-color:#f3e1c0; }
