/* Kaigansen lower page styles */
:root {
  --bg: #f5f8fb;
  --bg-soft: #eef6fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #64748b;
  --line: #dbe7ef;
  --blue: #0f6fb5;
  --blue-dark: #084a7a;
  --green: #19a974;
  --yellow: #f6c343;
  --red: #ef7b5f;
  --radius-lg: 28px;
  --shadow: 0 18px 45px rgba(15, 79, 125, .10);
  --shadow-soft: 0 10px 30px rgba(15, 79, 125, .08);
  --max: 1120px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: .02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(219, 231, 239, .78);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--blue-dark);
  white-space: nowrap;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 20px rgba(15, 111, 181, .22);
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #334155;
}
.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.nav-button,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 10px 24px rgba(15, 111, 181, .22);
}
.page-hero {
  padding: 92px 24px 72px;
  background:
    radial-gradient(circle at top right, rgba(15, 111, 181, .14), transparent 34rem),
    linear-gradient(180deg, #f7fbff, #eef4f8);
}
.page-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-dark);
  background: rgba(15, 111, 181, .09);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}
h1, h2, h3 { line-height: 1.35; margin: 0; letter-spacing: .03em; }
h1 { font-size: clamp(42px, 5vw, 64px); color: #102a43; }
h2 { font-size: clamp(30px, 3vw, 42px); color: #102a43; }
h3 { font-size: 22px; color: #102a43; }
.page-lead {
  max-width: 850px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  color: #334155;
}
.page-section { padding: 80px 24px; }
.page-section.pale {
  background: linear-gradient(180deg, rgba(238,246,251,.85), rgba(245,248,251,1));
}
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head p,
.feature-block p,
.soft-card p,
.contact-cta p,
.notice-box p,
.news-item p { color: var(--muted); }
.notice-box,
.feature-block {
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15,111,181,.08), rgba(25,169,116,.07)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.notice-box { border-left: 8px solid var(--green); }
.notice-box p,
.feature-block p { max-width: 900px; margin: 14px 0 0; }
.three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.soft-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.soft-card p { margin: 12px 0 0; }
.news-list { display: grid; gap: 18px; }
.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}
.news-item time {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .04em;
}
.news-item p { margin: 10px 0 0; }
/* Lower page CTA styles are consolidated near the end of this file. */
.site-footer {
  background: #0f2233;
  color: rgba(255,255,255,.78);
  padding: 32px 24px;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .global-nav { display: none; }
  .three-cards,
  .news-item { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 20px 54px; }
  .page-section { padding: 62px 20px; }
  .notice-box,
  .feature-block,
  .soft-card,
  .news-item { padding: 24px; }
}


.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,.66);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

.footer-nav a {
  color: rgba(255,255,255,.78);
}

.footer-bottom {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 18px;
  }
}


.material-card-rich {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 22px;
  align-items: center;
}

.material-thumb {
  overflow: hidden;
  border-radius: 18px;
  background: #eef4f7;
  min-height: 150px;
  border: 1px solid var(--line);
}

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

.material-body {
  min-width: 0;
}

.material-body h3 {
  margin: 8px 0 0;
}

.material-body p {
  margin: 10px 0 0;
}

@media (max-width: 900px) {
  .material-card-rich {
    grid-template-columns: 1fr;
  }

  .material-thumb {
    min-height: 190px;
  }

  .material-arrow {
    align-self: flex-start;
  }
}


.related-material-list {
  display: grid;
  gap: 18px;
}

.related-material-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}

.related-material-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .related-material-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
}


.materials-groups {
  display: grid;
  gap: 44px;
}

.materials-group {
  display: grid;
  gap: 20px;
}

.materials-group-head {
  max-width: 800px;
}

.group-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.material-list {
  display: grid;
  gap: 18px;
}

.material-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.material-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 79, 125, .10);
}

.material-card-rich {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 22px;
  align-items: center;
}

.material-thumb {
  overflow: hidden;
  border-radius: 18px;
  background: #eef4f7;
  min-height: 150px;
  border: 1px solid var(--line);
}

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

.material-body {
  min-width: 0;
}

.material-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.material-label,
.material-kind {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
}

.material-label {
  color: var(--blue-dark);
  background: rgba(15, 111, 181, .08);
}

.material-kind.kind-pdf {
  color: #0b5f3b;
  background: rgba(25, 169, 116, .10);
}

.material-kind.kind-page {
  color: #8a4b00;
  background: rgba(246, 195, 67, .18);
}

.material-body h3 {
  margin: 10px 0 0;
}

.material-body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.material-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}

@media (max-width: 900px) {
  .material-card-rich {
    grid-template-columns: 1fr;
  }

  .material-thumb {
    min-height: 190px;
  }

  .material-arrow {
    align-self: flex-start;
  }
}


/* Lower business pages refinement */
.breadcrumb {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}
.breadcrumb a {
  color: var(--blue);
}

.page-hero-split {
  padding-top: 88px;
  padding-bottom: 78px;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: start;
}
.page-title {
  max-width: 12em;
}
.page-hero-split .page-lead {
  max-width: 760px;
}
.hero-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.hero-keypoints {
  margin-top: 30px;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-keypoint {
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 111, 181, .14);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 28px rgba(15, 79, 125, .06);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  color: #102a43;
}
.hero-panel {
  padding: 28px 28px 30px;
  border-radius: 30px;
  border: 1px solid rgba(15, 111, 181, .14);
  background:
    radial-gradient(circle at top right, rgba(25,169,116,.16), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(239,247,252,.96));
  box-shadow: 0 18px 44px rgba(15, 79, 125, .12);
}
.panel-label {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.panel-main {
  margin: 12px 0 0;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.45;
  font-weight: 900;
  color: #102a43;
}
.panel-text {
  margin: 14px 0 0;
  color: var(--muted);
}

.page-section.white {
  background: #fff;
}
.compact-head .section-copy {
  margin-top: 12px;
}

.page-grid {
  display: grid;
  gap: 22px;
}
.page-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.page-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.page-card.soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(249,252,255,1));
}
.page-card h3 {
  font-size: 22px;
}
.page-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.story-block {
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15,111,181,.08), rgba(25,169,116,.07)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.story-block p {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 920px;
}
.large-story {
  position: relative;
  overflow: hidden;
}
.large-story::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,111,181,.08), transparent 70%);
  pointer-events: none;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 111, 181, .08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.step-card h3 {
  margin-top: 14px;
}
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.table-like {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  background: #fff;
  border: 1px solid var(--line);
}
.table-like th,
.table-like td {
  padding: 18px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.table-like tr:last-child th,
.table-like tr:last-child td {
  border-bottom: none;
}
.table-like th {
  width: 220px;
  text-align: left;
  background: rgba(15,111,181,.05);
  color: #102a43;
  font-weight: 800;
}
.table-like td {
  color: var(--muted);
  background: #fff;
}

.note-box {
  padding: 34px 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15,111,181,.10), rgba(25,169,116,.11)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.note-box h2 {
  font-size: clamp(26px, 2.8vw, 34px);
}
.note-box p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 920px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.page-cta {
  margin: 0 24px 84px;
  padding: 56px 28px;
  border-radius: 34px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 26rem),
    linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 20px 46px rgba(15, 79, 125, .16);
}
.page-cta h2 {
  color: #fff;
}
.page-cta p {
  margin: 16px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,.86);
}
.page-cta .button {
  margin-top: 24px;
  background: #fff;
  color: var(--blue-dark);
}

.related-docs .section-head {
  margin-bottom: 24px;
}
.related-material-card {
  border-radius: 26px;
}
.related-material-card .material-thumb {
  min-height: 160px;
}
.related-material-card .material-body h3 {
  margin-top: 10px;
}
.related-material-card .material-body p {
  margin-top: 12px;
  color: var(--muted);
}
.related-material-list {
  gap: 20px;
}

@media (max-width: 900px) {
  .hero-keypoints {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .split-inner,
  .page-grid.three,
  .step-list,
  .two-column {
    grid-template-columns: 1fr;
  }

  .page-title {
    max-width: none;
  }

  .hero-panel,
  .story-block,
  .note-box {
    padding: 24px;
  }

  .page-card,
  .step-card {
    padding: 22px;
  }

  .page-cta {
    margin: 0 20px 64px;
    padding: 42px 22px;
  }

  .table-like,
  .table-like tbody,
  .table-like tr,
  .table-like th,
  .table-like td {
    display: block;
    width: 100%;
  }

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

  .table-like tr:last-child {
    border-bottom: none;
  }

  .table-like th,
  .table-like td {
    border-bottom: none;
  }

  .table-like th {
    padding-bottom: 6px;
  }

  .table-like td {
    padding-top: 0;
  }
}


/* Mobile navigation */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 111, 181, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark, #084a7a);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 79, 125, .08);
}

@media (max-width: 900px) {
  .site-header {
    overflow: visible;
  }

  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .global-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    z-index: 30;
    padding: 18px;
    border: 1px solid rgba(219, 231, 239, .96);
    border-radius: 24px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 44px rgba(15, 79, 125, .16);
    backdrop-filter: blur(14px);
  }

  .global-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .global-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 14px;
  }

  .global-nav a:hover {
    background: rgba(15, 111, 181, .07);
  }

  .global-nav .nav-button {
    justify-content: center;
    margin-top: 4px;
  }
}


/* Mobile layout tuning */
@media (max-width: 900px) {
  body {
    letter-spacing: .01em;
  }

  .header-inner {
    padding: 12px 18px;
    gap: 12px;
  }

  .logo {
    gap: 8px;
    font-size: 14px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .hero,
  .page-hero,
  .page-hero-split {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .hero-grid,
  .split-inner {
    gap: 26px;
  }

  h1,
  .page-title {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.28;
  }

  h2,
  .section-title {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.35;
  }

  h3 {
    line-height: 1.45;
  }

  .lead,
  .page-lead,
  .section-copy {
    font-size: 16px;
    line-height: 1.85;
  }

  .section,
  .page-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-inner,
  .page-inner,
  .hero-grid,
  .page-hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-head,
  .compact-head {
    margin-bottom: 22px;
  }

  .cards,
  .cards-business,
  .three-cards,
  .page-grid,
  .step-list,
  .news-list,
  .material-list {
    gap: 16px;
  }

  .card,
  .business-card,
  .soft-card,
  .page-card,
  .step-card,
  .news-item,
  .feature-block,
  .story-block,
  .note-box {
    border-radius: 22px;
  }

  .card,
  .soft-card,
  .page-card,
  .step-card,
  .news-item {
    padding: 22px;
  }

  .feature-block,
  .story-block,
  .note-box {
    padding: 24px;
  }

  .business-card {
    padding: 0;
  }

  .business-card-image {
    height: 205px;
  }

  .business-card .icon,
  .business-card h3,
  .business-card p,
  .business-card .link {
    margin-left: 22px;
    margin-right: 22px;
  }

  .business-card .link {
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 10px;
  }

  .button,
  .nav-button {
    min-height: 42px;
    padding: 9px 16px;
  }

  .hero-visual,
  .service-showcase-image,
  .material-thumb {
    border-radius: 20px;
  }

  .material-card-rich,
  .related-material-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .material-thumb,
  .related-material-card .material-thumb {
    min-height: 180px;
  }

  .material-arrow {
    justify-self: start;
  }

  .page-cta {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 58px;
    padding: 40px 22px;
    border-radius: 26px;
  }

  .footer-inner,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .global-nav {
    left: 14px;
    right: 14px;
  }

  .section-inner,
  .page-inner,
  .hero-grid,
  .page-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .page-hero,
  .page-hero-split {
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .section,
  .page-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .business-card-image {
    height: 190px;
  }

  .material-thumb,
  .related-material-card .material-thumb {
    min-height: 160px;
  }

  .page-cta {
    margin-left: 16px;
    margin-right: 16px;
  }
}


/* Mobile width correction */
@media (max-width: 900px) {
  .section,
  .page-section,
  .hero,
  .page-hero,
  .page-hero-split {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section-inner,
  .page-inner,
  .hero-grid,
  .page-hero-inner {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .cards,
  .cards-business,
  .three-cards,
  .page-grid,
  .step-list,
  .news-list,
  .material-list,
  .materials-clean-grid {
    width: 100%;
  }

  .card,
  .business-card,
  .soft-card,
  .page-card,
  .step-card,
  .news-item,
  .material-card,
  .material-card-rich,
  .related-material-card,
  .feature-block,
  .story-block,
  .note-box {
    width: 100%;
  }

  .page-cta {
    margin-left: 14px;
    margin-right: 14px;
    width: auto;
  }
}

@media (max-width: 520px) {
  .section,
  .page-section,
  .hero,
  .page-hero,
  .page-hero-split {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-cta {
    margin-left: 10px;
    margin-right: 10px;
  }

  .card,
  .soft-card,
  .page-card,
  .step-card,
  .news-item,
  .material-card,
  .material-card-rich,
  .related-material-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .business-card {
    padding-left: 0;
    padding-right: 0;
  }

  .business-card .icon,
  .business-card h3,
  .business-card p,
  .business-card .link {
    margin-left: 18px;
    margin-right: 18px;
  }
}


/* Mobile CTA footer gap */
@media (max-width: 900px) {
  .contact-cta {
    margin-bottom: 18px;
  }
}

@media (max-width: 520px) {
  .contact-cta {
    margin-bottom: 14px;
  }
}


/* Lower page CTA: match top page card style */
.contact-cta {
  background: transparent !important;
  padding: 0 24px 72px !important;
  color: inherit !important;
  text-align: center;
}

.contact-cta .page-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 32px;
  border-radius: 34px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 26rem),
    linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 20px 46px rgba(15, 79, 125, .16);
}

.contact-cta h2 {
  color: #fff;
}

.contact-cta p {
  color: rgba(255,255,255,.86) !important;
  margin: 16px auto 0;
  max-width: 760px;
}

.contact-cta .button {
  margin-top: 24px;
  background: #fff;
  color: var(--blue-dark);
}

@media (max-width: 900px) {
  .contact-cta {
    padding: 0 8px 16px !important;
    margin: 0 !important;
    background: transparent !important;
  }

  .contact-cta .page-inner {
    width: 100%;
    max-width: none;
    padding: 46px 24px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .contact-cta {
    padding-left: 8px !important;
    padding-right: 8px !important;
    padding-bottom: 14px !important;
  }

  .contact-cta .page-inner {
    padding: 44px 20px;
    border-radius: 22px;
  }
}


/* Kaigansen contact form */
.contact-form-section {
  background:
    radial-gradient(circle at top left, rgba(15,102,179,.10), transparent 30rem),
    linear-gradient(180deg, #edf5fb, #f7fbff);
}

.kaigansen-form {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.form-field,
.form-field-full {
  display: grid;
  gap: 8px;
}

.form-field span,
.form-field-full span,
.form-check span {
  color: var(--text);
  font-weight: 800;
}

.form-field strong,
.form-field-full strong {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15,102,179,.10);
  color: var(--blue);
  font-size: 12px;
  vertical-align: middle;
}

.form-field input,
.form-field select,
.form-field textarea,
.form-field-full textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.6;
}

.form-field textarea,
.form-field-full textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-field-full textarea:focus {
  outline: 3px solid rgba(15,102,179,.16);
  border-color: var(--blue);
}

.form-notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(15,102,179,.08);
  border: 1px solid rgba(15,102,179,.16);
}

.form-notice p {
  margin: 0;
  color: var(--muted);
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.form-check input {
  margin-top: .45em;
  transform: scale(1.15);
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

@media (max-width: 900px) {
  .kaigansen-form {
    padding: 22px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .button {
    width: 100%;
  }
}


/* Mailform Pro standard layout adjustment */
.kaigansen-mailform {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px 20px;
  margin: 0;
}

.kaigansen-mailform dt.mfp,
.kaigansen-mailform dd.mfp {
  margin: 0;
}

.kaigansen-mailform dt.mfp {
  padding-top: 12px;
  color: var(--text);
  font-weight: 800;
}

.kaigansen-mailform dd.mfp input,
.kaigansen-mailform dd.mfp select,
.kaigansen-mailform dd.mfp textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.6;
}

.kaigansen-mailform dd.mfp textarea {
  resize: vertical;
}

.kaigansen-mailform .must {
  display: inline-flex;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15,102,179,.10);
  color: var(--blue);
  font-size: 12px;
  vertical-align: middle;
}

.mfp_buttons.form-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .kaigansen-mailform {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kaigansen-mailform dt.mfp {
    padding-top: 0;
  }

  .mfp_buttons.form-actions {
    justify-content: stretch;
  }

  .mfp_buttons.form-actions .button {
    width: 100%;
  }
}


/* Contact form layout v3: one-column refinement */
.kaigansen-form {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.kaigansen-mailform {
  grid-template-columns: 1fr;
  gap: 10px;
}

.kaigansen-mailform dt.mfp {
  padding-top: 10px;
}

.kaigansen-mailform dd.mfp {
  margin-bottom: 8px;
}

.kaigansen-mailform dd.mfp input,
.kaigansen-mailform dd.mfp select,
.kaigansen-mailform dd.mfp textarea {
  box-sizing: border-box;
}

.kaigansen-mailform dd.mfp textarea {
  min-height: 190px;
}

.kaigansen-mailform dd.mfp .form-notice {
  margin-bottom: 14px;
}

.kaigansen-mailform dd.mfp .form-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 10px;
  padding: 16px 18px;
}

.kaigansen-mailform dd.mfp .form-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  padding: 0;
  transform: none;
}

.kaigansen-mailform dd.mfp .form-check span {
  line-height: 1.7;
}

@media (max-width: 900px) {
  .kaigansen-form {
    max-width: none;
  }

  .kaigansen-mailform dd.mfp textarea {
    min-height: 170px;
  }
}

@media (max-width: 520px) {
  .kaigansen-form {
    padding: 20px;
  }

  .kaigansen-mailform dd.mfp .form-check {
    grid-template-columns: 24px 1fr;
    padding: 14px 14px;
  }
}


/* Contact form width v4: align with page content */
.kaigansen-form {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.contact-form-section .page-inner {
  max-width: var(--max);
}

@media (max-width: 900px) {
  .kaigansen-form {
    max-width: none;
    width: 100%;
  }
}


/* Contact form inner padding v5 */
.kaigansen-form {
  padding-left: 54px;
  padding-right: 54px;
}

@media (max-width: 900px) {
  .kaigansen-form {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 520px) {
  .kaigansen-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* =========================================================
   Blue theme trial v1
   Navy / Ocean Blue / Ice Blue
   ========================================================= */

:root {
  --bg: #f3f8fc;
  --bg-soft: #e8f3fb;
  --card: #ffffff;
  --text: #14233a;
  --muted: #51677f;
  --line: #cbdceb;
  --blue: #0f66b3;
  --blue-dark: #082f5f;
  --green: #0a8fc5;
  --yellow: #f5b84b;
  --red: #e46b61;
  --shadow: 0 22px 52px rgba(8, 47, 95, .14);
  --shadow-soft: 0 12px 34px rgba(8, 47, 95, .10);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(15,102,179,.10), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #edf5fb 44%, #f4f8fc 100%);
}

.site-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(188, 211, 230, .85);
}

.logo {
  color: #07345f;
}

.logo-mark {
  background: linear-gradient(135deg, #0c5aa6, #05a3d6);
  box-shadow: 0 12px 28px rgba(12, 90, 166, .24);
}

.nav-button,
.button-primary {
  background: linear-gradient(135deg, #0c5aa6, #1d7ed0);
  box-shadow: 0 12px 28px rgba(12, 90, 166, .24);
}

.eyebrow {
  color: #0b4e8f;
  background: rgba(15, 102, 179, .09);
}

.eyebrow::before {
  background: #1da7d8;
}

.hero,
.page-hero {
  background:
    radial-gradient(circle at top right, rgba(29,126,208,.18), transparent 34rem),
    linear-gradient(180deg, #f8fcff, #eaf3fb);
}

.hero-card,
.card,
.business-card,
.soft-card,
.page-card,
.step-card,
.news-item,
.material-card,
.feature-block,
.story-block,
.note-box,
.about-box {
  border-color: rgba(184, 207, 226, .95);
  box-shadow: 0 14px 36px rgba(8, 47, 95, .10);
}

.card,
.business-card,
.soft-card,
.page-card,
.step-card,
.news-item,
.material-card,
.about-box {
  background: rgba(255,255,255,.94);
}

.section.pale,
.page-section.pale,
.services,
.materials {
  background:
    radial-gradient(circle at top left, rgba(29,126,208,.10), transparent 30rem),
    linear-gradient(180deg, #edf5fb, #f7fbff);
}

.notice-box,
.feature-block,
.story-block,
.note-box {
  background:
    linear-gradient(135deg, rgba(15,102,179,.10), rgba(29,167,216,.08)),
    #ffffff;
}

.contact-band,
.contact-cta .page-inner,
.top-contact-cta-card,
.page-cta {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 26rem),
    linear-gradient(135deg, #063a73, #0f66b3 52%, #1898cf);
  box-shadow: 0 24px 52px rgba(8, 47, 95, .22);
}

.contact-band h2,
.contact-cta h2,
.page-cta h2 {
  color: #ffffff;
}

.contact-band p,
.contact-cta p,
.page-cta p {
  color: rgba(255,255,255,.86) !important;
}

.contact-band .button,
.contact-cta .button,
.page-cta .button {
  background: #ffffff;
  color: #07345f;
  box-shadow: 0 12px 28px rgba(8, 47, 95, .18);
}

.site-footer {
  background: #071b30;
  color: rgba(255,255,255,.78);
}

.footer-nav a,
.footer-brand strong {
  color: #ffffff;
}

.footer-bottom {
  border-top-color: rgba(255,255,255,.12);
}

.material-kind.kind-pdf {
  color: #075985;
  background: rgba(14, 116, 144, .12);
}

.material-kind.kind-page {
  color: #0b4e8f;
  background: rgba(15,102,179,.10);
}

.hero-visual,
.business-card-image,
.material-thumb,
.service-showcase-image {
  background: #e5f1f9;
}

.business-card-image img,
.material-thumb img,
.service-showcase-image img,
.hero-visual img {
  filter: saturate(.94) hue-rotate(4deg) contrast(1.02);
}

@media (max-width: 900px) {
  .global-nav {
    background: rgba(255,255,255,.98);
    border-color: rgba(184, 207, 226, .95);
  }

  .global-nav a:hover {
    background: rgba(15,102,179,.08);
  }
}


/* =========================================================
   Business page images v1
   ========================================================= */
.page-hero-media {
  margin-top: 18px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  background: #e5f1f9;
  box-shadow: 0 16px 36px rgba(8, 47, 95, .10);
}

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

.inline-visual-showcase {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(237,246,249,0.96), rgba(244,250,252,0.96));
  border: 1px solid rgba(204,220,228,0.9);
  box-shadow: 0 14px 34px rgba(15,79,125,0.06);
}

.inline-visual-showcase-image {
  overflow: hidden;
  border-radius: 20px;
  min-height: 240px;
  background: #e9f1f5;
}

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

.inline-visual-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.inline-visual-showcase-copy h2 {
  margin: 0 0 12px;
}

.inline-visual-showcase-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.9;
}

.genba-log-overview-visual {
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: #f4f9fb;
  border: 1px solid rgba(204,220,228,0.9);
  box-shadow: 0 18px 42px rgba(15,79,125,0.08);
}

.genba-log-overview-visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .page-hero-media {
    min-height: 210px;
  }

  .inline-visual-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .inline-visual-showcase-image {
    min-height: 220px;
  }
}


/* Unified CTA and footer */
.contact-cta {
  padding: 0 24px 48px !important;
  background: transparent !important;
  color: inherit !important;
  text-align: center;
}

.contact-cta .page-inner,
.page-cta {
  width: 100%;
  max-width: var(--max);
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 42px !important;
  border-radius: 34px !important;
  box-sizing: border-box;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 26rem),
    linear-gradient(135deg, #063a73, #0f66b3 52%, #1898cf);
  box-shadow: 0 24px 52px rgba(8, 47, 95, .22);
}

.page-cta {
  width: min(100% - 48px, var(--max));
  margin-top: 0 !important;
  margin-bottom: 48px !important;
}

.contact-cta h2,
.page-cta h2 {
  color: #ffffff;
}

.contact-cta p,
.page-cta p {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255,255,255,.86) !important;
}

.contact-cta .button,
.page-cta .button {
  margin-top: 24px;
  background: #ffffff;
  color: #07345f;
  box-shadow: 0 12px 28px rgba(8, 47, 95, .18);
}

.site-footer {
  padding: 32px 24px;
  background: #071b30;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.footer-inner,
.footer-inner.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.footer-brand strong {
  display: inline !important;
  margin: 0 !important;
  color: #ffffff;
  font-size: inherit !important;
  font-weight: 700;
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.66);
}

.footer-nav {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.78);
  font-weight: inherit !important;
  line-height: 1.8;
}

.footer-nav a {
  color: #ffffff;
}

.footer-bottom {
  max-width: var(--max) !important;
  margin: 18px auto 0 !important;
  padding: 18px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.55);
  font-size: 13px !important;
}

@media (max-width: 900px) {
  .contact-cta {
    padding: 0 8px 16px !important;
  }

  .contact-cta .page-inner,
  .page-cta {
    padding: 34px 24px !important;
    border-radius: 24px !important;
  }

  .page-cta {
    width: calc(100% - 16px);
    margin-bottom: 16px !important;
  }

  .site-footer {
    padding: 28px 8px;
  }

  .footer-inner,
  .footer-bottom {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 14px !important;
  }
}

@media (max-width: 640px) {
  .contact-cta {
    padding-bottom: 14px !important;
  }

  .contact-cta .page-inner,
  .page-cta {
    padding: 30px 20px !important;
    border-radius: 22px !important;
  }

  .page-cta {
    margin-bottom: 14px !important;
  }
}

/* Contact form select arrow spacing */
.kaigansen-mailform dd.mfp select {
  padding-right: 40px;
}

/* Contact form custom select arrow */
.kaigansen-mailform dd.mfp select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #0b2748 50%), linear-gradient(135deg, #0b2748 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* News detail layout adjustment */
.news-detail-hero {
  padding-bottom: 42px;
}

.news-detail-hero .page-lead {
  margin-top: 22px;
}

.news-detail-body {
  max-width: 980px;
  margin: 0 auto;
}

.news-detail-body p {
  font-size: 16px;
  line-height: 2;
}

.news-detail-body a {
  color: #1f5fbf;
  font-weight: 700;
  word-break: break-all;
}

.news-detail-hero + .page-section {
  padding-top: 48px;
}


/* News detail title size adjustment */
.news-detail-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.35;
}

/* News detail readability adjustment */
.news-detail-hero h1 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.4;
}

.news-detail-body p {
  font-size: 17px;
  line-height: 2.05;
}

/* News detail body text final adjustment */
.news-detail-body p {
  font-size: 18px;
  line-height: 2.05;
}

/* Philosophy page: tighten gap after removed margin-design section */
.philosophy-management-section {
  padding-top: 24px;
}


/* Common page spacing final adjustment */
.page-hero {
  padding-top: 64px;
  padding-bottom: 54px;
}

.page-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

/* Common page title area compact adjustment */
.page-hero {
  padding-top: 44px;
  padding-bottom: 38px;
}

.page-lead {
  margin-top: 16px;
}

/* Common page title size adjustment */
.page-hero h1 {
  font-size: clamp(36px, 4vw, 52px);
}


/* Noroshi IoT risk map showcase */
.noroshi-risk-visual-section .page-inner {
  max-width: 1120px;
}

.noroshi-risk-visual-section .inline-visual-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #0d2535;
  border-radius: 30px;
  border: 1px solid rgba(188, 213, 225, 0.72);
  box-shadow: 0 22px 54px rgba(15, 79, 125, 0.14);
}

.noroshi-risk-visual-section .inline-visual-showcase-image {
  min-height: 0;
  border-radius: 0;
  background: #0d2535;
}

.noroshi-risk-visual-section .inline-visual-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.noroshi-risk-visual-section .inline-visual-showcase-copy {
  padding: 30px 36px 34px;
  background: linear-gradient(135deg, rgba(244, 250, 252, 0.98), rgba(236, 246, 250, 0.98));
}

@media (max-width: 760px) {
  .noroshi-risk-visual-section .inline-visual-showcase {
    border-radius: 22px;
  }

  .noroshi-risk-visual-section .inline-visual-showcase-copy {
    padding: 24px 20px 26px;
  }
}\n\n


/* Business cards full clickable area */
.business-card {
  position: relative;
  cursor: pointer;
}

.business-card .link {
  position: static;
}

.business-card .link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
}


/* Genba log overview desktop/mobile visual switch */
.genba-overview-visual-switch .genba-overview-desktop {
  display: block;
}

.genba-overview-visual-switch .genba-overview-mobile {
  display: none;
}

@media (max-width: 760px) {
  .genba-overview-visual-switch .genba-overview-desktop {
    display: none;
  }

  .genba-overview-visual-switch .genba-overview-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
}


/* Material page PDF / audio buttons */
.material-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.material-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
}

.material-action-pdf {
  background: #edf5ff;
  color: var(--blue);
}

.material-action-audio {
  background: rgba(25, 169, 116, .10);
  color: #0b5f3b;
}

.material-action:hover {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .material-actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}


/* News detail button color fix */
.news-detail-body a.button,
.news-detail-body a.button-primary {
  color: #fff;
  word-break: normal;
}
