/* ノース行政書士事務所 — 独自レイアウト（WPテーマ非依存） */

:root {
  --north-ink: #142032;
  --north-ink-soft: #2a3a52;
  --north-muted: #5c6b7d;
  --north-paper: #ffffff;
  --north-paper-2: #f5f5f5;
  --north-white: #ffffff;
  /* ボタン・リンク・装飾線などのアクセント（参考サイト準拠の濃紺） */
  --north-accent: #154476;
  --north-accent-hover: #0f355c;
  --north-accent-tint: rgba(21, 68, 118, 0.12);
  --north-accent-border: rgba(21, 68, 118, 0.28);
  --north-accent-border-strong: rgba(21, 68, 118, 0.4);
  --north-accent-chip-border: rgba(21, 68, 118, 0.35);
  --north-accent-faint: rgba(21, 68, 118, 0.06);
  --north-accent-glow: 0 6px 20px rgba(21, 68, 118, 0.22);
  /* 補助アクセント（参考サイトの強調アンダーライン系ゴールド） */
  --north-accent-gold: #f0c419;
  --north-accent-gold-soft: rgba(240, 196, 25, 0.35);
  /* 暗背景上のホバー・サブ見出し（淡い青系） */
  --north-on-dark-link-hover: #c7ddf5;
  --north-on-dark-subtitle: #9ec4e8;
  --north-line: #d7dee7;
  --north-radius: 12px;
  --north-radius-sm: 8px;
  --north-shadow: 0 12px 40px rgba(20, 32, 50, 0.08);
  --north-font: "M PLUS 1p", sans-serif;
  --north-display: "M PLUS 1p", sans-serif;
  --north-max: 1140px;
  --north-header-h: 4.25rem;
  /* フッター（アクセントと同系統の濃ネイビー帯） */
  --north-footer-navy: #154476;
  --north-footer-navy-deep: #0f355c;
  /* Q&Aアコーディオン（軽量・短めの遷移） */
  --north-qa-open-duration: 0.28s;
  --north-qa-fade-duration: 0.2s;
  --north-qa-icon-duration: 0.24s;
  --north-qa-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.north-site {
  margin: 0;
  font-family: var(--north-font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--north-ink-soft);
  background: var(--north-paper);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--north-display);
}

body.north-site.offcanvas-open {
  overflow: hidden;
}

a {
  color: var(--north-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--north-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* テーマ由来の装飾を無効化 */
#charity-house-progress-bar,
#to_top_scrollup {
  display: none !important;
}

.theme-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--north-paper);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.theme-preloader.north-preloader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.theme-preloader-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--north-paper-2);
  border-top-color: var(--north-accent);
  border-radius: 50%;
  animation: north-spin 0.7s linear infinite;
}

@keyframes north-spin {
  to {
    transform: rotate(360deg);
  }
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content-area {
  flex: 1;
}

.wrapper {
  width: 100%;
  max-width: var(--north-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.wrapper-fluid {
  width: 100%;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* —— ヘッダー —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--north-line);
}

.masthead-main-navigation {
  padding-block: 0.85rem;
}

.masthead-main-navigation .wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.masthead-main-navigation .site-header-wrapper {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.site-header-wrapper {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem 1.5rem;
}

.site-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.north-logo__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

/* ロゴ画像は 1920×700（横長）— 高さ基準で収め、幅は自動 */
.north-logo__img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: clamp(2.65rem, 4.2vw, 3.35rem);
  max-height: clamp(2.65rem, 4.2vw, 3.45rem);
  max-width: min(100%, 300px, 52vw);
  object-fit: contain;
  object-position: left center;
}

.north-logo__link:hover .north-logo__img {
  opacity: 0.88;
}

.main-navigation .primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  justify-content: center;
}

.main-navigation .primary-menu > .menu-item > a {
  font-family: var(--north-font);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--north-ink-soft);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  line-height: 1.2;
}

.main-navigation .primary-menu > .menu-item > a .nav-label-ja {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #123f65;
}

.main-navigation .primary-menu > .menu-item > a .nav-label-en {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
  color: rgba(16, 63, 101, 0.72);
}

.main-navigation .primary-menu > .menu-item > a:hover,
.main-navigation .current-menu-item > a {
  color: var(--north-ink);
  border-bottom-color: var(--north-accent-gold);
}

.main-navigation .primary-menu > .menu-item.has-dropdown {
  position: relative;
}

.main-navigation .primary-menu > .menu-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  z-index: 205;
}

.main-navigation .primary-menu > .menu-item .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  width: min(17rem, 70vw);
  list-style: none;
  margin: 0;
  padding: 0.95rem 0 0.6rem;
  background: #ffffff;
  border: 1px solid rgba(16, 63, 101, 0.12);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(20, 32, 50, 0.14);
  z-index: 210;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.main-navigation .primary-menu > .menu-item.has-dropdown:hover .nav-dropdown,
.main-navigation .primary-menu > .menu-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-navigation .primary-menu > .menu-item .nav-dropdown > li > a {
  display: block;
  padding: 0.62rem 1rem;
  font-family: var(--north-font);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--north-ink);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.main-navigation .primary-menu > .menu-item .nav-dropdown > li > a:hover,
.main-navigation .primary-menu > .menu-item .nav-dropdown > li > a:focus-visible {
  color: var(--north-accent);
  background: rgba(36, 125, 192, 0.08);
}

/* PC 全ページ：事業内容ドロップダウンをガラス風に統一（SPは上記ベースのまま） */
body.north-site--pc #masthead.site-header .main-navigation .primary-menu > .menu-item.has-dropdown::after {
  height: 18px;
}

body.north-site--pc #masthead.site-header .main-navigation .primary-menu > .menu-item .nav-dropdown {
  top: 100%;
  left: 50%;
  width: min(13.5rem, 48vw);
  min-width: 222px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: rgba(8, 24, 42, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.98);
  transform-origin: 50% 0;
  filter: blur(4px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    filter 0.24s ease,
    visibility 0.24s ease;
}

body.north-site--pc #masthead.site-header .main-navigation .primary-menu > .menu-item.has-dropdown:hover .nav-dropdown,
body.north-site--pc #masthead.site-header .main-navigation .primary-menu > .menu-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  filter: blur(0);
}

body.north-site--pc #masthead.site-header .main-navigation .primary-menu > .menu-item .nav-dropdown > li > a {
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}

body.north-site--pc #masthead.site-header .main-navigation .primary-menu > .menu-item .nav-dropdown > li > a:hover,
body.north-site--pc #masthead.site-header .main-navigation .primary-menu > .menu-item .nav-dropdown > li > a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.theme-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--north-radius-sm);
  border: 1px solid var(--north-line);
  background: var(--north-white);
  color: var(--north-ink);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.theme-button:hover {
  background: var(--north-paper-2);
  color: var(--north-ink);
}

.theme-button-transparent {
  border: none;
  background: transparent;
  padding: 0.5rem;
  color: var(--north-ink);
}

.theme-button.button-bg-color,
.site-header-right .button-bg-color {
  background: var(--north-accent);
  border-color: var(--north-accent);
  color: var(--north-white);
  text-decoration: none;
}

.site-header-right .button-bg-color:hover {
  background: var(--north-accent-hover);
  border-color: var(--north-accent-hover);
  color: var(--north-white);
}

/* TOP: ヘッダーは常時固定表示（スクロール中も消さない） */
body.north-page-index #masthead.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  z-index: 2000;
  overflow: visible;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}

/* 内側ラッパーに白が乗らないよう明示（子要素の積層用） */
body.north-page-index #masthead.site-header:not(.north-header--solid) .masthead-main-navigation,
body.north-page-index #masthead.site-header:not(.north-header--solid) .masthead-main-navigation .wrapper {
  background: transparent;
}

/* TOP・HEROオーバーレイ: ロゴを画面左端寄りに（max-width 中央寄せを解除し全幅化＋左だけ締める） */
body.north-page-index #masthead.site-header:not(.north-header--solid) .masthead-main-navigation .wrapper {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-left: max(0.35rem, env(safe-area-inset-left, 0px));
  padding-right: clamp(1.25rem, 4vw, 2rem);
  box-sizing: border-box;
}

/* ロゴ列のみ左インデント（ナビ・CTA列はグリッド上そのまま／張り付き解消） */
body.north-page-index #masthead.site-header:not(.north-header--solid) .site-header-left {
  margin-left: clamp(0.875rem, 2vw, 1.375rem);
}

/* TOP: ヒーロー上にグロナビを直載せ（透明ヘッダー） — スクロール後は .north-header--solid で通常表示 */
body.north-page-index #masthead.site-header:not(.north-header--solid) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.north-page-index #masthead.site-header:not(.north-header--solid)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  pointer-events: none;
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .main-navigation .primary-menu > .menu-item > a {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .main-navigation .primary-menu > .menu-item > a .nav-label-en {
  color: rgba(255, 255, 255, 0.72);
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .main-navigation .primary-menu > .menu-item > a:hover,
body.north-page-index #masthead.site-header:not(.north-header--solid) .main-navigation .current-menu-item > a {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .theme-button-transparent {
  color: #ffffff;
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .site-header-right .theme-button:not(.button-bg-color) {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .site-header-right .theme-button:not(.button-bg-color):hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .site-header-right .theme-button.button-bg-color {
  background: var(--north-accent);
  border-color: var(--north-accent);
  color: #ffffff;
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .site-header-right .theme-button.button-bg-color:hover {
  background: var(--north-accent-hover);
  border-color: var(--north-accent-hover);
}

/* HERO上：白ロゴ（PCは --on-hero、単一imgのSPは一枚だけのとき） */
body.north-page-index #masthead.site-header:not(.north-header--solid) .north-logo__img--on-hero {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .north-logo__link > .north-logo__img:only-of-type {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

body.north-page-index .main-navigation .primary-menu > .menu-item .nav-dropdown {
  z-index: 2200;
}

body.north-site--pc #masthead.site-header.north-header--solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.north-site--pc #masthead.site-header.north-header--solid::before {
  content: none;
}

body.north-site--pc #masthead.site-header.north-header--solid .main-navigation .primary-menu > .menu-item > a {
  color: #0d2238;
}

body.north-site--pc #masthead.site-header.north-header--solid .main-navigation .primary-menu > .menu-item > a .nav-label-en {
  color: rgba(13, 34, 56, 0.72);
}

body.north-site--pc #masthead.site-header.north-header--solid .north-logo__img {
  filter: none;
}

/* PC: 白帯ヘッダー時のラッパー幅・ロゴ左余白（TOPスクロール後・下層ページ共通） */
body.north-site--pc #masthead.site-header.north-header--solid .masthead-main-navigation .wrapper {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-left: max(0.35rem, env(safe-area-inset-left, 0px));
  padding-right: clamp(1.25rem, 4vw, 2rem);
  box-sizing: border-box;
}

body.north-site--pc #masthead.site-header.north-header--solid .site-header-left {
  margin-left: clamp(0.875rem, 2vw, 1.375rem);
}

/* .site-header-wrapper の gap は north-pc.css の #masthead セレクタで全状態共通指定 */

/* オフキャンバス */
.theme-offcanvas-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(20rem, 88vw);
  max-width: 100%;
  background: var(--north-white);
  box-shadow: -8px 0 32px rgba(20, 32, 50, 0.15);
  z-index: 2300;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.theme-offcanvas-panel.is-open {
  transform: translateX(0);
}

.north-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2250;
  background: rgba(20, 32, 50, 0.4);
  animation: north-fade-in 0.35s ease forwards;
}

@keyframes north-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.theme-offcanvas-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid var(--north-line);
}

.theme-offcanvas-menu {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.theme-offcanvas-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  color: var(--north-ink);
  text-decoration: none;
  border-left: 3px solid transparent;
}

.theme-offcanvas-menu .theme-offcanvas-submenu {
  list-style: none;
  margin: -0.25rem 0 0.65rem;
  padding: 0 0 0 1rem;
}

.theme-offcanvas-menu .theme-offcanvas-submenu a {
  padding: 0.62rem 1.25rem;
  font-size: 0.9rem;
  border-left: 2px solid rgba(36, 125, 192, 0.2);
  color: var(--north-ink-soft);
}

.theme-offcanvas-menu a:hover {
  background: var(--north-accent-tint);
  border-left-color: var(--north-accent);
}

/* —— グリッド —— */
.column-row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

.column-row-collapse {
  margin-inline: 0;
}

.column {
  padding-inline: 0.75rem;
  width: 100%;
}

.column-3 {
  width: 25%;
}
.column-4 {
  width: 33.333%;
}
.column-5 {
  width: 41.666%;
}
.column-7 {
  width: 58.333%;
}
.column-8 {
  width: 66.666%;
}
.column-12 {
  width: 100%;
}

.h-100 {
  min-height: 100%;
}

.text-center {
  text-align: center;
}

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

.align-self-center {
  align-self: center;
}

.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

@media (max-width: 991px) {
  .column-md-6 {
    width: 50%;
  }
  .column-md-12 {
    width: 100%;
  }
  .mb-md-24 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .column-sm-12,
  .column-sm-6 {
    width: 100%;
  }
  .mb-sm-24 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575px) {
  .column-xs-12 {
    width: 100%;
  }
}

/* —— ヒーロースライダー（全幅・約80vh・ナビはレール外側） —— */
.site-banner-section {
  position: relative;
  padding-block: 0;
}

.site-banner-section.site-section {
  padding-block: 0;
  margin-block: 0;
}

.north-hero__shell {
  display: grid;
  grid-template-columns: minmax(2.75rem, 5vw) minmax(0, 1fr) minmax(2.75rem, 5vw);
  width: 100%;
  align-items: stretch;
  min-height: 80vh;
}

.north-hero__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}

.north-hero__viewport {
  position: relative;
  min-width: 0;
  min-height: 80vh;
}

.theme-banner-slider.swiper {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  min-height: 80vh;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  position: relative;
}

.theme-banner-slider .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}

/* 人物が上寄りの KV：cover の縦トリミングで頭が欠けないよう上基準 */
.theme-banner-slider .swiper-slide.north-hero-slide--bg-top {
  background-position: center top;
}

.theme-banner-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 32, 50, 0.75) 0%,
    rgba(20, 32, 50, 0.35) 55%,
    rgba(20, 32, 50, 0.2) 100%
  );
}

.theme-banner-slider .wrapper {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-banner-slider .slider-content {
  padding: 2rem clamp(1rem, 4vw, 2.5rem);
}

.theme-banner-slider .entry-title-large {
  margin: 0;
  font-family: var(--north-display);
  font-size: clamp(1.65rem, 4.5vw, 2.65rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.theme-banner-slider .entry-title-large a {
  color: var(--north-white);
  text-decoration: none;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.theme-banner-slider .entry-title-large a:hover {
  color: var(--north-on-dark-link-hover);
}

.theme-banner-slider .entry-title-large .north-hero-service-link {
  display: inline-block;
  padding: 0.15em 0.28em;
  border-radius: 0.3rem;
  text-decoration: none;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
  position: relative;
  z-index: 3;
}

.theme-banner-slider .entry-title-large .north-hero-service-link:hover,
.theme-banner-slider .entry-title-large .north-hero-service-link:focus-visible {
  opacity: 0.9;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.north-hero__rail .swiper-button-prev,
.north-hero__rail .swiper-button-next {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  pointer-events: auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(20, 32, 50, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--north-white) !important;
  transition: background 0.2s, border-color 0.2s;
}

.north-hero__rail .swiper-button-prev::after,
.north-hero__rail .swiper-button-next::after {
  font-size: 0.9rem !important;
  font-weight: 700;
}

.north-hero__rail .swiper-button-prev:hover,
.north-hero__rail .swiper-button-next:hover {
  background: rgba(20, 32, 50, 0.65) !important;
  border-color: rgba(255, 255, 255, 0.55);
}

.theme-banner-slider .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vh, 2.5rem);
  transform: translateX(-50%);
  width: auto !important;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.theme-banner-slider .swiper-pagination-bullet {
  background: var(--north-white);
  opacity: 0.45;
}

.theme-banner-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--north-accent-gold);
}

/* —— TOP専用ファーストビュー（左キャプション・質問＋CTA・クイックナビ） —— */
body.north-page-index {
  --north-fv-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

body.north-page-index .north-page-index-fv .north-hero__shell,
body.north-page-index .north-page-index-fv .north-hero__viewport,
body.north-page-index .north-page-index-fv .theme-banner-slider.swiper,
body.north-page-index .north-page-index-fv .theme-banner-slider .swiper-slide,
body.north-page-index .north-page-index-fv .theme-banner-slider .wrapper {
  min-height: 0;
  height: auto;
  aspect-ratio: 3168 / 1344;
}

body.north-page-index .north-page-index-fv .theme-banner-slider .swiper-slide.north-home-hero-slide {
  background-position: center center;
}

body.north-page-index .north-page-index-fv .theme-banner-slider .swiper-slide.north-home-hero-slide::after {
  background: linear-gradient(
    170deg,
    rgba(16, 38, 60, 0.12) 0%,
    rgba(16, 38, 60, 0.22) 55%,
    rgba(16, 38, 60, 0.32) 100%
  );
}

body.north-page-index .north-page-index-fv .theme-banner-slider .wrapper.north-home-hero-slide__inner {
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-hero-copy-wrap {
  display: grid;
  place-items: center;
  width: 100%;
}

.home-hero-copy {
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2.1rem);
}

.home-hero-copy span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--north-fv-serif);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 2.15;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(14, 33, 54, 0.38);
  padding-inline: clamp(0.35rem, 1.1vw, 0.7rem);
  opacity: 0;
  transform: translateY(20px);
  animation: north-hero-copy-fade 0.85s ease forwards;
}

.home-hero-copy span:not(:last-child) {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.55);
}

.home-hero-copy span:nth-child(2) {
  animation-delay: 0.14s;
}

.home-hero-copy span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes north-hero-copy-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.north-page-index .theme-banner-slider .wrapper.north-fv-slide__inner {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.north-fv-caption {
  position: relative;
  z-index: 2;
  max-width: min(36rem, 92vw);
  color: var(--north-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.north-fv-caption__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.92;
}

.north-fv-caption__catch {
  margin: 0 0 1rem;
  font-family: var(--north-fv-serif);
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.north-fv-caption__catch--sm {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
}

.north-fv-caption__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  opacity: 0.95;
}

.north-fv-prompt {
  margin: 0 0 1.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.85;
}

.north-fv-prompt p {
  margin: 0;
}

.north-fv-cta-wrap {
  margin: 0;
}

.north-fv-cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--north-white);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.north-fv-cta-btn:hover,
.north-fv-cta-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--north-white);
}

.north-fv-cta-btn--ghost {
  background: transparent;
}

.theme-banner-slider .swiper-slide.north-fv-slide--cta::after {
  background: linear-gradient(
    120deg,
    rgba(20, 32, 50, 0.9) 0%,
    rgba(20, 32, 50, 0.55) 50%,
    rgba(20, 32, 50, 0.35) 100%
  );
}

/* —— セクション共通 —— */
.site-section {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.site-section-header .site-section-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--north-accent);
  margin-bottom: 0.5rem;
}

.site-section-title {
  font-family: var(--north-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--north-ink);
  margin: 0 0 1rem;
  line-height: 1.35;
}

.site-sub-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--north-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.site-section-content {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.theme-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  background: var(--north-ink);
  color: var(--north-white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--north-radius-sm);
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.theme-primary-btn:hover {
  background: var(--north-ink-soft);
  color: var(--north-white) !important;
  transform: translateY(-1px);
}

/* —— トップ About（代表紹介）—— */
.featured-media img {
  border-radius: var(--north-radius);
  box-shadow: var(--north-shadow);
}

.has-border {
  border: none;
}

.has-border-radius {
  border-radius: var(--north-radius);
}

.north-profile-intro {
  background: #f7f5f1;
  overflow-x: clip;
}

.north-profile-intro__container {
  max-width: min(var(--north-max), 100%);
}

.north-profile-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
}

.north-profile-intro__col--text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.north-profile-intro__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--north-muted);
}

.north-profile-intro__heading {
  margin: 0 0 1.1rem;
  font-family: var(--north-display);
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 600;
  color: var(--north-ink);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.north-profile-intro__body {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.88;
  color: var(--north-muted);
}

.north-profile-intro__facts {
  list-style: none;
  margin: 0 0 1.65rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}

.north-profile-intro__fact {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--north-ink-soft);
  background: var(--north-white);
  border: 1px solid var(--north-line);
  border-radius: 999px;
  line-height: 1.35;
}

.north-profile-intro__fact--highlight {
  border-color: var(--north-accent-chip-border);
  background: var(--north-white);
}

.north-profile-intro__fact-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12rem;
  flex-wrap: wrap;
  white-space: nowrap;
}

.north-profile-intro__fact-num {
  font-family: var(--north-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--north-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.north-profile-intro__fact-tail {
  font-weight: 600;
  color: var(--north-ink-soft);
}

.north-profile-intro__cta {
  align-self: flex-start;
}

.north-profile-intro__col--visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.north-profile-intro__hero,
.north-profile-intro__thumb {
  margin: 0;
  border-radius: var(--north-radius);
  overflow: hidden;
}

.north-profile-intro__hero {
  aspect-ratio: 4 / 3;
}

.north-profile-intro__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.north-profile-intro__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.north-profile-intro__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
}

.north-profile-intro__thumb {
  aspect-ratio: 1 / 1;
}

@media (max-width: 899px) {
  .north-profile-intro__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }

  .north-profile-intro__body {
    max-width: none;
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
  }

  .north-profile-intro__facts {
    margin-bottom: 1.35rem;
  }

  .north-profile-intro__heading {
    font-size: clamp(1.65rem, 6.2vw, 1.95rem);
  }

  .north-profile-intro__col--visual {
    gap: 0.65rem;
  }
}

/* —— 事業所概要ページ用の補助クラス（表内リンク・見出し旁注等）—— */
.north-office-info__maplink {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.north-office-info__title-note {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--north-muted);
  margin-left: 0.2em;
  white-space: nowrap;
}

.north-office-info__ruby {
  font-size: 0.88em;
  color: var(--north-muted);
  font-weight: 500;
  margin-left: 0.35em;
}

/* —— カウンターブロック —— */
.theme-counter-block {
  position: relative;
  padding-block: clamp(3.5rem, 10vw, 6rem);
  color: var(--north-white);
  overflow: hidden;
}

.theme-counter-block > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.theme-counter-block > .wrapper {
  position: relative;
  z-index: 2;
}

.theme-counter-block::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 背景写真の上：暗めの黒＋既存のトーン */
  background: linear-gradient(
      160deg,
      rgba(20, 32, 50, 0.88) 0%,
      rgba(20, 32, 50, 0.65) 100%
    ),
    rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.theme-counter-block .site-section-title {
  color: var(--north-white);
}

.theme-counter-block .site-sub-title {
  color: var(--north-on-dark-subtitle);
  font-size: clamp(1.05rem, 2.35vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.theme-counter-block .site-sub-title.north-counter-highlight {
  color: #ffd84d;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.theme-counter-block .counter-number {
  font-family: var(--north-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  display: block;
  color: var(--north-white);
  font-weight: 600;
}

.theme-counter-block .counter-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.35rem 0 0;
}

.theme-counter-block .counter-items {
  padding: 0.55rem 1rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

/* —— 会社案内カード —— */
.theme-causes-block2 {
  background: #ffffff;
  color: var(--north-ink-soft);
}

.theme-causes-block2 .column-row > .column {
  display: flex;
  flex-direction: column;
}

.theme-causes-block2 .section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--north-white);
  border-radius: var(--north-radius);
  overflow: hidden;
  border: 1px solid var(--north-line);
  box-shadow: var(--north-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.theme-causes-block2 .section-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(20, 32, 50, 0.12);
}

.theme-causes-block2 .entry-image {
  flex-shrink: 0;
}

.theme-causes-block2 .entry-image figure {
  margin: 0;
}

.theme-causes-block2 .featured-media-medium a {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--north-paper-2);
  /* 上のみ角丸（下はテキストエリアとフラットに接続） */
  border-radius: var(--north-radius-sm) var(--north-radius-sm) 0 0;
}

.theme-causes-block2 .featured-media-medium img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-causes-block2 .entry-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.5rem;
}

.theme-causes-block2 .entry-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.theme-causes-block2 .entry-title-medium {
  font-family: var(--north-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.theme-causes-block2 .site-section-title {
  color: var(--north-ink);
}

.theme-causes-block2 .entry-title a {
  color: var(--north-ink);
  text-decoration: none;
}

.theme-causes-block2 .entry-title a:hover {
  color: var(--north-accent);
}

.theme-causes-block2 .entry-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--north-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  min-height: calc(0.9rem * 1.65 * 4);
}

/* —— 事業内容（画像全面背景＋下部グラデ＋白文字） —— */
.must-read-layout1 .section-content {
  position: relative;
  border-radius: var(--north-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.must-read-layout1 .section-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.must-read-layout1 .entry-image {
  margin: 0;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.must-read-layout1 .entry-image figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.must-read-layout1 .featured-media-big,
.must-read-layout1 .featured-media-big a {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.must-read-layout1 .featured-media-big a {
  position: relative;
}

.must-read-layout1 .featured-media-big img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.must-read-layout1 .section-content:hover .featured-media-big img {
  transform: scale(1.04);
}

.must-read-layout1 .section-content-detail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.5rem;
  background: transparent;
}

.must-read-layout1 .section-content-detail .entry-title {
  margin: 0;
}

.must-read-layout1 .section-content-detail a {
  color: #ffffff;
  font-family: var(--north-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.must-read-layout1 .section-content-detail a:hover {
  color: var(--north-on-dark-link-hover);
}

/* —— フッター（ネイビー上段＋明るい下段） —— */
.site-footer {
  margin-top: auto;
}

.site-footer.north-footer {
  background: transparent;
  color: inherit;
  padding: 0;
}

.north-footer__upper {
  background: var(--north-footer-navy);
  color: rgba(255, 255, 255, 0.96);
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

.north-footer__upper-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  min-width: 0;
}

.north-footer__meta {
  min-width: 0;
}

.north-footer__office-name {
  margin: 0 0 1rem;
  font-family: var(--north-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #fff;
}

.north-footer__address {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28rem;
  overflow-wrap: anywhere;
}

.north-footer__tel,
.north-footer__fax,
.north-footer__mail {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
}

.north-footer__hours {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.north-footer__label {
  display: inline-block;
  min-width: 3.25rem;
  margin-right: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

.north-footer__meta a {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.15em;
  overflow-wrap: anywhere;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.north-footer__meta a:hover {
  color: var(--north-on-dark-subtitle);
  text-decoration-color: var(--north-accent);
}

.north-footer__cta-wrap {
  margin: 1.5rem 0 0;
}

.north-footer__inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.62rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--north-radius-sm);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.north-footer__inquiry-btn:hover {
  background: #fff;
  color: var(--north-footer-navy);
  border-color: #fff;
}

.north-footer__inquiry-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.north-footer__inquiry-icon svg {
  display: block;
}

.north-footer__nav {
  min-width: 0;
}

.north-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem 1.75rem;
}

.north-footer__nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s;
}

.north-footer__nav-list a::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

.north-footer__nav-list a:hover {
  color: var(--north-on-dark-subtitle);
}

@media (min-width: 768px) {
  .north-footer__upper-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .north-footer__nav-list {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.25rem, 3vw, 2.5rem);
    row-gap: 0.5rem;
  }
}

.north-footer__lower {
  background: var(--north-footer-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
}

.north-footer__copyright {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.5;
}

/* —— 特徴ページ —— */
body.north-page-features .north-features {
  margin: 0;
}

body.north-page-features .north-features-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(24rem, 58vh, 38rem);
  overflow: hidden;
  text-align: center;
}

body.north-page-features .north-features-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.north-page-features .north-features-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 38, 60, 0.62);
}

body.north-page-features .north-features-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  padding-block: clamp(2.25rem, 5.5vw, 3.5rem);
  padding-inline: clamp(0.75rem, 3vw, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.35rem, 3.5vw, 2rem);
}

body.north-page-features .north-features-hero__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 36rem;
}

body.north-page-features .north-features-hero__kicker {
  margin: 0;
  font-size: clamp(0.9rem, 1.9vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
}

body.north-page-features .north-features-hero__title {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.28;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

body.north-page-features .north-features-hero__brand {
  display: block;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  letter-spacing: 0.03em;
  font-weight: 600;
}

body.north-page-features .north-features-hero__title-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.08em 0.28em;
  margin-top: 0.2rem;
}

body.north-page-features .north-features-hero__num {
  font-size: clamp(2.85rem, 9.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

body.north-page-features .north-features-hero__suffix {
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}

body.north-page-features .north-features-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.15rem);
  justify-items: center;
}

body.north-page-features .north-features-badge {
  box-sizing: border-box;
  aspect-ratio: 1;
  width: min(100%, 10.5rem);
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.65rem;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: #ffffff;
  font-size: clamp(0.7rem, 1.25vw, 0.8rem);
  font-weight: 600;
  line-height: 1.42;
  text-align: center;
  box-shadow: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

body.north-page-features .north-features-badge:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 991px) {
  body.north-page-features .north-features-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 22rem;
    gap: clamp(0.65rem, 2.5vw, 0.95rem);
  }

  body.north-page-features .north-features-badge {
    width: min(100%, 9.75rem);
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
    padding: 0.6rem 0.55rem;
  }
}

@media (max-width: 380px) {
  body.north-page-features .north-features-badge {
    width: min(100%, 8.75rem);
    font-size: 0.66rem;
  }
}

body.north-page-features .north-features-commit {
  background: var(--north-paper);
  padding-block: clamp(2.75rem, 6vw, 4rem);
}

body.north-page-features .north-features-commit__heading {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--north-ink);
}

body.north-page-features .north-features-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 991px) {
  body.north-page-features .north-features-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  body.north-page-features .north-features-cards {
    grid-template-columns: 1fr;
  }
}

body.north-page-features .north-features-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.15rem 1.65rem;
  border: 1px solid var(--north-line);
  border-radius: var(--north-radius);
  background: var(--north-white);
  box-shadow: var(--north-shadow);
}

body.north-page-features .north-features-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--north-accent);
}

body.north-page-features .north-features-card__title {
  margin: 0.85rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--north-ink);
  line-height: 1.45;
}

body.north-page-features .north-features-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--north-muted);
}

body.north-page-features .north-features-commit__note {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--north-muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

body.north-page-features .north-features-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(16rem, 38vw, 22rem);
  overflow: hidden;
  padding-block: clamp(2.75rem, 7vw, 4rem);
}

body.north-page-features .north-features-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 0.65rem solid transparent;
  border-right: 0.65rem solid transparent;
  border-top: 0.55rem solid var(--north-paper);
  transform: translateX(-50%);
}

body.north-page-features .north-features-cta__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.north-page-features .north-features-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.74);
}

body.north-page-features .north-features-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding-inline: 0.75rem;
}

body.north-page-features .north-features-cta__heading {
  margin: 0 0 1.65rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.04em;
}

body.north-page-features .north-features-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

body.north-page-features .north-features-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 17.5rem);
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.north-page-features .north-features-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  filter: brightness(1.05);
  color: #ffffff;
}

body.north-page-features .north-features-cta__btn--phone {
  background: var(--north-accent);
}

body.north-page-features .north-features-cta__btn--mail {
  background: var(--north-accent-hover);
}

/* —— Shared Q&A accordion（全ページ共通・軽量） —— */
.north-qa-panel-outer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--north-qa-open-duration) var(--north-qa-ease);
}

.north-qa-item.is-open .north-qa-panel-outer {
  grid-template-rows: 1fr;
}

.north-qa-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.north-qa-answer {
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity var(--north-qa-fade-duration) ease,
    transform var(--north-qa-fade-duration) ease;
}

.north-qa-item.is-open .north-qa-answer {
  opacity: 1;
  transform: translateY(0);
}

.north-qa-trigger__icon::before,
.north-qa-trigger__icon::after {
  transition: transform var(--north-qa-icon-duration) ease, opacity var(--north-qa-icon-duration) ease;
}

@media (max-width: 767px) {
  :root {
    --north-qa-open-duration: 0.22s;
    --north-qa-fade-duration: 0.16s;
    --north-qa-icon-duration: 0.2s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .north-qa-panel-outer,
  .north-qa-answer,
  .north-qa-trigger__icon::before,
  .north-qa-trigger__icon::after {
    transition: none !important;
  }

  .north-qa-answer {
    opacity: 1;
    transform: none;
  }
}

/* —— Q&Aページ（qa.html） —— */
body.north-page-qa .north-qa {
  margin: 0;
}

body.north-page-qa {
  --north-faq-accent: #2d5f8f;
  --north-faq-accent-strong: #173a5d;
  --north-faq-accent-soft: rgba(45, 95, 143, 0.1);
  --north-faq-accent-faint: rgba(45, 95, 143, 0.06);
  --north-faq-border: rgba(45, 95, 143, 0.22);
  --north-faq-border-strong: rgba(45, 95, 143, 0.32);
}

body.north-page-qa .north-qa-hero {
  background: linear-gradient(180deg, var(--north-paper-2) 0%, var(--north-paper) 100%);
  padding-block: clamp(1.5rem, 3.5vw, 2.25rem) clamp(0.85rem, 2vw, 1.25rem);
}

body.north-page-qa .north-qa-hero__inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding-inline: 0.75rem;
}

body.north-page-qa .north-qa-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--north-muted);
}

body.north-page-qa .north-qa-hero__title {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  color: var(--north-ink);
  line-height: 1.45;
}

body.north-page-qa .north-qa-body {
  background: var(--north-paper);
  padding-block: clamp(0.75rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3.25rem);
}

body.north-page-qa .north-qa-body__inner {
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: 0.75rem;
}

body.north-page-qa .north-qa-toc {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: 1rem 1.1rem;
  border: 1px solid var(--north-line);
  border-radius: var(--north-radius);
  background: var(--north-white);
}

body.north-page-qa .north-qa-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.north-page-qa .north-qa-toc__list a {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(20, 60, 99, 0.18);
  border-radius: 999px;
  background: #f5f8fb;
  color: var(--north-ink);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.north-page-qa .north-qa-toc__list a:hover,
body.north-page-qa .north-qa-toc__list a:focus-visible {
  background: rgba(42, 103, 152, 0.1);
  border-color: rgba(20, 60, 99, 0.35);
  color: var(--north-navy, #143c63);
}

body.north-page-qa .north-qa-category {
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
  scroll-margin-top: 6.5rem;
}

body.north-page-qa .north-qa-category:last-of-type {
  margin-bottom: 0;
}

body.north-page-qa .north-qa-category__title {
  margin: 0 0 1.35rem;
  padding-bottom: 0.65rem;
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  color: var(--north-ink);
  border-bottom: 2px solid var(--north-accent);
  display: inline-block;
  max-width: 100%;
}

body.north-page-qa .north-qa-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

body.north-page-qa .north-qa-item {
  border: 1px solid var(--north-line);
  border-radius: var(--north-radius);
  background: var(--north-white);
  box-shadow: 0 4px 18px rgba(20, 32, 50, 0.05);
  overflow: hidden;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

body.north-page-qa .north-qa-item:hover {
  border-color: var(--north-faq-border);
}

body.north-page-qa .north-qa-item.is-open {
  border-color: var(--north-faq-border-strong);
  box-shadow: 0 8px 24px rgba(20, 32, 50, 0.07);
}

body.north-page-qa .north-qa-item__heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

body.north-page-qa .north-qa-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1.05rem 1.1rem 1.05rem 1.2rem;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--north-ink);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, color 0.2s ease;
}

body.north-page-qa .north-qa-trigger:hover {
  background: var(--north-faq-accent-soft);
}

body.north-page-qa .north-qa-trigger:focus {
  outline: none;
}

body.north-page-qa .north-qa-trigger:focus-visible {
  outline: 2px solid var(--north-faq-accent);
  outline-offset: 2px;
}

body.north-page-qa .north-qa-item.is-open .north-qa-trigger {
  background: var(--north-faq-accent-faint);
}

body.north-page-qa .north-qa-trigger__q {
  flex: 1;
  min-width: 0;
  line-height: 1.55;
}

body.north-page-qa .north-qa-trigger__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--north-faq-accent);
}

body.north-page-qa .north-qa-trigger__icon::before,
body.north-page-qa .north-qa-trigger__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

body.north-page-qa .north-qa-trigger__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

body.north-page-qa .north-qa-trigger__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

body.north-page-qa .north-qa-item.is-open .north-qa-trigger__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

body.north-page-qa .north-qa-answer {
  padding: 1.15rem 1.65rem 1.35rem;
  margin-top: 0;
  border-top: 1px solid rgba(45, 95, 143, 0.2);
  background: rgba(45, 95, 143, 0.03);
  font-size: 0.94rem;
  line-height: 1.92;
  color: var(--north-ink-soft);
}

body.north-page-qa .north-qa-answer p {
  margin: 0 0 0.75rem;
}

body.north-page-qa .north-qa-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  body.north-page-qa .north-qa-answer {
    padding: 0.95rem 1.1rem 1.1rem;
    font-size: 0.9rem;
    line-height: 1.86;
  }
}

body.north-page-qa .north-qa-answer ul,
body.north-page-qa .north-qa-answer ol {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.35rem;
}

body.north-page-qa .north-qa-answer li {
  margin-bottom: 0.35rem;
}

body.north-page-qa .north-qa-answer li:last-child {
  margin-bottom: 0;
}

body.north-page-qa .north-qa-answer__ol {
  list-style: decimal;
}

body.north-page-qa .north-qa-answer strong {
  color: var(--north-ink);
  font-weight: 600;
}

body.north-page-qa .north-qa-bottom-cta {
  background: linear-gradient(180deg, var(--north-paper-2) 0%, #ebe8e2 100%);
  border-top: 1px solid var(--north-line);
  padding-block: clamp(2.5rem, 6vw, 3.75rem);
}

body.north-page-qa .north-qa-bottom-cta__inner {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
  padding-inline: 0.75rem;
}

body.north-page-qa .north-qa-bottom-cta__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--north-ink);
  line-height: 1.55;
}

body.north-page-qa .north-qa-bottom-cta__text {
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--north-ink-soft);
}

body.north-page-qa .north-qa-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

body.north-page-qa .north-qa-bottom-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 15rem);
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.north-page-qa .north-qa-bottom-cta__btn:hover {
  transform: translateY(-1px);
}

body.north-page-qa .north-qa-bottom-cta__btn--primary {
  background: var(--north-accent);
  border: 1px solid var(--north-accent);
  color: var(--north-white);
  box-shadow: var(--north-accent-glow);
}

body.north-page-qa .north-qa-bottom-cta__btn--primary:hover {
  background: var(--north-accent-hover);
  border-color: var(--north-accent-hover);
  color: var(--north-white);
}

body.north-page-qa .north-qa-bottom-cta__btn--outline {
  background: var(--north-white);
  border: 1px solid var(--north-line);
  color: var(--north-ink);
}

body.north-page-qa .north-qa-bottom-cta__btn--outline:hover {
  border-color: var(--north-accent);
  color: var(--north-accent);
}

@media (prefers-reduced-motion: reduce) {
  body.north-page-qa .north-qa-item,
  body.north-page-qa .north-qa-trigger,
  body.north-page-qa .north-qa-bottom-cta__btn {
    transition: none;
  }

  body.north-page-qa .north-qa-bottom-cta__btn:hover {
    transform: none;
  }
}

/* —— 料金ページ（price.html） —— */
body.north-page-price .north-price {
  margin: 0;
}

body.north-page-price .north-price-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(11rem, 28vw, 15rem);
  overflow: hidden;
  text-align: center;
}

body.north-page-price .north-price-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.north-page-price .north-price-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 38, 60, 0.62);
}

body.north-page-price .north-price-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.25rem, 5vw, 3rem);
  padding-inline: 0.75rem;
}

body.north-page-price .north-price-hero__title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

body.north-page-price .north-price-notice {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  max-width: none;
  padding: 1.15rem 1.25rem 1.15rem;
  border: 1px solid rgba(20, 60, 99, 0.18);
  border-left: 3px solid var(--north-navy, #143c63);
  border-radius: var(--north-radius, 8px);
  background: #fff;
  box-shadow: 0 4px 16px rgba(20, 32, 50, 0.04);
}

body.north-page-price .north-price-notice__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--north-navy, #143c63);
  letter-spacing: 0.04em;
}

body.north-page-price .north-price-notice__lead {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--north-ink);
}

body.north-page-price .north-price-notice__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--north-ink-soft, #3a4a5c);
  font-size: 0.9rem;
  line-height: 1.85;
}

body.north-page-price .north-price-notice__list li + li {
  margin-top: 0.2rem;
}

body.north-page-price .north-price-body {
  background: var(--north-paper-2, #f5f7fa);
  padding-block: clamp(2rem, 5vw, 3rem);
}

body.north-page-price .north-price-body__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: 0.75rem;
}

body.north-page-price .north-price-toc {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: 1rem 1.1rem;
  border: 1px solid var(--north-line);
  border-radius: var(--north-radius, 8px);
  background: #fff;
}

body.north-page-price .north-price-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.north-page-price .north-price-toc__list a {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(20, 60, 99, 0.18);
  border-radius: 999px;
  background: #f5f8fb;
  color: var(--north-ink);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.north-page-price .north-price-toc__list a:hover,
body.north-page-price .north-price-toc__list a:focus-visible {
  background: rgba(42, 103, 152, 0.1);
  border-color: rgba(20, 60, 99, 0.35);
  color: var(--north-navy, #143c63);
}

body.north-page-price .north-price-section {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  scroll-margin-top: 6.5rem;
}

body.north-page-price .north-price-section:last-of-type {
  margin-bottom: 0;
}

body.north-page-price .north-price-section__title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  color: var(--north-navy, #143c63);
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--north-accent, #2a6798);
  display: inline-block;
  max-width: 100%;
}

body.north-page-price .north-price-section__note {
  margin: 0 0 0.95rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--north-muted, #5a6a7a);
}

body.north-page-price .north-price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(20, 60, 99, 0.16);
  border-radius: var(--north-radius, 8px);
  background: #fff;
  box-shadow: 0 6px 22px rgba(20, 32, 50, 0.05);
}

body.north-page-price .north-price-table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--north-ink-soft);
  background: #fff;
}

body.north-page-price .north-price-table thead th {
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: left;
  vertical-align: middle;
  background: var(--north-navy, #143c63);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.north-page-price .north-price-table .north-price-table__col-name {
  width: 72%;
}

body.north-page-price .north-price-table .north-price-table__col-price {
  width: 28%;
  min-width: 7.5rem;
  text-align: right;
}

body.north-page-price .north-price-table thead .north-price-table__col-price {
  text-align: right;
}

body.north-page-price .north-price-table tbody td {
  padding: 0.9rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(20, 60, 99, 0.12);
  background: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.north-page-price .north-price-table tbody tr:last-child td {
  border-bottom: none;
}

body.north-page-price .north-price-table tbody tr:nth-child(even) td {
  background: #f7fafc;
}

body.north-page-price .north-price-table__name {
  color: var(--north-ink);
}

body.north-page-price .north-price-table__price {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--north-navy, #143c63);
  text-align: right;
  white-space: nowrap;
  min-width: 7.5rem;
}

@media (max-width: 639px) {
  body.north-page-price .north-price-table {
    font-size: 0.84rem;
    min-width: 24rem;
  }

  body.north-page-price .north-price-table thead th,
  body.north-page-price .north-price-table tbody td {
    padding: 0.7rem 0.75rem;
  }

  body.north-page-price .north-price-table .north-price-table__col-price,
  body.north-page-price .north-price-table__price {
    min-width: 6.5rem;
  }
}

body.north-page-price .north-price-cta {
  background: linear-gradient(180deg, #f5f8fb 0%, #e8eef4 100%);
  border-top: 1px solid var(--north-line);
  padding-block: clamp(2.5rem, 6vw, 3.75rem);
}

body.north-page-price .north-price-cta__inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding-inline: 0.75rem;
}

body.north-page-price .north-price-cta__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 700;
  color: var(--north-navy, #143c63);
}

body.north-page-price .north-price-cta__text {
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--north-ink-soft);
}

body.north-page-price .north-price-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

body.north-page-price .north-price-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--north-radius, 8px);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.north-page-price .north-price-cta__btn:hover {
  text-decoration: none;
}

body.north-page-price .north-price-cta__btn--primary {
  background: var(--north-navy, #143c63);
  border: 1px solid var(--north-navy, #143c63);
  color: #fff;
}

body.north-page-price .north-price-cta__btn--primary:hover {
  background: #0f2f4f;
  border-color: #0f2f4f;
  color: #fff;
}

body.north-page-price .north-price-cta__btn--outline {
  background: #fff;
  border: 1px solid rgba(20, 60, 99, 0.3);
  color: var(--north-navy, #143c63);
}

body.north-page-price .north-price-cta__btn--outline:hover {
  background: rgba(42, 103, 152, 0.08);
  border-color: rgba(20, 60, 99, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  body.north-page-price .north-price-cta__btn {
    transition: none;
  }

  body.north-page-price .north-price-cta__btn:hover {
    transform: none;
  }
}


/* —— 事業所概要ページ（about.html） —— */
body.north-page-about .north-about {
  margin: 0;
}

body.north-page-about .north-about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(11rem, 28vw, 15rem);
  overflow: hidden;
  text-align: center;
}

body.north-page-about .north-about-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.north-page-about .north-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 38, 60, 0.62);
}

body.north-page-about .north-about-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.25rem, 5vw, 3rem);
  padding-inline: 0.75rem;
}

body.north-page-about .north-about-hero__title {
  margin: 0;
  font-size: clamp(1.55rem, 3.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
}

body.north-page-about .north-about-profile {
  background: var(--north-paper);
  padding-block: clamp(2.5rem, 6vw, 3.75rem);
}

body.north-page-about .north-about-profile__inner {
  max-width: var(--north-max);
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 3vw, 1.25rem);
}

body.north-page-about .north-about-profile__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 4.2vw, 3.5rem);
  align-items: center;
}

@media (max-width: 767px) {
  body.north-page-about .north-about-profile__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
  }

  body.north-page-about .north-about-profile__figure {
    max-width: min(19.5rem, 86vw);
  }

  body.north-page-about .north-about-profile__img {
    max-width: min(19.5rem, 86vw);
    height: auto;
    max-height: 28rem;
  }

  body.north-page-about .north-about-profile__caption {
    max-width: min(19.5rem, 86vw);
  }
}

body.north-page-about .north-about-profile__figure {
  margin: 0;
  max-width: 22.5rem;
  justify-self: center;
}

body.north-page-about .north-about-profile__img {
  display: block;
  width: 100%;
  max-width: 22.5rem;
  margin-inline: auto;
  height: clamp(25rem, 42vw, 34rem);
  border-radius: var(--north-radius);
  border: 1px solid var(--north-line);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

body.north-page-about .north-about-profile__caption {
  margin: 0.5rem 0 0;
  max-width: 22.5rem;
  margin-inline: auto;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--north-muted);
  text-align: center;
}

@media (max-width: 767px) {
  body.north-page-about .north-about-profile__figure {
    max-width: min(19.5rem, 86vw);
  }

  body.north-page-about .north-about-profile__img {
    max-width: min(19.5rem, 86vw);
    height: auto;
    max-height: 28rem;
  }

  body.north-page-about .north-about-profile__caption {
    max-width: min(19.5rem, 86vw);
  }
}

body.north-page-about .north-about-profile__tagline {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 600;
  line-height: 1.65;
  color: var(--north-ink);
}

body.north-page-about .north-about-profile__role {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--north-muted);
}

body.north-page-about .north-about-profile__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--north-ink-soft);
}

body.north-page-about .north-about-profile__sign {
  margin: 1.35rem 0 0;
  max-width: 16rem;
}

body.north-page-about .north-about-profile__sign-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

body.north-page-about .north-about-divider {
  max-width: 3.5rem;
  height: 2px;
  margin: 0 auto;
  background: var(--north-accent);
  opacity: 0.85;
}

body.north-page-about .north-about-message {
  background: var(--north-paper);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

body.north-page-about .north-about-message__inner {
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 3vw, 1.25rem);
}

body.north-page-about .north-about-message__body p {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--north-ink-soft);
}

body.north-page-about .north-about-message__body p:last-child {
  margin-bottom: 0;
}

body.north-page-about .north-about-section-title {
  margin: 0 0 1.25rem;
  padding-bottom: 0.55rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--north-ink);
  border-bottom: 2px solid var(--north-accent);
  display: inline-block;
  max-width: 100%;
}

body.north-page-about .north-about-spec {
  background: var(--north-paper-2);
  padding-block: clamp(2.5rem, 5.5vw, 3.5rem);
}

body.north-page-about .north-about-spec__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 3vw, 1.25rem);
}

body.north-page-about .north-about-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--north-ink-soft);
  background: var(--north-white);
  border: 1px solid #d8dde2;
}

body.north-page-about .north-about-spec-table th,
body.north-page-about .north-about-spec-table td {
  padding: 0.9rem 1rem;
  border: 1px solid #d8dde2;
  vertical-align: top;
  text-align: left;
}

body.north-page-about .north-about-spec-table th {
  width: 8.5rem;
  max-width: 32%;
  font-weight: 600;
  color: var(--north-ink);
  background: #e9eef4;
}

body.north-page-about .north-about-spec-table td {
  background: var(--north-white);
}

body.north-page-about .north-about-spec-table a {
  color: var(--north-accent);
}

@media (max-width: 575px) {
  body.north-page-about .north-about-spec-table th,
  body.north-page-about .north-about-spec-table td {
    display: block;
    width: 100%;
    max-width: none;
  }

  body.north-page-about .north-about-spec-table tr {
    border-bottom: 1px solid #d8dde2;
  }

  body.north-page-about .north-about-spec-table tr:last-child {
    border-bottom: none;
  }
}

body.north-page-about .north-about-access {
  background: var(--north-paper);
  padding-block: clamp(2.5rem, 5.5vw, 3.5rem);
}

body.north-page-about .north-about-access__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 3vw, 1.25rem);
}

body.north-page-about .north-about-access__address {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--north-ink-soft);
}

body.north-page-about .north-about-access__map-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
}

body.north-page-about .north-about-access__map-link {
  color: var(--north-accent);
  font-weight: 500;
}

body.north-page-about .north-about-map {
  width: 100%;
  height: 420px;
  border-radius: var(--north-radius);
  border: 1px solid var(--north-line);
  background: var(--north-white);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(20, 32, 50, 0.06);
}

body.north-page-about .north-about-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 575px) {
  body.north-page-about .north-about-map {
    height: 330px;
  }
}

/* —— 新規写真差し替え後のトリミング調整 —— */
img[src*="north_photo (14)"] {
  object-position: center 18%;
}

img[src*="north_photo (7)"] {
  object-position: center 30%;
}

.north-profile-intro__hero img,
.must-read-layout1 .featured-media-big img {
  object-position: center center;
}

.theme-causes-block2 .featured-media-medium img[src*="north_photo (14)"] {
  object-position: center 22%;
}

.theme-causes-block2 .featured-media-medium img[src*="north_photo (10)"] {
  object-position: center 24%;
}

body.north-page-about .north-about-profile__img {
  object-position: center top;
}

body.north-page-about .north-about-hero__media {
  background-position: center 52%;
}

body.north-page-features .north-features-hero__media {
  background-position: center 32%;
}

body.north-page-features .north-features-cta__media {
  background-position: center center;
}

body.north-page-price .north-price-hero__media {
  background-position: center 42%;
}

.entry-meta,
.comments-area-title,
#respond {
  display: none !important;
}

body.north-page-service-placeholder .north-service-placeholder {
  margin: 0;
}

body.north-page-service-placeholder .north-service-placeholder__hero {
  background: linear-gradient(180deg, var(--north-paper-2) 0%, var(--north-paper) 100%);
  border-bottom: 1px solid var(--north-line);
  padding-block: clamp(2.2rem, 6vw, 3.8rem);
}

body.north-page-service-placeholder .north-service-placeholder__hero-inner {
  text-align: center;
}

body.north-page-service-placeholder .north-service-placeholder__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.8vw, 2.1rem);
  font-weight: 700;
  color: var(--north-ink);
  line-height: 1.4;
}

body.north-page-service-placeholder .north-service-placeholder__body {
  background: var(--north-paper);
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
}

body.north-page-service-placeholder .north-service-placeholder__body-inner {
  max-width: 44rem;
}

body.north-page-service-placeholder .north-service-placeholder__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--north-ink-soft);
}

body.north-page-service-placeholder .north-service-placeholder__cta {
  background: linear-gradient(180deg, var(--north-paper-2) 0%, #ebe8e2 100%);
  border-top: 1px solid var(--north-line);
  padding-block: clamp(2.4rem, 6vw, 3.6rem);
}

body.north-page-service-placeholder .north-service-placeholder__cta-inner {
  text-align: center;
}

body.north-page-service-placeholder .north-service-placeholder__cta-inner h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--north-ink);
}

body.north-page-service-placeholder .north-service-placeholder__cta-inner p {
  margin: 0 0 1.4rem;
  color: var(--north-ink-soft);
  font-size: 0.9rem;
}

body.north-page-service-placeholder .north-service-placeholder__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* —— 建設業許可ページ（construction-permit.html） —— */
body.north-page-construction-permit {
  --north-construction-navy: #154476;
  --north-construction-blue: #154476;
  --north-construction-line: #d5dde6;
  --north-faq-accent: #2d5f8f;
  --north-faq-accent-strong: #173a5d;
  --north-faq-accent-soft: rgba(45, 95, 143, 0.1);
  --north-faq-accent-faint: rgba(45, 95, 143, 0.06);
  --north-faq-border: rgba(45, 95, 143, 0.22);
  --north-faq-border-strong: rgba(45, 95, 143, 0.32);
}

body.north-page-construction-permit .north-construction-hero {
  position: relative;
  min-height: clamp(13.5rem, 36vw, 20rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

body.north-page-construction-permit .north-construction-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 34%;
}

body.north-page-construction-permit .north-construction-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 38, 60, 0.62);
}

body.north-page-construction-permit .north-construction-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 5.5vw, 3.75rem);
  text-align: center;
}

body.north-page-construction-permit .north-construction-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
}

body.north-page-construction-permit .north-construction-hero__lead {
  margin: 0.9rem auto 0;
  max-width: 50rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  line-height: 1.85;
}

body.north-page-construction-permit .north-construction-section-title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.2rem, 2.9vw, 1.65rem);
  color: var(--north-construction-navy);
}

body.north-page-construction-permit .north-construction-intro,
body.north-page-construction-permit .north-construction-cases,
body.north-page-construction-permit .north-construction-requirements,
body.north-page-construction-permit .north-construction-flow,
body.north-page-construction-permit .north-construction-docs,
body.north-page-construction-permit .north-construction-price {
  padding-block: clamp(2.2rem, 5.5vw, 3.6rem);
}

body.north-page-construction-permit .north-construction-cases,
body.north-page-construction-permit .north-construction-flow,
body.north-page-construction-permit .north-construction-price {
  background: #f5f8fb;
  border-top: 1px solid var(--north-construction-line);
  border-bottom: 1px solid var(--north-construction-line);
}

body.north-page-construction-permit .north-construction-intro p {
  margin: 0.75rem 0 0;
  color: var(--north-ink-soft);
}

body.north-page-career-up .north-ccus-intro-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

body.north-page-career-up .north-ccus-intro-heading .north-construction-section-title {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

body.north-page-career-up .north-ccus-logo__link {
  display: inline-block;
  flex: 0 0 auto;
  margin-left: auto;
  line-height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20, 32, 50, 0.08);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

body.north-page-career-up .north-ccus-logo__link:hover,
body.north-page-career-up .north-ccus-logo__link:focus-visible {
  opacity: 0.92;
  box-shadow: 0 6px 18px rgba(20, 32, 50, 0.12);
}

body.north-page-career-up .north-ccus-logo__img {
  display: block;
  width: 5.5rem;
  height: auto;
}

body.north-page-construction-permit .north-construction-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

body.north-page-construction-permit .north-construction-card {
  background: #fff;
  border: 1px solid var(--north-construction-line);
  border-radius: var(--north-radius);
  padding: 1rem 1.05rem;
}

body.north-page-construction-permit .north-construction-card h3 {
  margin: 0 0 0.55rem;
  color: var(--north-construction-navy);
  font-size: 1rem;
}

body.north-page-construction-permit .north-construction-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

body.north-page-construction-permit .north-construction-note {
  margin: 0.9rem 0 0;
  font-size: 0.84rem;
  color: #4f6174;
}

body.north-page-construction-permit .north-construction-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

body.north-page-construction-permit .north-construction-steps li {
  background: #fff;
  border: 1px solid var(--north-construction-line);
  border-radius: var(--north-radius-sm);
  padding: 0.8rem 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--north-construction-navy);
  text-align: center;
  font-weight: 600;
}

body.north-page-construction-permit .north-construction-table-wrap {
  overflow-x: auto;
}

body.north-page-construction-permit .north-construction-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--north-construction-line);
}

body.north-page-construction-permit .north-construction-table th,
body.north-page-construction-permit .north-construction-table td {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--north-construction-line);
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}

body.north-page-construction-permit .north-construction-table thead th,
body.north-page-construction-permit .north-construction-table tbody th {
  background: #eaf1f8;
  color: var(--north-construction-navy);
  font-weight: 600;
}

body.north-page-construction-permit .north-construction-table--price td {
  font-weight: 700;
  color: var(--north-construction-navy);
}



/* —— お問い合わせページ（contact.html） —— */
body.north-page-contact {
  --north-contact-blue: #1f4d78;
  --north-contact-blue-dark: #123a5c;
  --north-contact-line: #d5dee8;
  --north-contact-bg: #f3f6f9;
  --north-contact-card: #fff;
}

body.north-page-contact .north-contact {
  margin: 0;
}

body.north-page-contact .north-contact-hero {
  background: linear-gradient(180deg, #eef3f8 0%, #fff 100%);
  border-bottom: 1px solid var(--north-contact-line);
  padding-block: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
}

body.north-page-contact .north-contact-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--north-contact-blue);
}

body.north-page-contact .north-contact-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--north-contact-blue-dark);
}

body.north-page-contact .north-contact-hero__lead {
  margin: 0 auto;
  max-width: 40rem;
  line-height: 1.9;
  color: var(--north-ink-soft);
  font-size: 0.95rem;
}

body.north-page-contact .north-contact-section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  color: var(--north-contact-blue-dark);
}

body.north-page-contact .north-contact-channels,
body.north-page-contact .north-contact-topics,
body.north-page-contact .north-contact-office {
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
}

body.north-page-contact .north-contact-topics,
body.north-page-contact .north-contact-office {
  background: var(--north-contact-bg);
}

body.north-page-contact .north-contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

body.north-page-contact .north-contact-channel {
  background: var(--north-contact-card);
  border: 1px solid var(--north-contact-line);
  padding: 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

body.north-page-contact .north-contact-channel h3 {
  margin: 0 0 0.6rem;
  color: var(--north-contact-blue-dark);
  font-size: 1.05rem;
}

body.north-page-contact .north-contact-channel > p:not(.north-contact-channel__meta) {
  margin: 0 0 0.75rem;
  line-height: 1.8;
  font-size: 0.92rem;
  color: var(--north-ink-soft);
  flex: 1 1 auto;
}

body.north-page-contact .north-contact-channel__meta {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  min-height: 3.4em;
  font-size: 0.88rem !important;
  color: var(--north-ink) !important;
  line-height: 1.7 !important;
}

body.north-page-contact .north-contact-channel .theme-button {
  margin-top: auto;
  align-self: flex-start;
}

body.north-page-contact .north-contact-main {
  background: var(--north-contact-bg);
  padding-block: clamp(2.4rem, 5vw, 3.8rem);
  border-block: 1px solid var(--north-contact-line);
}

body.north-page-contact .north-contact-main__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.7fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

body.north-page-contact .north-contact-form-card {
  background: var(--north-contact-card);
  border: 1px solid var(--north-contact-line);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

body.north-page-contact .north-contact-form-head {
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--north-contact-line);
}

body.north-page-contact .north-contact-form-head__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  color: var(--north-contact-blue-dark);
}

body.north-page-contact .north-contact-form-head__lead {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--north-ink);
}

body.north-page-contact .north-contact-form-head__note {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--north-muted);
}

body.north-page-contact .north-contact-row {
  display: grid;
  grid-template-columns: minmax(10.5rem, 12.5rem) minmax(0, 1fr);
  gap: 0.85rem 1.25rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid #e8eef4;
}

body.north-page-contact .north-contact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--north-ink);
  line-height: 1.6;
  padding-top: 0.5rem;
}

body.north-page-contact .north-form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.4rem;
  min-width: 2.1rem;
  padding: 0.08rem 0.35rem;
  border-radius: 0.2rem;
  font-size: 0.66rem;
  line-height: 1.35;
  font-weight: 700;
}

body.north-page-contact .north-form-badge--required {
  background: var(--north-contact-blue-dark);
  color: #fff;
}

body.north-page-contact .north-form-badge--optional {
  background: #e8eef4;
  color: #4b5d70;
}

body.north-page-contact .north-contact-control {
  min-width: 0;
}

body.north-page-contact .north-contact-control input[type="text"],
body.north-page-contact .north-contact-control input[type="email"],
body.north-page-contact .north-contact-control input[type="tel"],
body.north-page-contact .north-contact-control select,
body.north-page-contact .north-contact-control textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--north-contact-line);
  background: #fff;
  border-radius: 0.25rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--north-ink);
  padding: 0.78rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

body.north-page-contact .north-contact-control textarea {
  min-height: 10.5rem;
  resize: vertical;
  line-height: 1.8;
}

body.north-page-contact .north-contact-control input:focus,
body.north-page-contact .north-contact-control select:focus,
body.north-page-contact .north-contact-control textarea:focus {
  outline: none;
  border-color: var(--north-contact-blue);
  box-shadow: 0 0 0 3px rgba(31, 77, 120, 0.14);
}

body.north-page-contact .north-contact-control--chips,
body.north-page-contact .north-contact-control--radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

body.north-page-contact .north-contact-control--chips label,
body.north-page-contact .north-contact-control--radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid #e5ebf2;
  border-radius: 0.25rem;
  background: #fff;
  font-size: 0.84rem;
  line-height: 1.45;
  cursor: pointer;
}

body.north-page-contact .north-contact-control input[type="radio"],
body.north-page-contact .north-contact-control input[type="checkbox"] {
  accent-color: var(--north-contact-blue);
}

body.north-page-contact .north-contact-agree {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  cursor: pointer;
}

body.north-page-contact .north-contact-agree input {
  margin-top: 0.2rem;
}

body.north-page-contact .north-contact-policy-link {
  color: var(--north-contact-blue);
  text-decoration: underline;
}

body.north-page-contact .north-contact-endpoint-note {
  margin: 1.15rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid #d7e0ea;
  background: #f7fafc;
  color: var(--north-contact-blue-dark);
  font-size: 0.88rem;
  line-height: 1.7;
}

body.north-page-contact .north-contact-submit {
  display: flex;
  justify-content: center;
  padding-top: clamp(1.4rem, 3vw, 2rem);
}

body.north-page-contact .north-contact-submit__btn {
  border: 0;
  border-radius: 0.25rem;
  padding: 0.95rem 2.2rem;
  min-width: min(100%, 18rem);
  min-height: 3.1rem;
  background: var(--north-contact-blue-dark);
  color: #fff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

body.north-page-contact .north-contact-submit__btn:hover {
  background: #0d2f4c;
}

body.north-page-contact .north-contact-main__side {
  display: grid;
  gap: 1rem;
}

body.north-page-contact .north-contact-side-card {
  background: var(--north-contact-card);
  border: 1px solid var(--north-contact-line);
  padding: 1.2rem 1.15rem;
}

body.north-page-contact .north-contact-side-card__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--north-contact-blue-dark);
}

body.north-page-contact .north-contact-side-card__tel {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

body.north-page-contact .north-contact-side-card__tel a {
  color: var(--north-contact-blue-dark);
  text-decoration: none;
}

body.north-page-contact .north-contact-side-card__text,
body.north-page-contact .north-contact-side-card__office {
  margin: 0 0 0.95rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--north-ink-soft);
}

body.north-page-contact .north-contact-side-card__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

body.north-page-contact .north-contact-topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

body.north-page-contact .north-contact-topic-list li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.1rem;
  background: #fff;
  border: 1px solid var(--north-contact-line);
}

body.north-page-contact .north-contact-topic-list li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.3rem;
  border-left: 2px solid var(--north-contact-blue);
  border-bottom: 2px solid var(--north-contact-blue);
  transform: rotate(-45deg);
}

body.north-page-contact .north-lp-office-table {
  width: 100%;
  max-width: 44rem;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--north-contact-line);
}

body.north-page-contact .north-lp-office-table th,
body.north-page-contact .north-lp-office-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--north-contact-line);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

body.north-page-contact .north-lp-office-table th {
  width: 8rem;
  background: rgba(18, 58, 92, 0.06);
  color: var(--north-contact-blue-dark);
}

@media (max-width: 991px) {
  body.north-page-contact .north-contact-main__inner {
    grid-template-columns: 1fr;
  }

  body.north-page-contact .north-contact-channel-grid,
  body.north-page-contact .north-contact-topic-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899px) {
  body.north-page-contact .north-contact-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.95rem 0;
  }

  body.north-page-contact .north-contact-label {
    padding-top: 0;
  }
}

@media (max-width: 575px) {
  body.north-page-contact .north-contact-form-head__lead br,
  body.north-page-contact .north-contact-form-head__note br {
    display: none;
  }

  body.north-page-contact .north-contact-control--chips label,
  body.north-page-contact .north-contact-control--radio label {
    width: 100%;
  }

  body.north-page-contact .north-contact-submit__btn {
    width: 100%;
  }
}

/* —— プライバシーポリシーページ（privacy.html） —— */
body.north-page-privacy {
  --north-privacy-blue: #2d5f8f;
  --north-privacy-blue-dark: #173a5d;
  --north-privacy-line: #d8e0e9;
}

body.north-page-privacy .north-privacy {
  margin: 0;
}

body.north-page-privacy .north-privacy__hero {
  background: linear-gradient(180deg, var(--north-paper-2) 0%, var(--north-paper) 100%);
  border-bottom: 1px solid var(--north-privacy-line);
  padding-block: clamp(2rem, 5vw, 3rem);
}

body.north-page-privacy .north-privacy__title {
  margin: 0;
  text-align: center;
  color: var(--north-privacy-blue-dark);
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
}

body.north-page-privacy .north-privacy__body {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

body.north-page-privacy .north-privacy__container {
  max-width: 56rem;
  background: #fff;
  border: 1px solid var(--north-privacy-line);
  border-radius: var(--north-radius);
  padding: clamp(1.25rem, 3.5vw, 2rem);
}

body.north-page-privacy .north-privacy__container h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--north-privacy-blue-dark);
  line-height: 1.6;
}

body.north-page-privacy .north-privacy__container h2:first-of-type {
  margin-top: 1.1rem;
}

body.north-page-privacy .north-privacy__container p {
  margin: 0 0 0.95rem;
  color: var(--north-ink-soft);
  line-height: 1.92;
  font-size: 0.95rem;
}

body.north-page-privacy .north-privacy__container ul {
  margin: 0.2rem 0 1rem;
  padding-left: 1.35rem;
}

body.north-page-privacy .north-privacy__container li {
  margin: 0 0 0.4rem;
  line-height: 1.85;
  color: var(--north-ink-soft);
}

body.north-page-construction-permit .north-construction-cta {
  background: linear-gradient(180deg, #f2f6fb 0%, #e7eef6 100%);
  border-top: 1px solid var(--north-construction-line);
  padding-block: clamp(2.4rem, 6vw, 3.8rem);
}

body.north-page-construction-permit .north-construction-cta__inner {
  text-align: center;
}

body.north-page-construction-permit .north-construction-cta__inner h2 {
  margin: 0 0 0.75rem;
  color: var(--north-construction-navy);
  font-size: clamp(1.1rem, 2.7vw, 1.45rem);
}

body.north-page-construction-permit .north-construction-cta__inner p {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}

body.north-page-construction-permit .north-construction-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

body.north-page-construction-permit .north-construction-cta .button-bg-color {
  background: var(--north-construction-blue);
  border-color: var(--north-construction-blue);
}

body.north-page-construction-permit .north-construction-cta .button-bg-color:hover {
  background: var(--north-construction-navy);
  border-color: var(--north-construction-navy);
}

@media (max-width: 899px) {
  body.north-page-construction-permit .north-construction-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.north-page-construction-permit .north-construction-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  body.north-page-construction-permit .north-construction-card-grid {
    grid-template-columns: 1fr;
  }

  body.north-page-construction-permit .north-construction-table th,
  body.north-page-construction-permit .north-construction-table td {
    padding: 0.6rem 0.55rem;
    font-size: 0.84rem;
  }
}

/* —— 相続・遺言ページ（inheritance-will.html） —— */
body.north-page-inheritance-will {
  --north-inheritance-navy: #143c63;
  --north-inheritance-blue: #2a6798;
  --north-inheritance-soft: #eef5fa;
}

body.north-page-inheritance-will .north-inheritance-section-title { margin: 0 0 1.25rem; font-size: clamp(1.2rem, 2.6vw, 1.65rem); color: var(--north-ink); }

body.north-page-inheritance-will .north-inheritance-intro,
body.north-page-inheritance-will .north-inheritance-trouble,
body.north-page-inheritance-will .north-inheritance-support,
body.north-page-inheritance-will .north-inheritance-types,
body.north-page-inheritance-will .north-inheritance-support-detail,
body.north-page-inheritance-will .north-inheritance-flow,
body.north-page-inheritance-will .north-inheritance-procedure,
body.north-page-inheritance-will .north-inheritance-tasks,
body.north-page-inheritance-will .north-inheritance-glossary,
body.north-page-inheritance-will .north-inheritance-price { padding-block: clamp(2.2rem, 5vw, 3.6rem); }

body.north-page-inheritance-will .north-inheritance-trouble,
body.north-page-inheritance-will .north-inheritance-types,
body.north-page-inheritance-will .north-inheritance-flow,
body.north-page-inheritance-will .north-inheritance-tasks,
body.north-page-inheritance-will .north-inheritance-price { background: var(--north-inheritance-soft); }

body.north-page-inheritance-will .north-inheritance-intro p,
body.north-page-inheritance-will .north-inheritance-support p,
body.north-page-inheritance-will .north-inheritance-procedure p { margin: 0 0 1rem; line-height: 1.9; }

body.north-page-inheritance-will .north-inheritance-card-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.north-page-inheritance-will .north-inheritance-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.north-page-inheritance-will .north-inheritance-card { border: 1px solid rgba(20,60,99,.2); border-radius: 12px; background: #fff; padding: 1.05rem 1.1rem; box-shadow: 0 8px 24px rgba(20,32,50,.05); }
body.north-page-inheritance-will .north-inheritance-card h3 { margin: 0 0 .6rem; font-size: 1.02rem; color: var(--north-inheritance-navy); }
body.north-page-inheritance-will .north-inheritance-card p { margin: 0; line-height: 1.85; }

body.north-page-inheritance-will .north-inheritance-checklist { margin: 0; padding: 0; list-style: none; display: grid; gap: .75rem; }
body.north-page-inheritance-will .north-inheritance-checklist li { position: relative; padding: .75rem .85rem .75rem 2.1rem; background: #fff; border: 1px solid rgba(20,60,99,.2); border-radius: 10px; }
body.north-page-inheritance-will .north-inheritance-checklist li::before { content: "✓"; position: absolute; left: .85rem; top: .7rem; color: var(--north-inheritance-blue); font-weight: 700; }

body.north-page-inheritance-will .north-inheritance-steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
body.north-page-inheritance-will .north-inheritance-steps li { background: #fff; border: 1px solid rgba(20,60,99,.2); border-radius: 10px; padding: .9rem .8rem; text-align: center; font-weight: 500; line-height: 1.6; }

body.north-page-inheritance-will .north-inheritance-table-wrap { overflow-x: auto; }
body.north-page-inheritance-will .north-inheritance-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--north-line); }
body.north-page-inheritance-will .north-inheritance-table th,
body.north-page-inheritance-will .north-inheritance-table td { padding: .95rem 1rem; border-bottom: 1px solid var(--north-line); border-right: 1px solid var(--north-line); }
body.north-page-inheritance-will .north-inheritance-table th { width: 45%; color: var(--north-inheritance-navy); background: rgba(20,60,99,.05); text-align: left; }
body.north-page-inheritance-will .north-inheritance-table td { text-align: right; font-size: 1.15rem; font-weight: 700; color: var(--north-inheritance-navy); }
body.north-page-inheritance-will .north-inheritance-note { margin: .85rem 0 0; font-size: .9rem; line-height: 1.75; color: var(--north-muted); }
body.north-page-inheritance-will .north-inheritance-price__link { margin: 1rem 0 0; }


body.north-page-inheritance-will .north-inheritance-cta { padding-block: clamp(2.3rem, 5vw, 3.5rem); }
body.north-page-inheritance-will .north-inheritance-cta__inner { text-align: center; }
body.north-page-inheritance-will .north-inheritance-cta__inner h2 { margin: 0 0 .85rem; }
body.north-page-inheritance-will .north-inheritance-cta__inner p { margin: 0 auto 1.2rem; max-width: 44rem; line-height: 1.85; }
body.north-page-inheritance-will .north-inheritance-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

@media (max-width: 991px) {
  body.north-page-inheritance-will .north-inheritance-card-grid,
  body.north-page-inheritance-will .north-inheritance-card-grid--three { grid-template-columns: 1fr; }
  body.north-page-inheritance-will .north-inheritance-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  body.north-page-inheritance-will .north-inheritance-steps { grid-template-columns: 1fr; }
  body.north-page-inheritance-will .north-inheritance-table th,
  body.north-page-inheritance-will .north-inheritance-table td { padding: .8rem .75rem; }
}

/* —— TOP LP（建設業許可特化） —— */
body.north-page-index {
  --north-lp-navy: #142032;
  --north-lp-navy-deep: #0f1c2e;
  --north-lp-blue: #2d5f8f;
  --north-lp-soft: #f4f7fa;
  --north-lp-line: #d7dee7;
  --north-faq-accent: #2d5f8f;
  --north-faq-accent-strong: #173a5d;
  --north-faq-accent-soft: rgba(45, 95, 143, 0.1);
  --north-faq-accent-faint: rgba(45, 95, 143, 0.06);
  --north-faq-border: rgba(45, 95, 143, 0.22);
  --north-faq-border-strong: rgba(45, 95, 143, 0.32);
}

body.north-page-index .north-lp-section {
  padding-block: clamp(3rem, 7vw, 5rem);
}

body.north-page-index .north-lp-section--muted {
  background: var(--north-lp-soft);
  border-top: 1px solid var(--north-lp-line);
  border-bottom: 1px solid var(--north-lp-line);
}

body.north-page-index .north-lp-section--navy {
  background: linear-gradient(165deg, #12263d 0%, #1a3a5c 55%, #16324f 100%);
  color: #fff;
}

body.north-page-index .north-lp-header {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.25rem;
}

body.north-page-index .north-lp-header__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--north-lp-blue);
}

body.north-page-index .north-lp-header--on-dark .north-lp-header__eyebrow {
  color: #9ec4e8;
}

body.north-page-index .north-lp-header__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.45;
  color: var(--north-lp-navy);
  text-wrap: balance;
}

body.north-page-index #north-lp-second-title {
  white-space: nowrap;
  text-wrap: nowrap;
  font-size: clamp(0.92rem, 2.15vw + 0.55rem, 1.75rem);
}

body.north-page-index .north-lp-header__title .north-lp-title__br {
  display: block;
}

body.north-page-index .north-lp-final-cta__inner h2 .north-lp-title__br {
  display: block;
}

body.north-page-index .north-lp-header--on-dark .north-lp-header__title {
  color: #fff;
}

body.north-page-index .north-lp-header__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--north-muted);
}

body.north-page-index .north-lp-header__lead .north-lp-lead__br {
  display: block;
  margin-top: 0.35em;
}

body.north-page-index #section-second-opinion .north-lp-header {
  max-width: min(54rem, 100%);
}

body.north-page-index #section-second-opinion .north-lp-header__lead {
  white-space: nowrap;
  font-size: clamp(0.8rem, 0.55rem + 1.05vw, 0.95rem);
}

body.north-page-index #section-second-opinion .north-lp-header__lead--follow {
  margin-top: 0.55em;
}

@media (max-width: 767px) {
  body.north-page-index #section-second-opinion .north-lp-header__lead {
    white-space: normal;
    text-wrap: pretty;
    font-size: 0.86rem;
    text-align: left;
  }
}

body.north-page-index .north-lp-header--on-dark .north-lp-header__lead {
  color: rgba(255, 255, 255, 0.88);
}

body.north-page-index .north-lp-card-grid {
  display: grid;
  gap: 1rem;
}

body.north-page-index .north-lp-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.north-page-index .north-lp-card {
  background: #fff;
  border: 1px solid var(--north-lp-line);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: 0 8px 24px rgba(20, 32, 50, 0.04);
}

body.north-page-index .north-lp-card--on-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

body.north-page-index .north-lp-card__num {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--north-lp-blue);
}

body.north-page-index .north-lp-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--north-lp-navy);
}

/* TROUBLE: カード見出し下の短いアクセント線 */
body.north-page-index #section-troubles .north-lp-card__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.65rem;
  background: var(--north-lp-blue);
}

body.north-page-index .north-lp-card--on-dark .north-lp-card__title {
  color: #fff;
}

body.north-page-index .north-lp-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-card--on-dark .north-lp-card__text {
  color: rgba(255, 255, 255, 0.86);
}

body.north-page-index .north-lp-risk-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

body.north-page-index .north-lp-risk {
  background: #fff;
  border: 1px solid var(--north-lp-line);
  border-left: 4px solid var(--north-lp-blue);
  padding: 1.1rem 1.2rem;
}

body.north-page-index .north-lp-risk__title {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  color: var(--north-lp-navy);
}

body.north-page-index .north-lp-risk__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-check-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

body.north-page-index .north-lp-check-grid li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.2rem;
  background: #fff;
  border: 1px solid var(--north-lp-line);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-check-grid li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.3rem;
  border-left: 2px solid var(--north-lp-blue);
  border-bottom: 2px solid var(--north-lp-blue);
  transform: rotate(-45deg);
}

body.north-page-index .north-lp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.north-page-index .north-lp-service {
  display: block;
  background: #fff;
  border: 1px solid var(--north-lp-line);
  padding: 1.25rem 1.15rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

body.north-page-index .north-lp-service:hover {
  border-color: rgba(45, 95, 143, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20, 32, 50, 0.08);
}

body.north-page-index .north-lp-service__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--north-lp-navy);
}

body.north-page-index .north-lp-service__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--north-muted);
}

body.north-page-index .north-lp-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.north-page-index .north-lp-case {
  background: #fff;
  border: 1px solid var(--north-lp-line);
  padding: 1.25rem 1.2rem;
}

body.north-page-index .north-lp-case__title {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--north-lp-navy);
}

body.north-page-index .north-lp-case__dl {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

body.north-page-index .north-lp-case__dl div {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.5rem;
}

body.north-page-index .north-lp-case__dl dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--north-lp-blue);
}

body.north-page-index .north-lp-case__dl dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-price-table-wrap {
  overflow-x: auto;
  max-width: 40rem;
  margin: 0 auto;
}

body.north-page-index .north-lp-price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--north-lp-line);
}

body.north-page-index .north-lp-price-table th,
body.north-page-index .north-lp-price-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--north-lp-line);
  text-align: left;
}

body.north-page-index .north-lp-price-table thead th {
  background: rgba(45, 95, 143, 0.08);
  color: var(--north-lp-navy);
  font-size: 0.9rem;
}

body.north-page-index .north-lp-price-table tbody th {
  font-weight: 600;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-price-table tbody td {
  text-align: right;
  font-weight: 700;
  color: var(--north-lp-navy);
  font-size: 1.05rem;
}

body.north-page-index .north-lp-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

body.north-page-index .north-lp-step {
  background: #fff;
  border: 1px solid var(--north-lp-line);
  padding: 1.1rem 0.95rem;
  text-align: center;
}

body.north-page-index .north-lp-step:nth-child(n + 5) {
  grid-column: span 1;
}

body.north-page-index .north-lp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: var(--north-lp-navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

body.north-page-index .north-lp-step__title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--north-lp-navy);
}

body.north-page-index .north-lp-step__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--north-muted);
}

/* FLOW: GROWTH PATH と同系統の濃紺背景向けカード */
body.north-page-index #section-flow .north-lp-steps {
  --north-lp-flow-gap: 0.85rem;
  gap: var(--north-lp-flow-gap);
}

body.north-page-index #section-flow .north-lp-step {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

body.north-page-index #section-flow .north-lp-step__num {
  background: var(--north-accent-gold);
  color: var(--north-ink);
}

body.north-page-index #section-flow .north-lp-step__title {
  color: #fff;
}

body.north-page-index #section-flow .north-lp-step__text {
  color: rgba(255, 255, 255, 0.88);
}

body.north-page-index .north-lp-faq .north-qa-list,
body.north-page-index .north-lp-faq.north-qa-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

body.north-page-index .north-lp-faq .north-qa-item {
  border: 1px solid var(--north-lp-line);
  background: #fff;
  overflow: hidden;
}

body.north-page-index .north-lp-faq .north-qa-item.is-open {
  border-color: rgba(45, 95, 143, 0.35);
}

body.north-page-index .north-lp-faq .north-qa-item__heading {
  margin: 0;
}

body.north-page-index .north-lp-faq .north-qa-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.05rem 1.1rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--north-ink);
  font-family: inherit;
}

body.north-page-index .north-lp-faq .north-qa-trigger:hover {
  background: rgba(45, 95, 143, 0.06);
}

body.north-page-index .north-lp-faq .north-qa-trigger__q {
  line-height: 1.55;
  padding-right: 0.75rem;
}

body.north-page-index .north-lp-faq .north-qa-trigger__icon {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--north-lp-blue);
  flex-shrink: 0;
}

body.north-page-index .north-lp-faq .north-qa-trigger__icon::before,
body.north-page-index .north-lp-faq .north-qa-trigger__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

body.north-page-index .north-lp-faq .north-qa-trigger__icon::after {
  width: 2px;
  height: 0.75rem;
}

body.north-page-index .north-lp-faq .north-qa-item.is-open .north-qa-trigger__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

body.north-page-index .north-lp-faq .north-qa-panel-inner {
  border-top: 1px solid rgba(45, 95, 143, 0.14);
}

body.north-page-index .north-lp-faq .north-qa-answer {
  padding: 1.05rem 1.15rem 1.2rem;
  line-height: 1.9;
  font-size: 0.94rem;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-faq .north-qa-answer p {
  margin: 0;
}

body.north-page-index .north-lp-office {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

body.north-page-index .north-lp-office__role {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  color: var(--north-lp-blue);
  font-weight: 700;
}

body.north-page-index .north-lp-office__name {
  margin: 0 0 0.9rem;
  font-size: 1.45rem;
  color: var(--north-lp-navy);
  font-weight: 700;
}

body.north-page-index .north-lp-office__ruby {
  margin-left: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--north-muted);
}

body.north-page-index .north-lp-office__bio {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-office__creds {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--north-ink-soft);
}

body.north-page-index .north-lp-office-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--north-lp-line);
}

body.north-page-index .north-lp-office-table th,
body.north-page-index .north-lp-office-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--north-lp-line);
  font-size: 0.9rem;
  line-height: 1.7;
  vertical-align: top;
}

body.north-page-index .north-lp-office-table th {
  width: 7.5rem;
  background: rgba(45, 95, 143, 0.06);
  color: var(--north-lp-navy);
  text-align: left;
  font-weight: 700;
}

body.north-page-index .north-lp-office__map-link {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
}

body.north-page-index .north-lp-cta-band {
  background: #fff;
  border-bottom: 1px solid var(--north-lp-line);
  padding-block: 1.1rem;
}

body.north-page-index .north-lp-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}

body.north-page-index .north-lp-cta-band__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--north-lp-navy);
}

body.north-page-index .north-lp-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

body.north-page-index .north-lp-cta-band__tel {
  margin-left: 0.45rem;
  font-weight: 700;
}

body.north-page-index .north-lp-inline-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

body.north-page-index .north-lp-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--north-muted);
  text-align: center;
}

body.north-page-index .north-lp-final-cta {
  background: linear-gradient(165deg, #12263d 0%, #1a3a5c 100%);
  color: #fff;
  padding-block: clamp(2.8rem, 6vw, 4.2rem);
}

body.north-page-index .north-lp-final-cta__inner {
  text-align: center;
}

body.north-page-index .north-lp-final-cta__inner h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #fff;
}

body.north-page-index .north-lp-final-cta__inner p {
  margin: 0 auto 1.4rem;
  max-width: 40rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

body.north-page-index .north-lp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

body.north-page-index .north-lp-final-cta .theme-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

body.north-page-index .north-lp-final-cta .theme-button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.north-page-index .north-lp-final-cta .button-bg-color {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--north-accent);
}

body.north-page-index .north-lp-final-cta .button-bg-color:hover {
  background: var(--north-accent-gold);
  border-color: var(--north-accent-gold);
  color: var(--north-ink);
}

body.north-page-index .north-lp-section--navy .theme-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

body.north-page-index .north-lp-section--navy .theme-button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.north-page-index .north-lp-section--navy .button-bg-color {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--north-accent);
}

body.north-page-index .north-lp-section--navy .button-bg-color:hover {
  background: var(--north-accent-gold);
  border-color: var(--north-accent-gold);
  color: var(--north-ink);
}

@media (max-width: 991px) {
  body.north-page-index .north-lp-card-grid--3,
  body.north-page-index .north-lp-service-grid,
  body.north-page-index .north-lp-case-grid,
  body.north-page-index .north-lp-office {
    grid-template-columns: 1fr;
  }

  body.north-page-index .north-lp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.north-page-index #section-flow .north-lp-steps {
    --north-lp-flow-gap: 1.35rem;
    grid-template-columns: 1fr;
  }

  body.north-page-index #section-flow .north-lp-step:not(:last-child)::after {
    content: "↓";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, calc(var(--north-lp-flow-gap) / 2 - 50%));
    color: var(--north-accent-gold);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  body.north-page-index .north-lp-check-grid,
  body.north-page-index .north-lp-steps {
    grid-template-columns: 1fr;
  }

  body.north-page-index .north-lp-case__dl div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  body.north-page-index .north-lp-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  body.north-page-index .north-lp-cta-band__actions {
    justify-content: center;
  }
}

/* shared inline CTA used on construction page too */
.north-lp-inline-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* —— construction-permit extras —— */
body.north-page-construction-permit .north-construction-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

body.north-page-construction-permit .north-construction-breadcrumb {
  padding-block: 0.85rem 0;
}

body.north-page-construction-permit .north-construction-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  font-size: 0.85rem;
  color: var(--north-muted);
}

body.north-page-construction-permit .north-construction-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.6rem;
  color: #b0b8c2;
}

body.north-page-construction-permit .north-construction-lead {
  margin: -0.25rem 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--north-ink-soft);
}

body.north-page-construction-permit .north-construction-keikan,
body.north-page-construction-permit .north-construction-senjutsu,
body.north-page-construction-permit .north-construction-other-req {
  padding-block: clamp(2.2rem, 5.5vw, 3.6rem);
}

body.north-page-construction-permit .north-construction-keikan,
body.north-page-construction-permit .north-construction-other-req {
  background: #f5f8fb;
  border-top: 1px solid var(--north-construction-line);
  border-bottom: 1px solid var(--north-construction-line);
}

body.north-page-construction-permit .north-construction-bullet {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  color: var(--north-ink-soft);
  line-height: 1.8;
}

body.north-page-construction-permit .north-construction-steps--detailed {
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}

body.north-page-construction-permit .north-construction-steps--detailed li {
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

body.north-page-construction-permit .north-construction-steps--detailed strong {
  color: var(--north-construction-navy);
}

body.north-page-construction-permit .north-construction-steps--detailed span {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--north-muted);
  line-height: 1.65;
}

/* —— LINEボタン / 成長導線 / contact相談ページ —— */
.north-btn-line,
a.north-btn-line {
  background: #06c755 !important;
  border-color: #06c755 !important;
  color: #fff !important;
}

.north-btn-line:hover,
a.north-btn-line:hover {
  background: #05b34c !important;
  border-color: #05b34c !important;
  color: #fff !important;
}

.north-line-pending {
  cursor: default;
  pointer-events: none;
}

body.north-page-index #masthead.site-header:not(.north-header--solid) .site-header-right .north-btn-line {
  background: #06c755 !important;
  border-color: #06c755 !important;
}

body.north-page-index .north-lp-final-cta .north-btn-line,
body.north-page-index .north-lp-section--navy .north-btn-line {
  background: #06c755 !important;
  border-color: #06c755 !important;
  color: #fff !important;
}

body.north-page-index .north-lp-final-cta .north-btn-line:hover,
body.north-page-index .north-lp-section--navy .north-btn-line:hover {
  background: #05b34c !important;
  border-color: #05b34c !important;
  color: #fff !important;
}

body.north-page-index .north-fv-main__hours {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  opacity: 0.92;
}

body.north-page-index .north-lp-path {
  --north-lp-path-gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--north-lp-path-gap);
  counter-reset: none;
}

body.north-page-index .north-lp-path__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem 1rem 1.1rem;
}

body.north-page-index .north-lp-path__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  left: 100%;
  top: 50%;
  /* カード間ギャップの中央に矢印を配置 */
  transform: translate(calc(var(--north-lp-path-gap) / 2 - 50%), -50%);
  color: var(--north-accent-gold);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
}

body.north-page-index .north-lp-path__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: var(--north-accent-gold);
  color: var(--north-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

body.north-page-index .north-lp-path__title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #fff;
}

body.north-page-index .north-lp-path__text {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

body.north-page-index .north-lp-path__link {
  display: inline-block;
  margin-top: auto;
  color: var(--north-accent-gold);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

body.north-page-index .north-lp-path__link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  body.north-page-index .north-lp-path {
    grid-template-columns: 1fr;
  }
  body.north-page-index .north-lp-path__step:not(:last-child)::after {
    content: "↓";
    left: 50%;
    top: 100%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, calc(var(--north-lp-path-gap) / 2 - 50%));
  }
}

/* contact page styles live with the form block above */

/* —— industrial-waste-permit —— */
body.north-page-industrial-waste .north-construction-hero__sub {
  margin: 0.65rem auto 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

body.north-page-industrial-waste .north-construction-hero__lead {
  margin-top: 0.85rem;
}

body.north-page-industrial-waste .north-construction-intro--muted {
  background: #f5f7fa;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

body.north-page-industrial-waste .north-waste-checklist {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

body.north-page-industrial-waste .north-waste-checklist li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.35rem;
  background: #fff;
  border: 1px solid rgba(18, 63, 101, 0.16);
  border-radius: 8px;
  color: var(--north-ink, #1a2f45);
  font-size: 0.95rem;
  line-height: 1.55;
}

body.north-page-industrial-waste .north-waste-checklist li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #123f65;
}

body.north-page-industrial-waste .north-waste-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

body.north-page-industrial-waste .north-waste-compare__card {
  background: #fff;
  border: 1px solid rgba(18, 63, 101, 0.18);
  border-radius: 10px;
  padding: 1.35rem 1.4rem 1.45rem;
  box-shadow: 0 8px 24px rgba(16, 38, 60, 0.05);
}

body.north-page-industrial-waste .north-waste-compare__card--caution {
  border-color: rgba(18, 63, 101, 0.28);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 55%);
}

body.north-page-industrial-waste .north-waste-compare__card h3 {
  margin: 0 0 0.85rem;
  color: #123f65;
  font-size: 1.08rem;
}

body.north-page-industrial-waste .north-waste-compare__card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(26, 47, 69, 0.9);
  line-height: 1.7;
}

body.north-page-industrial-waste .north-waste-compare__card li + li {
  margin-top: 0.35rem;
}

@media (max-width: 767px) {
  body.north-page-industrial-waste .north-waste-checklist,
  body.north-page-industrial-waste .north-waste-compare {
    grid-template-columns: 1fr;
  }
}
