@charset "UTF-8";
:root {
  --primary: #AE272C;
  --primary-hover: #8E2024;
  --primary-active: #6E181B;
  --primary-light: #F7E6E6;
  --on-primary: #fff;
  --text: #1A1A1C;
  --text-soft: #3A3A3C;
  --text-muted: #5C5C5E;
  --bg: #fff;
  --bg-alt: #F2F2F3;
  --surface: #fff;
  --border: #D9D9DA;
  --border-strong: #949496;
  --dark: #1A1A1C;
  --on-dark: #fff;
  --on-dark-mut: #B3B3B5;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --focus-ring: #AE272C;
  --sans: Noto Sans JP,-apple-system,BlinkMacSystemFont,Hiragino Kaku Gothic ProN,Meiryo,sans-serif;
  --mincho: Noto Sans JP,-apple-system,BlinkMacSystemFont,Hiragino Kaku Gothic ProN,Meiryo,sans-serif;
  --serif: Noto Sans JP,-apple-system,BlinkMacSystemFont,Hiragino Kaku Gothic ProN,Meiryo,sans-serif;
  --ink: #1A1A1C;
  --ink-soft: #4D4D4F;
  --navy: #1A1A1C;
  --navy-2: #333335;
  --gold: #AE272C;
  --gold-light: #AE272C;
  --paper: #fff;
  --paper-2: #F2F2F3;
  --paper-card: #fff;
  --line: #D9D9DA;
  --line-soft: #E8E8E9;
  --muted: #767678;
  --muted-2: #949496;
  --max: 1120px;
  --narrow: 760px;
  --gutter: 40px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 820px) {
  :root {
    --gutter: 22px;
  }
  .section-pad {
    padding: 72px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .section-head .h-title {
    font-size: 25px;
  }
  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .duo-grid, .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
  padding-left: 0;
}

p, ol li, ul li {
  line-height: 1.7;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
}

mark {
  color: inherit;
  background: linear-gradient(transparent 55%, rgba(174, 39, 44, 0.18) 55% 92%, transparent 92%);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.eyebrow.center {
  justify-content: center;
}

.h-title {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--text);
  font-size: 32px;
}

.lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.prose {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

.prose p + p {
  margin-top: 1.4em;
}

.title {
  position: relative;
  font-family: var(--sans);
  font-weight: 700;
  padding-left: 0.9rem;
}

.title::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  content: "";
  width: 5px;
  height: 1.1em;
  background: var(--primary);
  border-radius: 2px;
}

.figure-caption {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
}

.note {
  background: var(--bg-alt);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  text-align: left;
}

.text-secondary {
  color: var(--text-muted) !important;
}

.text-accent, .text-primary {
  color: var(--primary);
}

.font-family-heading {
  font-family: var(--sans);
}

.kicker {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 20px;
}

.kicker-light {
  background: #fff;
}

a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}

.section-head .eyebrow {
  margin-bottom: 20px;
}

.section-head .h-title {
  font-size: 30px;
}

.page-hero .eyebrow {
  color: #fff;
  margin-bottom: 22px;
}

.page-hero .eyebrow::before {
  background: #fff;
}

.breadcrumb-bar a {
  color: var(--primary);
  text-decoration: none;
}

.cta-inner .cta-copy .eyebrow {
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner .cta-copy .eyebrow::before {
  background: var(--primary);
}

.intro .kicker {
  margin-left: auto;
  margin-right: auto;
}

/* ===== feedback overrides (v7+) ===== */
/* remove the red dash bar (kicker) above headings */
.kicker {
  display: none;
}

.page-hero .eyebrow {
  color: var(--primary);
}

.page-hero .eyebrow::before {
  background: var(--primary);
}

.form .form-check a {
  color: var(--primary);
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.btn {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 15px 28px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.btn-gold {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-gold:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn-light:hover {
  background: var(--bg-alt);
}

.on-dark .btn-primary, .btn-on-dark {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.on-dark .btn-primary:hover, .btn-on-dark:hover {
  background: var(--bg-alt);
  color: var(--primary-hover);
}

.arrow-link {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.arrow-link::after {
  content: "→";
  transition: transform 0.2s;
}

.arrow-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.arrow-link:hover::after {
  transform: translateX(4px);
}

.arrow-link.muted {
  color: var(--text-soft);
}

.arrow-link.muted:hover {
  color: var(--primary);
}

#header .header-btn .btn {
  font-size: 16px;
  padding: 11px 22px;
  min-height: 44px;
}

@media (max-width: 1199.98px) {
  #header .navbar-collapse {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 8px var(--gutter) 32px;
    overflow-y: auto;
  }
  #header .navbar-nav {
    align-items: stretch;
    gap: 0;
  }
  #header .nav-link {
    height: auto;
    padding: 18px 4px;
    color: var(--text);
    font-size: 17px;
    border-bottom: 1px solid var(--border);
  }
  #header .nav-link::after {
    display: none;
  }
  #header .nav-link:hover {
    color: var(--primary);
  }
  #header .nav-item.current > .nav-link {
    color: var(--primary);
  }
  #header .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--bg-alt);
    border: none;
    box-shadow: none;
    padding: 4px 0 8px 16px;
    margin-bottom: 4px;
  }
  #header .dropdown-panel a {
    color: var(--text-soft);
    padding: 12px 8px;
    border-radius: var(--radius-sm);
  }
  #header .dropdown-panel a small {
    color: var(--text-muted);
  }
  #header .dropdown-panel a:hover {
    background: var(--primary-light);
    color: var(--primary);
  }
  #header .header-btn {
    margin: 20px 0 0;
  }
  #header .header-btn .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-visual {
    height: 230px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.svc-card .arrow-link {
  margin-top: auto;
}

.cta-band .btn-gold {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.cta-band .btn-gold:hover {
  background: var(--bg-alt);
  color: var(--primary-hover);
}

.svc-card .arrow-link {
  margin-top: auto;
  padding-top: 10px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule {
  border: none;
  border-top: 1px solid var(--line);
}

.rule-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-pad {
  padding: 104px 0;
}

.section-sm {
  padding: 72px 0;
}

.alt {
  background: var(--paper-2);
}

.section-head {
  margin-bottom: 56px;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section {
  padding-bottom: 4rem;
}

.section.section-wide {
  padding-top: 4rem;
}

.section.offset-header {
  margin-top: 76px;
}

.section .section-header {
  margin-bottom: 2rem;
}

.section .section-header.right-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bg-light {
  background-color: var(--paper-2) !important;
}

.bg-primary {
  background-color: var(--ink) !important;
}

.bg-primary-light {
  background-color: var(--paper-2) !important;
}

.mt-base {
  margin-top: 1rem !important;
}

.mb-base {
  margin-bottom: 1rem !important;
}

.mt-md {
  margin-top: 2rem !important;
}

.mb-md {
  margin-bottom: 2rem !important;
}

.mt-lg {
  margin-top: 100px !important;
}

.mb-lg {
  margin-bottom: 100px !important;
}

.separator:last-child {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
#services, [id]:target {
  scroll-margin-top: 96px;
}

/* ===== feedback overrides (round 3) ===== */
/* access: normal weight/size/color, consolidated train list */
.access-line {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
}

/* slightly tighter section rhythm site-wide */
.section-pad {
  padding: 88px 0;
}

.section-sm {
  padding: 60px 0;
}

@media (max-width: 820px) {
  .section-pad {
    padding: 60px 0;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 76px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

#header .navbar-brand .brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

#header .navbar-nav {
  align-items: center;
  gap: 2px;
}

#header .nav-item {
  position: relative;
}

#header .nav-link {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  padding: 0 16px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
}

#header .nav-link .caret {
  font-size: 10px;
  color: var(--primary);
  transition: transform 0.3s;
}

#header .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

#header .nav-link:hover {
  color: var(--primary);
}

#header .nav-link:hover::after {
  transform: scaleX(1);
}

#header .nav-item.current > .nav-link {
  color: var(--primary);
}

#header .nav-item.current > .nav-link::after {
  transform: scaleX(1);
}

#header .nav-dropdown {
  position: relative;
}

#header .dropdown-panel {
  position: absolute;
  top: 70px;
  left: 8px;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

#header .dropdown-panel a {
  display: block;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

#header .dropdown-panel a small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

#header .dropdown-panel a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

#header .nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

#header .nav-dropdown:hover .caret {
  transform: rotate(180deg);
}

#header .header-btn {
  margin-left: 14px;
}

#header .navbar-toggler {
  border: none;
  background: none;
  box-shadow: none;
  padding: 8px;
  color: var(--text);
  font-size: 22px;
}

#header .navbar-toggler .collapse-icon {
  display: none;
}

#header .navbar-toggler[aria-expanded=true] .expand-icon {
  display: none;
}

#header .navbar-toggler[aria-expanded=true] .collapse-icon {
  display: inline;
}

/* header: larger caret; mobile dropdown without gray background */
#header .nav-link .caret {
  font-size: 14px;
}

@media (max-width: 1199.98px) {
  #header .dropdown-panel {
    background: transparent;
    padding: 2px 0 6px 12px;
  }
  #header .dropdown-panel a {
    color: var(--text);
  }
}
/* header: on mobile, center the "サービス案内" item and its dropdown menu */
@media (max-width: 1199.98px) {
  #header .nav-dropdown {
    text-align: center;
  }
  #header .nav-dropdown > .nav-link {
    justify-content: center;
  }
  #header .dropdown-panel {
    padding: 2px 0 6px 0;
  }
  #header .dropdown-panel a {
    text-align: center;
  }
}
#header .navbar-brand .brand-logo-light {
  display: none;
}

#header .navbar-brand .brand-logo-dark {
  display: block;
}

.x-twitter-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.x-twitter-band .x-twitter-link {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 520px;
}

.x-twitter-band .x-twitter-icon img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.x-twitter-band .x-twitter-name a {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.x-twitter-band .x-twitter-name a:hover {
  text-decoration: underline;
}

.x-twitter-band .x-twitter-username {
  font-size: 15px;
  color: var(--text-muted);
  margin: 2px 0 12px;
}

.x-twitter-band .x-twitter-button {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--primary);
  padding: 9px 20px;
  display: inline-block;
  border-radius: var(--radius);
  text-decoration: none;
}

.x-twitter-band .x-twitter-button:hover {
  background: var(--primary-hover);
  color: #fff;
}

.cta-band {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(174, 39, 44, 0.5);
  border-radius: 50%;
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  z-index: 2;
}

.cta-inner .cta-catch {
  font-family: var(--sans);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 10px;
}

.cta-inner .cta-note {
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-dark-mut);
}

@media (max-width: 820px) {
  .duo-grid, .features, .adv-menu, .bz-lines, .contact-grid {
    grid-template-columns: 1fr;
  }
  .strengths {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child {
    border-bottom: none;
  }
  .message-grid, .rep {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .message-photo, .rep-photo {
    max-width: 280px;
  }
  .relation {
    grid-template-columns: 1fr;
  }
  .relation .relation-link {
    transform: rotate(90deg);
    padding: 8px 0;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .why-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .case-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px var(--gutter);
  }
  .news-item {
    grid-template-columns: 84px 1fr;
    gap: 6px 16px;
  }
  .news-item .news-cat, .news-item .news-arrow {
    display: none;
  }
}
#footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: 64px 0 32px;
}

#footer a {
  color: var(--on-dark-mut);
  text-decoration: none;
}

#footer a:hover {
  color: #fff;
  text-decoration: underline;
}

#footer .footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

#footer .footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

#footer .footer-brand .footer-logo {
  height: 30px;
  width: auto;
  display: block;
}

#footer .footer-tagline {
  font-size: 16px;
  line-height: 1.9;
  color: var(--on-dark-mut);
  letter-spacing: 0.02em;
}

#footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

#footer .footer-col h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

#footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

#footer .footer-col a {
  font-size: 16px;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  flex-wrap: wrap;
}

#footer .footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#footer .footer-legal a {
  font-size: 15px;
}

#footer .footer-copy {
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--on-dark-mut);
}

@media (max-width: 820px) {
  #footer .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  #footer .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
/* footer: no column headings; curated single link row */
#footer .footer-nav {
  display: block;
}

#footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links a {
  font-size: 16px;
}

.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 80px 0 72px;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

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

.page-hero .page-hero-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #fff;
}

.page-hero .page-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.breadcrumb-bar {
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.breadcrumb-bar a:hover {
  text-decoration: underline;
}

.breadcrumb-bar span {
  color: var(--text-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: clamp(360px, 47vh, 480px);
  margin-top: 76px;
  background: #fff;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px 64px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.hero-text-inner {
  max-width: 540px;
}

.hero-eyebrow-txt {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.hero-eyebrow-txt::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.42;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-read {
  font-size: 17px;
  line-height: 1.95;
  color: var(--text-soft);
  margin-bottom: 34px;
  max-width: 30em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--primary);
  z-index: 2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-text {
    padding: 48px var(--gutter) 44px;
  }
  .hero-text-inner {
    max-width: none;
  }
  .hero-visual {
    height: 300px;
  }
  .hero-visual::before {
    width: 100%;
    height: 6px;
    bottom: auto;
    top: 0;
  }
}
/* sub-page top band: make the red very subtle (light band, dark title) */
.page-hero {
  background: #fff;
  color: var(--text);
  padding: 46px 0 28px;
  border-bottom: 1px solid var(--border);
}

.page-hero::before, .page-hero::after {
  display: none;
}

.page-hero .page-hero-title {
  color: var(--text);
}

.page-hero .page-hero-sub {
  color: var(--text-muted);
}

/* remove individual page top heading band (keep breadcrumb, offset for fixed header) */
.page-hero {
  display: none;
}

.breadcrumb-bar {
  margin-top: 76px;
}

.team-member .tm-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.2s, transform 0.2s;
}

.team-member:hover .tm-more, .team-member:focus-visible .tm-more {
  opacity: 1;
  transform: none;
}

.team-member:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.modal-root.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(40, 42, 50, 0.38);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, calc(100vw - 40px));
  max-height: calc(100vh - 60px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.32);
  animation: modalIn 0.2s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  padding: 40px 44px 44px;
}

.modal-content .mdl-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-right: 32px;
}

.modal-content .mdl-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}

.modal-content .mdl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-content .mdl-heading {
  min-width: 0;
}

.modal-content .mdl-role {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 5px;
}

.modal-content .mdl-name {
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0;
}

.modal-content .mdl-bio {
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--text-soft);
}

.modal-content .mdl-bio p + p {
  margin-top: 1em;
}

.modal-content .mdl-edu {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
  .modal-content {
    padding: 32px 24px 32px;
  }
  .modal-content .mdl-head {
    gap: 14px;
  }
  .modal-content .mdl-photo {
    width: 76px;
    height: 76px;
  }
  .modal-content .mdl-name {
    font-size: 20px;
  }
}
/* ===== feedback overrides (round 2) ===== */
/* modal: larger member photo */
.modal-content .mdl-head {
  align-items: flex-start;
  gap: 22px;
}

.modal-content .mdl-photo {
  width: 150px;
  height: auto;
  aspect-ratio: 3/4;
}

.modal-content .mdl-heading {
  padding-top: 6px;
}

@media (max-width: 480px) {
  .modal-content .mdl-photo {
    width: 118px;
  }
}
/* ===== feedback overrides (round 5) ===== */
/* modal: ensure dialog (and close button) sit above the backdrop so × is clickable */
.modal-dialog {
  z-index: 2;
}

/* ===== feedback overrides (round 7) ===== */
/* FIX: Bootstrap sets .modal-dialog{pointer-events:none}
; re-enable so × closes */
.modal-root .modal-dialog {
  pointer-events: auto;
}

.modal-root .modal-backdrop {
  pointer-events: auto;
}

/* member modal: role & career-history text match the bio's font size */
.modal-content .mdl-role {
  font-size: 16.5px;
}

.modal-content .mdl-edu {
  font-size: 16.5px;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.modal-root .modal-close {
  pointer-events: auto;
  cursor: pointer;
}

.svc-card .svc-tag {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text-soft);
  padding: 5px 13px;
  border-radius: 999px;
}

.bz-badge {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
  display: inline-block;
  border-radius: 999px;
  margin-bottom: 18px;
}

.bz-badge.existing {
  background: var(--text-muted);
}

.badge.news-category {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--primary);
  padding: 3px 11px;
  border-radius: 999px;
}

.form {
  max-width: 660px;
}

.form .form-row {
  margin-bottom: 24px;
}

.form .form-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}

.form .form-label .req {
  color: #fff;
  background: var(--primary);
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  vertical-align: 2px;
}

.form .form-control {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: #fff;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--text);
  padding: 13px 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  line-height: 1.6;
}

.form .form-control::placeholder {
  color: var(--text-muted);
}

.form .form-control:focus {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--primary);
}

.form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.form select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23AE272C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* contact form: BizObi-aligned multi-column fields */
.form .form-grid {
  display: grid;
  gap: 24px 20px;
  margin-bottom: 24px;
}

.form .form-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.form .form-grid.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form .form-label .opt {
  color: #fff;
  background: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  vertical-align: 2px;
}

.form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.75;
}

.form .form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form .form-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 22px;
}

@media (max-width: 640px) {
  .form .form-grid.cols-2, .form .form-grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* contact form: required badge in a lighter tint of the primary color */
.form .form-label .req {
  color: var(--primary);
  background: var(--primary-light);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table tr {
  border-bottom: 1px solid var(--border);
}

.data-table tr:first-child {
  border-top: 1px solid var(--border);
}

.data-table th {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  padding: 18px 0;
  width: 140px;
  vertical-align: top;
  white-space: nowrap;
}

.data-table td {
  font-size: 16px;
  line-height: 1.8;
  padding: 18px 0;
  color: var(--text);
}

.data-table td small {
  color: var(--text-muted);
  font-size: 15px;
}

.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}

.strength .strength-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 14px;
}

.strength .strength-icon svg {
  width: 100%;
  height: 100%;
}

.strength .strength-num {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 14px;
}

.strength .strength-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text);
}

.strength .strength-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 36px;
}

.member .portrait {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  background: var(--bg-alt);
}

.member .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.member:hover .portrait img {
  transform: scale(1.04);
}

.member .member-name {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
  color: var(--text);
}

.member .member-en {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.member .member-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 12px;
}

.member .member-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-top: 10px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
}

.feature .feature-num {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature .feature-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text);
}

.feature .feature-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.relation {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  overflow: hidden;
}

.relation .relation-item {
  padding: 40px 36px;
  text-align: center;
}

.relation .relation-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.relation .relation-title .en {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.relation .relation-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.relation .relation-link {
  text-align: center;
  color: var(--primary);
  font-size: 26px;
}

.cases {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-item {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 36px;
  padding: 32px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.case-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.case-item .case-type {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.case-item .case-sector {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.case-item .case-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--text);
}

.case-item .case-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

@media (max-width: 1000px) {
  .strengths {
    grid-template-columns: 1fr 1fr;
  }
  .team {
    grid-template-columns: 1fr 1fr;
  }
  .members-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.team-member {
  cursor: pointer;
  position: relative;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card .svc-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--primary);
}

.svc-card .svc-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svc-card .svc-name {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.5;
  color: var(--text);
}

.svc-card .svc-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.svc-card .svc-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.svc-card .svc-points li {
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: 0.02em;
}

.svc-card .svc-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  transform: translateY(-1px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.stat {
  padding: 44px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat .stat-val {
  font-family: var(--sans);
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.01em;
}

.stat .stat-val span {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}

.stat .stat-label {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  margin-top: 14px;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 28px;
}

.team-member .portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  background: var(--bg-alt);
}

.team-member .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.team-member:hover .portrait img {
  transform: scale(1.04);
}

.team-member .team-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 6px;
}

.team-member .team-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--text);
}

.team-member .team-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
}

.news-list {
  border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
  .members-grid, .team {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .stat .stat-val {
    font-size: 44px;
  }
}
.intro {
  text-align: center;
}

.intro-catch {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.intro-body {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.95;
}

.intro-body p + p {
  margin-top: 1.4em;
}

.svc-card .svc-note {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: -8px 0 18px;
}

.svc-card .svc-sub {
  list-style: none;
  margin: 4px 0 6px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-card .svc-sub li {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-soft);
  position: relative;
  letter-spacing: 0.02em;
}

.svc-card .svc-sub li::before {
  content: "–";
  position: absolute;
  left: -16px;
  color: var(--primary);
}

.intro.section-pad {
  padding-top: 60px;
}

/* track-record / media strip (understated) */
.record {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
}

.record-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.record-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.record-stat .n {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 28px;
  color: var(--primary);
  line-height: 1;
}

.record-stat .n span {
  font-size: 16px;
  margin-left: 2px;
}

.record-stat .l {
  font-size: 15px;
  color: var(--text-soft);
  margin-top: 7px;
}

.record-media {
  justify-self: end;
  text-align: right;
}

@media (max-width: 820px) {
  .record {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .record-media {
    justify-self: start;
    text-align: left;
  }
  .record-stats {
    gap: 28px;
  }
}
/* strengths as a relationship: 高品質 × 実行力 ← AI (AI underpins from below) */
.synergy {
  max-width: 940px;
  margin: 0 auto;
}

.syn-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.syn-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  text-align: center;
}

.syn-op {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  padding: 0 24px;
}

.syn-title {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 14px;
}

.syn-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
  text-align: left;
}

.syn-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 0 12px;
  color: var(--primary);
}

.syn-arrow .syn-arrow-glyph {
  font-size: 30px;
  line-height: 1;
}

.syn-arrow .syn-arrow-note {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 4px;
}

.syn-base {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
}

.syn-base .syn-title {
  color: #fff;
  margin-bottom: 0;
}

.syn-base .syn-body {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 820px) {
  .syn-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .syn-op {
    padding: 8px 0;
  }
  .syn-base {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .syn-body {
    text-align: left;
  }
}
/* ===== feedback overrides (round 4) ===== */
/* service card: logo area instead of icon */
.svc-card .svc-logo {
  height: 42px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}

.svc-card .svc-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.svc-card .svc-logo-tbd {
  height: 42px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1.5px dashed var(--border-strong);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* BizObi note: larger & readable */
.svc-card .svc-note {
  font-size: 15px;
  color: var(--text-soft);
  margin: -2px 0 18px;
}

/* BizObi bullets: tighter, balanced nesting */
.svc-card .svc-points {
  margin-bottom: 12px;
}

.svc-card .svc-sub {
  margin: 0 0 16px;
  padding-left: 24px;
  gap: 8px;
}

/* synergy: larger upward arrow, no caption */
.syn-arrow {
  margin: 16px 0 18px;
}

.syn-arrow .syn-arrow-glyph {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

/* ===== feedback overrides (round 6) ===== */
/* record band: これまで/これから layout */
.record {
  display: block;
}

.record-title {
  font-family: var(--sans);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 18px;
}

.record-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
  max-width: 880px;
  margin: 0 0 30px;
}

.record .record-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

.record-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 26px;
}

.record-media-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
  max-width: 880px;
  margin: 0 0 14px;
}

@media (max-width: 640px) {
  .record .record-stats {
    gap: 32px;
  }
}
/* record note: same size as surrounding text */
.record-note {
  font-size: 16px;
  color: var(--text-soft);
}

/* strengths: emphasize 高品質/実行力, tone down AI base */
.syn-box {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  padding: 38px 34px;
}

.syn-title {
  font-size: 28px;
}

.syn-base {
  background: var(--bg-alt);
  color: var(--text);
  padding: 22px 30px;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.syn-base .syn-title {
  color: var(--primary);
  font-size: 19px;
  white-space: nowrap;
}

.syn-base .syn-body {
  color: var(--text-soft);
  font-size: 15px;
}

.syn-arrow .syn-arrow-glyph {
  font-size: 34px;
}

/* members: smaller photos, centered */
.team {
  grid-template-columns: repeat(auto-fit, minmax(160px, 196px));
  justify-content: center;
  gap: 36px;
}

@media (max-width: 600px) {
  .team {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    justify-content: stretch;
  }
}
/* M&A EP service-card logo sizing */
.svc-card .svc-logo img[alt="M&A Execution Partner"] {
  height: 40px;
}

/* ===== feedback overrides (round 8) ===== */
/* BizObi sub-list: match color/size of the parent svc-points item */
.svc-card .svc-sub li {
  font-size: 16px;
  color: var(--text);
}

/* ===== feedback overrides (round 9) ===== */
/* strengths: make AI box match 高品質/実行力 exactly (same card style + font sizes) */
.syn-base {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  padding: 38px 34px;
  display: block;
  text-align: center;
}

.syn-base .syn-title {
  color: var(--text);
  font-size: 28px;
  white-space: normal;
  margin-bottom: 14px;
}

.syn-base .syn-body {
  color: var(--text-soft);
  font-size: 16px;
  text-align: left;
}

/* record note: smaller, muted */
.record-note {
  font-size: 13.5px;
  color: var(--text-muted);
}

.intro.section-pad {
  padding-top: 48px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.rep {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.rep .rep-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rep .rep-photo img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.rep .rep-name {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  color: var(--text);
}

.rep .rep-en {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.rep .rep-role {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 22px;
}

.rep .rep-career {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.rep .rep-career li {
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: 0.02em;
}

.rep .rep-career li::before {
  content: "";
  width: 8px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
  transform: translateY(-4px);
  border-radius: 2px;
}

.message-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.message-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.message-photo img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.message-sign {
  margin-top: 16px;
}

.message-name {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.message-role {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.message-quote {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 32px;
  padding-left: 22px;
  border-left: 4px solid var(--primary);
}

.timeline .timeline-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.timeline .timeline-row:first-child {
  border-top: 1px solid var(--border);
}

.timeline .timeline-year {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

.timeline .timeline-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.kv {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.kv img, .kv svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-embed {
  aspect-ratio: 4/3;
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-head {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.access-list {
  list-style: disc;
  padding-left: 1.4em;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.access-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  letter-spacing: 0.02em;
}

.access-list li::marker {
  color: var(--primary);
}

.access-note {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

.adv-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.adv-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.adv-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.adv-item .adv-num {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 14px;
}

.adv-item .adv-name {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin-bottom: 12px;
  color: var(--text);
}

.adv-item .adv-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.why-list .why-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.why-list .why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-list .why-key {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--text);
}

.why-list .why-key .en {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-list .why-val {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* advisory consultation CTA (replaces 進め方) */
.consult {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.consult-title {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.consult-note {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 30px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}

.process-step .process-num {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.process-step .process-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.process-step .process-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
}

.bz-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bz-line {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  position: relative;
  overflow: hidden;
}

.bz-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
}

.bz-line .bz-title {
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.bz-line .bz-target {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-bottom: 16px;
}

.bz-line .bz-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.bz-line .bz-courses {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.bz-line .bz-course {
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: 0.02em;
}

.bz-line .bz-course::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--primary);
  flex-shrink: 0;
  transform: translateY(-1px);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.contact-card .contact-tag {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.contact-card .contact-title {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.contact-card .contact-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 24px;
  flex: 1;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 84px 1fr 28px;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s;
  border-radius: var(--radius);
}

.news-item .news-date {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-soft);
}

.news-item .news-cat {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 3px 0;
  text-align: center;
  white-space: nowrap;
}

.news-item .news-title {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  transition: color 0.2s;
}

.news-item .news-arrow {
  color: var(--border-strong);
  transition: color 0.2s, transform 0.2s;
  text-align: right;
}

.news-item:hover {
  background: var(--bg-alt);
}

.news-item:hover .news-title {
  color: var(--primary);
  text-decoration: underline;
}

.news-item:hover .news-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

.list-news {
  padding: 16px 0;
}

.list-news .list-date {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-soft);
}

.list-news .list-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  text-decoration: none;
}

.list-news .list-text:hover {
  color: var(--primary);
  text-decoration: underline;
}
