/* ══════════════════════════════════════
   hamon theme - style.css
   Google Fonts / YakuHanJP は functions.php で wp_enqueue_style() により読み込み
══════════════════════════════════════ */

/* ══════════════════════════════════════
   VARIABLES
══════════════════════════════════════ */
:root {
  --dark:        #222032;
  --darkblue:    #002f88;
  --blue:        #1051cd;
  --lightblue:   #8bb5e4;
  --blightblue:  #c6cdff;
  --vividblue:   #fff;
  --vividblue2:  #aeefff;
  --off-white:   #f1f2f7;
  --light-bg:    #fafafb;
  --white:       #FFFFFF;
  --border:      rgba(0,0,0,0.03);
  --muted:       #888888;
  --lightmuted:  #dcdcdc;
  --text:        #222032;
  --header-h:    80px;
}
@media only screen and (min-width:750px) {
  :root { --header-h: 90px; }
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   RESPONSIVE HELPERS
══════════════════════════════════════ */
.pc  { display: none !important; }
.tab { display: block !important; }
.sp  { display: block !important; }
@media only screen and (min-width:750px) {
  .pc { display: block !important; }
  .sp { display: none !important; }
}
@media only screen and (min-width:1080px) {
  .tab { display: none !important; }
}

/* ══════════════════════════════════════
   GRADIENT TEXT HELPERS
══════════════════════════════════════ */
.dark-blue {
  background: linear-gradient(var(--darkblue) 0%, var(--blue) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.light-blue {
  background: linear-gradient(var(--vividblue) 0%, var(--vividblue2) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════════════
   SCROLL MARGIN
══════════════════════════════════════ */
[id] { scroll-margin-top: var(--header-h); }

/* ══════════════════════════════════════
   VERTICAL GRID LINES
══════════════════════════════════════ */
.hero-catchcopy-area,
.hero-cta-area,
.section,
.post-section,
.archive-section,
.cta-section,
.contact-form-section,
.privacy-section,
.company-section,
.concept-kv,
.company-kv,
.page-kv,
.page-hero,
.solution-hero,
.numbers-bar,
footer {
  background-image:
    linear-gradient(rgba(0,0,0,0.07) 0%, rgba(0,0,0,0.07) 100%),
    linear-gradient(rgba(0,0,0,0.07) 0%, rgba(0,0,0,0.07) 100%),
    linear-gradient(rgba(0,0,0,0.07) 0%, rgba(0,0,0,0.07) 100%);
  background-position: 25% 0, 50% 0, 75% 0;
  background-size: 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--header-h);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
header.header--hidden  { transform: translateY(-100%); }
header.header--visible { transform: translateY(0); }

.logo img { width: 148px; height: auto; }

/* Desktop nav */
.header-nav { display: flex; align-items: center; gap: 0; height: 100%; }
.nav-item { position: static; height: 100%; display: flex; align-items: center; }
.nav-item > a {
  display: flex; align-items: center;
  height: 100%; padding: 0 9px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--dark); text-decoration: none;
  white-space: nowrap; transition: color 0.2s; position: relative;
}
.nav-item > a::after {
  content: ''; position: absolute; bottom: 0; left: 10px; right: 10px;
  height: 2px; background: var(--dark);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-item:hover > a::after,
.nav-item.active > a::after { transform: scaleX(1); }

/* CONTACT button */
.nav-contact-wrap { margin-left: 12px; }
.nav-contact {
  padding: 12px 22px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  border: 1px solid var(--darkblue); color: var(--white);
  text-decoration: none; transition: background 0.25s, color 0.25s;
  white-space: nowrap; background: var(--darkblue);
}
.nav-contact:hover { background: var(--white); color: var(--darkblue) !important; }

/* Dropdown panel */
.nav-dropdown {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 200;
  background: linear-gradient(var(--darkblue) 0%, var(--blue) 80%);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown.is-open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown.no-transition { transition: none !important; }

.nav-dropdown-inner {
  max-width: 960px; margin: 0 auto; padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: start;
}
.nav-dropdown-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-dropdown-links li a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 15px; font-weight: 700; color: var(--white);
  text-decoration: none; transition: padding-left 0.2s, color 0.2s;
}
.nav-dropdown-links li:first-child a { border-top: 1px solid rgba(255,255,255,0.18); }
.nav-dropdown-links li a:hover {
  padding-left: 12px; padding-right: 12px;
  color: var(--darkblue); background: var(--white);
}
.nav-dropdown-links li a .dd-label { flex: 1; }
.nav-dropdown-links li a .dd-label-small { font-size: 11px; margin-left: 12px; opacity: 0.8; }
.nav-dropdown-links li a .dd-arrow { font-size: 13px; font-weight: 700; color: var(--white); transition: transform 0.8s; }
.nav-dropdown-links li a:hover .dd-arrow { color: var(--darkblue); }

.nav-dropdown-photo {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--lightblue); aspect-ratio: 4 / 3;
}
.nav-dropdown-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.dd-photo-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  opacity: 0; transition: opacity 1.0s ease;
}
.dd-photo-slide.is-active { opacity: 1; }
.dd-photo-slide img { flex: 1; width: 100%; min-height: 0; object-fit: cover; display: block; }

.dd-photo-placeholder {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
}
.dd-photo-placeholder-label { font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); }
.dd-photo-placeholder-sub { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-top: 6px; }

.dd-photo-caption {
  flex-shrink: 0; padding: 8px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--white); background: rgba(0,47,136,0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nav-dropdown-heading { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.nav-dropdown-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.nav-dropdown-desc { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 18px; }

/* Mobile-only elements */
.hamburger, .header-mobile-contact { display: none; }

/* Mobile header */
@media (max-width: 750px) {
  header { padding: 0 20px; justify-content: flex-start; gap: 12px; }
  .header-nav { display: none; }
  .hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 30px; height: 36px;
    cursor: pointer; background: none; border: none; padding: 6px 0; flex-shrink: 0;
  }
  .hamburger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.2s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .logo img { width: 120px; }
  .header-mobile-contact {
    margin-left: auto; display: flex; align-items: center; justify-content: center;
    padding: 7px 14px; border: 1px solid var(--darkblue); border-radius: 20px;
    font-size: 10px; font-weight: bold; letter-spacing: 0.08em;
    color: var(--white); text-decoration: none;
    background: var(--darkblue); flex-shrink: 0; transition: background 0.25s, color 0.25s;
  }
  .header-mobile-contact:hover { background: var(--white); color: var(--darkblue); }
}

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  z-index: 290;
  background: linear-gradient(var(--darkblue) 0%, var(--blue) 80%);
  overflow-y: auto; padding: 0 24px 40px;
  transform: translateX(-100%); opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
  pointer-events: none;
}
.mobile-menu.open {
  display: block; transform: translateX(0); opacity: 1; pointer-events: all;
}
.mobile-menu-inner { max-width: 640px; margin: 0 auto; }
.mm-section { padding-top: 28px; padding-bottom: 4px; }
.mm-section-heading { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; color: rgba(255,255,255,0.65); }
.mm-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 15px; font-weight: 700; color: var(--white);
  text-decoration: none; transition: padding-left 0.2s, background 0.2s;
}
.mm-link:first-of-type { border-top: 1px solid rgba(255,255,255,0.14); }
.mm-link:active { background: rgba(255,255,255,0.08); padding-left: 8px; }
.mm-link .mm-num { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: rgba(255,255,255,0.38); width: 28px; flex-shrink: 0; }
.mm-link .mm-label { flex: 1; }
.mm-link .mm-sub { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.7); margin-left: 8px; }
.mm-link .mm-arrow { font-size: 13px; font-weight: 700; color: var(--white); }
.mm-cta {
  display: block; margin-top: 32px; padding: 14px 0; text-align: center;
  background: var(--white); color: var(--darkblue);
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 30px; transition: opacity 0.2s;
}
.mm-cta:active { opacity: 0.8; }
.mm-close-btn { display: none; }
@media (min-width: 751px) {
  .mm-close-btn {
    display: flex; align-items: center; justify-content: flex-end;
    gap: 8px; padding: 20px 0 0; cursor: pointer;
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
    transition: color 0.2s; width: 100%;
  }
  .mm-close-btn:hover { color: #fff; }
  .mm-close-btn::before { content: '×'; font-size: 20px; font-weight: 500; line-height: 1; }
}

/* ══════════════════════════════════════
   HERO — 3-PART LAYOUT
══════════════════════════════════════ */
.hero-catchcopy-area {
  position: relative;
  padding: calc(var(--header-h) + 0) 56px 56px;
  background-color: var(--white);
}
.hero-side-text {
  position: absolute; top: calc(var(--header-h) + 40px); left: 26px;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  color: var(--white); white-space: nowrap; opacity: 1; user-select: none; z-index: 1;
}
@media (min-width: 1000px) { .hero-side-text { left: 54px; } }

/* Typewriter chars */
.hero-catchcopy-area h1 .char,
.hero-side-text .char,
.label-animated .char {
  display: inline; opacity: 0; animation: charReveal 0.001s forwards;
}
.dark-blue .char {
  display: inline; opacity: 0; animation: charReveal 0.001s forwards;
  background: linear-gradient(var(--darkblue) 0%, var(--blue) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
.light-blue .char {
  display: inline; opacity: 0; animation: charReveal 0.001s forwards;
  background: linear-gradient(var(--vividblue) 0%, var(--vividblue2) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}
@keyframes charReveal { to { opacity: 1; } }

.hero-catchcopy-area h1 {
  position: absolute; font-size: 7vw; font-weight: 700; color: var(--white);
  line-height: 1.5; letter-spacing: 0.04em; z-index: 1; top: 168px; left: 20px;
}
@media only screen and (min-width:750px)  { .hero-catchcopy-area h1 { font-size: 6vw; } }
@media only screen and (min-width:1080px) { .hero-catchcopy-area h1 { font-size: 58px; left: 48px; } }

/* Slideshow */
.hero-slideshow {
  position: relative; width: 100%;
  height: 100vh; min-height: 720px; max-height: 760px;
  overflow: hidden; background: #111;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slide.active { opacity: 1; }
.hero-slide-img { position: absolute; inset: -8%; background-size: cover; background-position: center; will-change: transform; }

@keyframes kb-a { from { transform: scale(1.00) translate(0,0); }    to { transform: scale(1.10) translate(-1.2%, 0.6%); } }
@keyframes kb-b { from { transform: scale(1.00) translate(0,0); }    to { transform: scale(1.10) translate(1.2%, -0.6%); } }
@keyframes kb-c { from { transform: scale(1.08) translate(2%,0); }   to { transform: scale(1.08) translate(-2%,0); } }
@keyframes kb-d { from { transform: scale(1.06) translate(-1%,1%); } to { transform: scale(1.10) translate(1%,-0.6%); } }

.hero-slide:nth-child(1) .hero-slide-img { animation: kb-a 9s ease-in-out infinite alternate; }
.hero-slide:nth-child(2) .hero-slide-img { animation: kb-b 9s ease-in-out infinite alternate; }
.hero-slide:nth-child(3) .hero-slide-img { animation: kb-c 9s ease-in-out infinite alternate; }
.hero-slide:nth-child(4) .hero-slide-img { animation: kb-d 9s ease-in-out infinite alternate; }

.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,0,108,0.32) 0%, rgba(16,0,108,0.48) 100%);
  mix-blend-mode: multiply;
}

.hero-cards-wrap { position: absolute; bottom: 64px; left: 26px; z-index: 10; width: 480px; }
@media only screen and (min-width:1080px) { .hero-cards-wrap { left: 46px; } }

.hero-card {
  display: none;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(6px);
  padding: 26px 30px 22px;
  animation: cardIn 0.7s cubic-bezier(0.4,0,0.2,1) both;
  border-top: 4px solid var(--darkblue);
}
.hero-card.active { display: block; }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.hero-card-eyebrow { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; color: var(--lightblue); margin-bottom: 9px; }
.hero-card-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.hero-card-text { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.75; margin-bottom: 8px; }
.hero-card-btn {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; border-bottom: 1px solid var(--dark); padding: 10px 0;
  transition: background 0.25s, color 0.25s; color: var(--dark);
}
.hero-card-btn:hover { border-bottom: 1px solid var(--lightblue); color: var(--lightblue) !important; }

.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; height: 2px; background: rgba(255,255,255,0.18); }
.hero-progress-bar { height: 100%; background: rgba(255,255,255,0.65); width: 0%; transition: width linear; }

/* Hero CTA */
.hero-cta-area { padding: 36px 56px 64px; background-color: var(--white); display: flex; gap: 8px; border-bottom: 1px solid var(--border); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn { display: inline-block; text-decoration: none; font-size: 15px; font-weight: 700; letter-spacing: 0.08em; padding: 10px 28px; border-radius: 30px; transition: all 0.25s; cursor: pointer; }
.btn-darkblue { background: var(--darkblue); border: 1px solid var(--darkblue); color: var(--white); }
.btn-darkblue:hover { background: var(--white); color: var(--darkblue); }
.btn-dark { background: var(--dark); border: 1px solid var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--white); color: var(--dark); }
.btn-outline { border: 1px solid var(--border); color: var(--muted); background: transparent; }
.btn-outline:hover { border-color: var(--dark); color: var(--dark); }

.muted-link { display: inline-block; margin-top: 22px; font-size: 13px; font-weight: 700; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--dark); padding: 10px 0; transition: background 0.25s, color 0.25s; }
.muted-link:hover { border-bottom: 1px solid var(--lightblue); color: var(--lightblue) !important; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section { padding: 88px 56px; }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--lightblue); margin-bottom: 40px; }
.section-heading { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1.75; }
.section-body { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.95; }

/* モックアップ準拠：スマホ時のセクション余白 */
@media (max-width: 750px) {
  .section { padding: 64px 20px; }
  .cta-section { padding: 72px 20px; }
  .cta-heading { font-size: 24px; }
  footer { padding: 48px 20px 28px; }
}

/* ══════════════════════════════════════
   02 SERVICE
══════════════════════════════════════ */
.service { background-color: var(--white); border-top: 1px solid var(--border); }
.service-intro { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.service-grid { display: grid; grid-template-columns: 1fr 36px 1fr 36px 1fr; align-items: stretch; }
.service-card { display: block; text-decoration: none; color: inherit; border: 1px solid var(--lightmuted); padding: 36px 32px; background: var(--white); transition: border-color 0.25s, box-shadow 0.25s; box-shadow: 0 4px 20px 0 rgba(0,0,0,0.05); }
.service-card:hover { border-color: var(--blightblue); box-shadow: 0 4px 20px rgba(16,81,205,0.08); }
.service-card-num { font-size: 10px; letter-spacing: 0.14em; color: var(--lightblue); margin-bottom: 18px; font-weight: 700; }
.service-card-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.service-card-text { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.9; }
.service-card-link { display: inline-block; margin-top: 22px; font-size: 13px; font-weight: 700; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--dark); padding: 10px 0; transition: background 0.25s, color 0.25s; }
.service-card-link:hover { border-bottom: 1px solid var(--lightblue); color: var(--lightblue) !important; }
.service-x { display: flex; align-items: flex-start; justify-content: center; padding-top: 48px; font-size: 24px; font-weight: 500; color: var(--muted); }
@media (max-width: 750px) {
  .service-grid { grid-template-columns: 1fr; gap: 0; }
  .service-x { display: none; }
  .service-card { border-bottom: none; padding: 28px 24px; }
  .service-card:last-child { border-bottom: 1px solid var(--dark); }
}

/* ══════════════════════════════════════
   02.5 SNS INBOUND
══════════════════════════════════════ */
.inbound { background: linear-gradient(var(--darkblue),var(--blue)80%); border-top: 1px solid var(--border); }
.inbound-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 750px) {
  .inbound-grid { grid-template-columns: 1fr; gap: 0; }
  .inbound-image { order: -1; }
}
.inbound .section-heading,
.inbound-section-heading { color: var(--white); margin-top: 14px; }
.inbound .section-body,
.inbound-section-body { color: var(--white); margin-top: 20px; }
.section-eyebrow { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.inbound-stats { display: flex; gap: 0; margin: 32px 0; padding: 28px 0; border-top: 1px solid var(--lightblue); border-bottom: 1px solid var(--lightblue); }
.stat-item { flex: 1; }
.stat-item + .stat-item { padding-left: 28px; border-left: 1px solid var(--border); }
.stat-num { font-size: 28px; font-weight: 700; color: var(--white); }
.stat-label { font-size: 12px; color: var(--white); margin-top: 5px; }
.inbound-image { position: relative; overflow: hidden; }
@media (min-width: 751px) { .inbound-image { height: 520px; } }
@media (max-width: 750px) { .inbound-image { height: 56vw; min-height: 220px; max-height: 340px; margin: 0 -20px; } }
.inbound-image-inner { position: absolute; inset: 0; background: url('../images/inbound-image.webp') center/cover; transition: transform 0.6s ease; }
.inbound-image:hover .inbound-image-inner { transform: scale(1.04); }

/* ══════════════════════════════════════
   03 SOLUTION
══════════════════════════════════════ */
.solution { background-color: var(--white); border-top: 1px solid var(--border); }
.solution-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; gap: 24px; }
.solution-section-body { margin-top: 12px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 750px) { .solution-grid { grid-template-columns: 1fr; gap: 12px; } }
.solution-card { display: block; text-decoration: none; color: inherit; border: 1px solid var(--lightmuted); border-radius: 2px; overflow: hidden; background: var(--white); transition: border-color 0.25s, box-shadow 0.25s; box-shadow: 0 4px 20px 0 rgba(0,0,0,0.05); }
.solution-card:hover { border-color: var(--blightblue); box-shadow: 0 4px 20px rgba(16,81,205,0.08); }
.solution-card-photo { width: 100%; aspect-ratio: 16 / 9; background: var(--light-bg); overflow: hidden; }
.solution-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.solution-card-photo-label { font-size: 10px; letter-spacing: 0.14em; color: #bbb; text-align: center; }
.solution-card-photo-label span { display: block; font-size: 9px; color: #ccc; margin-top: 4px; }
.solution-card-body { padding: 20px 22px 24px; }
.solution-card-tag { font-size: 11px; font-weight: 500; color: var(--lightblue); margin-bottom: 7px; }
.solution-card-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.solution-card-text { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.85; }

/* Solution Carousel */
.solution-carousel-outer { overflow: hidden; margin-left: -56px; margin-right: -56px; padding: 8px 0 24px; }
.solution-carousel-track { display: flex; gap: 16px; padding: 0 10%; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; user-select: none; -webkit-user-select: none; }
.solution-carousel-track .solution-card { flex: 0 0 80%; min-width: 0; }
@media (min-width: 750px) {
  .solution-carousel-outer { margin-left: 0; margin-right: 0; }
  .solution-carousel-track { padding: 0; }
  .solution-carousel-track .solution-card { flex: 0 0 calc(33.333% - 11px); }
}
.solution-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.sol-arrow { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--blue); color: var(--white); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.22s; flex-shrink: 0; }
.sol-arrow:hover { background: var(--darkblue); }
.solution-dots { display: flex; gap: 8px; align-items: center; }
.sol-dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: var(--lightmuted); cursor: pointer; transition: background 0.25s, transform 0.25s; }
.sol-dot.is-active { background: var(--blue); transform: scale(1.4); }

/* ══════════════════════════════════════
   04 WORKS
══════════════════════════════════════ */
.works { background-color: var(--dark); border-top: 1px solid var(--border); }
.works-layout { display: grid; grid-template-columns: 132px calc(100% - 132px - 56px); gap: 56px; align-items: start; }
.works-sidebar { position: sticky; top: calc(var(--header-h) + 32px); }
.works-sidebar .section-heading { margin-bottom: 20px; color: var(--white); }
.works-sidebar .muted-link { margin-top: 0; }
.works-list { display: flex; flex-direction: column; gap: 0; }
.works-card { display: grid; grid-template-columns: 220px 1fr; text-decoration: none; color: inherit; background: var(--white); border: 1px solid var(--lightmuted); border-radius: 2px; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; margin-bottom: 20px; }
.works-card:last-child { margin-bottom: 0; }
.works-card:hover { border-color: var(--blightblue); box-shadow: 0 4px 24px rgba(16,81,205,0.09); }
.works-card-img { height: 100%; min-height: 160px; overflow: hidden; position: relative; background: #e8e5de; flex-shrink: 0; }
.works-card-img-inner { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.works-card:hover .works-card-img-inner { transform: scale(1.05); }
.works-card-body { padding: 22px 24px 26px; }
.works-card-tag { display: inline-block; font-size: 10px; letter-spacing: 0.05em; border-radius: 3px; color: var(--lightblue); margin-bottom: 10px; }
.works-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.65; }
.works-card-text { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.works-card-link { font-size: 10px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.works-card-link:hover { color: var(--dark); }
@media (max-width: 750px) {
  .works-layout { grid-template-columns: 1fr; gap: 24px; }
  .works-sidebar { position: static; }
  .works-card { grid-template-columns: 1fr; }
  .works-card-img { min-height: 160px; height: 160px; }
}

/* ══════════════════════════════════════
   05 MEDIA
══════════════════════════════════════ */
.media { background-color: var(--white); border-top: 1px solid var(--border); }
.media-block { margin-bottom: 64px; }
.media-block:last-child { margin-bottom: 0; }
.media-block-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.media-block-title { font-size: 32px; font-weight: 700; letter-spacing: 0.08em; color: var(--dark); }
.media-block-sub { font-size: 13px; color: var(--dark); margin-top: 3px; }
.media-empty-note { font-size: 14px; font-weight: 500; color: var(--muted, #888); margin: 0; }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 750px) { .media-grid { grid-template-columns: 1fr; gap: 12px; } }
.media-card { display: block; text-decoration: none; color: inherit; border: 0.5px solid #ddd; border-radius: 2px; overflow: hidden; background: var(--white); transition: border-color 0.25s, box-shadow 0.25s; box-shadow: 0 4px 20px 0 rgba(0,0,0,0.05); }
.media-card:hover { border-color: var(--blightblue); box-shadow: 0 4px 20px rgba(16,81,205,0.08); }
.media-card-photo { width: 100%; height: 140px; background: var(--dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.media-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-card-photo-label { font-size: 10px; letter-spacing: 0.1em; color: #ccc; text-align: center; }
.media-card-photo-label span { display: block; font-size: 9px; color: #d0d0d0; margin-top: 3px; }
.media-card-body { padding: 16px 18px 20px; }
.media-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.media-card-tag { display: inline-block; font-size: 11px; letter-spacing: 0.1em; border-radius: 3px; padding: 2px 8px; color: var(--white); background: var(--darkblue); font-weight: 700; }
.media-card-date { font-size: 11px; color: var(--lightblue); letter-spacing: 0.06em; }
.media-card-title { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.65; margin-bottom: 8px; }
.media-card-text { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.8; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
@media (min-width: 750px) { .media-card-text { -webkit-line-clamp: 3; } }

/* ══════════════════════════════════════
   06 CTA SECTION
══════════════════════════════════════ */
.cta-section { background: linear-gradient(var(--darkblue),var(--blue)80%); text-align: center; padding: 100px 56px; }
.cta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--lightblue); margin-bottom: 32px; }
.cta-heading { font-size: 42px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.cta-text { font-size: 16px; font-weight: 500; color: var(--white); line-height: 2; margin-bottom: 44px; }
.btn-cta { display: inline-block; text-decoration: none; letter-spacing: 0.1em; border: 1px solid var(--white); color: var(--dark); transition: all 0.3s; background: var(--white); }
.btn-cta:hover { background: none; color: var(--white); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background-color: var(--white); border-top: 1px solid var(--border); padding: 72px 40px 36px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1.4fr 1fr; gap: 24px; padding-bottom: 52px; border-bottom: 1px solid var(--border); }
@media (max-width: 750px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-top > div { grid-column: 1 / -1; }
  .footer-top-first { padding-bottom: 48px; }
}
.footer-logo { font-size: 22px; font-weight: 500; letter-spacing: 0.06em; color: var(--dark); margin-bottom: 18px; }
.footer-logo img { width: 148px; height: auto; }
.footer-desc { font-size: 12px; font-weight: 500; color: var(--dark); line-height: 1.9; margin-bottom: 24px; }
.footer-address { font-size: 11px; color: var(--dark); line-height: 1.85; }
.footer-address a, .footer-address a:visited { color: var(--dark) !important; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--darkblue); margin-bottom: 18px; }
.footer-text-small { font-size: 11px; font-weight: 500; margin-left: 10px; color: var(--darkblue); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 48px; }
.footer-links a { font-size: 15px; font-weight: 700; color: var(--dark); text-decoration: none; transition: color 0.2s; padding: 6px 0; }
.footer-links a .footer-links-sub { font-size: 11px; font-weight: 700; color: var(--muted); display: block; margin-bottom: -4px; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }
.footer-links a:hover .footer-links-sub { color: var(--lightmuted); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 16px; flex-wrap: wrap; background: var(--white); }
.footer-copy { font-size: 11px; color: var(--dark); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: var(--dark); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--muted); }

/* ══════════════════════════════════════
   PAGE KV（下層ページ共通ヘッダービジュアル）
══════════════════════════════════════ */
.page-kv {
  position: relative;
  padding: calc(var(--header-h) + 56px) 56px 56px;
  border-bottom: 1px solid var(--border);
  background-color: #111827;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
/* ソリューション・サービス下層：KV背景は img で cover（CSS background の伸びを防ぐ） */
.page-kv--solution,
.page-kv--service {
  background-image: none;
}
.page-kv--solution .page-kv-bg,
.page-kv--service .page-kv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}
.page-kv::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,108,195,0.60) 0%, rgba(0,10,40,0.70) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-kv::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.12) 100%),
    linear-gradient(rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.12) 100%),
    linear-gradient(rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.12) 100%);
  background-position: 25% 0, 50% 0, 75% 0;
  background-size: 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-attachment: fixed, fixed, fixed;
  z-index: 2;
  pointer-events: none;
}
.page-kv-heading, .page-kv-sub { position: relative; z-index: 3; }
.page-kv-breadcrumb { position: relative; z-index: 1; }
.page-kv-breadcrumb { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; margin-bottom: 14px; }
.page-kv-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-kv-breadcrumb a:hover { color: var(--white); }
.page-kv-breadcrumb span { margin: 0 6px; }
.page-kv-heading { font-size: 36px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; margin-bottom: 10px; }
.page-kv-sub { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.8; }
@media (max-width: 750px) {
  .page-kv { padding: calc(var(--header-h) + 60px) 20px 40px; }
  .page-kv-heading { font-size: 26px; }
}

/* ページKV背景画像（ページごとに個別指定） */
.ads-kv       { background-image: url('../images/hero-card-pic04.webp'); }
.research-kv  { background-image: url('../images/hero-card-pic01.webp'); }
.service-kv   { background-image: url('../images/kv-service.webp'); }
.inbound-kv   { background-image: url('../images/inbound-image.webp'); }
.sns-kv       { background-image: url('../images/kv-sns.webp'); }
.wiener-kv    { background-image: url('../images/nav-dropdown-photo01.webp'); }
.goodlife-kv  { background-image: url('../images/nav-dropdown-photo02.webp'); }
.sankaikou-kv { background-image: url('../images/nav-dropdown-photo03.webp'); }
.ukokkei-kv   { background-image: url('../images/nav-dropdown-photo04.webp'); }
.solution-kv,
.wiener-kv,
.goodlife-kv,
.sankaikou-kv,
.ukokkei-kv,
.editors-kv {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.solution-kv,
.editors-kv { background-image: url('../images/kv-solution.webp'); }
.wiener-kv    { background-image: url('../images/nav-dropdown-photo01.webp'); }
.goodlife-kv  { background-image: url('../images/nav-dropdown-photo02.webp'); }
.sankaikou-kv { background-image: url('../images/nav-dropdown-photo03.webp'); }
.ukokkei-kv   { background-image: url('../images/nav-dropdown-photo04.webp'); }
/* page-kv--solution / page-kv--service は .page-kv-bg img を使用するため background-image なし */
.page-kv--solution.solution-kv,
.page-kv--solution.editors-kv,
.page-kv--solution.wiener-kv,
.page-kv--solution.goodlife-kv,
.page-kv--solution.sankaikou-kv,
.page-kv--solution.ukokkei-kv,
.page-kv--service.service-kv,
.page-kv--service.ads-kv,
.page-kv--service.research-kv,
.page-kv--service.inbound-kv,
.page-kv--service.sns-kv {
  background-image: none;
}
/* お問い合わせ KV（.page-kv と同じ高さ・余白。背景のみ個別指定） */
.contact-kv {
  background-image: url('../images/kv-contact.webp');
  background-position: center center;
  background-size: cover;
  /* 縦グリッド用 fixed を上書き（スクロール時のパララックス風の動きを防ぐ） */
  background-attachment: scroll;
}
.page-kv.contact-kv::after {
  background-attachment: scroll, scroll, scroll;
}
.contact-kv-heading,
.contact-kv-sub {
  position: relative;
  z-index: 3;
}

/* プライバシーポリシー KV（お問い合わせと同画像・page-kv 共通余白） */
.privacy-kv {
  background-image: url('../images/kv-contact.webp');
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
}
.page-kv.privacy-kv::after {
  background-attachment: scroll, scroll, scroll;
}
.privacy-kv-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  position: relative;
  z-index: 3;
}
/* INSIGHTS / COLUMN 投稿シングル KV */
.insights-kv,
.column-kv {
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
}
.insights-kv {
  background-image: url('../images/kv-insights.webp');
}
.column-kv {
  background-image: url('../images/kv-contact.webp');
}
.page-kv.insights-kv::after,
.page-kv.column-kv::after {
  background-attachment: scroll, scroll, scroll;
}

.privacy-kv-heading {
  position: relative;
  z-index: 3;
  line-height: 1.3;
}

/* 会社概要 KV（お問い合わせと同画像） */
.company-kv {
  background-image: url('../images/kv-contact.webp');
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  padding: calc(var(--header-h) + 100px) 56px 56px;
}
.page-kv.company-kv::after {
  background-attachment: scroll, scroll, scroll;
}
.company-kv-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  position: relative;
  z-index: 3;
}
.company-kv-heading {
  position: relative;
  z-index: 3;
}
@media (max-width: 750px) {
  .company-kv {
    padding: calc(var(--header-h) + 80px) 20px 40px;
  }
  .page-kv.company-kv .page-kv-heading {
    font-size: 26px;
  }
}

/* プライバシーポリシー 本文 */
.privacy-section {
  padding: 80px 56px 100px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-lead {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--lightmuted);
}
.privacy-item {
  margin-bottom: 48px;
}
.privacy-item:last-child {
  margin-bottom: 0;
}
.privacy-item-heading {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--lightmuted);
}
.privacy-item-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.privacy-item-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 2;
  margin: 0;
}
.privacy-item-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-item-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.85;
}
.privacy-item-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 9px;
}
.privacy-contact {
  margin-top: 64px;
  padding: 32px 36px;
  background: var(--light-bg);
  border: 0.5px solid var(--lightmuted);
}
.privacy-contact-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lightblue);
  margin-bottom: 14px;
}
.privacy-contact-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 2;
  margin: 0;
}
.privacy-contact-body a {
  color: var(--darkblue);
  text-decoration: none;
}
.privacy-contact-body a:hover {
  text-decoration: underline;
}
.privacy-contact-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.hamon-page-content .privacy-section {
  padding-left: max(56px, calc((100% - 1600px) / 2));
  padding-right: max(56px, calc((100% - 1600px) / 2));
}
@media (max-width: 750px) {
  .privacy-section,
  .hamon-page-content .privacy-section {
    padding: 56px 20px 72px;
  }
  .privacy-item-title {
    font-size: 15px;
  }
  .privacy-contact {
    padding: 24px 20px;
  }
}

.contact-sales-notice {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 56px 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 750px) {
  .contact-sales-notice { padding: 12px 20px 0; font-size: 10px; }
}

/* ── お問い合わせフォーム ── */
.contact-form-section {
  padding: 72px 56px 88px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 750px) {
  .contact-form-section { padding: 48px 20px 64px; }
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 0; }
}
.step-col { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 750px) {
  .step-col { position: static; margin-bottom: 40px; }
}
.step-label-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lightblue);
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 750px) {
  .step-label-header { margin-bottom: 12px; text-align: center; }
}
.steps-vertical { display: flex; flex-direction: column; }
@media (max-width: 750px) { .steps-vertical { display: none; } }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-connector { display: flex; flex-direction: column; align-items: center; }
.step-circle {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px; font-weight: 700;
}
.step-circle.active { background: linear-gradient(var(--darkblue), var(--blue) 80%); color: var(--white); }
.step-circle.inactive { border: 1px solid #ddd; color: var(--muted); background: var(--white); }
.step-col[data-hamon-step="2"] .step-item:nth-child(1) .step-circle,
.step-col[data-hamon-step="3"] .step-item:nth-child(1) .step-circle,
.step-col[data-hamon-step="3"] .step-item:nth-child(2) .step-circle { background: linear-gradient(var(--darkblue), var(--blue) 80%); color: var(--white); border: none; }
.step-col[data-hamon-step="2"] .step-item:nth-child(2) .step-circle.active,
.step-col[data-hamon-step="3"] .step-item:nth-child(3) .step-circle.active { background: linear-gradient(var(--darkblue), var(--blue) 80%); color: var(--white); }
.step-line { width: 1px; height: 52px; background: #e0e0e0; margin-top: 4px; }
.step-body { padding-top: 5px; padding-bottom: 20px; }
.step-title-text { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.step-title-text.active { color: var(--dark); }
.step-title-text.inactive { color: var(--muted); }
.step-col[data-hamon-step="2"] .step-item:nth-child(-n+2) .step-title-text,
.step-col[data-hamon-step="3"] .step-item .step-title-text { color: var(--dark); }
.step-desc { font-size: 10px; color: var(--muted); line-height: 1.6; }
.steps-horizontal { display: none; }
@media (max-width: 750px) {
  .steps-horizontal { display: flex; align-items: center; width: 100%; margin-bottom: 36px; }
  .steps-vertical { display: none; }
}
.step-h-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-h-circle {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.step-h-circle.active { background: var(--darkblue); color: var(--white); }
.step-h-circle.inactive { border: 1px solid #ddd; color: var(--muted); }
.step-h-label { font-size: 9px; font-weight: 600; color: var(--dark); white-space: nowrap; }
.step-h-label.inactive { color: var(--muted); }
.step-col[data-hamon-step="2"] .step-h-item:nth-child(1) .step-h-circle,
.step-col[data-hamon-step="2"] .step-h-item:nth-child(3) .step-h-circle,
.step-col[data-hamon-step="3"] .step-h-item:nth-child(1) .step-h-circle,
.step-col[data-hamon-step="3"] .step-h-item:nth-child(3) .step-h-circle { background: var(--darkblue); color: var(--white); border: none; }
.step-col[data-hamon-step="2"] .step-h-item:nth-child(3) .step-h-circle,
.step-col[data-hamon-step="3"] .step-h-item:nth-child(5) .step-h-circle { border: 1px solid #ddd; background: var(--white); color: var(--muted); }
.step-h-connector { width: 24px; flex-shrink: 0; height: 1px; background: #ddd; margin-bottom: 14px; }

.form-field { margin-bottom: 24px; }
.form-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.badge-required {
  font-size: 9px; font-weight: 700; background: var(--darkblue);
  color: var(--white); border-radius: 3px; padding: 2px 7px; letter-spacing: 0.04em;
}
.badge-optional {
  font-size: 9px; font-weight: 500; border: 0.5px solid #ddd;
  color: #aaa; border-radius: 3px; padding: 2px 7px;
}
.form-input,
.hamon-cf7-form .wpcf7-form-control-wrap input[type="text"],
.hamon-cf7-form .wpcf7-form-control-wrap input[type="email"],
.hamon-cf7-form .wpcf7-form-control-wrap input[type="tel"] {
  width: 100%; height: 44px; border: 0.5px solid #d5d5d5; border-radius: 5px;
  background: var(--light-bg); font-size: 16px; color: var(--dark);
  padding: 0 14px; transition: border-color 0.2s; appearance: none; font-family: inherit;
}
.form-input:focus,
.hamon-cf7-form input:focus { outline: none; border-color: var(--lightblue); background: var(--white); }
.form-textarea,
.hamon-cf7-form textarea {
  width: 100%; height: 150px; border: 0.5px solid #d5d5d5; border-radius: 5px;
  background: var(--light-bg); font-size: 15px; color: var(--dark); padding: 14px;
  resize: vertical; transition: border-color 0.2s; font-family: inherit; line-height: 1.75;
}
.form-textarea:focus,
.hamon-cf7-form textarea:focus { outline: none; border-color: var(--lightblue); background: var(--white); }
.form-textarea::placeholder,
.hamon-cf7-form textarea::placeholder { color: #ccc; font-size: 13px; }

/* お問い合わせ種別 — ラジオ（モック .form-radio-group 準拠） */
.form-radio-group .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-radio-group .wpcf7-list-item {
  margin: 0;
  display: inline-block;
}
.form-radio-group .wpcf7-list-item label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 0.5px solid #d5d5d5;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--light-bg);
  margin: 0;
}
.form-radio-group .wpcf7-list-item label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.form-radio-group .wpcf7-list-item.is-selected label,
.form-radio-group .wpcf7-list-item:has(input:checked) label {
  border-color: var(--darkblue);
  background: var(--white);
  color: var(--darkblue);
  font-weight: 700;
}
.form-radio-group .wpcf7-list-item label::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #bbb;
  flex-shrink: 0;
}
.form-radio-group .wpcf7-list-item.is-selected label::before,
.form-radio-group .wpcf7-list-item:has(input:checked) label::before {
  background: var(--darkblue);
  border-color: var(--darkblue);
}

/* プライバシーポリシー同意（モック .form-privacy 準拠） */
.hamon-privacy-field { margin-bottom: 36px; }
.hamon-privacy-field .form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--light-bg);
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}
.hamon-privacy-field .form-privacy-check {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  line-height: 0;
}
.hamon-privacy-field .form-privacy-check .wpcf7-form-control-wrap,
.hamon-privacy-field .form-privacy-check .wpcf7-acceptance,
.hamon-privacy-field .form-privacy-check .wpcf7-list-item {
  margin: 0;
  display: block;
}
.hamon-privacy-field .form-privacy-check input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.hamon-privacy-field .form-privacy-check::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border: 1.5px solid #bbb;
  border-radius: 3px;
  background: var(--white);
  box-sizing: border-box;
}
.hamon-privacy-field .form-privacy-check:has(input:checked)::before {
  background: var(--darkblue);
  border-color: var(--darkblue);
}
.hamon-privacy-field .form-privacy-check:has(input:checked)::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(40deg);
  z-index: 1;
  pointer-events: none;
}
.hamon-privacy-field .form-privacy-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.85;
  margin: 0;
  flex: 1;
}
.hamon-privacy-field .form-privacy-text a {
  color: var(--darkblue);
  text-decoration: underline;
}

.form-submit-wrap { text-align: center; }
.form-submit-btn,
.hamon-cf7-form input[type="submit"].wpcf7-submit {
  display: inline-block; padding: 16px 56px;
  background: linear-gradient(var(--darkblue), var(--blue) 80%);
  color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
  border-radius: 4px; cursor: pointer; border: none;
  transition: opacity 0.25s; text-decoration: none; font-family: inherit;
}
.form-submit-btn:hover,
.hamon-cf7-form input[type="submit"]:hover { opacity: 0.85; }
.form-submit-btn--outline {
  background: var(--white); color: var(--darkblue);
  border: 1px solid var(--darkblue); margin-right: 12px;
}
.form-submit-btn--outline:hover { background: var(--light-bg); }

.hamon-cf7-wrap.is-confirm .hamon-cf7-form-panel { display: none; }
.hamon-cf7-panel--submit { display: none !important; }
.hamon-cf7-tip {
  margin-bottom: 16px; padding: 12px 16px; background: #fff5f5;
  border: 1px solid #f5c2c2; color: #a33; font-size: 13px; border-radius: 4px;
}
.hamon-cf7-missing { padding: 24px; background: var(--light-bg); text-align: center; color: var(--muted); }
.hamon-recaptcha-field { margin-bottom: 24px; }
.hamon-recaptcha-field .wpcf7-recaptcha {
  display: flex;
  justify-content: flex-start;
}
.hamon-cf7-wrap.is-confirm .hamon-recaptcha-field { display: none; }

/* reCAPTCHA 右下バッジをサイト全体で非表示（お問い合わせは .contact-recaptcha-disclosure で代替表記） */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-recaptcha-disclosure {
  margin-top: 20px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
}
.contact-recaptcha-disclosure a {
  color: var(--muted);
  text-decoration: underline;
}
.hamon-cf7-wrap.is-confirm .contact-recaptcha-disclosure { display: none; }

.hamon-confirm-heading { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.hamon-confirm-lead { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.hamon-confirm-list { margin: 0 0 36px; }
.hamon-confirm-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.hamon-confirm-row:first-child { border-top: 1px solid var(--border); }
.hamon-confirm-row dt { font-size: 13px; font-weight: 700; color: var(--dark); }
.hamon-confirm-row dd { font-size: 14px; color: var(--dark); line-height: 1.75; margin: 0; word-break: break-word; }
.hamon-confirm-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
@media (max-width: 750px) {
  .hamon-confirm-row { grid-template-columns: 1fr; gap: 6px; }
}

.contact-thanks-section .contact-thanks-body { max-width: 640px; }
.contact-thanks-lead { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.contact-thanks-message p { font-size: 15px; line-height: 2; color: var(--dark); margin-bottom: 12px; }

.hamon-cf7-form .wpcf7-response-output { margin: 16px 0 0; border-radius: 4px; font-size: 13px; }
.hamon-cf7-form .wpcf7-not-valid-tip { font-size: 12px; color: #c00; margin-top: 6px; }
.hamon-cf7-form .wpcf7-spinner { margin-left: 8px; }

/* ══════════════════════════════════════
   PAGE HERO（下層ページ共通ヒーロー）
══════════════════════════════════════ */
.page-hero { padding: 0 56px; background-color: var(--white); border-bottom: 1px solid var(--border); }
.breadcrumb { padding: 24px 56px 0; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb span { margin: 0 6px; }
.page-hero .breadcrumb { padding-left: 0; padding-right: 0; }
/* サービス下層：page-hero 側の padding と二重にならないよう横 padding をリセット */
.page-hero .solution-hero-breadcrumb {
  padding-top: 20px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.page-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding: 32px 0 56px;
}
.page-hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--lightblue); margin-bottom: 18px; }
.page-hero h1 { font-size: 32px; font-weight: 700; line-height: 1.55; color: var(--dark); margin-bottom: 22px; letter-spacing: 0.02em; }
.page-hero-body { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 2; margin-bottom: 32px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-kv { position: relative; aspect-ratio: 4 / 3; background: var(--off-white); overflow: hidden; }
.page-hero-kv-img { position: absolute; left: 0; width: 100%; height: 130%; top: -15%; object-fit: cover; display: block; will-change: transform; }
.page-hero-kv-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; pointer-events: none;
}
.page-hero-kv-placeholder .kv-main { font-size: 11px; letter-spacing: 0.12em; color: var(--lightmuted); }
.page-hero-kv-placeholder .kv-sub { font-size: 10px; color: #ccc; }
@media (max-width: 750px) {
  .page-hero { padding: 0 20px; }
  .breadcrumb { padding: 12px 20px 0; }
  .page-hero .solution-hero-breadcrumb { padding-top: 16px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 16px 0 32px; }
  .page-hero-kv { order: -1; }
  .page-hero h1 { font-size: 22px; }
  .page-hero-body { font-size: 14px; }
}

/* hero platform tags */
.hero-platform-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-platform-tag { padding: 5px 14px; border: 1px solid var(--darkblue); font-size: 12px; font-weight: 700; color: var(--darkblue); letter-spacing: 0.04em; }

/* numbers bar（数字ハイライト）*/
.numbers-bar { background: linear-gradient(var(--darkblue), var(--blue) 80%); padding: 48px 56px; }
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.number-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.number-item:last-child { border-right: none; }
.number-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 8px; }
.number-value { font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.number-unit { font-size: 28px; font-weight: 700; }
.number-label { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }
.research-numbers-grid { grid-template-columns: 1fr 1fr 1.2fr !important; }
.number-item--desc { border-left: 1px solid rgba(255,255,255,0.15); padding-left: 40px; display: flex; align-items: center; border-right: none; text-align: left; }
.number-item--desc p { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.85; }
@media (max-width: 750px) {
  .numbers-bar { padding: 40px 20px; }
  .numbers-grid { grid-template-columns: 1fr; gap: 32px; }
  .number-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0 0 32px; }
  .number-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ══════════════════════════════════════
   SUBPAGE COMMON — 下層ページ共通セクション
══════════════════════════════════════ */

/* DIFFERENTIATOR */
.differentiator {
  position: relative; border-top: 1px solid var(--border);
  background-color: #111827;
  background-image: url('../images/kv-overview.webp');
  background-size: cover; background-position: center; overflow: hidden;
  color: rgba(255,255,255,0.80);
}
.differentiator::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,108,195,0.60) 0%, rgba(0,10,40,0.70) 100%); z-index: 0; }
.differentiator .section-label, .differentiator .diff-intro, .differentiator .diff-steps { position: relative; z-index: 1; }
.differentiator .section-label { color: rgba(255,255,255,0.55); }
.diff-intro { text-align: center; max-width: 600px; margin: 0 auto 48px; color: rgba(255,255,255,0.80); }
.diff-intro h2 { font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.6; margin-bottom: 16px; }
.diff-intro p,
.diff-intro-text { font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.80); line-height: 1.85; margin: 0; }
.differentiator > p:not(:empty) {
  position: relative; z-index: 1;
  font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.80); line-height: 1.85;
  text-align: center; max-width: 600px; margin: 0 auto 48px;
}
.diff-steps { display: grid; grid-template-columns: 1fr 48px 1fr 48px 1fr; align-items: center; gap: 0; }
.diff-step { border: 1px solid var(--darkblue); padding: 28px 22px; text-align: center; background: var(--white); transition: box-shadow 0.25s; }
.diff-step:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.08); }
.diff-step.is-last { background: var(--darkblue); border-color: var(--lightblue); }
.diff-step-num { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 12px; }
.diff-step.is-last .diff-step-num { color: var(--blightblue); }
.diff-step-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.diff-step.is-last .diff-step-title { color: var(--white); }
.diff-step-text { font-size: 13px; font-weight: 500; color: var(--dark); line-height: 1.75; }
.diff-step.is-last .diff-step-text { color: rgba(255,255,255,0.75); }
.diff-arrow { text-align: center; font-size: 22px; color: var(--lightmuted); font-weight: 700; }
@media (max-width: 750px) {
  .diff-steps { grid-template-columns: 1fr; gap: 0; }
  .diff-arrow { display: none; }
  .diff-step { text-align: left; border-bottom: none; padding: 22px 20px; }
  .diff-step + .diff-step { border-top: 1px solid var(--border); }
  .diff-step.is-last { border-top: none; border-bottom: 1px solid var(--lightblue); }
}

/* FLOW */
.flow { background: var(--white); border-top: 1px solid var(--border); }
.flow-header { margin-bottom: 48px; }
.flow-header h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.flow-header p { font-size: 17px; font-weight: 500; color: var(--dark); }
.flow-grid { display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr; align-items: start; gap: 0; }
.flow-grid--4col { grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr; }
.flow-step { text-align: center; padding: 0 8px; }
.flow-num { width: 40px; height: 40px; border: 1px solid var(--darkblue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--darkblue); margin: 0 auto 16px; }
.flow-step.is-last .flow-num { background: var(--darkblue); border-color: var(--darkblue); color: var(--white); }
.flow-step-title { font-size: 17px; font-weight: 700; color: var(--darkblue); margin-bottom: 8px; }
.flow-step-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.7; }
.flow-arrow { display: flex; align-items: flex-start; justify-content: center; padding-top: 12px; font-size: 18px; color: var(--lightmuted); }
@media (max-width: 750px) {
  .flow-grid { grid-template-columns: 1fr !important; gap: 0; }
  .flow-arrow { display: none; }
  .flow-step { text-align: left; display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--border); }
  .flow-step:last-child { border-bottom: none; }
  .flow-num { margin: 0; flex-shrink: 0; }
  .flow-step-title { margin-bottom: 6px; }
}

/* PROOF（グループ企業実証セクション） */
.proof { background: linear-gradient(var(--darkblue), var(--blue) 80%); border-top: 1px solid var(--border); }
.proof .section-label { color: var(--lightblue); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.proof-heading { font-size: 24px; font-weight: 700; color: var(--white); line-height: 1.7; margin-bottom: 20px; }
.proof-body { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.95; margin-bottom: 28px; }
.proof-link-btn { display: inline-block; font-size: 13px; font-weight: 700; color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.5); padding: 10px 0; transition: border-color 0.2s; }
.proof-link-btn:hover { border-bottom-color: var(--white); }
.proof-card { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18); text-decoration: none; color: var(--white); transition: background 0.22s, border-color 0.22s; }
.proof-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.proof-card-num { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: var(--lightblue); margin-bottom: 4px; }
.proof-card-name { font-size: 14px; font-weight: 700; }
.proof-card-sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.proof-card-arrow { font-size: 14px; color: rgba(255,255,255,0.5); flex-shrink: 0; margin-left: 16px; }
.proof-slider-outer { overflow: hidden; height: 272px; }
.proof-slider-track { display: flex; flex-direction: column; gap: 10px; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.proof-slider-track .proof-card { height: 84px; flex-shrink: 0; }
@media (max-width: 750px) {
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-slider-outer { height: 178px; }
}

/* RELATED WORKS */
.related-works { background: var(--light-bg); border-top: 1px solid var(--border); }
.related-works-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 8px; }
.related-works-header h2 { font-size: 28px; font-weight: 700; color: var(--dark); }
.related-works-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.related-works .works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-works .works-grid .works-card {
  display: flex; flex-direction: column;
  grid-template-columns: unset; margin-bottom: 0;
}
.related-works .works-grid .works-card-img { width: 100%; min-height: 140px; height: 140px; }
.related-works .works-grid .works-card-body { flex: 1; }
@media (max-width: 750px) {
  .related-works .works-grid { grid-template-columns: 1fr; gap: 10px; }
}
.works-memo { background: #fffbe6; border: 1px dashed #e8c84a; padding: 14px 18px; margin-bottom: 28px; font-size: 12px; color: #7a6500; line-height: 1.8; }
.works-placeholder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.works-ph-card { border: 1px dashed var(--lightmuted); background: var(--white); overflow: hidden; }
.works-ph-img { width: 100%; height: 120px; background: var(--off-white); display: flex; align-items: center; justify-content: center; }
.works-ph-img-label { font-size: 10px; color: #ccc; letter-spacing: 0.08em; }
.works-ph-body { padding: 16px 18px 20px; }
.works-ph-tag { display: inline-block; font-size: 10px; border: 0.5px solid var(--lightmuted); padding: 2px 8px; color: #ccc; margin-bottom: 10px; }
.works-ph-title { font-size: 13px; font-weight: 700; color: #ccc; margin-bottom: 6px; }
.works-ph-text { font-size: 11px; color: #ddd; line-height: 1.7; }
@media (max-width: 750px) {
  .works-placeholder-grid { grid-template-columns: 1fr; gap: 10px; }
  .related-works-header { flex-wrap: wrap; gap: 8px; }
}

/* ══════════════════════════════════════
   SERVICE PAGES — 各ページ固有CSS
══════════════════════════════════════ */

/* PLATFORMS（広告ページ） */
.platforms { background: var(--light-bg); border-top: 1px solid var(--border); }
.platforms-intro { margin-bottom: 32px; }
.platforms-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.platforms-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.platform-rows { display: flex; flex-direction: column; gap: 14px; }
.platform-row { display: grid; grid-template-columns: 110px 1fr; gap: 0; border: 0.5px solid var(--lightmuted); background: var(--white); overflow: hidden; transition: box-shadow 0.25s; }
.platform-row:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.07); }
.platform-logo-cell { background: linear-gradient(90deg,var(--darkblue), var(--blue) 80%); border-right: 0.5px solid var(--lightmuted); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 12px; gap: 10px; }
.platform-icon { width: 48px; height: 48px; background: var(--white); border: 0.5px solid var(--lightmuted); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.platform-name { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.platform-body { padding: 28px 28px; }
.platform-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.platform-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.85; margin-bottom: 14px; }
.platform-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.platform-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; border: 0.5px solid var(--blightblue); color: var(--darkblue); padding: 3px 10px; }
@media (max-width: 750px) {
  .platform-row { grid-template-columns: 1fr; }
  .platform-logo-cell { flex-direction: row; justify-content: flex-start; gap: 12px; padding: 16px 20px; border-right: none; border-bottom: 0.5px solid var(--lightmuted); }
  .platform-body { padding: 20px; }
}

/* SEO（広告ページ） */
.seo-section { background: var(--white); border-top: 1px solid var(--border); }
.seo-intro { margin-bottom: 32px; }
.seo-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.seo-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.seo-card { background: var(--light-bg); border: 1px solid var(--blue); padding: 32px 26px; transition: box-shadow 0.25s; }
.seo-card:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.08); }
.seo-card-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 12px; }
.seo-card-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.seo-card-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.85; }
@media (max-width: 750px) { .seo-grid { grid-template-columns: 1fr; gap: 14px; } }

/* CAMPAIGN（広告ページ） */
.campaign { background: var(--light-bg); border-top: 1px solid var(--border); }
.campaign-intro { margin-bottom: 32px; }
.campaign-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.campaign-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.phase-card { background: var(--white); border: 0.5px solid var(--lightmuted); padding: 28px 22px; transition: border-color 0.25s, box-shadow 0.25s; }
.phase-card:hover { border-color: var(--blightblue); box-shadow: 0 4px 16px rgba(16,81,205,0.07); }
.phase-card.is-last { border-color: var(--blue); background: var(--off-white); }
.phase-num { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 14px; }
.phase-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.phase-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.75; }
@media (max-width: 750px) { .phase-grid { grid-template-columns: 1fr; gap: 12px; } }

/* SNS OVERVIEW */
.sns-overview { position: relative; border-top: 1px solid var(--border); background-color: #111827; background-image: url('../images/kv-sns-overview.webp'); background-size: cover; background-position: center; overflow: hidden; }
.sns-overview::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,108,195,0.60) 0%, rgba(0,10,40,0.70) 100%); z-index: 0; }
.sns-overview .section-label, .sns-overview .sns-overview-intro, .sns-overview .feature-grid { position: relative; z-index: 1; }
.sns-overview .section-label { color: rgba(255,255,255,0.55); }
.sns-overview-intro { text-align: center; max-width: 620px; margin: 0 auto 40px; color: var(--white); }
.sns-overview-intro h2 { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.5; }
.sns-overview-intro p { font-size: 17px; font-weight: 500; color: var(--white); line-height: 1.85; margin: 0; }
.sns-overview > p:not(:empty) {
  position: relative; z-index: 1;
  font-size: 17px; font-weight: 500; color: var(--white); line-height: 1.85;
  text-align: center; max-width: 620px; margin: 0 auto 40px;
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { background: var(--white); border: 1px solid var(--darkblue); padding: 28px 22px; transition: box-shadow 0.25s; }
.feature-card:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.08); }
.feature-num { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 14px; }
.feature-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.45; }
.feature-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.8; }
@media (max-width: 750px) { .feature-grid { grid-template-columns: 1fr; gap: 12px; } }

/* SERVICE LINEUP（SNSページ） */
.svc-lineup { background: var(--light-bg); border-top: 1px solid var(--border); }
.svc-lineup-intro { margin-bottom: 32px; }
.svc-lineup-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-lineup-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.svc-rows { display: flex; flex-direction: column; gap: 14px; }
.svc-row { display: grid; grid-template-columns: 200px 1fr; gap: 0; border: 0.5px solid var(--lightmuted); background: var(--white); overflow: hidden; transition: box-shadow 0.25s; }
.svc-row:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.07); }
.svc-row-label { background: linear-gradient(90deg,var(--darkblue), var(--blue) 80%); border-right: 0.5px solid var(--lightmuted); padding: 28px 22px; display: flex; flex-direction: column; justify-content: center; }
.svc-row-num { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--white); margin-bottom: 8px; }
.svc-row-name { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.45; }
.svc-row-body { padding: 28px 28px; }
.svc-row-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.85; margin-bottom: 14px; }
.svc-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.svc-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; border: 0.5px solid var(--blightblue); color: var(--darkblue); padding: 3px 10px; }
@media (max-width: 750px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row-label { border-right: none; border-bottom: 0.5px solid var(--lightmuted); padding: 20px 20px 16px; }
  .svc-row-body { padding: 20px; }
}

/* LANGUAGES（SNSページ） */
.languages { background: var(--light-bg); border-top: 1px solid var(--border); }
.languages-intro { margin-bottom: 32px; }
.languages-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.languages-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.lang-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lang-card { background: var(--white); border: 1px solid var(--lightblue); padding: 24px 18px; text-align: center; transition: border-color 0.25s, box-shadow 0.25s; }
.lang-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(16,81,205,0.08); }
.lang-flag { font-size: 28px; line-height: 1; margin-bottom: 12px; }
.lang-flag:has(img) {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px;
  background: var(--off-white); border: 1px solid var(--lightmuted);
  display: flex; align-items: center; justify-content: center; font-size: inherit;
}
.lang-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lang-flag-placeholder { font-size: 10px; color: var(--lightmuted); letter-spacing: 0.05em; }
.lang-name { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.lang-desc { font-size: 13px; font-weight: 500; color: var(--dark); line-height: 1.75; }
@media (max-width: 750px) { .lang-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* DISCOVER DEEP JAPAN（SNSページ） */
.discover { background: linear-gradient(var(--darkblue), var(--blue) 80%); border-top: 1px solid var(--border); }
.discover .section-label { color: var(--lightblue); }
.discover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.discover-heading { font-size: 24px; font-weight: 700; color: var(--white); line-height: 1.7; margin-bottom: 20px; }
.discover-body { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.95; margin-bottom: 24px; }
.discover-stats { display: flex; gap: 32px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); margin-bottom: 24px; }
.discover-stat-num { font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.discover-stat-label { font-size: 14px; font-weight: 500; color: var(--white); }
.discover-link-wrap { display: inline-flex; align-items: center; gap: 12px; }
.discover-link-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.45); }
.discover-link-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.discover-link { display: inline-block; font-size: 13px; font-weight: 700; color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.5); padding: 10px 0; transition: border-color 0.2s; }
.discover-link:hover { border-bottom-color: var(--white); }
.discover-cards { display: flex; flex-direction: column; gap: 14px; }
.discover-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); padding: 22px 24px; transition: background 0.22s, border-color 0.22s; }
.discover-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.35); }
.discover-card-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--lightblue); margin-bottom: 8px; }
.discover-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.discover-card-text { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.75; }
@media (max-width: 750px) { .discover-grid { grid-template-columns: 1fr; gap: 40px; } }

/* RELATED SERVICE（SNSページ） */
.related-service { background: var(--white); border-top: 1px solid var(--border); }
.related-service-banner {
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
  padding: 28px 36px; border: 0.5px solid var(--lightmuted); background: var(--light-bg);
  transition: box-shadow 0.25s;
}
.related-service-banner:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.06); }
.related-service-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 8px; }
.related-service-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.related-service-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.75; }
.related-service-btn {
  flex-shrink: 0; display: inline-block; text-decoration: none;
  padding: 12px 24px; border: 1px solid var(--darkblue); color: var(--darkblue); border-radius: 30px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  transition: background 0.22s, color 0.22s; white-space: nowrap; background: transparent;
}
.related-service-btn:hover { background: var(--darkblue); color: var(--white); }
@media (max-width: 750px) { .related-service-banner { flex-direction: column; align-items: flex-start; padding: 24px 20px; } }

/* INBOUND 固有セクション */
.numbers-bar--inbound {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.numbers-bar--inbound .number-item {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.numbers-bar--inbound .number-item:last-child { border-right: none; }
.numbers-bar--inbound .number-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--lightblue);
  margin-bottom: 14px;
}
.numbers-bar--inbound .number-figure {
  font-size: 64px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.numbers-bar--inbound .number-figure sub {
  font-size: 20px;
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 4px;
}
.numbers-bar--inbound .number-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
}
@media (max-width: 750px) {
  .numbers-bar--inbound { grid-template-columns: 1fr 1fr; }
  .numbers-bar--inbound .number-item { padding: 32px 16px; }
  .numbers-bar--inbound .number-figure { font-size: 36px; }
  .numbers-bar--inbound .number-figure sub { font-size: 14px; }
  .numbers-bar--inbound .number-desc { font-size: 11px; }
}
.hamon-page-content .numbers-bar--inbound {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  background: var(--white);
}

.background-section {
  position: relative;
  border-top: 1px solid var(--border);
  background-color: #111827;
  background-image: url('../images/kv-background-section.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.background-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,108,195,0.60) 0%, rgba(0,10,40,0.70) 100%); z-index: 0; }
.background-section .section-label, .background-section .bg-intro, .background-section .bg-cards, .background-section .bg-mission { position: relative; z-index: 1; }
.background-section .section-label { color: rgba(255,255,255,0.55); }
.bg-intro { margin-bottom: 32px; color: var(--white); }
.bg-intro h2 { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.5; }
.bg-intro p { font-size: 17px; font-weight: 500; color: var(--white); line-height: 1.85; margin: 0; }
/* wpautop で .bg-intro 外に出た <p> も白文字に */
.background-section > p:not(:empty) {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.85;
  margin: 0 0 32px;
}
.bg-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.bg-card { background: var(--white); border: 1px solid var(--darkblue); padding: 28px 24px; transition: box-shadow 0.25s; }
.bg-card:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.08); }
.bg-card-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 12px; }
.bg-card-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.bg-card-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.bg-mission { background: var(--white); border: 0.5px solid var(--border); padding: 24px 28px; border-left: 3px solid var(--blue); }
.bg-mission p { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.9; }
.bg-mission strong { font-weight: 700; color: var(--darkblue); }
@media (max-width: 750px) { .bg-cards { grid-template-columns: 1fr; gap: 14px; } }

.why-hamon { background: var(--white); border-top: 1px solid var(--border); }
.why-intro { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.why-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1.6; margin-bottom: 16px; }
.why-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reason-card { border: 1px solid var(--blightblue); padding: 28px 22px; transition: border-color 0.25s, box-shadow 0.25s; background: var(--white); }
.reason-card:hover { border-color: var(--lightblue); box-shadow: 0 4px 20px rgba(16,81,205,0.08); }
.reason-num { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 14px; }
.reason-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.5; }
.reason-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.8; }
@media (max-width: 750px) { .reason-grid { grid-template-columns: 1fr; gap: 12px; } }

.capabilities { background: var(--light-bg); border-top: 1px solid var(--border); }
.capabilities-intro { margin-bottom: 32px; }
.capabilities-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.capabilities-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.capabilities-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cap-tag { font-size: 14px; font-weight: 700; color: var(--white); border: 0.5px solid var(--blue); background: var(--darkblue); border-radius: 24px; padding: 8px 18px; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.cap-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--white); }

/* RESEARCH 固有セクション */
.overview { position: relative; border-top: 1px solid var(--border); background-color: #111827; background-size: cover; background-position: center; overflow: hidden; }
.overview::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,108,195,0.60) 0%, rgba(0,10,40,0.70) 100%); z-index: 0; }
.overview .section-label, .overview .overview-intro, .overview .overview-grid { position: relative; z-index: 1; }
.overview .section-label { color: rgba(255,255,255,0.55); }
.overview-intro { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.overview-intro-heading { font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.65; margin-bottom: 14px; }
.overview-intro-text { font-size: 17px; font-weight: 500; color: var(--white); line-height: 1.9; margin-bottom: 18px; }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.overview-card { background: var(--white); border: 1px solid var(--blightblue); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.overview-card:hover { border-color: var(--lightblue); box-shadow: 0 4px 20px rgba(16,81,205,0.08); }
.overview-card-img { width: 100%; aspect-ratio: 16 / 9; background: var(--off-white); background-size: cover; background-position: center; }
.overview-card-body { padding: 28px 28px 32px; }
.overview-card-num { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--lightblue); margin-bottom: 14px; }
.overview-card-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.5; }
.overview-card-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.9; }
@media (max-width: 750px) {
  .overview-grid { grid-template-columns: 1fr; gap: 12px; }
  .overview-card-body { padding: 20px 20px 24px; }
}

.other-svc { background: var(--light-bg); border-top: 1px solid var(--border); }
.other-svc-intro { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.other-svc-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.other-svc-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.other-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.other-svc-card { background: var(--white); border: 0.5px solid var(--blightblue); padding: 24px 22px; transition: border-color 0.25s, box-shadow 0.25s; }
.other-svc-card:hover { border-color: var(--lightblue); box-shadow: 0 4px 16px rgba(16,81,205,0.07); }
.other-svc-card-title { font-size: 17px; font-weight: 700; color: var(--darkblue); margin-bottom: 10px; }
.other-svc-card-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.8; }
@media (max-width: 750px) {
  .other-svc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .other-svc-card { padding: 24px 12px; }
  .other-svc-card-text { font-size: 13px; }
}

/* ══════════════════════════════════════
   MAX-WIDTH コンテナ（全セクション共通）
══════════════════════════════════════ */
.section > *,
.page-hero-inner,
.breadcrumb,
.solution-hero-inner,
.solution-hero-breadcrumb,
.numbers-bar,
.cta-section > *,
footer > * {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* セクション自体はフル幅、内部要素を制限 */
.section,
.page-hero,
.cta-section,
.numbers-bar,
footer {
  width: 100%;
}


/* ヘッダー内部のmax-width */
header {
  padding-left: max(40px, calc((100% - 1600px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1600px) / 2 + 40px));
}
@media (max-width: 750px) {
  header { padding-left: 20px; padding-right: 20px; }
}

/* PAGE KV内部のmax-width */
.page-kv,
.contact-kv,
.privacy-kv {
  padding-left: max(56px, calc((100% - 1600px) / 2));
  padding-right: max(56px, calc((100% - 1600px) / 2));
}
@media (max-width: 750px) {
  .page-kv,
  .contact-kv,
  .privacy-kv { padding-left: 20px; padding-right: 20px; }
}

/* ══════════════════════════════════════
   SOLUTION PAGES — ソリューションページ共通CSS
══════════════════════════════════════ */

/* SOLUTION HERO */
.solution-hero { border-bottom: 1px solid var(--border); }
.solution-hero-breadcrumb { padding: 20px 56px 0; font-size: 11px; color: var(--dark); }
.solution-hero-breadcrumb a { color: var(--dark); text-decoration: none; }
.solution-hero-breadcrumb a:hover { color: var(--blue); }
.solution-hero-breadcrumb span { margin: 0 6px; }
.solution-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 48px 56px 64px; }
.solution-hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 10px; }
.solution-hero-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.solution-hero-cat { display: inline-block; font-size: 11px; font-weight: 700; color: var(--white); padding: 3px 12px; margin: 0; background: var(--darkblue); }
.solution-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; }
.solution-hero-stat { background: var(--blue); border: 0.5px solid var(--lightmuted); padding: 12px 14px; text-align: center; }
.solution-hero-stat-value { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.solution-hero-stat-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); }
.solution-hero h1 { font-size: 34px; font-weight: 700; line-height: 1.45; color: var(--dark); margin-bottom: 22px; }
.solution-hero-body { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 2; margin-bottom: 28px; }
.solution-hero-body a { color: var(--blue); text-decoration: none; }
.solution-hero-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border: 1px solid var(--lightmuted); font-size: 13px; font-weight: 700; color: var(--dark); text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.solution-hero-link:hover { border-color: var(--dark); background: var(--off-white); }
.solution-hero-kv { position: relative; aspect-ratio: 4 / 3; background: var(--off-white); overflow: hidden; }
.solution-hero-kv img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 130%;
  top: -15%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
}
@media (max-width: 750px) {
  .solution-hero-breadcrumb { padding: 16px 20px 0; }
  .solution-hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 20px 48px; }
  .solution-hero-kv { order: -1; aspect-ratio: 5 / 3; }
  .solution-hero h1 { font-size: 26px; }
}

/* FEATURE SECTION */
.feature-section { background: var(--light-bg); border-top: 1px solid var(--border); }
.feature-intro { margin-bottom: 32px; }
.feature-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-intro p { font-size: 17px; font-weight: 500; color: var(--dark); }
.feature-hero-img {
  width: 100%; aspect-ratio: 1450 / 600; background: var(--off-white);
  border: 0.5px solid var(--lightmuted); overflow: hidden; margin-bottom: 32px; position: relative;
}
.feature-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-hero-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.feature-hero-img-placeholder .ph-label { font-size: 10px; letter-spacing: 0.18em; color: var(--lightmuted); }
.feature-hero-img-placeholder .ph-size { font-size: 11px; font-weight: 700; color: #ccc; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.feature-card { background: var(--white); border: 1px solid var(--blue); padding: 24px 20px; transition: box-shadow 0.25s; }
.feature-card:hover { box-shadow: 0 4px 20px rgba(0,47,136,0.08); }
.feature-card-num { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--lightblue); margin-bottom: 12px; }
.feature-card-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.45; }
.feature-card-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.85; }
@media (max-width: 750px) {
  .feature-hero-img { aspect-ratio: 16 / 9; margin-bottom: 20px; }
  .feature-cards { grid-template-columns: 1fr; gap: 12px; }
}

/* WORKS / PUBS SLIDER */
.media-section { border-top: 1px solid var(--border); }
.media-intro { margin-bottom: 24px; }
.media-intro h2 { font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.media-intro p { font-size: 15px; font-weight: 500; color: var(--dark); }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.media-card { border: 0.5px solid var(--lightmuted); background: var(--off-white); padding: 20px 18px; display: flex; flex-direction: column; gap: 6px; transition: border-color 0.22s, box-shadow 0.22s; }
.media-card:hover { border-color: var(--blightblue); box-shadow: 0 2px 12px rgba(16,81,205,0.06); }
.media-card-outlet { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--lightblue); }
.media-card-title { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.5; }
.media-card-date { font-size: 11px; color: var(--muted); }
@media (max-width: 750px) { .media-grid { grid-template-columns: 1fr; gap: 10px; } }
.pubs-wrap { background: var(--white); border: 0.5px solid var(--lightmuted); padding: 24px 28px; margin-top: 32px; }
.pubs-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.12em; color: var(--dark); margin-bottom: 18px; }
.pubs-slider-outer { overflow: hidden; touch-action: pan-y; }
.pubs-track {
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform;
  touch-action: pan-y;
}
.pubs-card { display: flex; flex-direction: column; gap: 8px; }
.pubs-card-pub { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--dark); flex-shrink: 0; }
.pubs-card-img { background: var(--off-white); border: 0.5px solid var(--lightmuted); overflow: hidden; }
.pubs-card-img img { display: block; max-width: 100%; }
.pubs-card-img-label { font-size: 9px; color: #ccc; }
.pubs-card-img-title { font-size: 11px; font-weight: 700; color: var(--muted); text-align: center; line-height: 1.5; }
.pubs-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 8px; }
.pubs-arrow { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--lightmuted); background: var(--white); font-size: 16px; color: var(--dark); cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.pubs-arrow:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.pubs-arrow.disabled { opacity: 0.25; pointer-events: none; }
.pubs-dots { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; justify-content: center; }
.pubs-dot { width: 18px; height: 4px; background: var(--lightmuted); cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; padding: 0; }
.pubs-dot.active { background: var(--dark); }
@media (max-width: 750px) {
  .pubs-wrap { padding: 20px; }
  .pubs-arrow { width: 48px; height: 48px; border-radius: 50%; background: var(--darkblue); border: none; color: var(--white); font-size: 20px; }
  .pubs-arrow:hover { background: var(--blue); border-color: transparent; }
  .pubs-dot { width: 8px; height: 8px; border-radius: 50%; }
  .pubs-dot.active { background: var(--darkblue); transform: scale(1.3); }
}

/* PROOF LIVE FIELD */
.proof-live {
  background: linear-gradient(var(--darkblue), var(--blue) 80%);
  border-top: 1px solid var(--border);
  color: var(--white);
}
.proof-live .section-label { color: var(--lightblue); }
.proof-live-intro { text-align: center; max-width: 580px; margin: 0 auto 44px; }
.proof-live-intro h2 { font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.65; margin-bottom: 16px; }
.proof-live-intro p { font-size: 17px; font-weight: 500; color: inherit; line-height: 1.9; }
/* wpautop で intro 外に出た <p> も白にする */
.proof-live > p:not(.proof-live-card-text) { color: var(--white); }
/* モックアップ準拠: intro本文の左右余白を固定 */
.proof-live-intro p,
.proof-live > p:not(.proof-live-card-text) {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.proof-live-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof-live-card {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 26px 22px;
  color: var(--dark);
  transition: background 0.22s, border-color 0.22s;
}
.proof-live-card-num { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--lightblue); margin-bottom: 12px; }
.proof-live-card-title { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 12px; line-height: 1.45; }
.proof-live-card-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.85; }
@media (max-width: 750px) { .proof-live-cards { grid-template-columns: 1fr; gap: 12px; } }

/* FOR YOUR BUSINESS */
.for-business { border-top: 1px solid var(--border); }
.for-business-intro { margin-bottom: 32px; }
.for-business-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.55; }
.for-business-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.usecase-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.usecase-row { display: grid; grid-template-columns: 180px 1fr; gap: 0; border: 0.5px solid var(--lightmuted); background: var(--white); overflow: hidden; transition: box-shadow 0.22s; }
.usecase-row:hover { box-shadow: 0 4px 16px rgba(0,47,136,0.06); }
.usecase-row-label { background: linear-gradient(90deg, var(--darkblue), var(--blue) 80%); border-right: 0.5px solid var(--lightmuted); padding: 24px 18px; display: flex; flex-direction: column; justify-content: center; }
.usecase-row-hint { font-size: 14px; font-weight: 700; color: var(--lightblue); margin-bottom: 6px; }
.usecase-row-name { font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.45; }
.usecase-row-body { padding: 24px 26px; }
.usecase-row-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.9; }
@media (max-width: 750px) {
  .usecase-row { grid-template-columns: 1fr; }
  .usecase-row-label { border-right: none; border-bottom: 0.5px solid var(--lightmuted); padding: 18px 20px 14px; }
  .usecase-row-body { padding: 18px 20px; }
}

/* OTHER GROUPS */
.other-groups { background: var(--light-bg); border-top: 1px solid var(--border); }
.other-groups h2 { font-size: 17px; font-weight: 700; color: var(--dark); letter-spacing: 0.08em; margin-bottom: 18px; }
.group-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.group-link-card { display: flex; align-items: center; justify-content: space-between; padding: 18px 40px; border: 0.5px solid var(--lightmuted); background: var(--darkblue); text-decoration: none; transition: .2s; border-radius: 40px; }
.group-link-card:hover { border-color: var(--blightblue); box-shadow: 0 2px 12px rgba(16,81,205,0.07); background: var(--blue); }
.group-link-num { font-size: 10px; font-weight: 700; color: var(--lightblue); margin-bottom: 4px; }
.group-link-name { font-size: 14px; font-weight: 700; color: var(--white); }
.group-link-arrow { font-size: 14px; color: var(--lightmuted); flex-shrink: 0; }
@media (max-width: 750px) { .group-links { grid-template-columns: 1fr; } }

/* COLLABORATION（ソリューションページ） */
.collab { background: var(--light-bg); border-top: 1px solid var(--border); }
.collab-intro { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.collab-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.collab-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.collab-grid { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; align-items: stretch; }
.collab-col { background: var(--white); border: 1px solid var(--blue); padding: 28px 24px; }
.collab-col-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--lightblue); margin-bottom: 16px; }
.collab-col-name { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.collab-items { display: flex; flex-direction: column; gap: 10px; }
.collab-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.6; }
.collab-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 6px; }
.collab-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 0 4px; }
.collab-x { font-size: 24px; font-weight: 700; color: var(--blue); }
.collab-center-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: var(--blue); }
@media (max-width: 750px) {
  .collab-grid { grid-template-columns: 1fr; gap: 0; }
  .collab-center { flex-direction: row; padding: 12px 20px; background: var(--light-bg); }
}

.solution-hero-kv-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.solution-hero-kv-placeholder span { font-size: 11px; color: var(--lightmuted); letter-spacing: 0.08em; }

/* ── Top page: inbound text SP padding ── */
@media (max-width: 750px) {
  .inbound-text { padding-bottom: 28px; }
}
.hamon-page-content .inbound {
  color: var(--white);
}
.hamon-page-content .inbound .section-eyebrow,
.hamon-page-content .inbound .section-heading,
.hamon-page-content .inbound-section-heading,
.hamon-page-content .inbound .section-body,
.hamon-page-content .inbound-section-body,
.hamon-page-content .inbound .stat-num,
.hamon-page-content .inbound .stat-label {
  color: var(--white);
}
.hamon-page-content .inbound .inbound-section-body,
.hamon-page-content .inbound .section-body {
  display: block;
  margin-top: 20px;
}
.hamon-page-content .inbound > .inbound-grid > .inbound-text > p:not(:empty) {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.95;
  margin-top: 20px;
}

/* ── Service: number count-up figures ── */
.number-figure { text-align: center; padding: 0 24px; }
.number-figure sub { font-size: 28px; font-weight: 700; bottom: 0; }
.number-desc { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.85; }
.panel-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.15); }
.panel-item-left { text-align: left; }
.panel-item-right { text-align: left; }
.panel-note-text { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.85; }

/* ── Service research: numbers bar（モックアップ準拠・白背景2カラム） ── */
.numbers-bar--research {
  background: var(--white);
  display: grid;
  grid-template-columns: 30% 70%;
  border-bottom: 1px solid var(--border);
  padding: 0 0 40px;
}
.numbers-bar--research .number-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.numbers-bar--research .number-item:last-child { border-right: none; }
.numbers-bar--research .number-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--lightblue);
  margin-bottom: 14px;
}
.numbers-bar--research .number-figure {
  font-size: 64px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.numbers-bar--research .number-figure sub {
  font-size: 20px;
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 4px;
}
.numbers-bar--research .number-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
}
.numbers-bar--research .panel-item {
  padding: 0;
  display: flex;
  align-items: stretch;
  border-right: none;
}
.numbers-bar--research .panel-item-left {
  padding: 26px 36px;
  text-align: center;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.numbers-bar--research .panel-item-right {
  background: var(--darkblue);
  flex: 1;
  display: flex;
  align-items: center;
  padding: 32px 28px;
}
@media (max-width: 1000px) {
  .numbers-bar--research .number-figure { font-size: 36px; }
  .numbers-bar--research .number-figure sub { font-size: 12px; }
}
@media (max-width: 750px) {
  .numbers-bar--research {
    grid-template-columns: 1fr;
    padding: 0 0 24px;
  }
  .numbers-bar--research .number-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
  }
  .numbers-bar--research .number-item:last-child { border-bottom: none; }
  .numbers-bar--research .panel-item { flex-direction: column; }
  .numbers-bar--research .panel-item-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
  }
  .numbers-bar--research .panel-item-right { padding: 24px 20px; }
  .numbers-bar--research .panel-note-text { font-size: 13px; }
}

.hamon-page-content .numbers-bar--research {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 40px;
  background: var(--white);
}
.hamon-page-content .numbers-bar--research .panel-item-right p {
  margin: 0;
}
.proof-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 16px; }
.discover-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--lightblue); margin-bottom: 16px; }
.svc-row-link { display: inline-block; font-size: 13px; font-weight: 700; color: var(--darkblue); text-decoration: none; border-bottom: 1px solid var(--darkblue); padding: 8px 0; margin-top: 4px; transition: border-color 0.2s, color 0.2s; }
.svc-row-link:hover { border-bottom-color: var(--blue); color: var(--blue); }
.flow-step-body { display: block; }

/* ── Service inbound: voices ── */
.voices { background: var(--light-bg); border-top: 1px solid var(--border); }
.voices-intro { margin-bottom: 32px; }
.voices-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.voices-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.voice-card { border: 0.5px solid var(--lightmuted); background: var(--white); padding: 24px 22px; transition: border-color 0.25s, box-shadow 0.25s; }
.voice-card:hover { border-color: var(--blightblue); box-shadow: 0 4px 16px rgba(16,81,205,0.07); }
.voice-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.voice-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--off-white); border: 1px solid var(--lightmuted); }
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voice-meta { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--dark); }
.voice-meta-sub { font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 2px; }
.voice-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.9; }
@media (max-width: 750px) { .voices-grid { grid-template-columns: 1fr; gap: 12px; } }

/* ── Service research: industries carousel ── */
.industries { background: var(--light-bg); border-top: 1px solid var(--border); }
.industries-intro { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.industries-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.industries-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.industries-carousel-wrap { position: relative; }
.industries-carousel-outer { overflow: hidden; width: 100%; }
.industries-track { display: flex; gap: 14px; transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; touch-action: pan-y; }
.industry-card { flex: 0 0 calc((100% - 28px) / 3); min-width: 0; box-sizing: border-box; background: var(--white); border: 0.5px solid var(--lightmuted); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.industry-card:hover { border-color: var(--blightblue); box-shadow: 0 4px 16px rgba(16,81,205,0.07); }
.industry-card-img { width: 100%; aspect-ratio: 16 / 9; background: var(--off-white); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.industry-card-img-label { font-size: 10px; letter-spacing: 0.1em; color: #ccc; }
.industry-card-body { padding: 18px 20px 22px; }
.industry-card-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.industry-card-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.8; }
.ind-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.ind-arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--blue); border: none; color: var(--white); font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, opacity 0.2s; z-index: 10; line-height: 1; flex-shrink: 0; }
.ind-arrow:hover { background: var(--darkblue); }
.ind-arrow.disabled { opacity: 0.2; pointer-events: none; }
.ind-prev { left: -22px; }
.ind-next { right: -22px; }
.ind-dots { display: flex; justify-content: center; gap: 8px; }
.ind-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lightmuted); cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; padding: 0; }
.ind-dot.active { background: var(--blue); transform: scale(1.3); }
.industries-note { margin-top: 28px; text-align: center; font-size: 12px; color: var(--dark); }
@media (max-width: 750px) {
  .industries { overflow: hidden; }
  .industries-carousel-outer { overflow: visible; margin-left: -20px; margin-right: -20px; }
  .industries-track { padding-left: 20px; padding-right: 20px; gap: 12px; }
  .industry-card { flex: 0 0 82%; width: 82%; }
  .ind-arrow { position: static; transform: none; width: 34px; height: 34px; font-size: 15px; background: var(--blue); }
  .ind-dot { width: 6px; height: 6px; }
}

/* ── Solution: origin story ── */
.origin-story { background: linear-gradient(135deg, var(--darkblue), var(--blue) 80%); border-top: none; }
.origin-story .section-label { color: var(--lightblue); }
.origin-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.origin-text h2 { font-size: 26px; font-weight: 700; color: var(--white); line-height: 1.55; margin-bottom: 24px; }
.origin-lead { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.95; margin-bottom: 16px; }
.origin-body { font-size: 13px; color: var(--white); line-height: 1.95; }
.origin-photo { position: relative; aspect-ratio: 4 / 3; background: var(--lightmuted); overflow: hidden; }
.origin-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.origin-photo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.origin-photo-label { font-size: 9px; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); }
.origin-photo-sub { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); text-align: center; line-height: 1.5; }
@media (max-width: 750px) {
  .origin-inner { grid-template-columns: 1fr; gap: 28px; }
  .origin-text h2 { font-size: 20px; }
  .origin-photo { order: -1; }
}

/* ── Solution goodlife: feature card images ── */
.feature-card-img-area { width: 100%; aspect-ratio: 4 / 3; background: var(--off-white); border: 0.5px solid var(--lightmuted); margin-bottom: 18px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.feature-card-img-area img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-card-img-label { font-size: 9px; letter-spacing: 0.1em; color: var(--lightmuted); }
.feature-card-img-sub { font-size: 10px; color: #ccc; }

/* ── 商品スライダー（グッドライフ・ウインナー等・3列・4:3 cover） ── */
.pubs-wrap--products .pubs-track,
.media-section .pubs-track { align-items: flex-start; }
.pubs-wrap--products .pubs-card,
.media-section .pubs-track > .pubs-card,
#wiener-pubs-track > .pubs-card,
#goodlife-pubs-track > .pubs-card,
#sankaikou-pubs-track > .pubs-card,
#ukokkei-pubs-track > .pubs-card {
  flex: 0 0 calc((100% - 32px) / 3);
}
.pubs-wrap--products .pubs-card-img,
.media-section .pubs-card-img,
#wiener-pubs-track .pubs-card-img,
#goodlife-pubs-track .pubs-card-img,
#sankaikou-pubs-track .pubs-card-img,
#ukokkei-pubs-track .pubs-card-img {
  flex: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  display: block;
  overflow: hidden;
}
.pubs-wrap--products .pubs-card-img img,
.media-section .pubs-card-img img,
#wiener-pubs-track .pubs-card-img img,
#goodlife-pubs-track .pubs-card-img img,
#sankaikou-pubs-track .pubs-card-img img,
#ukokkei-pubs-track .pubs-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* ── Editors: 制作実績スライダー（モックアップ準拠・4列・画像は自然比率） ── */
.pubs-wrap--portfolio,
.pubs-wrap:has(#pubs-track) {
  margin-top: 0;
}
.pubs-wrap--portfolio .pubs-eyebrow,
.pubs-wrap:has(#pubs-track) .pubs-eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--lightblue);
}
.pubs-wrap--portfolio .pubs-track,
.pubs-wrap:has(#pubs-track) .pubs-track {
  align-items: stretch;
}
.pubs-wrap--portfolio .pubs-card,
.pubs-wrap:has(#pubs-track) .pubs-card,
#pubs-track > .pubs-card {
  flex: 0 0 calc((100% - 48px) / 4);
}
.pubs-wrap--portfolio .pubs-card--wide,
.pubs-wrap:has(#pubs-track) .pubs-card--wide,
#pubs-track > .pubs-card--wide {
  flex: 0 0 calc((100% - 48px) / 4 * 2 + 16px);
}
.pubs-wrap--portfolio .pubs-card-img,
.pubs-wrap:has(#pubs-track) .pubs-card-img,
#pubs-track .pubs-card-img {
  flex: 1;
  width: 100%;
  aspect-ratio: unset;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: static;
  gap: 4px;
}
.pubs-wrap--portfolio .pubs-card-img img,
.pubs-wrap:has(#pubs-track) .pubs-card-img img,
#pubs-track .pubs-card-img img {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
}
.pubs-wrap--portfolio .pubs-card--wide .pubs-card-img,
.pubs-wrap:has(#pubs-track) .pubs-card--wide .pubs-card-img {
  flex: 1;
}

@media (max-width: 750px) {
  .pubs-wrap--products .pubs-card,
  .media-section .pubs-track > .pubs-card,
  #wiener-pubs-track > .pubs-card,
  #goodlife-pubs-track > .pubs-card,
  #sankaikou-pubs-track > .pubs-card,
  #ukokkei-pubs-track > .pubs-card {
    flex: 0 0 72%;
  }
  .pubs-wrap--products .pubs-card-img,
  .media-section .pubs-card-img,
  #wiener-pubs-track .pubs-card-img,
  #goodlife-pubs-track .pubs-card-img,
  #sankaikou-pubs-track .pubs-card-img,
  #ukokkei-pubs-track .pubs-card-img {
    height: 200px;
    aspect-ratio: unset;
  }
  .pubs-wrap--portfolio .pubs-card,
  .pubs-wrap:has(#pubs-track) .pubs-card,
  #pubs-track > .pubs-card {
    flex: 0 0 72%;
  }
  .pubs-wrap--portfolio .pubs-card--wide,
  .pubs-wrap:has(#pubs-track) .pubs-card--wide,
  #pubs-track > .pubs-card--wide {
    flex: 0 0 88%;
  }
  .pubs-wrap--portfolio .pubs-card-img,
  .pubs-wrap:has(#pubs-track) .pubs-card-img,
  #pubs-track .pubs-card-img {
    height: 160px;
    aspect-ratio: unset;
    overflow: hidden;
  }
  .pubs-wrap--portfolio .pubs-card--wide .pubs-card-img,
  .pubs-wrap:has(#pubs-track) .pubs-card--wide .pubs-card-img {
    height: 160px;
  }
}

/* 旧テンプレート互換 */
.pubs-track--cols-4 .pubs-card { flex: 0 0 calc((100% - 48px) / 4); }
.pubs-track--cols-4 .pubs-card--wide { flex: 0 0 calc((100% - 48px) / 4 * 2 + 16px); }
@media (max-width: 750px) {
  .pubs-track--cols-4 .pubs-card { flex: 0 0 72%; }
  .pubs-track--cols-4 .pubs-card--wide { flex: 0 0 88%; }
}

/* ══════════════════════════════════════
   WP固定ページ本文（the_content）用
   ブロックエディタ・wpautop 出力でもテーマレイアウトを維持
══════════════════════════════════════ */
.hamon-page-content {
  width: 100%;
}

.hamon-page-content .wp-block-html {
  display: contents;
}

/* 最上位の wpautop <p> ラップを無効化 */
.hamon-page-content > p {
  display: contents;
  margin: 0;
  padding: 0;
}

/* wpautop で <p> がブロックを包んだ場合、親グリッドに子要素を直接参加させる */
.hamon-page-content .section > p,
.hamon-page-content .feature-section > p,
.hamon-page-content .feature-cards > p,
.hamon-page-content .proof-live > p,
.hamon-page-content .proof-live-cards > p,
.hamon-page-content .collab > p,
.hamon-page-content .collab-grid > p,
.hamon-page-content .origin-story > p,
.hamon-page-content .origin-inner > p,
.hamon-page-content .for-business > p,
.hamon-page-content .usecase-rows > p,
.hamon-page-content .background-section .bg-cards > p,
.hamon-page-content .background-section .bg-mission > p {
  display: contents;
  margin: 0;
  padding: 0;
}

.hamon-page-content > p:empty,
.hamon-page-content p:empty {
  display: none;
  margin: 0;
}

/* ブロックの float / align リセット */
.hamon-page-content .alignleft,
.hamon-page-content .alignright,
.hamon-page-content .aligncenter,
.hamon-page-content .alignwide,
.hamon-page-content .alignfull,
.hamon-page-content .wp-block-image.alignleft,
.hamon-page-content .wp-block-image.alignright {
  float: none;
  margin-left: 0;
  margin-right: 0;
  text-align: inherit;
  max-width: none;
}

.hamon-page-content .section,
.hamon-page-content section.section {
  width: 100%;
  box-sizing: border-box;
}

/* ブロック要素のみ max-width（<p> ラッパーには適用しない） */
.hamon-page-content .section > :not(p),
.hamon-page-content .cta-section > :not(p) {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.hamon-page-content .cta-section {
  width: 100%;
  box-sizing: border-box;
}

/* カード内の wpautop <p> 余白を除去 */
.hamon-page-content .feature-card p,
.hamon-page-content .proof-live-card p,
.hamon-page-content .collab-col p,
.hamon-page-content .feature-intro p,
.hamon-page-content .proof-live-intro p,
.hamon-page-content .collab-intro p,
.hamon-page-content .origin-text p {
  margin: 0;
}

/* ORIGIN セクション（固定ページ本文） */
.hamon-page-content .background-section {
  color: var(--white);
}
.hamon-page-content .background-section .section-label {
  color: rgba(255, 255, 255, 0.55);
}
.hamon-page-content .background-section .bg-intro,
.hamon-page-content .background-section .bg-intro h2,
.hamon-page-content .background-section .bg-intro p {
  color: var(--white);
}
.hamon-page-content .background-section .bg-intro > p {
  display: block;
  margin: 0;
}
.hamon-page-content .background-section > p:not(:empty) {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.85;
  margin: 0 0 32px;
}
.hamon-page-content .background-section .bg-mission,
.hamon-page-content .background-section .bg-mission p,
.hamon-page-content .background-section .bg-card,
.hamon-page-content .background-section .bg-card p {
  color: var(--dark);
}
.hamon-page-content .sns-overview {
  color: var(--white);
}
.hamon-page-content .sns-overview .section-label {
  color: rgba(255, 255, 255, 0.55);
}
.hamon-page-content .sns-overview .sns-overview-intro,
.hamon-page-content .sns-overview .sns-overview-intro h2,
.hamon-page-content .sns-overview .sns-overview-intro p {
  color: var(--white);
}
.hamon-page-content .sns-overview .sns-overview-intro > p {
  display: block;
  margin: 0;
}
.hamon-page-content .sns-overview .feature-card,
.hamon-page-content .sns-overview .feature-card p,
.hamon-page-content .sns-overview .feature-title,
.hamon-page-content .sns-overview .feature-text {
  color: var(--dark);
}
.hamon-page-content .sns-overview > p:not(:empty) {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.85;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}
.hamon-page-content .differentiator {
  color: rgba(255, 255, 255, 0.8);
}
.hamon-page-content .differentiator .section-label {
  color: rgba(255, 255, 255, 0.55);
}
.hamon-page-content .differentiator .diff-intro,
.hamon-page-content .differentiator .diff-intro h2,
.hamon-page-content .differentiator .diff-intro p,
.hamon-page-content .differentiator .diff-intro-text {
  color: rgba(255, 255, 255, 0.8);
}
.hamon-page-content .differentiator .diff-intro h2 {
  color: var(--white);
}
.hamon-page-content .differentiator .diff-intro > p,
.hamon-page-content .differentiator .diff-intro-text {
  display: block;
  margin: 0;
}
.hamon-page-content .differentiator > p:not(:empty) {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.hamon-page-content .differentiator .diff-step,
.hamon-page-content .differentiator .diff-step-title,
.hamon-page-content .differentiator .diff-step-text {
  color: var(--dark);
}
.hamon-page-content .differentiator .diff-step.is-last,
.hamon-page-content .differentiator .diff-step.is-last .diff-step-title {
  color: var(--white);
}
.hamon-page-content .differentiator .diff-step.is-last .diff-step-text {
  color: rgba(255, 255, 255, 0.75);
}
.hamon-page-content .proof {
  color: var(--white);
}
.hamon-page-content .proof .proof-heading,
.hamon-page-content .proof .proof-body,
.hamon-page-content .proof .proof-link-btn {
  color: var(--white);
}
.hamon-page-content .proof > .proof-grid > div > p:not(:empty) {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.95;
  margin: 0 0 28px;
}
.hamon-page-content .origin-story {
  color: var(--white);
}
.hamon-page-content .origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 750px) {
  .hamon-page-content .origin-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hamon-page-content .origin-photo {
    order: -1;
  }
}

/* スライダー内の wpautop <p> ラップを解除（画像の縦横比崩れ防止） */
.hamon-page-content .pubs-wrap p,
.hamon-page-content .pubs-card p,
.hamon-page-content .pubs-card-img p {
  display: contents;
  margin: 0;
  padding: 0;
}

/* 固定ページ本文：PROOF セクション（intro の p がラップで外に出ても白を維持） */
.hamon-page-content .proof-live {
  color: var(--white);
}
.hamon-page-content .proof-live .proof-live-intro,
.hamon-page-content .proof-live .proof-live-intro p,
.hamon-page-content .proof-live > p {
  color: var(--white);
}
.hamon-page-content .proof-live .proof-live-intro p,
.hamon-page-content .proof-live > p:not(.proof-live-card-text) {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hamon-page-content .proof-live .proof-live-card {
  color: var(--dark);
}

.hamon-page-content .feature-card .feature-card-text,
.hamon-page-content .proof-live-card .proof-live-card-text {
  display: block;
}

/* グリッドはテーマ本体と同じクラスに任せる（feature-section 自体は grid にしない） */
.hamon-page-content .feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.hamon-page-content .proof-live-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hamon-page-content .collab-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 1600px;
}

.hamon-page-content .wp-block-columns,
.hamon-page-content .hamon-block-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.hamon-page-content .wp-block-columns > .wp-block-column,
.hamon-page-content .hamon-block-columns > .wp-block-column {
  width: auto;
  flex: none;
  margin: 0;
}

.hamon-page-content > *:first-child {
  margin-top: 0;
}

@media (max-width: 750px) {
  .hamon-page-content .feature-cards,
  .hamon-page-content .proof-live-cards,
  .hamon-page-content .wp-block-columns,
  .hamon-page-content .hamon-block-columns {
    grid-template-columns: 1fr;
  }
  .hamon-page-content .collab-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ INSIGHTS / COLUMN 投稿シングル ══ */
.post-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 64px 56px 88px;
}
@media (max-width: 750px) {
  .post-section { padding: 40px 20px 64px; }
}
.post-inner {
  max-width: 800px;
  margin: 0 auto;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.post-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: var(--darkblue);
  color: var(--white);
  border-radius: 3px;
}
.post-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.post-breadcrumb {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
}
.post-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.post-breadcrumb a:hover {
  color: var(--darkblue);
}
.post-eyecatch {
  width: 100%;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}
.post-eyecatch img {
  display: block;
  width: 100%;
  height: auto;
}
.post-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--darkblue);
}
@media (max-width: 750px) {
  .post-title { font-size: 20px; }
}
.post-body {
  color: var(--dark);
}
.post-body img {
  width: 100%;
  height: auto;
}
.post-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.55;
  margin: 48px 0 20px;
  padding: 16px 20px;
  background: var(--light-bg);
  border-left: 4px solid var(--darkblue);
}
@media (max-width: 750px) {
  .post-body h2 { font-size: 18px; }
}
.post-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lightmuted);
}
@media (max-width: 750px) {
  .post-body h3 { font-size: 16px; }
}
.post-body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #333;
  margin-bottom: 20px;
}
.post-body strong {
  font-weight: 700;
  color: var(--dark);
}
.post-body ol {
  margin: 16px 0 20px 1.4em;
}
.post-body ol li {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 6px;
}
.post-body ol li a {
  color: var(--darkblue);
  text-decoration: underline;
}
.post-body ul {
  margin: 16px 0 20px 1.4em;
}
.post-body ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 6px;
}
.post-body .post-note,
.post-body blockquote {
  margin: 28px 0;
  padding: 18px 20px;
  background: #f0f4ff;
  border-left: 3px solid var(--lightblue);
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  line-height: 1.9;
  color: #444;
}
.post-actions {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--lightmuted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.post-back-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.post-back-link:hover {
  color: var(--lightblue);
  border-color: var(--lightblue);
}
.post-share {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.post-share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0.5px solid var(--lightmuted);
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s;
}
.post-share-btn:hover {
  background: var(--lightmuted);
}
.post-toc {
  margin: 40px 0 48px;
  padding: 24px 28px;
  background: var(--light-bg);
  border-left: 4px solid var(--darkblue);
  border-radius: 0 6px 6px 0;
}
.post-toc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--darkblue);
  margin-bottom: 16px;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.toc-item {
  border-bottom: 0.5px solid #e8e8e8;
}
.toc-item:last-child {
  border-bottom: none;
}
.toc-item a {
  display: block;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.2s, padding-left 0.15s;
}
.toc-item a:hover {
  color: var(--darkblue);
  padding-left: 4px;
}
.toc-item.toc-h3 a {
  padding-left: 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.toc-item.toc-h3 a::before {
  content: '– ';
}
.toc-item.toc-h3 a:hover {
  color: var(--blue);
  padding-left: 18px;
}

/* ══ INSIGHTS / COLUMN 投稿一覧 ══ */
.archive-section {
  padding: 72px 56px 88px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 750px) {
  .archive-section { padding: 48px 20px 64px; }
}
.archive-inner {
  max-width: 860px;
  margin: 0 auto;
}
.archive-count {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--lightmuted);
}
.archive-count strong {
  font-weight: 700;
  color: var(--dark);
}
.archive-empty {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  padding: 48px 0;
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.post-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 0.5px solid var(--lightmuted);
  transition: background 0.2s;
}
.post-card:first-child {
  border-top: 0.5px solid var(--lightmuted);
}
.post-card:hover {
  background: var(--light-bg);
}
@media (max-width: 750px) {
  .post-card { grid-template-columns: 120px 1fr; }
}
.post-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark);
  flex-shrink: 0;
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-thumb img {
  transform: scale(1.04);
}
.post-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #444;
  gap: 6px;
}
.post-card-thumb-placeholder-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
}
.post-card-thumb-placeholder-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
.post-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 750px) {
  .post-card-body { padding: 16px; }
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.post-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 9px;
  border-radius: 3px;
  color: var(--white);
  background: var(--darkblue);
}
.post-card-date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.post-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 10px;
  transition: color 0.2s;
}
@media (max-width: 750px) {
  .post-card-title { font-size: 14px; }
}
.post-card:hover .post-card-title {
  color: var(--darkblue);
}
.post-card-excerpt {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.85;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 750px) {
  .post-card-excerpt { display: none; }
}
.post-card-arrow {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--darkblue);
  letter-spacing: 0.06em;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  color: var(--dark);
  border: none;
  background: transparent;
}
.page-btn:hover {
  background: var(--light-bg);
}
.page-btn.current {
  background: var(--darkblue);
  color: var(--white);
}
.page-btn.dots {
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}
.page-btn.prev,
.page-btn.next {
  width: auto;
  padding: 0 14px;
  border: 0.5px solid var(--lightmuted);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.page-btn.prev:hover,
.page-btn.next:hover {
  border-color: var(--darkblue);
  color: var(--darkblue);
}

/* ══ CONCEPT ページ ══ */
.concept-kv {
  position: relative;
  padding-top: var(--header-h);
  background-color: #0a1627;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.concept-kv-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/kv-overview.webp');
  background-size: cover;
  background-position: center;
}
.concept-kv-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 20, 80, 0.65) 0%, rgba(0, 10, 50, 0.72) 100%);
}
.concept-kv-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.concept-breadcrumb {
  padding: 14px 56px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.concept-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.concept-breadcrumb a:hover {
  color: var(--dark);
}
.concept-breadcrumb span {
  margin: 0 6px;
}
.concept-kv-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lightblue);
  margin-bottom: 20px;
}
.concept-kv h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.concept-kv-body {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 32px;
}
.concept-kv-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.concept-kv-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.85);
}
.concept-kv-btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}
.concept-kv-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.concept-kv-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 20px;
  backdrop-filter: blur(4px);
  transition: background 0.25s;
  text-decoration: none;
  color: inherit;
}
.concept-kv-pillar:hover {
  background: rgba(255, 255, 255, 0.12);
}
.concept-kv-pillar-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lightblue);
  width: 24px;
  flex-shrink: 0;
}
.concept-kv-pillar > div {
  flex: 1;
}
.concept-kv-pillar-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.concept-kv-pillar-desc {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.concept-kv-pillar-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  flex-shrink: 0;
}
.concept-kv-connector {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin: -4px 0;
}
@media (max-width: 750px) {
  .concept-kv-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 20px 56px;
  }
  .concept-kv h1 {
    font-size: 26px;
  }
  .concept-kv-pillars {
    order: -1;
  }
  .concept-breadcrumb {
    padding: 12px 20px;
  }
}

.philosophy {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.philosophy-left-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lightblue);
  margin-bottom: 16px;
}
.philosophy-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.65;
}
.philosophy-right {
  padding-top: 8px;
}
.philosophy-body {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 22px;
}
.philosophy-body:last-child {
  margin-bottom: 0;
}
.philosophy-accent {
  border-left: 3px solid var(--blue);
  padding-left: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.85;
  margin-top: 28px;
}
@media (max-width: 750px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.approach {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.approach-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.approach-intro .section-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.step-row:last-child {
  border-bottom: 1px solid var(--border);
}
.step-row.reverse .step-text {
  order: 2;
}
.step-row.reverse .step-photo {
  order: 1;
}
.step-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lightblue);
  margin-bottom: 12px;
}
.step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.step-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 20px;
}
.step-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
}
.step-tag::before {
  content: '—  ';
}
.step-photo {
  position: relative;
  background: var(--off-white);
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 750px) {
  .step-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-row.reverse .step-text {
    order: 2;
  }
  .step-row.reverse .step-photo {
    order: 1;
  }
  .approach-intro .section-heading {
    font-size: 28px;
  }
}

.group-proof {
  background: linear-gradient(var(--darkblue) 0%, var(--blue) 80%);
  border-top: 1px solid var(--border);
}
.group-proof .section-label {
  color: rgba(255, 255, 255, 0.55);
}
.group-proof-intro {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}
.group-proof-left-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lightblue);
  margin-bottom: 14px;
}
.group-proof-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 18px;
}
.group-proof-body {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 24px;
}
.group-proof-aside {
  border-left: 3px solid rgba(139, 181, 228, 0.5);
  padding-left: 20px;
}
.group-proof-aside-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.group-proof-aside-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}
.group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.group-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.group-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.group-card-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--off-white);
}
.group-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.group-card:hover .group-card-photo img {
  transform: scale(1.04);
}
.group-card-body {
  padding: 18px 20px 22px;
}
.group-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lightblue);
  margin-bottom: 6px;
}
.group-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.group-card-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.8;
}
.group-grid-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: calc(66.66% - 5px);
  margin: 14px auto 0;
}
@media (max-width: 750px) {
  .group-proof-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .group-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .group-grid-row2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.ceo-message {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.ceo-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.ceo-photo-wrap {
  background: var(--off-white);
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
}
.ceo-photo-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #ccc;
}
.ceo-photo-sub {
  font-size: 10px;
  color: #bbb;
}
.ceo-profile-role {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 4px;
}
.ceo-profile-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.ceo-content {
  padding-top: 4px;
}
.ceo-quote {
  border-left: 3px solid var(--lightblue);
  padding-left: 22px;
  margin-bottom: 32px;
}
.ceo-quote-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--darkblue);
  line-height: 1.8;
}
.ceo-body {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 18px;
}
.ceo-body:last-child {
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ceo-photo-wrap {
    max-width: 180px;
  }
  .ceo-quote-text {
    font-size: 18px;
  }
}

/* ══ 会社概要 ══ */
.company-section {
  padding: 72px 56px 88px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 750px) {
  .company-section {
    padding: 48px 20px 64px;
  }
}
.company-inner {
  max-width: 960px;
  margin: 0 auto;
}
.company-section .section-label {
  margin-bottom: 48px;
}
.company-table-wrap {
  margin-bottom: 80px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 0.5px solid var(--lightmuted);
}
.company-table tr {
  border-bottom: 0.5px solid var(--lightmuted);
}
.company-table th {
  width: 200px;
  padding: 24px 28px 24px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
.company-table td {
  padding: 24px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.85;
  vertical-align: top;
}
.company-table td a {
  color: var(--darkblue);
  text-decoration: none;
  border-bottom: 1px solid var(--blightblue);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.company-table td a:hover {
  border-color: var(--darkblue);
}
.company-table .td-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.company-table .td-mail {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}
.company-table .td-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.company-map-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lightblue);
  margin-bottom: 16px;
}
.company-map {
  width: 100%;
  height: 400px;
  border: 0.5px solid var(--lightmuted);
  display: block;
}
@media (max-width: 750px) {
  .company-table th {
    display: block;
    width: 100%;
    padding: 20px 0 4px;
    border-bottom: none;
  }
  .company-table td {
    display: block;
    width: 100%;
    padding: 0 0 20px;
  }
  .company-table tr {
    display: block;
    border-bottom: 0.5px solid var(--lightmuted);
  }
  .company-map {
    height: 260px;
  }
}
/* ══ WORKS PAGE ══ */
.works-hero { background: var(--white); border-bottom: 1px solid var(--border); }
.works-hero-breadcrumb {
  padding: 20px 56px 0;
  font-size: 11px; color: var(--muted); letter-spacing: 0.04em;
}
.works-hero-breadcrumb a { color: var(--muted); text-decoration: none; }
.works-hero-breadcrumb a:hover { color: var(--dark); }
.works-hero-breadcrumb span { margin: 0 6px; }
.works-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; padding: 48px 56px 64px;
}
.works-hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--lightblue); margin-bottom: 10px;
}
.works-hero-cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--white); padding: 3px 12px; margin-bottom: 20px;
  background: var(--darkblue);
}
.works-hero h1 {
  font-size: 32px; font-weight: 700; line-height: 1.5;
  color: var(--dark); margin-bottom: 22px;
}
.works-hero-body {
  font-size: 17px; font-weight: 500; color: var(--dark);
  line-height: 2; margin-bottom: 28px;
}
.works-hero-body a { color: var(--blue); }
.works-hero-kv {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--off-white); overflow: hidden;
}
.works-hero-kv img {
  position: absolute; left: 0; width: 100%; height: 130%; top: -15%;
  object-fit: cover; display: block; will-change: transform;
}
.works-meta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px;
}
.works-meta-item {
  background: var(--blue); border: 0.5px solid var(--lightmuted);
  padding: 12px 14px; text-align: center;
}
.works-meta-item-main { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.works-meta-item-sub { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); }
@media (max-width: 750px) {
  .works-hero-breadcrumb { padding: 16px 20px 0; }
  .works-hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 20px 48px; }
  .works-hero-kv { order: -1; aspect-ratio: 5 / 3; }
  .works-hero h1 { font-size: 24px; }
  .works-hero-body { font-size: 14px; }
}

/* ══ SUPPORT SECTION ══ */
.support-section {
  background-color: #06091f;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.04) 100%),
    linear-gradient(rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.04) 100%),
    linear-gradient(rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.04) 100%);
  background-position: 25% 0, 50% 0, 75% 0;
  background-size: 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat;
  background-attachment: fixed, fixed, fixed;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.support-section .section-label { color: var(--lightblue); }
.support-intro { max-width: 600px; margin: 0 0 56px; }
.support-intro h2 { font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.65; margin-bottom: 16px; }
.support-intro p { font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.65); line-height: 1.9; }
.support-timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
.support-timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 28px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue), rgba(16,81,205,0.08));
}
.support-tl-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 52px;
}
.support-tl-item:last-child { padding-bottom: 0; }
.support-tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(16,81,205,0.18);
  border: 1px solid rgba(139,181,228,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; line-height: 1;
  color: var(--lightblue); letter-spacing: 0.04em;
  position: relative; z-index: 1; flex-shrink: 0;
  text-align: center; white-space: nowrap;
}
.support-tl-content { padding-top: 12px; }
.support-tl-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.4; }
.support-tl-body { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 16px; }
.support-tl-body a { color: var(--white); font-weight: bold; }
.support-tl-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.support-tl-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 2px; letter-spacing: 0.04em; }
.support-tl-tag.blue { background: rgba(16,81,205,0.22); color: var(--lightblue); border: 1px solid rgba(139,181,228,0.35); }
.support-tl-tag.green { background: rgba(16,160,90,0.18); color: #7ecfab; border: 1px solid rgba(16,160,90,0.3); }
.support-tl-tag.gold { background: rgba(180,130,40,0.18); color: #d4a84b; border: 1px solid rgba(180,130,40,0.3); }
.support-tl-tag.purple { background: rgba(120,80,200,0.2); color: #b49af0; border: 1px solid rgba(120,80,200,0.3); }
@media (max-width: 750px) {
  .support-timeline::before { left: 24px; }
  .support-tl-item { grid-template-columns: 48px 1fr; gap: 20px; padding-bottom: 40px; }
  .support-tl-dot { width: 48px; height: 48px; font-size: 8px; }
  .support-tl-title { font-size: 17px; }
}

/* ══ SUPPORT STRIP ══ */
.support-strip { overflow: hidden; padding: 48px 0 0; margin: 0 -56px -88px; }
@media (max-width: 750px) { .support-strip { margin: 0 -20px -64px; padding: 40px 0 0; } }
.support-strip-track { display: flex; gap: 12px; width: max-content; animation: stripScroll 28s linear infinite; }
.support-strip-track:hover { animation-play-state: paused; }
@keyframes stripScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.support-strip-item { flex: 0 0 200px; height: 200px; background: rgba(255,255,255,0.05); border: 1px solid rgba(139,181,228,0.15); overflow: hidden; position: relative; }
.support-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.support-strip-track:hover .support-strip-item img { transform: scale(1.04); }
@media (max-width: 750px) { .support-strip-item { flex: 0 0 140px; height: 140px; } }

/* ══ FOR YOUR BUSINESS ══ */
.for-business { border-top: 1px solid var(--border); }
.for-business-intro { margin-bottom: 32px; }
.for-business-intro h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.55; }
.for-business-intro p { font-size: 17px; font-weight: 500; color: var(--dark); line-height: 1.85; }
.usecase-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.usecase-row { display: grid; grid-template-columns: 180px 1fr; gap: 0; border: 0.5px solid var(--lightmuted); background: var(--white); overflow: hidden; transition: box-shadow 0.22s; }
.usecase-row:hover { box-shadow: 0 4px 16px rgba(0,47,136,0.06); }
.usecase-row-label { background: linear-gradient(90deg, var(--darkblue), var(--blue) 80%); border-right: 0.5px solid var(--lightmuted); padding: 24px 18px; display: flex; flex-direction: column; justify-content: center; }
.usecase-row-hint { font-size: 14px; font-weight: 700; color: var(--lightblue); margin-bottom: 6px; }
.usecase-row-name { font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.45; }
.usecase-row-body { padding: 24px 26px; }
.usecase-row-text { font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.9; }
@media (max-width: 750px) {
  .usecase-row { grid-template-columns: 1fr; }
  .usecase-row-label { border-right: none; border-bottom: 0.5px solid var(--lightmuted); padding: 18px 20px 14px; }
  .usecase-row-body { padding: 18px 20px; }
}

/* ══ OTHER GROUPS ══ */
.other-groups { background: var(--light-bg); border-top: 1px solid var(--border); }
.other-groups h2 { font-size: 17px; font-weight: 700; color: var(--dark); letter-spacing: 0.08em; margin-bottom: 18px; }
.group-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.group-link-card { display: flex; align-items: center; justify-content: space-between; padding: 18px 40px; border: 0.5px solid var(--lightmuted); background: var(--darkblue); text-decoration: none; color: var(--dark); border-radius: 40px; transition: background 0.2s; }
.group-link-card:hover { background: var(--blue); }
.group-link-num { font-size: 10px; font-weight: 700; color: var(--lightblue); margin-bottom: 4px; }
.group-link-name { font-size: 14px; font-weight: 700; color: var(--white); }
.group-link-arrow { font-size: 14px; color: var(--lightmuted); flex-shrink: 0; }
@media (max-width: 750px) { .group-links { grid-template-columns: 1fr; } }

.works-hero-kv-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.works-hero-kv-placeholder span { font-size: 11px; color: var(--lightmuted); letter-spacing: 0.08em; }
.support-strip-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.support-strip-placeholder span { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); }

/* ══ WORKS KV override ══ */
.page-kv.page-kv--works {
  position: relative !important;
  min-height: 320px !important;
  background-color: #111827 !important;
  background-image: none !important;
  overflow: hidden !important;
  padding: calc(var(--header-h) + 56px) 56px 56px !important;
}
.page-kv--works .page-kv-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.page-kv--works .page-kv-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.page-kv--works .page-kv-breadcrumb,
.page-kv--works .page-kv-heading,
.page-kv--works .page-kv-sub { position: relative; z-index: 3; }
@media (max-width: 750px) {
  .page-kv--works { padding: calc(var(--header-h) + 40px) 20px 40px; }
}