/* ============================================================
   Sales LP — fact-based, no urgency manipulation
   Loaded AFTER styles.css.
   ============================================================ */

:root {
  --gold: #c39433;
  --gold-soft: #f5e7c4;
  --gold-deep: #6c4c14;
}

/* ============================================================
   HERO additions
   ============================================================ */
.hero-cv {
  padding-top: 48px !important;
  background:
    radial-gradient(100% 60% at 80% 0%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 60%),
    var(--bg);
}
.hero-cv h1 {
  font-size: clamp(34px, 4.6vw, 58px) !important;
  line-height: 1.3 !important;
  letter-spacing: 0.005em !important;
}
.hero-cv h1 .highlight {
  background: linear-gradient(transparent 60%, color-mix(in oklab, var(--gold) 55%, transparent) 60%);
  padding: 0 4px;
}
.hero-cv h1 .accent { color: var(--accent); }

/* Price card */
.price-card {
  margin-top: 32px; padding: 22px 26px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: inline-block;
}
.price-card .from-pill {
  display: inline-block;
  background: var(--accent-soft); color: var(--accent);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
}
.price-card .price-row {
  display: flex; align-items: baseline; gap: 4px;
  margin-top: 12px; font-family: var(--serif);
}
.price-card .price-row .from-label { font-size: 13px; color: var(--ink-3); font-family: var(--sans); margin-right: 6px; letter-spacing: 0.06em; }
.price-card .price-row .num { font-size: 52px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); font-feature-settings: "tnum" 1; }
.price-card .price-row .yen { font-size: 22px; font-family: var(--serif); font-weight: 600; }
.price-card .price-row .unit { font-size: 13px; color: var(--ink-3); margin-left: 4px; font-family: var(--sans); }
.price-card .price-meta { font-size: 12.5px; color: var(--ink-3); margin-top: 8px; font-family: var(--sans); }

/* CTA cluster */
.cta-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; max-width: 540px; }
@media (max-width: 540px) { .cta-cluster { grid-template-columns: 1fr; } }
.cta-cluster .btn-lg { height: 58px; font-size: 15px; }

.cta-foot { display: flex; gap: 18px; align-items: center; margin-top: 16px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); }
.cta-foot .item { display: inline-flex; align-items: center; gap: 4px; }
.cta-foot .item svg { color: var(--accent); }

/* ============================================================
   Value cards (3 big offerings)
   ============================================================ */
.values-section { padding-top: 96px; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 38px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--accent) 30%, var(--line)); }
.value-card .value-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--serif); font-weight: 700;
  font-size: 56px; line-height: 1;
  color: color-mix(in oklab, var(--accent) 10%, transparent);
  font-feature-settings: "tnum" 1; letter-spacing: -0.02em;
}
.value-card .value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.value-card .value-name {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em;
  color: var(--accent); margin-top: 18px; font-weight: 600;
}
.value-card h3 {
  font-family: var(--serif); font-size: 22px; line-height: 1.5; margin: 8px 0 16px;
  font-weight: 600;
}
.value-card p { font-size: 14px; color: var(--ink-2); line-height: 1.9; }

/* ============================================================
   Consultations (industry case stories)
   ============================================================ */
.consultations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 880px) { .consultations-grid { grid-template-columns: 1fr; } }
.consultation-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
}
.consultation-photo {
  aspect-ratio: 16 / 7;
  background-size: cover; background-position: center;
  position: relative;
}
.consultation-photo::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(20,24,31,0.18) 100%);
}
.consultation-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; gap: 16px; }

.voice-bubble {
  background: var(--bg-soft); border-radius: 14px;
  padding: 16px 18px; position: relative;
}
.voice-bubble .bubble-label {
  font-size: 10.5px; letter-spacing: 0.18em; color: var(--ink-3); font-weight: 600;
  margin-bottom: 6px;
}
.voice-bubble p { font-family: var(--serif); font-size: 15px; line-height: 1.7; font-weight: 500; color: var(--ink); }

.answer-block { padding: 0 4px; }
.answer-block .answer-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; letter-spacing: 0.14em; color: var(--accent); font-weight: 600;
  margin-bottom: 8px;
}
.answer-block .answer-label svg { color: var(--accent); }
.answer-block p { font-size: 14px; color: var(--ink-2); line-height: 1.85; }

/* ============================================================
   Philosophy
   ============================================================ */
.philosophy-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 940px) { .philosophy-wrap { grid-template-columns: 1fr; gap: 36px; } }
.philosophy-text h2 { margin-bottom: 24px; }
.philosophy-text p {
  font-size: 15px; line-height: 2; color: var(--ink-2);
  margin-bottom: 16px;
}
.philosophy-tags { display: flex; gap: 8px 10px; flex-wrap: wrap; margin-top: 8px; }
.ph-tag {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 16px;
  font-size: 13px; color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  font-family: var(--serif); font-weight: 500;
}
.ph-tag::before { content:""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.philosophy-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.philosophy-image::before {
  content:""; position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(to top, rgba(20,24,31,0.55), transparent);
}
.philosophy-quote {
  position: absolute; left: 28px; right: 28px; bottom: 26px;
  color: #fff; font-family: var(--serif); font-size: 18px; line-height: 1.6; font-weight: 500;
}
.philosophy-quote .who { display: block; margin-top: 14px; font-size: 12px; opacity: 0.85; letter-spacing: 0.06em; font-weight: 400; font-family: var(--sans); }

/* ============================================================
   Reasons (6 cards)
   ============================================================ */
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reasons-grid { grid-template-columns: 1fr; } }
.reason-card {
  display: flex; gap: 18px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.reason-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.reason-icon {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.reason-card h3 { font-family: var(--serif); font-size: 16px; margin: 0 0 6px; font-weight: 600; line-height: 1.45; }
.reason-card p { font-size: 13px; color: var(--ink-3); line-height: 1.8; }

/* ============================================================
   Steps (kept structure, refined)
   ============================================================ */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0; align-items: stretch; position: relative; margin-top: 24px; }
@media (max-width: 940px) { .steps-row { grid-template-columns: 1fr; gap: 16px; } }
.step-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  margin-right: 18px;
}
@media (max-width: 940px) { .step-card { margin-right: 0; } }
.step-card .n {
  display: inline-flex; align-items: baseline; gap: 4px;
  color: var(--accent); font-family: var(--serif); font-weight: 600;
  margin-bottom: 14px;
}
.step-card .n .big { font-size: 36px; letter-spacing: -0.02em; font-weight: 700; font-feature-settings: "tnum" 1; }
.step-card h3 { font-family: var(--serif); font-size: 17px; margin: 0 0 8px; line-height: 1.4; font-weight: 600; }
.step-card p { font-size: 13px; color: var(--ink-3); line-height: 1.85; }
.step-card::after {
  content: ""; position: absolute; right: -16px; top: 50%;
  width: 12px; height: 12px;
  border-top: 2px solid var(--accent); border-right: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}
.step-card:last-of-type::after { display: none; }
@media (max-width: 940px) { .step-card::after { display: none; } }
.step-final {
  background: var(--accent); color: #fff; border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.step-final .big { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.5; }
.step-final .sm { font-size: 12px; opacity: 0.85; margin-top: 8px; }

/* ============================================================
   Reassure (POLICIES)
   ============================================================ */
.reassure {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.reassure::before {
  content:""; position: absolute; inset: -30% -10% auto auto; width: 360px; height: 360px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 215, 130, 0.18), transparent 60%);
  pointer-events: none;
}
.reassure-text { position: relative; max-width: 820px; }
.reassure h2 { color: #fff; font-size: clamp(24px, 3vw, 36px) !important; }
.reassure .lead { font-size: 15px; line-height: 1.95; margin-top: 16px; color: #e9e4d6; max-width: 660px; }
.reassure-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px; margin-top: 28px; max-width: 820px; }
@media (max-width: 600px) { .reassure-list { grid-template-columns: 1fr; } }
.reassure-list .li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.7; color: #e9e4d6; }
.reassure-list .li svg { color: color-mix(in oklab, var(--gold) 70%, #fff); margin-top: 4px; flex: 0 0 auto; }
.reassure-list .li strong { color: #fff; display: block; margin-bottom: 2px; font-weight: 600; }
.reassure-foot { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 22px; }

/* ============================================================
   FINAL CTA (soft, gentlemanly closing)
   ============================================================ */
.final-soft {
  background: linear-gradient(135deg, #0f1421 0%, #1b2440 50%, #14181f 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 72px);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-soft::before {
  content:""; position: absolute; inset:0;
  background: radial-gradient(60% 70% at 50% 0%, color-mix(in oklab, var(--gold) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.final-soft h2 { color: #fff !important; font-size: clamp(28px, 4vw, 48px) !important; letter-spacing: -0.005em; line-height: 1.3; position: relative; }
.final-soft p { color: #d6cdb8; margin-top: 20px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; font-size: 15px; line-height: 1.95; }
.final-soft .cta-row {
  display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; position: relative;
}
.final-soft .btn-primary {
  background: #fff; color: var(--ink); border-color: transparent;
}
.final-soft .btn-primary:hover { background: #f5f1e7; }
.final-soft .btn-soft {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
}
.final-soft .btn-soft:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); }
.final-soft .row-meta {
  display: flex; gap: 22px; justify-content: center; margin-top: 26px; flex-wrap: wrap; font-size: 13px; color: #b8bbc4; position: relative;
}
.final-soft .row-meta .m { display: inline-flex; gap: 8px; align-items: center; }
.final-soft .row-meta svg { color: color-mix(in oklab, var(--gold) 60%, #fff); }

/* ============================================================
   Sticky bottom CTA bar (neutral)
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  box-shadow: 0 -10px 30px -10px rgba(20, 24, 31, 0.12);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.sticky-cta .copy { flex: 1; min-width: 0; }
.sticky-cta .copy .ttl { font-family: var(--serif); font-weight: 700; font-size: 15px; line-height: 1.3; }
.sticky-cta .copy .sub { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.sticky-cta .buttons { display: flex; gap: 8px; flex: 0 0 auto; }
.sticky-cta .buttons .btn { height: 44px; padding: 0 18px; font-size: 13.5px; }
@media (max-width: 720px) {
  .sticky-cta .copy .ttl { font-size: 13px; }
  .sticky-cta .copy .sub { display: none; }
  .sticky-cta .buttons .btn { padding: 0 14px; font-size: 13px; }
}

/* leave room for sticky CTA */
@media (max-width: 720px) { body { padding-bottom: 96px; } }

/* hide the original LINE FAB (sticky CTA replaces it) */
.line-fab { display: none !important; }

/* ============================================================
   WORKS MARQUEE — slow auto-sliding screenshots
   ============================================================ */
.works-marquee-section { padding: clamp(80px, 8vw, 110px) 0 !important; overflow: hidden; }
.works-marquee {
  position: relative;
  margin-top: 48px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.works-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: worksSlide 90s linear infinite;
  will-change: transform;
}
.works-track.reverse { animation-direction: reverse; animation-duration: 110s; }
.works-marquee:hover .works-track { animation-play-state: paused; }
@keyframes worksSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 11px)); }
}
.works-row + .works-row { margin-top: 22px; }

.work-card {
  flex: 0 0 auto;
  width: 360px; height: 240px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  position: relative;
}
.work-card .chrome {
  height: 26px;
  background: var(--bg-soft);
  display: flex; align-items: center;
  padding: 0 10px; gap: 5px;
  border-bottom: 1px solid var(--line-soft);
  flex: 0 0 auto;
}
.work-card .chrome .dot { width: 7px; height: 7px; border-radius: 50%; background: #d9d4c5; }
.work-card .chrome .url {
  flex: 1; height: 14px; margin: 0 8px; border-radius: 999px;
  background: #fff;
  font-family: var(--mono); font-size: 9px; color: var(--ink-3);
  display: flex; align-items: center; gap: 4px;
  padding: 0 8px;
}
.work-card .chrome .url svg { color: var(--ink-4); }
.work-card .screen { flex: 1; position: relative; overflow: hidden; }
.work-card .screen .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.work-card .screen .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,24,31,0.55) 0%, rgba(20,24,31,0.15) 55%, transparent 100%);
}
.work-card .screen .copy {
  position: absolute; left: 18px; right: 38%; top: 22%;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.45);
}
.work-card .screen .copy .sub {
  font-size: 9px; letter-spacing: 0.18em;
  opacity: 0.92; font-family: var(--sans);
  font-weight: 500;
}
.work-card .screen .copy .ttl {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  margin-top: 6px; line-height: 1.45;
}
.work-card .screen .copy .btn-mini {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; height: 24px; padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92); color: var(--ink);
  font-family: var(--sans); font-size: 9px; font-weight: 500;
}
.work-card .screen .nav-dots {
  position: absolute; bottom: 14px; left: 18px; right: 38%;
  display: flex; gap: 6px;
}
.work-card .screen .nav-dots span {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6);
}
.work-card .screen .nav-dots span:first-child { background: #fff; }
.work-card .industry-chip {
  position: absolute; top: 38px; right: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  padding: 4px 9px; border-radius: 4px;
  letter-spacing: 0.04em;
}

/* meta line beneath marquee */
.works-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--ink-3);
}
.works-meta .count {
  font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--ink);
}
.works-meta .count .n { color: var(--accent); font-feature-settings: "tnum" 1; }
.works-meta .more { color: var(--accent); font-weight: 600; }
.works-meta .more svg { transition: transform .2s ease; }
.works-meta .more:hover svg { transform: translateX(4px); }

/* ============================================================
   ADDITIONS: 3本柱 / 電話番号 / 実例強調 (2026-05-23 update)
   ============================================================ */

/* Hero 不安解消3本柱 */
.trust-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 8px;
  padding: 18px;
  background: color-mix(in oklab, var(--accent) 3%, var(--bg-card));
  border: 1px solid color-mix(in oklab, var(--accent) 15%, var(--line));
  border-radius: 12px;
}
.trust-three .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.trust-three .t-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: color-mix(in oklab, var(--accent) 10%, #fff);
  color: var(--accent);
}
.trust-three .trust-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 3px;
}
.trust-three .trust-item span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .trust-three { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
}

/* Nav 電話番号 */
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-tel:hover { opacity: 0.78; }
.nav-tel .tel-num { font-size: 14px; }
@media (max-width: 1080px) {
  .nav-tel .tel-num { display: none; }
}

/* Consultation 実例カード強調 */
.consultation-card.is-real {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px color-mix(in oklab, var(--accent) 18%, transparent);
  position: relative;
}
.consultation-card.is-real::before {
  content: "実例";
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* ============================================================
   ADDITIONS 2: Compare強化 + 自社サイトカード強調 (2026-05-23 update 2)
   ============================================================ */

/* Compare 比較表 ◯×△の視覚強化 */
.compare-grid .cell-mark {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 8px 4px;
}
.compare-grid .cell-mark .big-sym {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--serif);
  line-height: 1;
}
.compare-grid .cell-mark.cell-yes .big-sym { color: var(--accent); }
.compare-grid .cell-mark.cell-no .big-sym { color: #c54a3a; }
.compare-grid .cell-mark.cell-mid .big-sym { color: var(--ink-3); }
.compare-grid .cell-mark .cell-val {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
}
.compare-grid .us-cell {
  position: relative;
}
.compare-grid .us-cell::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  pointer-events: none;
}
.compare-grid .col-h.us {
  border-top: 3px solid var(--accent) !important;
}

/* 自社サイトカード強調 */
.work-card.is-own {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.work-card.is-own .industry-chip.own-chip {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
}

/* ============================================================
   ADDITIONS 3: ヒーロー画像差し替え (2026-05-23 update 3)
   ============================================================ */
.hero-stage.hero-stage-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  overflow: visible;
}
.hero-stage-img .hero-composite-img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 18px 32px rgba(20, 24, 31, 0.12));
}
@media (max-width: 880px) {
  .hero-stage.hero-stage-img {
    min-height: 320px;
    margin-top: 24px;
  }
  .hero-stage-img .hero-composite-img {
    max-width: 100%;
  }
}

/* ============================================================
   ADDITIONS 4: ヒーロー全面背景画像化 (2026-05-23 update 4)
   ============================================================ */
.hero-cv.hero-cv-bg {
  background-image: url("./uploads/hero_composite.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 760px;
  padding-top: 96px !important;
}
.hero-cv-bg .hero-grid-bg {
  display: block !important;
  grid-template-columns: none !important;
}
.hero-cv-bg .hero-grid-bg > div {
  max-width: 560px;
}
/* 画像とテキストのコントラスト確保用、左側にうっすらクリームグラデを重ねる */
.hero-cv.hero-cv-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    color-mix(in oklab, var(--bg) 95%, transparent) 28%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-cv.hero-cv-bg .container {
  position: relative;
  z-index: 1;
}

/* レスポンシブ: 画面が狭い場合は画像を下に回す */
@media (max-width: 980px) {
  .hero-cv.hero-cv-bg {
    background-image: none;
    min-height: auto;
  }
  .hero-cv.hero-cv-bg::before { display: none; }
  .hero-cv-bg .hero-grid-bg::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-top: 32px;
    background-image: url("./uploads/hero_composite.png");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
  }
}

/* ============================================================
   ADDITIONS 5: ヒーロー2カラム右側画像 (2026-05-23 update 5)
   背景画像方式を廃止して2カラム構造に。テキスト/ビジュアル被り解消
   ============================================================ */
.hero-cv .hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr) !important;
  gap: 32px !important;
  align-items: center !important;
}
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -48px;
}
.hero-visual .hero-visual-img {
  display: block;
  width: 110%;
  max-width: none;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(20, 24, 31, 0.18));
}
@media (max-width: 980px) {
  .hero-cv .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .hero-visual {
    margin-right: 0;
  }
  .hero-visual .hero-visual-img {
    width: 100%;
    max-height: 460px;
  }
}

/* ============================================================
   ADDITIONS 6: WORKS実例強調・クリック可能化・お客様の声 (2026-05-23 update 6)
   ============================================================ */

/* WORKS カードリンク化 (元の .work-card の flex レイアウトを維持) */
a.work-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 24, 31, 0.18);
}

/* WORKS 実例カード強調 (ゴールド) */
.work-card.is-real-work {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.work-card.is-real-work .industry-chip.real-chip {
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* CUSTOMER VOICE セクション */
.voice-section { padding: 96px 0; }
.voice-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  margin-top: 32px;
  box-shadow: 0 12px 28px rgba(20, 24, 31, 0.08);
}
.voice-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: color-mix(in oklab, var(--accent) 8%, var(--bg-soft));
  overflow: hidden;
}
.voice-photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.voice-body { display: flex; flex-direction: column; gap: 20px; }
.voice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.voice-industry {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.voice-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.voice-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: 10px;
}
.vstat .vlbl {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.vstat .vrow {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
}
.vbefore {
  font-size: 15px;
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-color: color-mix(in oklab, var(--ink-3) 50%, transparent);
}
.varrow {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
}
.vafter {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}
.voice-quote {
  margin: 0;
  padding: 18px 22px;
  background: color-mix(in oklab, var(--accent) 3%, var(--bg-card));
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
}
.voice-foot {
  font-size: 12px;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 880px) {
  .voice-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .voice-photo { aspect-ratio: 16 / 10; }
}

/* ============================================================
   ADDITIONS 7: Compare比較表の背景強化 (2026-05-23 update 7)
   ============================================================ */
.compare-wrap {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 8px;
  box-shadow: 0 12px 32px rgba(20, 24, 31, 0.08);
}
.compare-grid {
  background: var(--bg-card);
}
.compare-grid .col-h:not(.us) {
  background: var(--bg-soft) !important;
}

/* ============================================================
   ADDITIONS 8: 比較表境界線・Nav電話強制表示・会社情報強調 (2026-05-23 update 8)
   ============================================================ */

/* 比較表に列ごとの縦境界線を明示 */
.compare-grid > div {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.compare-grid > div:nth-child(4n) {
  border-right: none;
}
.compare-grid .col-h {
  border-bottom: 2px solid var(--line) !important;
}

/* Nav 電話番号、もっと広いブレイクポイントまで表示 */
@media (max-width: 1080px) {
  .nav-tel .tel-num { display: inline; }
}
@media (max-width: 720px) {
  .nav-tel .tel-num { display: none; }
}
@media (max-width: 540px) {
  .nav-tel { display: none; }
}

/* Footer 会社情報を背景色で囲って視認性アップ */
.footer .footer-inner > div:first-child {
  background: color-mix(in oklab, var(--accent) 4%, var(--bg-card));
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--accent) 15%, var(--line));
}
.footer a { color: var(--accent) !important; }

/* ============================================================
   ADDITIONS 9: 比較表スマホ表示 横スクロール対応 (2026-05-24)
   ============================================================ */
@media (max-width: 820px) {
  .compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-grid {
    grid-template-columns: 92px repeat(3, minmax(120px, 1fr));
    min-width: 540px;
  }
  .compare-grid .row-label {
    display: block;
    font-size: 12px;
    padding: 14px 10px;
    line-height: 1.4;
  }
  .compare-grid > div {
    padding: 14px 8px;
    font-size: 12px;
  }
  .compare-grid .col-h {
    font-size: 12px;
    padding: 14px 8px;
    line-height: 1.35;
  }
  .compare-grid .col-h.us .badge {
    display: none;
  }
  .compare-grid .cell-mark .big-sym {
    font-size: 20px;
  }
  .compare-grid .cell-mark .cell-val {
    font-size: 11px;
    line-height: 1.4;
  }
}
