@charset "UTF-8";

/* ============================================================
   INDUSTRY COMMON
   /industry/css/industry-common.css
   共通スタイル：全業種ページで読み込む
============================================================ */

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes charaIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes charaBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes balloonIn {
  from { opacity: 0; transform: scale(.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   HERO（2段構成：上部=サイト背景エリア、下部=白囲みパネル）
============================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

/* イラストは非表示（各ページで必要に応じて上書き） */
.hero-illust { display: none; }

/* ============================================================
   上部：サイト背景（キャラ＋h1）
============================================================ */
.hero-upper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 0;
}

/* ---- 背景テキストのラッパー（最大幅1360px・中央寄せ） ---- */
.hero-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1360px;
  bottom: -56px;
  pointer-events: none;
  z-index: 2;
}

.hero-bg-text-wrap-bottom { display: none; }

/* パララックス背景テキスト */
.hero-bg-text {
  position: absolute;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 0.88;
  color: rgba(0,0,0,.10);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  will-change: transform;
}
.hero-bg-text--bottom {
  top: -0.05em;
  left: -0.02em;
  font-size: clamp(83px, 17.4vw, 244px);
  color: rgba(255,255,255,.48);
}
.hero-bg-text--top {
  top: -0.1em;
  right: -0.02em;
  left: auto;
  font-size: clamp(62px, 12.4vw, 156px);
  color: rgba(91,173,209,.12);
	text-align: right;
}

/* 上段：キャラ（左）＋ コピー（右）横並び */
.hero-upper-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 5% 0;
  gap: 0;
}

/* 左：キャラクター */
.hero-chara-col {
  flex: 0 0 auto;
  width: clamp(200px, 26vw, 340px);
  align-self: flex-end;
  position: relative;
  z-index: 20;
  margin-right: -1%;
  margin-bottom: -2%;
  animation: charaIn .9s var(--ease) .28s both;
}
.hero-chara-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,30,60,.15));
  animation: charaBob 4.2s ease-in-out infinite;
}

/* 右：コピーエリア */
.hero-copy-col {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 10;
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .hero-copy-col {
    padding: 30% 0 24px;
  }
}

/* 小見出し：行背景 */
.hero-copy-eyebrow {
  display: inline-block;
  font-size: clamp(10px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: .18em;
  color: #fff;
  background: #111;
  padding: 3px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 2.4;
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-bottom: -14px;
  top: 18px;
  margin-left: -18px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero-copy-eyebrow {
    font-size: clamp(10px, 4.6vw, 32px);
    margin-bottom: 0;
    top: 27%;
    margin-left: 0;
    position: absolute;
    left: 32%;
  }
}

/* h1 */
.hero-h1 {
  font-size: clamp(16px, 4.4vw, 49px);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: -.04em;
  color: #1a1a1a;
  margin: 3% 0 0;
  position: relative;
  z-index: 1;
}
.hero-h1-inner {
  display: inline;
  background: #fff;
  padding: 4px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-h1-inner span {
  color: #b8a800;
}

/* ============================================================
   下段：白囲みパネル
============================================================ */
.hero-panel-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 5% 56px;
}

.hero-panel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 8px 40px rgba(21,41,84,.08);
  overflow: hidden;
}

.hero-panel-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.area-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(var(--soft-r), var(--soft-g), var(--soft-b), .78);
}

.area-page-hero__lead {
  font-weight: 600;
  margin: 0 0 1em;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.95;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.area-page-hero__lead-sub {
  margin: 0;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .88);
}

.area-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.area-hero-actions .btn { min-width: 180px; }

/* ---- Tablet ---- */
@media (max-width: 1100px) {
  .hero-upper-inner { padding: 24px 5% 0; }
  .hero-panel { padding: 72px 5% 36px; }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .hero-bg-text--top    { font-size: 12vw; }
  .hero-bg-text--bottom { font-size: clamp(44px, 15vw, 90px); }
  .hero-upper-inner {
    display: block;
    padding: 16px 4% 0;
    position: relative;
  }
  .hero-chara-col {
    width: 31%;
    margin-right: 0;
    margin-bottom: 0;
    position: absolute;
    top: 11%;
  }
  .hero-h1 { font-size: clamp(16px, 5.9vw, 40px); }
  .hero-panel-wrap { padding: 0 4% 40px; }
  .hero-panel { padding: 52px 24px 28px; border-radius: 16px; }
  .hero-panel-bg-text { font-size: clamp(36px, 12vw, 70px); }
  .area-page-hero__lead { font-size: 14px; }
  .area-hero-actions { flex-direction: column; align-items: stretch; }
  .area-hero-actions .btn { width: 100%; min-width: 0; justify-content: center; }
}

/* ============================================================
   SECTION LAYOUT（nt-* 系）
============================================================ */
.nt-intro {
  padding-top: 84px !important;
  padding-bottom: 84px !important;
}

.nt-alt {
  padding-top: 90px !important;
  padding-bottom: 100px !important;
  background: rgba(var(--panel-strong-r), var(--panel-strong-g), var(--panel-strong-b), .45);
}

.nt-white {
  background: #fff !important;
}
.nt-white .container { position: relative; }

.nt-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

.nt-heading-sub {
  max-width: 820px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}

/* ============================================================
   STORY CARD
============================================================ */
.nt-story-card {
  margin-top: 40px;
  padding: 38px 36px;
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  box-shadow: 0 10px 34px rgba(12,35,64,.05);
}
.nt-story-card p {
  font-size: 15px;
  line-height: 2.05;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .88);
}
.nt-story-card p + p { margin-top: 16px; }
.nt-story-card strong {
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  font-weight: 700;
}

/* ============================================================
   CARD GRID（3列）
============================================================ */
.nt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.nt-card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  box-shadow: 0 8px 28px rgba(12,35,64,.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .26s var(--ease), box-shadow .26s ease;
}
.nt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(12,35,64,.08);
}
.nt-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #4a7cff, #8e6cff);
}

.nt-card h3 {
  margin: 0 0 12px;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.025em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.nt-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}

.nt-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(74,124,255,.08);
  color: #4a7cff;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

/* ============================================================
   DEEP GRID（検索意図カード）
============================================================ */
.nt-deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.nt-deep-card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  box-shadow: 0 10px 30px rgba(12,35,64,.04);
  overflow: hidden;
}
.nt-deep-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a7cff, #8e6cff);
}

.nt-deep-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(74,124,255,.08);
  color: #4a7cff;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.nt-deep-card h3 {
  margin-bottom: 12px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.45;
  letter-spacing: -.02em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.nt-deep-card p {
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .84);
}

/* ============================================================
   CHECK GRID
============================================================ */
.nt-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.nt-check-item {
  padding: 24px 22px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
}
.nt-check-item h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.nt-check-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .84);
}

/* ============================================================
   WORKS GRID
============================================================ */
.nt-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.nt-work-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  box-shadow: 0 10px 32px rgba(12,35,64,.05);
  transition: transform .26s var(--ease), box-shadow .26s ease;
}
.nt-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(12,35,64,.1);
}
.nt-work-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.nt-work-image img {
  width: 100%;
  height: auto;
  display: block;
}
.nt-work-content {
  padding: 24px 26px 26px;
}
.nt-work-content h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.nt-work-content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}

/* ============================================================
   WHY SECTION（fujisawa-why）
============================================================ */
.fujisawa-why {
  position: relative;
  z-index: 1;
}
.fujisawa-why .container { position: relative; }

.fujisawa-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
  margin-top: 52px;
}

.fujisawa-why-main {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.fujisawa-why-statement {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.fujisawa-why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(var(--soft-r), var(--soft-g), var(--soft-b), .55);
}
.fujisawa-why-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(var(--soft-r), var(--soft-g), var(--soft-b), .3);
  flex-shrink: 0;
}

.fujisawa-why-statement figure {
  width: 45%;
}
.fujisawa-why-statement blockquote {
  margin: 0 0 28px;
  padding: 0;
  font-size: clamp(17px, 4.2vw, 34px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -.035em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
@media (max-width: 767px) {
  .fujisawa-why-statement blockquote {
    font-size: clamp(20px, 6.2vw, 36px);
  }
}

.fujisawa-why-statement blockquote em {
  font-style: normal;
  color: var(--accent, #4a7cff);
}

.fujisawa-why-statement p {
  margin: 0;
  line-height: 1.9;
  border-top: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  padding-top: 22px;
	font-weight: 600;
}

.fujisawa-why-reasons {
  display: flex;
  flex-direction: column;
}

.fujisawa-why-reason {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
}
.fujisawa-why-reason:first-child {
  border-top: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
}
.fujisawa-why-reason-head { display: contents; }

.fujisawa-why-num {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(var(--soft-r), var(--soft-g), var(--soft-b), .38);
  padding-top: 4px;
  line-height: 1;
}

.fujisawa-why-reason-body { min-width: 0; }
.fujisawa-why-reason h3 {
  margin: 0 0 8px;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.fujisawa-why-reason p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .78);
}

@media (max-width: 1000px) {
  .fujisawa-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .fujisawa-why-main { position: relative; top: 0; }
}
@media (max-width: 767px) {
  .fujisawa-why-grid  { margin-top: 36px; gap: 40px; }
  .fujisawa-why-reason { grid-template-columns: 40px 1fr; gap: 0 14px; padding: 22px 0; }
  .fujisawa-why-reason h3 { font-size: 15px; }
}

/* ============================================================
   FAQ
============================================================ */
.area-faq {
  padding-top: 0 !important;
  padding-bottom: 100px !important;
}
.area-faq .container { position: relative; }

.area-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}

.area-faq-item {
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  border-radius: 3px;
  background: rgba(var(--panel-strong-r), var(--panel-strong-g), var(--panel-strong-b), .74);
  overflow: hidden;
}
.area-faq-item summary {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.55;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  user-select: none;
}
.area-faq-item summary::-webkit-details-marker { display: none; }

.faq-q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(74,124,255,.1);
  border: 1px solid rgba(74,124,255,.2);
  color: #4a7cff;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  top: 1px;
}

.area-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .36);
  transition: transform .28s ease, color .2s ease;
}
.area-faq-item[open] summary::after {
  content: "−";
  color: rgba(74,124,255,.6);
}

.area-faq-answer {
  padding: 0 22px 22px 56px;
  font-size: 14px;
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}

@media (max-width: 767px) {
  .area-faq-item summary { padding: 18px 44px 18px 18px; font-size: 14px; }
  .area-faq-answer { padding: 0 18px 18px 18px; }
  .faq-q-icon { display: none; }
}

/* ============================================================
   AREA DIFFERENCE（area-local-card）
============================================================ */
.area-difference {
  padding-top: 90px !important;
  padding-bottom: 100px !important;
  overflow: hidden;
}
.area-difference .container { position: relative; }

.area-local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.area-local-card {
  position: relative;
  padding: 48px 36px 40px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .07);
  overflow: hidden;
  transition: background .3s ease;
}
.area-local-card:hover {
  background: rgba(var(--panel-strong-r), var(--panel-strong-g), var(--panel-strong-b), .76);
}
.area-local-card:first-child { border-radius: 28px 0 0 28px; }
.area-local-card:last-child  { border-radius: 0 28px 28px 0; }

.area-local-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(74,124,255,.08);
  color: var(--accent, #4a7cff);
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
}
.area-local-card h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.1;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.area-local-card p {
  font-size: 14px;
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .88);
}

.area-local-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 16px;
  border-radius: 3px;
  border: 1px solid rgba(74,124,255,.22);
  background: rgba(74,124,255,.05);
  color: var(--accent, #4a7cff);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .24s ease, border-color .24s ease, transform .24s var(--ease);
}
.area-local-link:hover {
  background: rgba(74,124,255,.12);
  border-color: rgba(74,124,255,.38);
  transform: translateX(4px);
}
.area-local-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .24s var(--ease);
}
.area-local-link:hover svg { transform: translateX(3px); }

/* ============================================================
   AREA SUB LINKS（CTA内）
============================================================ */
.area-sub-links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 5% 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.area-sub-link-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 88px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(74,124,255,.14);
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 30px rgba(12,35,64,.06);
  text-decoration: none;
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.area-sub-link-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(74,124,255,.28);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 38px rgba(12,35,64,.1);
}

.area-sub-link-label {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(74,124,255,.72);
  line-height: 1;
}

.area-sub-link-text {
  position: relative;
  padding-right: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.area-sub-link-text::after {
  content: "→";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(74,124,255,.72);
  transition: transform .24s var(--ease);
}
.area-sub-link-btn:hover .area-sub-link-text::after {
  transform: translateY(-50%) translateX(4px);
}

/* ============================================================
   NARRATIVE SECTION（nw-section / nw-spine）
============================================================ */
.nw-section {
  padding-top: 72px !important;
  padding-bottom: 0 !important;
  overflow: visible;
}

.nw-spine { position: relative; }
.nw-spine::before { content: none; }

.nw-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5%;
}

.nw-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 32px;
  align-items: stretch;
}

.nw-gutter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
  position: relative;
  z-index: 1;
}
.nw-gutter::after {
  content: "";
  flex: 1;
  width: 1px;
  margin-top: 8px;
  background: linear-gradient(180deg,
    rgba(74,124,255,.18) 0%,
    rgba(74,124,255,.18) 75%,
    rgba(74,124,255,0)  100%
  );
}

.nw-node {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.nw-node-a {
  background: #4a7cff;
  box-shadow: 0 0 0 4px rgba(74,124,255,.13);
}
.nw-node-b {
  background: #fff;
  border: 2px solid rgba(200,50,50,.55);
  box-shadow: 0 0 0 4px rgba(200,50,50,.07);
  margin-top: 3px;
}
.nw-node-c {
  background: #3db87a;
  box-shadow: 0 0 0 4px rgba(61,184,122,.18);
}

.nw-connector { padding: 32px 0; }
.nw-con-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 32px;
  align-items: start;
}
.nw-con-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.nw-con-tick {
  width: 1px; height: 26px;
  background: rgba(74,124,255,.2);
}
.nw-con-tick-red  { background: rgba(200,50,50,.24); }
.nw-con-tick-green{ background: rgba(61,184,122,.25); }
.nw-con-arrow {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(74,124,255,.24);
  margin-top: -1px;
}
.nw-con-arrow-red  { border-top-color: rgba(200,50,50,.24); }
.nw-con-arrow-green{ border-top-color: rgba(61,184,122,.32); }
.nw-con-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}
.nw-con-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 4px;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nw-con-tag-blue  { background: rgba(74,124,255,.06);  border: 1px solid rgba(74,124,255,.14);  color: #4a7cff; }
.nw-con-tag-red   { background: rgba(200,50,50,.04);   border: 1px solid rgba(200,50,50,.1);    color: #c83232; }
.nw-con-tag-green { background: rgba(61,184,122,.07);  border: 1px solid rgba(61,184,122,.2);   color: #2a9460; }
.nw-con-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  letter-spacing: .01em;
  font-weight: 700;
}

.nw-block { position: relative; }
.nw-block-a { padding-bottom: 8px; }
.nw-block-b { padding-bottom: 8px; }
.nw-block-bc { position: relative; }
.nw-block-local { padding-bottom: 8px; }

.nw-content { min-width: 0; }

.nw-eyebrow {
  display: block;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(74,124,255,.7);
  margin-bottom: 18px;
}
.nw-eyebrow-red   { color: rgba(200,50,50,.65); }
.nw-eyebrow-green { color: rgba(43,168,100,.8); }

.nw-a-h2,
.nw-b-h2 {
  font-size: clamp(20px, 5.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.28;
  margin-bottom: 24px;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.nw-a-h2 span,
.nw-b-h2 span {
    color: #bbb907;
}
.nw-a-h2 em { font-style: normal; position: relative; }
.nw-a-h2 em::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 3px;
  background: rgba(74,124,255,.3);
  border-radius: 2px;
}

.nw-a-body {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.08;
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .65);
}
.nw-a-body p + p { margin-top: 20px; }
.nw-a-body strong {
  font-weight: 700;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  border-bottom: 2px solid rgba(74,124,255,.28);
  padding-bottom: 1px;
}

.nw-b-lead {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .7);
  max-width: 640px;
  margin-bottom: 28px;
}

.nw-block-bc .nw-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
  padding-bottom: 72px;
}
.nw-bc-head {
  margin-bottom: 8px;
}

.nw-qa-pair {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0 16px;
  align-items: stretch;
  border-bottom: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  padding: 28px 0;
}
.nw-qa-pair:first-of-type {
  border-top: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
}

.nw-qa-issue {
  padding: 20px 22px;
  border-radius: 12px;
  background: rgba(200,50,50,.04);
  border: 1px solid rgba(200,50,50,.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nw-qa-answer {
  padding: 20px 22px;
  border-radius: 12px;
  background: rgba(61,184,122,.04);
  border: 1px solid rgba(61,184,122,.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nw-qa-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.nw-qa-label-issue  { background: rgba(200,50,50,.08);  color: #c83232; border: 1px solid rgba(200,50,50,.15); }
.nw-qa-label-answer { background: rgba(61,184,122,.08); color: #2a9460; border: 1px solid rgba(61,184,122,.2); }

.nw-qa-title {
  font-size: clamp(14px, 1.5vw, 15.5px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.45;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  margin: 0;
}
.nw-qa-desc {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .72);
  margin: 0;
}

.nw-qa-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nw-qa-arrow svg {
  width: 20px; height: 20px;
  stroke: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .28);
  fill: none;
  flex-shrink: 0;
}

/* ============================================================
   LOCAL VIEW — fj-local-card
============================================================ */
.fj-local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fj-local-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  box-shadow: 0 10px 32px rgba(12,35,64,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s ease;
}
.fj-local-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(12,35,64,.08);
}
.fj-local-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  border-radius: 20px 0 0 20px;
}
.fj-local-card--station::before { background: linear-gradient(180deg, #4a7cff, #7eb5ff); }
.fj-local-card--sea::before     { background: linear-gradient(180deg, #3db87a, #6fd3a8); }
.fj-local-card--living::before  { background: linear-gradient(180deg, #8e6cff, #b49dff); }

.fj-local-card__head {
  margin-bottom: 14px;
}

.fj-local-card__zone {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.fj-local-card--station .fj-local-card__zone { color: #4a7cff; }
.fj-local-card--sea     .fj-local-card__zone { color: #3db87a; }
.fj-local-card--living  .fj-local-card__zone { color: #8e6cff; }

.fj-local-card h3 {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.025em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}
.fj-local-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}

/* ============================================================
   PAGE REQUIREMENTS — area-result（緑カード2列）
============================================================ */
.area-result {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background-color: #fff;
}
.area-result .container { position: relative; }

.area-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.area-result-card {
  position: relative;
  padding: 40px 36px 36px;
  background: rgba(255,255,255,.58);
  overflow: hidden;
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .1);
}

.area-result-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3db87a, #6fd3a8);
}

.area-result-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -10px; right: 18px;
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  color: rgba(61,184,122,.2);
  pointer-events: none;
  user-select: none;
}

.area-result-card h3 {
  margin-bottom: 12px;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.025em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  position: relative;
  z-index: 1;
}
.area-result-card h3::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3db87a;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.area-result-card p {
  font-size: 14px;
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
  position: relative;
  z-index: 1;
  padding-left: 17px;
  margin: 0;
}

.card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-left: 17px;
  position: relative;
  z-index: 1;
}
.card-kw {
  padding: 3px 9px;
  border-radius: 3px;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(var(--border-r), var(--border-g), var(--border-b), .05);
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .6);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .1);
}

/* ============================================================
   NT-FAST：傾きカード
============================================================ */
.nt-fast {
  padding: 100px 0 80px;
  position: relative;
}

.nt-fast-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.nt-fast-heading {
  margin-bottom: 15px;
}
.nt-fast-heading-label {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: rgba(var(--soft-r), var(--soft-g), var(--soft-b), .65);
  margin: 0 0 14px;
}
.nt-fast-heading h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.25;
  margin: 0;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
}

.nt-fast-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 16px 0 24px;
}

.nt-fast-card {
  background: #b8a800;
  border-radius: 6px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: solid 1px #fff;
  box-shadow: 0 5px 10px rgba(184,168,0,.25);
}
.nt-fast-card:hover {
  transform: rotate(-2deg) translateY(-6px);
}

.nt-fast-num {
  position: absolute;
  bottom: -0.12em;
  right: 0.04em;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: clamp(80px, 9vw, 120px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.22);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}

.nt-fast-bar {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  margin-bottom: 16px;
}

.nt-fast-main {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 12px;
}

.nt-fast-sub {
  line-height: 1.85;
  color: rgba(255,255,255,1.0);
  margin: 0;
}

.nt-fast-footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nt-fast-summary {
  font-size: 15px;
  font-weight: 600;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  margin: 0;
  flex: 1;
}
.nt-fast-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nt-fast-cta-note {
  font-size: 12px;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .65);
}

/* ============================================================
   INDUSTRY SUB LINKS — ボーダーグリッド型
============================================================ */
.industry-sub-links {
  padding: 0 5% 5%;
  max-width: 1280px;
  margin: 0 auto;
}

.industry-sub-links .container {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, .11);
  border-left: 1px solid rgba(0, 0, 0, .11);
}

.industry-sub-links .container a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 28px;
  background: transparent;
  border-right: 1px solid rgba(0, 0, 0, .11);
  border-bottom: 1px solid rgba(0, 0, 0, .11);
  font-size: 13.5px;
  font-weight: 600;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  letter-spacing: -.01em;
  line-height: 1.5;
  text-decoration: none;
  transition: background .18s ease;
}

.industry-sub-links .container a:hover {
  background: rgba(0, 0, 0, .03);
}

.industry-sub-links .container a::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: .28;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7h10M7.5 3 12 7l-4.5 4' stroke='%23111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: opacity .18s ease, transform .22s cubic-bezier(.22, 1, .36, 1);
}

.industry-sub-links .container a:hover::after {
  opacity: .65;
  transform: translateX(3px);
}

/* ============================================================
   RESPONSIVE（共通）
============================================================ */
@media (max-width: 1024px) {
  .nt-deep-grid  { grid-template-columns: 1fr 1fr; }
  .nt-check-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nt-card-grid    { grid-template-columns: 1fr; }
  .nt-works-grid   { grid-template-columns: 1fr; }
  .area-local-grid { grid-template-columns: 1fr; gap: 12px; }
  .area-local-card:first-child { border-radius: 20px 20px 0 0; }
  .area-local-card:last-child  { border-radius: 0 0 20px 20px; }
  .area-local-card { padding: 32px 26px; }
  .area-sub-links  { grid-template-columns: 1fr; }
  .area-result-grid { grid-template-columns: 1fr; }
  .nw-row,
  .nw-con-row { grid-template-columns: 40px 1fr; gap: 0 20px; }
  .fj-local-grid { grid-template-columns: 1fr; gap: 12px; }
  .nt-fast-list { gap: 16px; }
  .nt-fast-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 767px) {
  .nt-intro { padding-top: 64px !important; padding-bottom: 64px !important; }
  .nt-alt   { padding-top: 68px !important; padding-bottom: 72px !important; }

  .nt-story-card { margin-top: 28px; padding: 26px 20px; border-radius: 20px; }
  .nt-story-card p { font-size: 14px; line-height: 1.95; }

  .nt-card-grid  { grid-template-columns: 1fr; margin-top: 32px; }
  .nt-deep-grid  { grid-template-columns: 1fr; margin-top: 32px; }
  .nt-check-grid { grid-template-columns: 1fr; margin-top: 32px; }

  .nt-deep-card { padding: 24px 20px 20px; border-radius: 20px; }
  .nt-deep-card h3 { font-size: 17px; }
  .nt-check-item { padding: 20px 18px; }

  .nt-works-grid  { margin-top: 32px; }
  .nt-work-content { padding: 20px 22px 22px; }

  .area-difference { padding-bottom: 72px !important; }
  .area-local-card { padding: 28px 20px 24px; }

  .nt-heading-sub { font-size: 14px; line-height: 1.9; text-align: left; margin-top: 14px; }

  .area-sub-links { padding: 0 5% 28px; gap: 10px; }
  .area-sub-link-btn { min-height: 76px; padding: 16px 18px; border-radius: 14px; }
  .area-sub-link-text { font-size: 13px; }

  .nw-section { padding-top: 52px !important; }
  .nw-row,
  .nw-con-row { grid-template-columns: 36px 1fr; gap: 0 16px; }
  .nw-connector { padding: 24px 0; }

  .nw-qa-pair {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
  .nw-qa-arrow { transform: rotate(90deg); height: 28px; }

  .fj-local-card { padding: 22px 20px 20px; border-radius: 16px; }

  .area-result { padding-top: 68px !important; padding-bottom: 72px !important; }
  .area-result-card { padding: 28px 22px 24px; }
  .area-result-card h3 { font-size: 17px; }
  .area-result-card::after { font-size: 72px; bottom: -14px; right: 14px; }

  .nt-fast { padding: 72px 0 60px; }
  .nt-fast-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 8px 8px 16px;
  }
  .nt-fast-card { transform: rotate(-1.5deg); }
  .nt-fast-card:hover { transform: rotate(-1.5deg) translateY(-4px); }
  .nt-fast-num { font-size: clamp(64px, 20vw, 96px); }
  .nt-fast-cta { flex-direction: column; align-items: flex-start; gap: 8px; }

  .industry-sub-links {
    padding: 36px 0 48px;
  }
  .industry-sub-links .container {
    grid-template-columns: 1fr;
  }
  .industry-sub-links .container a {
    padding: 17px 20px;
    font-size: 13px;
  }
}
