/* ==============================
   KIKUCHI LAW OFFICE — Stylesheet
============================== */

/* === VARIABLES === */
:root {
  --dark:    #0A1628;
  --navy:    #1B3158;
  --gold:    #C9A84C;
  --gold-lt: #DDBB72;
  --cream:   #F8F5F0;
  --muted:   #EDE8DF;
  --text:    #1A1A1A;
  --gray:    #666666;
  --border:  #DDD8CE;
  --t:       0.3s ease;
}

/* === RESET === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:none}
body{
  font-family:"Noto Sans JP","Hiragino Kaku Gothic Pro",Meiryo,sans-serif;
  font-size:15px;line-height:1.85;color:var(--text);background:#fff;
}
body.no-scroll{overflow:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
address{font-style:normal}
h1,h2,h3,h4,h5{line-height:1.35;font-family:"Noto Serif JP",serif}
p{margin-bottom:1em}
p:last-child{margin-bottom:0}
summary{list-style:none}
summary::-webkit-details-marker{display:none}

/* === LAYOUT === */
.container{
  width:min(90%,1100px);
  margin-inline:auto;
  padding-block:90px;
}

/* === HEADER === */
#hdr{
  position:fixed;top:0;left:0;right:0;z-index:900;
  transition:background var(--t),box-shadow var(--t);
}
#hdr.is-scrolled{
  background:rgba(10,22,40,.97);
  box-shadow:0 1px 24px rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
}
.hdr-inner{
  display:flex;align-items:center;height:76px;
  width:min(90%,1200px);margin-inline:auto;gap:2rem;
}
@media (min-width:601px){
  .hdr-inner{display:grid;grid-template-columns:1fr auto 1fr;}
}
.hdr-logo img{height:46px;width:auto;filter:brightness(0) invert(1)}
.hdr-nav{display:flex;gap:2.5rem;justify-content:center;align-items:center}
.hdr-nav a{
  color:rgba(255,255,255,.78);font-size:.87rem;font-weight:500;
  letter-spacing:.05em;position:relative;padding-bottom:4px;
  transition:color var(--t);
}
.hdr-nav a::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:1px;background:var(--gold);
  transform:scaleX(0);transform-origin:left;transition:transform var(--t);
}
.hdr-nav a:hover{color:var(--gold)}
.hdr-nav a:hover::after{transform:scaleX(1)}
.hdr-nav-special{
  color:var(--gold)!important;
  font-weight:700!important;
  border:1px solid rgba(201,168,76,.35);
  border-radius:2px;
  padding:.15rem .65rem;
  transition:background .25s;
}
.hdr-nav-special:hover{background:rgba(201,168,76,.12)!important}
.hdr-cta{
  flex-shrink:0;background:var(--gold);color:var(--dark);
  font-size:.82rem;font-weight:700;padding:9px 22px;
  letter-spacing:.08em;border-radius:1px;
  transition:background var(--t);margin-left:auto;
}
.hdr-cta:hover{background:var(--gold-lt)}

/* Burger */
.hdr-burger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;padding:8px;margin-left:auto;
}
.hdr-burger span{
  display:block;width:24px;height:1.5px;background:#fff;
  transition:var(--t);transform-origin:center;
}
.hdr-burger.is-open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hdr-burger.is-open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hdr-burger.is-open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* SP Nav */
.sp-nav{
  position:fixed;inset:0;z-index:800;
  background:rgba(10,22,40,.98);
  display:flex;align-items:center;justify-content:center;
  transform:translateX(100%);transition:transform .45s cubic-bezier(.77,0,.175,1);
}
.sp-nav.is-open{transform:translateX(0)}
.sp-nav nav{display:flex;flex-direction:column;gap:2.5rem;text-align:center}
.sp-nav a{
  color:rgba(255,255,255,.8);font-size:1.1rem;font-weight:400;
  letter-spacing:.08em;transition:color var(--t);
}
.sp-nav a:hover{color:var(--gold)}
.sp-cta{
  display:inline-block;background:var(--gold)!important;
  color:var(--dark)!important;font-weight:700!important;
  padding:14px 40px;border-radius:1px;margin-top:.5rem;
}

/* === HERO === */
#hero{
  min-height:100vh;background:var(--dark);
  display:flex;align-items:stretch;
  position:relative;overflow:hidden;
}
/* Subtle grid texture */
#hero::before{
  content:'';position:absolute;inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 80px,rgba(255,255,255,.022) 80px,rgba(255,255,255,.022) 81px),
    repeating-linear-gradient(90deg,transparent,transparent 80px,rgba(255,255,255,.022) 80px,rgba(255,255,255,.022) 81px);
  pointer-events:none;
}
/* bottom fade to white */
#hero::after{
  content:'';position:absolute;bottom:0;left:0;right:0;
  height:160px;
  background:linear-gradient(to top,#fff 0%,transparent 100%);
  pointer-events:none;
}
.hero-wrap{
  position:relative;
  width:100%;max-width:1200px;margin-inline:auto;
  padding-inline:clamp(1.75rem,5vw,5rem);
  padding-block:calc(76px + 60px) 60px;
  display:flex;flex-direction:column;justify-content:space-between;gap:3rem;
  flex:1;
}
.hero-label{
  font-size:.72rem;letter-spacing:.28em;color:rgba(255,255,255,.35);
  text-transform:uppercase;font-weight:300;
}
.hero-rule{height:1px;background:rgba(255,255,255,.1)}
.hero-body{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:end;padding-block:3rem;
}
.hero-left h1{
  font-size:clamp(2.6rem,5vw,4.2rem);
  font-weight:600;color:#fff;
  line-height:1.25;letter-spacing:-.01em;
  margin-bottom:2rem;
}
.hero-lead{
  color:rgba(255,255,255,.55);font-size:.93rem;
  line-height:1.95;margin-bottom:2.5rem;
  font-family:"Noto Sans JP",sans-serif;font-weight:300;
}
.btn-hero{
  display:inline-flex;align-items:center;gap:.85rem;
  background:var(--gold);color:var(--dark);
  font-size:.88rem;font-weight:700;padding:15px 30px;
  border-radius:1px;letter-spacing:.06em;
  transition:background var(--t),gap var(--t);
}
.btn-hero:hover{background:var(--gold-lt);gap:1.1rem}

/* Hero right — service index */
.hero-right{
  border-left:1px solid rgba(255,255,255,.12);
  padding-left:3rem;
  display:flex;flex-direction:column;
}
.hero-service{
  display:flex;align-items:center;gap:1.5rem;
  padding:1.35rem 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  color:rgba(255,255,255,.62);
  transition:color var(--t),padding-left var(--t);
}
.hero-service:hover{color:var(--gold);padding-left:.5rem}
.hs-num{
  font-size:.68rem;letter-spacing:.2em;color:var(--gold);
  font-family:"Noto Sans JP",sans-serif;font-weight:300;flex-shrink:0;
  width:2rem;
}
.hs-name{font-size:.95rem;font-weight:500;letter-spacing:.04em;flex:1}
.hs-arrow{font-size:.75rem;color:rgba(255,255,255,.25);flex-shrink:0}

/* Hero footer */
.hero-foot{
  display:flex;justify-content:space-between;align-items:center;
}
.hero-addr{font-size:.72rem;color:rgba(255,255,255,.28);letter-spacing:.04em}
.hero-scroll{
  display:flex;align-items:center;gap:.5rem;
  font-size:.72rem;color:rgba(255,255,255,.35);letter-spacing:.12em;
  text-transform:uppercase;
  transition:color var(--t);animation:bob 2.5s ease infinite;
}
.hero-scroll:hover{color:var(--gold)}
@keyframes bob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(6px)}
}

/* === SECTION HEADERS === */
.sec-head{text-align:center;margin-bottom:3.5rem}
.sec-head--light .sec-en,.sec-head--light h2{color:#fff}
.sec-head--left{text-align:left}
.sec-en{
  display:block;font-family:"Noto Sans JP",sans-serif;
  font-size:.7rem;font-weight:300;letter-spacing:.25em;
  text-transform:uppercase;color:var(--gold);margin-bottom:.6rem;
}
.sec-head h2{
  font-size:clamp(1.7rem,3vw,2.5rem);font-weight:600;
  color:var(--dark);letter-spacing:-.01em;
}

/* === SERVICE CARDS === */
#services{background:var(--cream)}
.cards{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5px;background:var(--border);
  border:1.5px solid var(--border);
}
.card{
  background:#fff;padding:2.75rem 2.25rem;
  display:flex;flex-direction:column;gap:1.5rem;
  position:relative;
  transition:background var(--t);
}
.card:hover{background:var(--cream)}
.card--accent{background:var(--dark)}
.card--accent:hover{background:var(--navy)}
.card.card--accent h3{color:#fff}
.card.card--accent p{color:rgba(255,255,255,.75)}
.card.card--accent li{color:rgba(255,255,255,.75);border-color:rgba(255,255,255,.1)}
.card.card--accent .card-link{color:var(--gold)}
.card.card--accent .card-icon i{color:var(--gold-lt)}

.card-icon i{
  font-size:1.75rem;color:var(--gold);
  display:block;margin-bottom:.25rem;
}
.card-body{flex:1}
.card h3{
  font-size:1.1rem;font-weight:600;color:var(--dark);
  margin-bottom:.85rem;line-height:1.4;
}
.card p{font-size:.87rem;color:var(--gray);line-height:1.85;margin-bottom:1rem}
.card ul{display:flex;flex-direction:column;gap:.3rem}
.card li{
  font-size:.82rem;color:var(--text);
  padding:.3rem 0;border-bottom:1px solid rgba(0,0,0,.06);
  display:flex;align-items:center;gap:.6rem;
}
.card--accent li{border-color:rgba(255,255,255,.08)}
.card li::before{
  content:'';width:5px;height:5px;border-radius:50%;
  background:var(--gold);flex-shrink:0;
}
.card-link{
  font-size:.8rem;font-weight:700;color:var(--navy);
  display:inline-flex;align-items:center;gap:.5rem;
  transition:gap var(--t),color var(--t);
}
.card-link:hover{gap:.8rem;color:var(--gold)}

/* === SERVICE DETAILS === */
.detail{background:#fff}
.detail--alt{background:var(--cream)}
.detail-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:6rem;align-items:center;
}
.detail-grid--rev .detail-text{order:2}
.detail-grid--rev .detail-visual{order:1}

.detail-num{
  display:block;font-family:"Noto Serif JP",serif;
  font-size:4.5rem;font-weight:600;color:rgba(201,168,76,.18);
  line-height:1;margin-bottom:.25rem;
}
.detail-tag{
  display:inline-block;
  font-family:"Noto Sans JP",sans-serif;font-size:.68rem;font-weight:500;
  letter-spacing:.15em;text-transform:uppercase;
  background:var(--gold);color:var(--dark);
  padding:4px 14px;margin-bottom:1.25rem;
}
.detail-text h2{
  font-size:clamp(1.6rem,2.8vw,2.3rem);font-weight:600;
  color:var(--dark);line-height:1.3;margin-bottom:1.5rem;
}
.detail-lead{
  font-size:.92rem;color:var(--gray);line-height:2;
  border-left:2px solid var(--gold);padding-left:1rem;
  margin-bottom:2rem;
  font-family:"Noto Sans JP",sans-serif;font-weight:300;
}
.detail-list{display:flex;flex-direction:column;gap:1rem;margin-bottom:2.5rem}
.detail-list > div{display:flex;flex-direction:column;gap:.2rem}
.detail-list dt{
  display:flex;align-items:center;gap:.6rem;
  font-size:.9rem;font-weight:700;color:var(--dark);
}
.detail-list dt i{color:var(--gold);font-size:.8rem}
.detail-list dd{font-size:.83rem;color:var(--gray);line-height:1.7;padding-left:1.4rem}

/* Service visual panels */
.detail-visual{
  aspect-ratio:4/3;border-radius:2px;
  background-color:var(--navy);
  position:relative;overflow:hidden;
}
.detail-visual img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center;display:block;
}
.detail-visual::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,.35) 0%,transparent 60%);
  pointer-events:none;
}

/* === STRENGTHS === */
.dark-sec{background:var(--dark)}
.str-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;
  border:1px solid rgba(255,255,255,.06);
}
.str-item{
  padding:2.5rem 2rem;
  border-right:1px solid rgba(255,255,255,.06);
  transition:background var(--t);
}
.str-item:last-child{border-right:none}
.str-item:hover{background:rgba(255,255,255,.03)}
.str-n{
  display:block;font-family:"Noto Serif JP",serif;
  font-size:3rem;font-weight:600;
  color:rgba(201,168,76,.2);line-height:1;
  margin-bottom:1.25rem;
}
.str-item h4{
  color:#fff;font-family:"Noto Sans JP",sans-serif;
  font-size:.92rem;font-weight:700;margin-bottom:.75rem;line-height:1.5;
}
.str-item p{
  color:rgba(255,255,255,.5);font-size:.82rem;
  line-height:1.85;font-weight:300;
}

/* === PROFILE === */
.representative-profile {
  --profile-bg: #090b0e;
  --profile-bg-soft: #111419;
  --profile-panel: #ede9e1;
  --profile-panel-soft: #e3ded4;
  --profile-text: #16191d;
  --profile-text-soft: #5d6167;
  --profile-white: #f7f5f0;
  --profile-line: rgba(22, 25, 29, 0.16);
  --profile-line-light: rgba(255, 255, 255, 0.18);
  --profile-accent: #b69663;
  --profile-accent-light: #d7c096;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 11vw, 180px) 24px;
  color: var(--profile-text);
  background:
    radial-gradient(circle at 15% 20%, rgba(182, 150, 99, 0.12), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.055), transparent 30%),
    var(--profile-bg);
}
.representative-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.representative-profile::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(30px, 7vw, 120px);
  z-index: -1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(182, 150, 99, 0.5) 20%, rgba(182, 150, 99, 0.16) 78%, transparent);
}
.profile-background-text {
  position: absolute;
  top: 32px;
  right: -0.025em;
  z-index: -1;
  color: transparent;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(76px, 13vw, 220px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.045em;
  white-space: nowrap;
  opacity: 0.16;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}
.profile-container {
  width: min(100%, 1380px);
  margin-inline: auto;
}
.profile-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.profile-topline-label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-topline-label::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--profile-accent);
}
.profile-topline-number {
  color: var(--profile-accent-light);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.profile-panel {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(500px, 1.4fr);
  background: var(--profile-panel);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.profile-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  color: var(--profile-white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 35%),
    var(--profile-bg-soft);
}
.profile-portrait {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 520px;
  margin: 0;
  background: #1c2025;
}
.profile-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.07);
  transform: scale(1.002);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 600ms ease;
}
.profile-sig-bio {
  margin-top: 0;
  padding-top: 0;
}
.profile-sig-bio .profile-signature {
  margin-bottom: .9rem;
}
.profile-sig-bio .profile-tags {
  margin-top: 1.25rem;
}
.profile-bio-career {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: .8rem;
  font-weight: 500;
  color: var(--profile-text);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.profile-bio-sub {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: .75rem;
  color: var(--profile-text-soft);
  line-height: 1.9;
  letter-spacing: .03em;
}
.profile-below {
  background: var(--profile-panel);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}
.profile-below-tags {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1em, 6vw, 7.5em);
}
.profile-philosophy {
  position: relative;
  margin: 0;
  padding: clamp(1em, 4vw, 5em) clamp(1em, 6vw, 7.5em);
  overflow: hidden;
  color: var(--profile-white);
  background:
    linear-gradient(120deg, rgba(182, 150, 99, 0.18), transparent 48%),
    var(--profile-bg-soft);
}
.profile-below-career {
  padding: clamp(48px, 6vw, 80px) clamp(40px, 8vw, 120px);
}
.profile-portrait:hover .profile-img {
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.025);
}
.profile-photo-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(6, 8, 11, 0.96) 0%, rgba(6, 8, 11, 0.44) 32%, transparent 62%),
    linear-gradient(to right, rgba(6, 8, 11, 0.25), transparent 40%);
}
.profile-name-plate {
  position: absolute;
  right: clamp(20px, 3vw, 38px);
  bottom: clamp(24px, 4vw, 45px);
  left: clamp(20px, 3vw, 38px);
  z-index: 2;
}
.profile-name-role {
  display: block;
  margin-bottom: 13px;
  color: var(--profile-accent-light);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.profile-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.profile-name-ja {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(29px, 3.3vw, 47px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.12em;
}
.profile-name-en {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.06em;
}
.profile-photo-index {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15px;
}
.profile-cred {
  margin: 0;
  padding: 6px 0 0;
}
.profile-cred-item {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--profile-line-light);
}
.profile-cred-item dt {
  color: var(--profile-accent-light);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.profile-cred-item dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.035em;
}
.profile-cred-item dd span { display: none; }
.profile-specialty {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding: 34px 2px 4px;
}
.profile-specialty-label {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.profile-specialty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-align: right;
  letter-spacing: 0.04em;
}
.profile-content {
  position: relative;
  min-width: 0;
  padding: clamp(58px, 7vw, 108px) clamp(38px, 7vw, 105px) clamp(58px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 24%),
    var(--profile-panel);
}
.profile-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(24px, 4vw, 60px);
  width: 1px;
  height: 82px;
  background: var(--profile-accent);
}
.profile-heading {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: clamp(45px, 5vw, 70px);
}
.profile-heading-mark {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 15px;
  background: var(--profile-accent);
  transform: rotate(45deg);
}
.profile-heading-en {
  display: block;
  margin-bottom: 7px;
  color: var(--profile-accent);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.profile-heading h2 {
  margin: 0;
  color: var(--profile-text);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
.profile-message { width: min(100%, 720px); }
.profile-message > p {
  margin: 0 0 25px;
  color: var(--profile-text-soft);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.035em;
}
.profile-message .profile-lead {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 31px;
  color: var(--profile-text);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.profile-lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 68px;
  height: 1px;
  background: var(--profile-accent);
}
/* profile-philosophy は .profile-below 内でスタイリング済み */
.profile-philosophy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 105px;
  height: 1px;
  background: var(--profile-accent);
}
.profile-philosophy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 105px;
  background: var(--profile-accent);
}
.profile-quote-mark {
  position: absolute;
  top: 2px;
  left: 17px;
  color: rgba(182, 150, 99, 0.23);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 90px;
  line-height: 1;
}
.profile-philosophy p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
}
.profile-philosophy-note {
  display: block;
  color: rgba(255, 255, 255, 0.43);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
}
.profile-signature {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 32px;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}
.profile-signature span {
  color: var(--profile-text-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.profile-signature strong {
  color: var(--profile-text);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.profile-career-block {
  margin-top: clamp(60px, 7vw, 90px);
  padding-top: clamp(36px, 5vw, 52px);
  border-top: 1px solid var(--profile-line);
}
.profile-career-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 31px;
}
.profile-career-en {
  color: var(--profile-accent);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.profile-career-header h3 {
  margin: 0;
  color: var(--profile-text);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.profile-career {
  margin: 0 0 17px;
  color: var(--profile-text);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.045em;
}
.profile-career-divider {
  margin-inline: 7px;
  color: var(--profile-accent);
}
.profile-career-sub {
  margin: 0;
  color: var(--profile-text-soft);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.03em;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.profile-tags li {
  position: relative;
  padding: 10px 14px 10px 25px;
  border: 1px solid rgba(22, 25, 29, 0.18);
  color: #3f4348;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.035em;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}
.profile-tags li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 5px;
  background: var(--profile-accent);
  transform: translateY(-50%) rotate(45deg);
}
.profile-tags li:hover {
  color: var(--profile-white);
  border-color: var(--profile-bg-soft);
  background: var(--profile-bg-soft);
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .profile-panel { grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr); }
  .profile-content { padding-inline: clamp(34px, 5vw, 60px); }
  .profile-career-header { display: block; }
  .profile-career-header h3 { margin-top: 8px; }
}
@media (max-width: 820px) {
  .representative-profile { padding: 85px 18px; }
  .profile-background-text { top: 20px; font-size: 96px; }
  .profile-panel { display: block; }
  .profile-visual { padding: 14px; }
  .profile-portrait { min-height: min(125vw, 680px); }
  .profile-img { min-height: min(125vw, 680px); }
  .profile-name-ja { font-size: clamp(32px, 8vw, 44px); }
  .profile-content { padding: clamp(58px, 11vw, 85px) clamp(25px, 7vw, 52px) clamp(58px, 10vw, 80px); }
  .profile-below-career { padding-inline: clamp(25px, 7vw, 52px); }
}
@media (max-width: 560px) {
  .representative-profile { padding-inline: 12px; }
  .profile-topline { padding-inline: 4px; letter-spacing: 0.18em; }
  .profile-topline-label::before { width: 25px; }
  .profile-visual { padding: 9px; }
  .profile-portrait { min-height: 128vw; }
  .profile-img { min-height: 128vw; }
  .profile-photo-index { top: 14px; right: 14px; width: 41px; height: 41px; }
  .profile-name-plate { right: 22px; bottom: 29px; left: 22px; }
  .profile-name-role { font-size: 8px; }
  .profile-name-ja { font-size: 30px; }
  .profile-name-en { font-size: 15px; }
  .profile-content { padding-inline: 24px; }
  .profile-content::after { right: 24px; height: 55px; }
  .profile-heading { gap: 15px; }
  .profile-heading h2 { font-size: 34px; }
  .profile-message .profile-lead { font-size: 19px; line-height: 1.9; }
  .profile-message > p { font-size: 13px; line-height: 2.05; }
  .profile-philosophy { padding: 1em; }
  .profile-philosophy p { font-size: 15px; line-height: 2; }
  .profile-philosophy p br { display: none; }
  .profile-below-career { padding-inline: 24px; }
  .profile-signature { align-items: flex-end; flex-direction: column; gap: 5px; }
  .profile-career-divider { display: none; }
  .profile-career { display: flex; flex-direction: column; gap: 3px; }
  .profile-tags { gap: 7px; }
  .profile-tags li { width: 100%; padding-block: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .profile-img, .profile-tags li { transition: none; }
}

/* === PROCESS === */
.light-sec{background:var(--cream)}
.flow{display:flex;align-items:stretch;gap:0}
.flow-step{
  flex:1;text-align:center;padding:2.75rem 1.5rem;
  background:#fff;
  display:flex;flex-direction:column;align-items:center;
}
.flow-icon{
  width:54px;height:54px;border-radius:50%;
  background:var(--dark);color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;margin-bottom:1.1rem;
}
.flow-num{
  font-size:.62rem;letter-spacing:.2em;color:var(--gold);
  font-weight:300;margin-bottom:.75rem;
  font-family:"Noto Sans JP",sans-serif;
}
.flow-step h4{
  font-family:"Noto Sans JP",sans-serif;
  font-size:.87rem;font-weight:700;color:var(--dark);margin-bottom:.6rem;
}
.flow-step p{font-size:.78rem;color:var(--gray);line-height:1.75;margin:0}
.flow-arrow{
  display:flex;align-items:center;padding:.5rem;
  color:rgba(201,168,76,.5);font-size:.9rem;flex-shrink:0;
  background:#fff;
}

/* === FAQ === */
#faq{background:#fff}
.faq-wrap{
  border-top:1.5px solid var(--border);
  max-width:780px;margin-inline:auto;
}
.faq-item{border-bottom:1px solid var(--border)}
.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  padding:1.5rem 0;cursor:pointer;
  font-size:.95rem;font-weight:500;color:var(--dark);
  transition:color var(--t);
  font-family:"Noto Sans JP",sans-serif;
}
.faq-item summary::after{
  content:'+';flex-shrink:0;
  font-size:1.3rem;font-weight:300;color:var(--gold);
  transition:transform var(--t);line-height:1;
}
.faq-item[open] summary{color:var(--navy)}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{
  font-size:.87rem;color:var(--gray);line-height:1.95;
  padding-bottom:1.5rem;font-weight:300;
}

/* === Group === */
#group{background:#f8f9fb;padding-block:80px 90px}
.group-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;
  margin-top:3rem;
}
.group-card{
  display:block;border-radius:12px;overflow:hidden;
  background:#fff;border:1px solid var(--border);
  text-decoration:none;
  box-shadow:0 2px 12px rgba(10,22,40,.06);
  transition:transform .25s,box-shadow .25s;
}
.group-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 28px rgba(10,22,40,.12);
}
.group-card-img{width:100%;aspect-ratio:16/7;overflow:hidden;background:#f0f0f0}
.group-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.group-card-body{padding:1.25rem 1.5rem 1.4rem}
.group-card-name{
  font-size:.95rem;font-weight:700;color:var(--dark);
  letter-ratio:.04em;margin-bottom:.4rem;
  font-family:"Noto Serif JP",serif;
}
.group-card-desc{font-size:.8rem;color:var(--gray);line-height:1.7;font-weight:300}

/* === CTA === */
#cta .container{padding-block:100px}
.cta-wrap{
  display:grid;grid-template-columns:1fr auto;
  gap:4rem;align-items:center;
}
.cta-text h2{
  font-size:clamp(1.5rem,2.5vw,2.1rem);font-weight:600;
  color:#fff;margin-bottom:1rem;
}
.cta-text p{color:rgba(255,255,255,.55);font-size:.9rem;font-weight:300;line-height:1.9}
.cta-actions{display:flex;flex-direction:column;gap:1.75rem;align-items:flex-start}
.btn-gold-lg{
  display:inline-flex;align-items:center;gap:.75rem;
  background:var(--gold);color:var(--dark);
  font-size:.9rem;font-weight:700;padding:15px 32px;
  border-radius:1px;letter-spacing:.06em;white-space:nowrap;
  transition:background var(--t);
}
.btn-gold-lg:hover{background:var(--gold-lt)}
.cta-tel{display:flex;align-items:center;gap:1rem;color:#fff}
.cta-tel>i{font-size:1.6rem;color:var(--gold)}
.tel-num{display:block;font-size:1.5rem;font-weight:700;letter-spacing:.06em}
.tel-time{display:block;font-size:.72rem;color:rgba(255,255,255,.4);font-weight:300;margin-top:2px}

/* Buttons (shared) */
.btn-dark{
  display:inline-flex;align-items:center;gap:.6rem;
  background:var(--dark);color:#fff;
  font-size:.86rem;font-weight:700;padding:13px 28px;
  border-radius:1px;letter-spacing:.06em;
  transition:background var(--t);
}
.btn-dark:hover{background:var(--navy)}

/* === NOTE SECTION === */
#note-section{background:#fff;border-top:1px solid var(--border)}
.note-container{
  width:min(90%,1200px);margin-inline:auto;
  padding-block:80px;
}
.note-sec-head{
  display:flex;align-items:baseline;
  justify-content:space-between;
  margin-bottom:2.5rem;
  border-bottom:1px solid var(--border);
  padding-bottom:1.5rem;
}
.note-big-title{
  font-family:"Noto Serif JP",Georgia,serif;
  font-size:clamp(3rem,7vw,5.5rem);
  font-weight:300;
  color:#ccc;
  letter-spacing:-.02em;
  line-height:1;
}
.note-byline{
  font-size:.82rem;color:var(--navy);font-weight:500;
  letter-spacing:.08em;font-family:"Noto Sans JP",sans-serif;
  margin:0;
}
.note-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin-bottom:2.5rem;
}
.note-card{
  display:flex;flex-direction:column;gap:.75rem;
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:8px;
  padding:1.1rem 1.1rem .9rem;
  transition:box-shadow var(--t),transform var(--t);
  color:inherit;
}
.note-card:hover{
  box-shadow:0 6px 24px rgba(0,0,0,.08);
  transform:translateY(-3px);
}
.nc-top{
  display:flex;align-items:flex-start;
  justify-content:space-between;gap:.75rem;
}
.nc-title{
  font-size:.9rem;font-weight:700;
  color:#1a1a1a;line-height:1.55;
  flex:1;margin:0;
  display:-webkit-box;-webkit-line-clamp:3;
  -webkit-box-orient:vertical;overflow:hidden;
}
.nc-thumb{
  width:72px;height:72px;object-fit:cover;
  border-radius:4px;flex-shrink:0;
}
.nc-excerpt{
  font-size:.78rem;color:#888;
  line-height:1.7;margin:0;
  display:-webkit-box;-webkit-line-clamp:3;
  -webkit-box-orient:vertical;overflow:hidden;
}
.nc-foot{
  display:flex;align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:.6rem;
  border-top:1px solid #f0f0f0;
}
.nc-author{display:flex;align-items:center;gap:.5rem}
.nc-avatar{
  width:24px;height:24px;border-radius:50%;object-fit:cover;flex-shrink:0;
}
.nc-author div{display:flex;flex-direction:column}
.nc-name{font-size:.65rem;color:#888;line-height:1.3;font-weight:400}
.nc-date{font-size:.65rem;color:#aaa;line-height:1.3}
.nc-logo{
  font-size:.8rem;color:#aaa;letter-spacing:.06em;
  font-weight:300;font-family:"Noto Sans JP",sans-serif;
  flex-shrink:0;
}
.note-more-wrap{text-align:center}
.note-more-btn{
  display:inline-flex;align-items:center;gap:.6rem;
  border:1px solid var(--border);
  color:var(--navy);font-size:.85rem;font-weight:500;
  padding:11px 28px;border-radius:2px;
  transition:border-color var(--t),background var(--t),color var(--t);
  letter-spacing:.04em;
}
.note-more-btn:hover{
  border-color:var(--navy);background:var(--navy);color:#fff;
}

/* === MAP === */
.map-box{height:420px;overflow:hidden}
.map-box iframe{width:100%;height:100%;border:0;display:block}

/* === FOOTER === */
#footer{background:var(--dark);color:rgba(255,255,255,.55)}
.footer-inner{
  width:min(90%,1100px);margin-inline:auto;
  padding-block:60px 40px;
  display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:3rem;
}
.footer-logo{height:42px;width:auto;filter:brightness(0) invert(1);margin-bottom:1rem}
.footer-tagline{font-size:.76rem;color:rgba(255,255,255,.3);line-height:1.8;font-weight:300}
.footer-nav-head{
  font-size:.68rem;letter-spacing:.2em;color:var(--gold);
  text-transform:uppercase;margin-bottom:1.1rem;font-weight:400;
  font-family:"Noto Sans JP",sans-serif;
}
.footer-nav-col{display:flex;flex-direction:column;gap:.7rem}
.footer-nav-col a{font-size:.82rem;color:rgba(255,255,255,.5);transition:color var(--t)}
.footer-nav-col a:hover{color:var(--gold)}
.footer-address{font-size:.82rem;line-height:2;color:rgba(255,255,255,.5)}
.footer-address strong{color:#fff}
.footer-copy{
  border-top:1px solid rgba(255,255,255,.07);
  padding:1.25rem;text-align:center;
}
.footer-copy small{font-size:.7rem;color:rgba(255,255,255,.25);font-weight:300}

/* === SCROLL REVEAL === */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .65s ease,transform .65s ease}
.reveal.in{opacity:1;transform:translateY(0)}
.flow-step.reveal,.str-item.reveal{transition-delay:calc(var(--i,0)*.1s)}

/* === RESPONSIVE: 1024px === */
@media(max-width:1024px){
  .str-grid{grid-template-columns:repeat(2,1fr)}
  .str-item:nth-child(2){border-right:none}
  .str-item:nth-child(3){border-right:1px solid rgba(255,255,255,.06)}
  .str-item:nth-child(3),.str-item:nth-child(4){border-top:1px solid rgba(255,255,255,.06)}
  .footer-inner{grid-template-columns:1fr 1fr}
  .cta-wrap{grid-template-columns:1fr;gap:2.5rem}
  .hero-body{grid-template-columns:1fr;gap:3rem}
  .hero-right{border-left:none;padding-left:0;border-top:1px solid rgba(255,255,255,.1);padding-top:2rem}
  .detail-grid{gap:3.5rem}
}

/* === RESPONSIVE: 768px === */
@media(max-width:768px){
  .hdr-nav,.hdr-cta{display:none}
  .hdr-burger{display:flex}

  .container{padding-block:64px}

  .cards{grid-template-columns:1fr}

  .detail-grid,.detail-grid--rev{
    grid-template-columns:1fr;gap:2.5rem;
  }
  .detail-grid--rev .detail-text{order:0}
  .detail-grid--rev .detail-visual{order:0}
  .detail-visual{aspect-ratio:16/9}

  .flow{flex-direction:column}
  .flow-arrow{display:none}

  .str-grid{grid-template-columns:1fr}
  .str-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.06)}

  .hero-body{padding-block:2rem}
  .hero-right{display:none} /* hide service index on mobile */

  .footer-inner{grid-template-columns:1fr;gap:2rem;padding-block:48px 32px}

  .faq-wrap{max-width:100%}

  .cta-actions{width:100%;align-items:stretch}
  .btn-gold-lg{justify-content:center}

  .group-grid{grid-template-columns:1fr}

  .note-grid{grid-template-columns:1fr}
  .note-sec-head{flex-direction:column;gap:.5rem}
}

/* === 補助金くん page === */
.hj-hero{background:var(--dark);padding-top:76px}
.hj-hero-inner{width:min(90%,1100px);margin-inline:auto;padding-block:80px 60px;text-align:center;border-bottom:1px solid rgba(255,255,255,.1)}
.hj-hero-en{display:block;font-size:.72rem;font-weight:300;letter-spacing:.4em;color:var(--gold);margin-bottom:1.25rem;text-transform:uppercase}
.hj-hero-title{font-family:"Noto Serif JP",serif;font-size:clamp(2.2rem,5vw,3.5rem);font-weight:600;color:#fff;line-height:1.2;margin-bottom:1rem}
.hj-hero-sub{color:rgba(255,255,255,.55);font-size:.95rem;font-weight:300;margin-bottom:2rem}
.hj-stats{display:flex;justify-content:center;gap:2.5rem;flex-wrap:wrap}
.hj-stat{text-align:center}
.hj-stat-num{font-size:1.4rem;font-weight:700;color:var(--gold);font-family:"Noto Serif JP",serif}
.hj-stat-label{font-size:.72rem;color:rgba(255,255,255,.45);letter-spacing:.06em}
.hj-search-wrap{background:#fff;padding:2rem 0;border-bottom:1px solid var(--border)}
.hj-search-inner{width:min(90%,1100px);margin-inline:auto;display:flex;gap:1rem;flex-wrap:wrap;align-items:center}
.hj-search-input{flex:1;min-width:200px;padding:.75rem 1rem;border:1px solid var(--border);border-radius:2px;font-size:.9rem;font-family:"Noto Sans JP",sans-serif;outline:none}
.hj-search-input:focus{border-color:var(--gold)}
.hj-search-select{padding:.75rem .9rem;border:1px solid var(--border);border-radius:2px;font-size:.85rem;font-family:"Noto Sans JP",sans-serif;background:#fff;outline:none;cursor:pointer}
.hj-search-btn{padding:.75rem 1.75rem;background:var(--gold);color:var(--dark);font-size:.85rem;font-weight:700;letter-spacing:.06em;border:none;border-radius:2px;cursor:pointer;transition:background .25s}
.hj-search-btn:hover{background:var(--gold-lt)}
.hj-body{background:var(--cream);padding-block:50px 80px}
.hj-body-inner{width:min(90%,1200px);margin-inline:auto}
.hj-tabs{display:flex;gap:.5rem;margin-bottom:2.5rem;border-bottom:2px solid var(--border);padding-bottom:0}
.hj-tab{padding:.6rem 1.4rem;font-size:.85rem;font-weight:500;color:var(--gray);background:none;border:none;border-bottom:2px solid transparent;margin-bottom:-2px;cursor:pointer;transition:all .2s;font-family:"Noto Sans JP",sans-serif;letter-spacing:.04em}
.hj-tab.is-active{color:var(--dark);border-bottom-color:var(--gold);font-weight:700}
.hj-tab:hover{color:var(--dark)}
.hj-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.hj-card{background:#fff;border:1px solid var(--border);border-radius:8px;padding:1.5rem;display:flex;flex-direction:column;gap:.75rem;transition:transform .25s,box-shadow .25s}
.hj-card:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(10,22,40,.1)}
.hj-card-header{display:flex;align-items:center;justify-content:space-between;gap:.5rem}
.hj-badge{font-size:.72rem;font-weight:700;padding:.2rem .6rem;border-radius:20px;letter-spacing:.04em}
.hj-badge--open{background:#d1fae5;color:#065f46}
.hj-badge--soon{background:#fef3c7;color:#92400e}
.hj-badge--regular{background:#dbeafe;color:#1e40af}
.hj-badge--upcoming{background:#ede9fe;color:#5b21b6}
.hj-badge--closed{background:#f3f4f6;color:#6b7280}
.hj-cat-tag{font-size:.72rem;color:var(--gray);border:1px solid var(--border);border-radius:2px;padding:.15rem .5rem}
.hj-card-title{font-family:"Noto Serif JP",serif;font-size:.95rem;font-weight:600;color:var(--dark);line-height:1.5}
.hj-card-org{font-size:.75rem;color:var(--gray);font-weight:300}
.hj-card-meta{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;background:var(--cream);border-radius:4px;padding:.75rem}
.hj-meta-label{font-size:.72rem;color:var(--gray);display:block;margin-bottom:.2rem}
.hj-meta-val{font-size:1rem;font-weight:700;color:var(--dark);font-family:"Noto Serif JP",serif}
.hj-meta-note{font-size:.7em;font-weight:500}
.hj-card-desc{font-size:.8rem;color:var(--gray);line-height:1.8;flex:1}
.hj-card-foot{display:flex;align-items:center;justify-content:space-between;padding-top:.75rem;border-top:1px solid var(--border);margin-top:auto}
.hj-deadline{font-size:.75rem;color:var(--gray)}
.hj-card-btn{font-size:.78rem;font-weight:700;color:var(--gold);letter-spacing:.04em;transition:color .2s}
.hj-card-btn:hover{color:var(--dark)}
.hj-count{font-size:.78rem;color:var(--gray);margin-bottom:.75rem;min-height:1.2em}
.hj-empty{grid-column:1/-1;text-align:center;padding:4rem 0;color:var(--gray)}
.hj-cta{background:var(--dark);padding-block:80px}
.hj-cta-inner{width:min(90%,800px);margin-inline:auto;text-align:center}
.hj-cta-title{font-family:"Noto Serif JP",serif;font-size:clamp(1.4rem,3vw,2rem);font-weight:600;color:#fff;margin-bottom:1rem}
.hj-cta-sub{color:rgba(255,255,255,.55);font-size:.9rem;font-weight:300;margin-bottom:2.5rem;line-height:1.9}
@media(max-width:900px){.hj-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.hj-grid{grid-template-columns:1fr}.hj-stats{gap:1.5rem}.hj-search-inner{flex-direction:column}.hj-search-input,.hj-search-select,.hj-search-btn{width:100%}}
