/* =====================================================
   works.css — WORKSページ専用
   ===================================================== */

/* ---- Section head ---------------------------------- */
.wc-section-head .section-head {
  margin-bottom: var(--sp-32);
}
.wc-section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 8px;
}

/* ---- PICKUP ---------------------------------------- */
.wc-pickup {
  border-top: 1px solid #e8e8e8;
}
.wc-pickup-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--sp-32) 0;
}
.wc-pickup-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #000;
  margin-bottom: 0;
}
/* FOCUSヒーロー風: 左画像 + 右コンテンツ、縦2段 */
.wc-pickup-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0 40px;
  border-bottom: 1px solid #e8e8e8;
  color: #000;
  text-decoration: none;
}
.wc-pickup-item:last-child {
  border-bottom: none;
  padding-bottom: 56px;
}
.wc-pickup-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}
.wc-pickup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.wc-pickup-item:hover .wc-pickup-img img {
  transform: scale(1.03);
}
.wc-pickup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wc-pickup-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wc-pickup-client {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.wc-pickup-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.55;
  color: #000;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s;
}
.wc-pickup-item:hover .wc-pickup-title {
  text-decoration-color: #000;
}
.wc-pickup-more {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.wc-pickup-item:hover .wc-pickup-more {
  opacity: 0.55;
}

/* ---- CATEGORY BADGES ------------------------------- */
.wc-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.6;
}
/* PICKUP内バッジは小さめに */
.wc-pickup-meta .wc-cat {
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
}

.wc-cat--app     { background: #000;     color: #fff; }
.wc-cat--ux      { background: #3c3c3c;  color: #fff; }
.wc-cat--system  { background: #5c5c5c;  color: #fff; }
.wc-cat--webapp  { background: #7c7c7c;  color: #fff; }
.wc-cat--website { background: #e8e8e8;  color: #333; }
.wc-cat--cms     { background: #d0d0d0;  color: #333; }

/* ---- TABS ------------------------------------------ */
.wc-tabs-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-32);
  border-top: 1px solid #e8e8e8;
}
.wc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e8e8e8;
  padding-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.wc-tabs::-webkit-scrollbar { display: none; }
.wc-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #666;
  padding: 12px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.wc-tab:hover { color: #000; }
.wc-tab.is-active {
  color: #000;
  border-bottom-color: #000;
}

/* ---- CARD GRID ------------------------------------- */
.wc-grid-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px var(--sp-32) 48px;
}
.wc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}

/* ---- CARD ------------------------------------------ */
.wc-card {
  display: block;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.wc-card[hidden] { display: none; }
.wc-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 18px;
  position: relative;
}
.wc-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
/* サムネイルに「→」オーバーレイ */
.wc-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.wc-card:hover .wc-card-thumb::after {
  background: rgba(0,0,0,0.08);
}
.wc-card:hover .wc-card-thumb img {
  transform: scale(1.05);
}
.wc-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.wc-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #aaa;
}
.wc-card-client {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}
.wc-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: text-decoration-color 0.2s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.wc-card:hover .wc-card-title {
  text-decoration-color: #000;
}
.wc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.wc-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #555;
  background: #f5f5f5;
  padding: 3px 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.wc-card-tag[data-tag-href] {
  cursor: pointer;
}
.wc-card-tag[data-tag-href]:hover {
  background: #222;
  color: #fff;
}

/* ---- LOAD MORE ------------------------------------- */
.wc-load-more-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-32) 80px;
  display: flex;
  justify-content: center;
}
.wc-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.wc-load-more:hover {
  background: #000;
  color: #fff;
}
.wc-load-more[hidden] { display: none; }

/* ---- TAG LINKS ------------------------------------- */
.wc-tag-links {
  border-top: 1px solid #e8e8e8;
}
.wc-tag-links-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--sp-32) 80px;
}
.wc-tag-links-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #aaa;
  margin-bottom: 24px;
}
.wc-tag-group {
  margin-bottom: 32px;
}
.wc-tag-group:last-child {
  margin-bottom: 0;
}
.wc-tag-group-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
}
.wc-tag-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wc-tag-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #333;
  border: 1px solid #d0d0d0;
  padding: 8px 16px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.wc-tag-link:hover {
  border-color: #000;
  color: #000;
}

/* ---- RESPONSIVE ------------------------------------ */
@media (max-width: 960px) {
  .wc-pickup-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 48px;
  }
  .wc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .wc-pickup-inner {
    padding: 40px 24px 0;
  }
  .wc-pickup-item {
    padding: 32px 0 40px;
  }
  .wc-grid-wrap {
    padding: 40px 24px 40px;
  }
  .wc-load-more-wrap {
    padding: 0 24px 64px;
  }
  .wc-tabs-wrap {
    padding: 0 24px;
  }
  .wc-tab {
    font-size: 13px;
    padding: 12px 14px;
  }
  .wc-tag-links-inner {
    padding: 40px 24px 64px;
  }
}

/* =====================================================
   works-detail — 実績詳細ページ
   ===================================================== */
.wd-wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-32); }

/* ---- HERO ---- */
.wd-hero { padding: 32px 0 48px; }
.wd-hero-client { font-size: 18px; color: var(--black); margin: 0 0 12px; letter-spacing: 0.05em; line-height: 1.75; }
.wd-hero-title { font-size: 28px; line-height: 1.5; font-weight: 700; margin: 0 0 24px; color: var(--black); letter-spacing: 0.05em; }
.wd-hero-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 32px; }
.wd-hero-tags span,
.wd-hero-tags a {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 400; color: #555;
  background: #f5f5f5; padding: 3px 8px;
  white-space: nowrap; text-decoration: none;
  transition: background .15s, color .15s;
}
.wd-hero-tags a { cursor: pointer; }
.wd-hero-tags a:hover { background: #222; color: #fff; }
.wd-hero-kv { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 6px; background: var(--gray-4); border: 1px solid var(--gray-16); }
.wd-hero-kv img,
.wd-hero-kv video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- リード ---- */
.wd-lead-headline { font-size: 24px; font-weight: 700; line-height: 1.5; letter-spacing: 0.05em; margin: 32px 0 16px; color: var(--black); }
.wd-lead { font-size: 18px; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); margin: 0; }
.wd-lead p + p { margin-top: 16px; }

/* ---- 動画 ---- */
.wd-video {
  aspect-ratio: 16 / 9; margin: 32px 0 64px;
  background: var(--gray-4); border-radius: 4px; overflow: hidden;
}
.wd-video iframe { width: 100%; height: 100%; border: 0; }

/* ---- セクション共通（サイト共通 .t-* に準拠） ---- */
.wd-section { padding: 64px 0; border-top: 1px solid var(--gray-16); }
.wd-section-label {
  font-size: 14px; font-weight: 400;
  line-height: 1.75; letter-spacing: 0.2em;
  color: var(--accent); margin: 0 0 16px;
}
.wd-section-title { font-size: 32px; font-weight: 700; line-height: 1.5; letter-spacing: 0.05em; margin: 0 0 48px; color: var(--black); }
.wd-section-kicker { font-size: 18px; font-weight: 700; line-height: 1.75; letter-spacing: 0.05em; margin: 0 0 16px; color: var(--gray-64); }
.wd-section-sub { font-size: 24px; font-weight: 700; line-height: 1.5; letter-spacing: 0.05em; color: var(--black); margin: 0 0 32px; }
.wd-section-body { font-size: 18px; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); }
.wd-section-body p + p { margin-top: 16px; }

/* ---- 2段組セクション（課題・成果など）— アプローチのステップと同構造 ---- */
.wd-section--row .wd-wrap {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
}
.wd-section--row .wd-section-label {
  grid-column: 1; grid-row: 1;
  margin: 0; padding-top: 8px;
}
.wd-section--row .wd-section-title,
.wd-section--row .wd-section-sub,
.wd-section--row .wd-section-body,
.wd-section--row .wd-step {
  grid-column: 2;
}

/* ---- アプローチ ステップ ---- */
.wd-step { padding: 40px 0; display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: start; }
.wd-step + .wd-step { border-top: 1px dashed var(--gray-16); }
.wd-step-no {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--accent); margin: 0; line-height: 1;
  grid-row: 1 / span 2;
}
.wd-step-title { grid-column: 2; font-size: 24px; font-weight: 700; line-height: 1.5; letter-spacing: 0.05em; margin: 0 0 16px; color: var(--black); }
.wd-step-body { grid-column: 2; font-size: 18px; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); }
.wd-step-body p + p { margin-top: 16px; }

/* テキスト横に動画を置くステップ */
.wd-step--media .wd-step-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.wd-step--media .wd-step-text p + p { margin-top: 16px; }
.wd-step--media .wd-video { margin: 0; }
.wd-step-media-img { border-radius: 4px; overflow: hidden; background: var(--gray-4); }
.wd-step-media-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* ステップ本文下に図版を置く（16:9 のバナー風にトリミング） */
.wd-step-figure {
  margin: 24px 0 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-4);
  border: 1px solid var(--gray-16);
  aspect-ratio: 16 / 9;
}
.wd-step-figure img,
.wd-step-figure video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 880px) {
  .wd-step--media .wd-step-body { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- プロジェクト概要 表 ---- */
.wd-meta-table { width: 100%; border-collapse: collapse; font-size: 16px; line-height: 1.75; letter-spacing: 0.05em; }
.wd-meta-table th,
.wd-meta-table td {
  text-align: left; vertical-align: top;
  padding: 16px 20px; border-bottom: 1px solid var(--gray-16);
}
.wd-meta-table th { width: 200px; font-weight: 500; color: var(--gray-64); background: var(--gray-4); }

/* ---- ボイス（顧客／スタッフ） ---- */
.wd-voice { display: grid; grid-template-columns: 160px 1fr; gap: 32px; align-items: start; }
/* 複数ボイスが続くときの上下間隔（写真が縦に詰まって見えるのを防ぐ） */
.wd-voice + .wd-voice { margin-top: 48px; }
/* 顔写真がない場合はカード化して詰める */
.wd-voice--nophoto {
  display: block;
  background: var(--gray-4);
  border-radius: 6px;
  padding: 32px 40px;
}
.wd-voice--nophoto .wd-voice-headline { margin-top: 4px; }
.wd-voice--nophoto .wd-voice-body { max-width: 760px; }
@media (max-width: 880px) {
  .wd-voice--nophoto { padding: 24px; }
}
.wd-voice-photo {
  width: 160px; height: 160px; border-radius: 50%; overflow: hidden;
  background-color: var(--gray-4);
  /* 写真がない場合の上品なシルエットアイコン（写真があれば img が上に重なり隠れる） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='40' r='15' fill='%23c8c8c8'/%3E%3Cpath d='M50 60c-16 0-29 13-29 29v8h58v-8c0-16-13-29-29-29z' fill='%23c8c8c8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 22%;
  background-size: 78% auto;
}
.wd-voice-photo img { width: 100%; height: 100%; object-fit: cover; }
.wd-voice-org { font-size: 14px; color: var(--gray-64); margin: 0 0 4px; line-height: 1.75; letter-spacing: 0.05em; }
.wd-voice-name { font-size: 18px; font-weight: 700; margin: 0 0 16px; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); }
.wd-voice-headline { font-size: 24px; font-weight: 700; margin: 0 0 16px; line-height: 1.5; letter-spacing: 0.05em; color: var(--black); }
.wd-voice-body { font-size: 16px; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); }
.wd-voice-body p + p { margin-top: 12px; }

/* ---- 外部リンク（本文中） ---- */
.wd-extlink {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  max-width: 100%;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 700;
  vertical-align: bottom;
}
.wd-extlink:hover { opacity: 0.7; }
.wd-extlink-icon { flex: 0 0 auto; margin-bottom: 5px; }

/* ---- あわせて読みたい（FOCUS等への内部リンク） ---- */
.wd-related-links {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-16);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--gray-64);
}
.wd-related-links a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.wd-related-links a:hover { color: var(--accent); }

/* ---- 本文内インラインリンク ---- */
.wd-section-body a:not(.wd-extlink),
.wd-step-body a:not(.wd-extlink),
.wd-lead a:not(.wd-extlink) {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.wd-section-body a:not(.wd-extlink):hover,
.wd-step-body a:not(.wd-extlink):hover,
.wd-lead a:not(.wd-extlink):hover { color: var(--accent); }

/* ---- 対談（dialogue）---- */
.wd-hero-caption { font-size: 14px; color: var(--gray-64); line-height: 1.75; letter-spacing: 0.05em; margin: 12px 0 0; }
.wd-column { background: var(--gray-4); border: 1px solid var(--gray-16); border-radius: 6px; padding: 24px 28px; margin: 24px 0 0; }
.wd-column-title { font-size: 18px; font-weight: 700; letter-spacing: 0.05em; margin: 0 0 12px; }
.wd-column p { font-size: 16px; line-height: 1.75; letter-spacing: 0.05em; margin: 0; }
.wd-column-cite { font-size: 13px; color: var(--gray-64); margin-top: 12px; }
.wd-q { font-size: 18px; font-weight: 700; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); margin: 40px 0 16px; }
.wd-a { font-size: 18px; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); margin: 0 0 16px; }
.wd-a strong { font-weight: 700; }
.wd-voice-romaji { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--gray-64); letter-spacing: 0.05em; margin: 2px 0 0; }
.wd-logos { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 24px 0 0; flex-wrap: wrap; font-size: 18px; font-weight: 700; letter-spacing: 0.05em; color: var(--black); }
.wd-logos .x { color: var(--gray-24); font-weight: 400; font-family: 'DM Sans', sans-serif; }
.wd-omusvi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; margin-top: 24px; }
.wd-omusvi-grid .wd-column { margin: 0; }
.wd-omusvi-grid .wd-step-figure { margin: 0; }
@media (max-width: 880px) { .wd-omusvi-grid { grid-template-columns: 1fr; } }
/* 対談シーン写真（節内の全幅図版） */
.wd-scene { margin: 32px 0 0; }
.wd-scene img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 6px; border: 1px solid var(--gray-16); display: block; background: var(--gray-4); }
.wd-scene figcaption { font-size: 13px; color: var(--gray-64); margin-top: 8px; line-height: 1.6; }
/* 画像プレースホルダー（本番画像 配置までの仮枠） */
.wd-ph { aspect-ratio: 16 / 9; border-radius: 6px; border: 1px dashed var(--gray-24); background: var(--gray-4); display: flex; align-items: center; justify-content: center; color: var(--gray-64); font-size: 13px; line-height: 1.6; text-align: center; padding: 16px; }
.wd-scene .wd-ph, .wd-omusvi-grid .wd-ph { margin: 0; }

/* ---- 関連サービス ---- */
.wd-related-services { display: flex; flex-direction: column; gap: 8px; }
.wd-related-services a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; line-height: 1.75; letter-spacing: 0.05em; color: var(--black); text-decoration: none; padding: 8px 0;
}
.wd-related-services a::before { content: "→"; color: var(--accent); font-weight: 700; }
.wd-related-services a:hover { color: var(--accent); }

/* ---- 関連実績 ---- */
.wd-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 24px; }

@media (max-width: 880px) {
  .wd-hero-title { font-size: 24px; }
  .wd-lead-headline { font-size: 19px; }
  .wd-section-title { font-size: 22px; }
  .wd-step { grid-template-columns: 64px 1fr; gap: 16px; padding: 32px 0; }
  .wd-step-no { font-size: 36px; }
  .wd-section--row .wd-wrap { grid-template-columns: 1fr; gap: 16px; }
  .wd-voice { grid-template-columns: 1fr; }
  .wd-voice-photo { width: 120px; height: 120px; }
  .wd-meta-table th { width: 120px; padding: 12px 14px; }
  .wd-meta-table td { padding: 12px 14px; }
  .wd-related-grid { grid-template-columns: 1fr; }
}

/* ---- フッター 3軸サービスツリー（v2共通・実績詳細用に複製） ---- */
.footer-svc-tree {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  padding: 48px 0;
  margin-top: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-svc-axis-title {
  font-family: "DM Sans", sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: opacity 0.15s;
}
.footer-svc-axis-title:hover { opacity: 0.7; }
.footer-svc-axis-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
  line-height: 1.6;
}
.footer-svc-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-svc-axis--wide .footer-svc-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.footer-svc-sub a {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding-left: 14px;
  position: relative;
  transition: color 0.15s;
}
.footer-svc-sub a::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 1px;
  background: rgba(255,255,255,0.5);
}
.footer-svc-sub a:hover { color: #fff; }
@media (max-width: 880px) {
  .footer-svc-tree {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }
  .footer-svc-axis--wide .footer-svc-sub {
    grid-template-columns: 1fr;
  }
}

/* ── ユーティリティ（インラインstyle置換用） ── */
.u-mt-48 { margin-top: 48px; }
.u-mt-32 { margin-top: 32px; }
.wd-voice-photo img.u-obj-top { object-position: center top; }
