@charset "utf-8";
/* ============================================================
   城山タワー法律事務所 - モダンデザイン共通スタイル (2026)
   既存の cmn/css/style.css, import.css は読み込まず、
   このファイル単体で全ページのデザインを構成する想定。
   ============================================================ */

:root{
  --navy:#0f1f3d;
  --navy-light:#1d3461;
  --gold:#b08d57;
  --gray:#6e7177;
  --bg-cream:#f7f6f3;
  --line:#e3e1dc;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Noto Sans JP',sans-serif;
  color:#2b2b2b;
  line-height:1.8;
  background:#fff;
  font-weight:300;
  letter-spacing:0.02em;
}
h1,h2,h3{
  font-family:'Noto Serif JP',serif;
  font-weight:500;
  letter-spacing:0.08em;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}

/* ===== Header (全ページ共通) ===== */
header.siteHeader{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.headInner{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
}
.logo{
  font-family:'Noto Serif JP',serif;
  font-size:18px;
  font-weight:700;
  color:var(--navy);
  letter-spacing:0.15em;
  display:flex;
  align-items:center;
  gap:10px;
}
.logo span.mark{
  display:inline-block;
  width:10px;height:10px;
  background:var(--gold);
  transform:rotate(45deg);
}
.siteHeader nav ul{
  display:flex;
  gap:38px;
  list-style:none;
}

/* ===== Hamburger menu (mobile) ===== */
.navToggle{
  display:none;
  width:28px;
  height:22px;
  position:relative;
  cursor:pointer;
  background:none;
  border:none;
  padding:0;
}
.navToggle span{
  position:absolute;
  left:0;
  width:100%;
  height:1px;
  background:var(--navy);
  transition:transform .3s ease, opacity .3s ease, top .3s ease;
}
.navToggle span:nth-child(1){top:0;}
.navToggle span:nth-child(2){top:10px;}
.navToggle span:nth-child(3){top:20px;}
.navToggle.open span:nth-child(1){
  top:10px;
  transform:rotate(45deg);
}
.navToggle.open span:nth-child(2){
  opacity:0;
}
.navToggle.open span:nth-child(3){
  top:10px;
  transform:rotate(-45deg);
}

.siteHeader nav a,
.siteHeader nav span.current{
  font-size:14px;
  letter-spacing:0.12em;
  position:relative;
  padding-bottom:6px;
  color:var(--navy);
}
.siteHeader nav a::after,
.siteHeader nav span.current::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:0%;
  height:1px;
  background:var(--gold);
  transition:width .3s ease;
}
.siteHeader nav a:hover::after{width:100%;}
.siteHeader nav span.current::after{width:100%;}

/* ===== Hero (トップページ用フルスクリーン) ===== */
.hero{
  position:relative;
  height:92vh;
  min-height:560px;
  overflow:hidden;
}
.hero .slide{
  position:absolute;
  inset:0;
  overflow:hidden;
  opacity:0;
  transition:opacity 1.5s ease;
  z-index:0;
}
.hero .slide.active{
  opacity:1;
  z-index:1;
}
.hero .slide .slideImg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  will-change:transform;
}
.hero .slide.active .slideImg{
  animation-name:kenburns;
  animation-duration:14s;
  animation-timing-function:linear;
  animation-fill-mode:forwards;
}
.hero .slide:nth-child(1) .slideImg{--kb-x:-4%;--kb-y:-2%;}
.hero .slide:nth-child(2) .slideImg{--kb-x:4%;--kb-y:1%;}
.hero .slide:nth-child(3) .slideImg{--kb-x:-2%;--kb-y:-3%;}
.hero .slide:nth-child(4) .slideImg{--kb-x:3%;--kb-y:-2%;}

@keyframes kenburns{
  from{transform:scale(1.0) translate(0, 0);}
  to{transform:scale(1.15) translate(var(--kb-x), var(--kb-y));}
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,31,61,0.55) 0%, rgba(15,31,61,0.35) 45%, rgba(15,31,61,0.75) 100%);
  z-index:1;
}
.heroContent{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:0 24px;
}
.heroContent .eyebrow{
  font-size:13px;
  letter-spacing:0.35em;
  color:var(--gold);
  margin-bottom:24px;
  text-transform:uppercase;
}
.heroContent h1{
  font-size:clamp(28px,5vw,52px);
  line-height:1.6;
  margin-bottom:28px;
  text-shadow:0 2px 20px rgba(0,0,0,0.25);
}
.heroContent p.lead{
  font-size:15px;
  letter-spacing:0.15em;
  font-weight:300;
  opacity:0.9;
}
.scrollCue{
  position:absolute;
  bottom:32px;left:50%;
  transform:translateX(-50%);
  z-index:2;
  color:#fff;
  font-size:11px;
  letter-spacing:0.25em;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.scrollCue .line{
  width:1px;height:40px;
  background:rgba(255,255,255,0.5);
  animation:scrollDown 2s infinite;
}
@keyframes scrollDown{
  0%{transform:scaleY(0);transform-origin:top;}
  50%{transform:scaleY(1);transform-origin:top;}
  51%{transform:scaleY(1);transform-origin:bottom;}
  100%{transform:scaleY(0);transform-origin:bottom;}
}

/* ===== Page head (下層ページ用見出しエリア) ===== */
.pageHead{
  padding:160px 32px 60px;
  background:var(--bg-cream);
  border-bottom:1px solid var(--line);
  text-align:center;
}
.pageHead .eyebrow{
  font-size:12px;
  letter-spacing:0.35em;
  color:var(--gold);
  margin-bottom:18px;
  display:block;
  text-transform:uppercase;
}
.pageHead h1{
  font-size:clamp(24px,4vw,36px);
  color:var(--navy);
}
.pageHead p.lead{
  margin-top:18px;
  font-size:14px;
  color:#666;
}

/* ===== Section / 汎用コンテナ ===== */
.section{
  max-width:1180px;
  margin:0 auto;
  padding:120px 32px;
}
.section.narrow{max-width:880px;}
.section.tight{padding-top:80px;padding-bottom:80px;}

.label{
  font-size:12px;
  letter-spacing:0.35em;
  color:var(--gold);
  margin-bottom:18px;
  display:block;
  text-transform:uppercase;
}
.sectionTitle{
  font-size:28px;
  margin-bottom:32px;
  color:var(--navy);
}

/* ===== Greeting (2カラム) ===== */
.greeting{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.greeting p{
  font-size:15px;
  color:#444;
  margin-bottom:28px;
}
.greeting .sign{
  text-align:right;
  font-family:'Noto Serif JP',serif;
  font-size:15px;
  color:var(--navy);
  letter-spacing:0.1em;
}
.greeting .imgWrap{
  position:relative;
}
.greeting .imgWrap img{
  border-radius:2px;
  box-shadow:0 20px 50px -20px rgba(15,31,61,0.4);
}
.greeting .imgWrap::before{
  content:"";
  position:absolute;
  top:-20px;left:-20px;
  width:100%;height:100%;
  border:1px solid var(--gold);
  z-index:-1;
}

/* ===== Philosophy / 3カラム ピラー ===== */
.philosophy{
  background:var(--bg-cream);
  padding:100px 32px;
  text-align:center;
}
.philosophy .sectionTitle{margin-bottom:50px;}
.pillars{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
}
.pillar{
  padding:36px 24px;
  background:#fff;
  border:1px solid var(--line);
  transition:transform .3s ease, box-shadow .3s ease;
  text-align:left;
}
.pillar:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px -24px rgba(15,31,61,0.35);
}
.pillar .num{
  font-family:'Noto Serif JP',serif;
  font-size:13px;
  color:var(--gold);
  letter-spacing:0.2em;
  margin-bottom:16px;
}
.pillar h3{
  font-size:18px;
  color:var(--navy);
  margin-bottom:14px;
}
.pillar p{
  font-size:13px;
  color:#666;
}

/* ===== カード型グリッド (業務内容・スタッフ一覧などに利用) ===== */
.cardGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}
.cardGrid.cols3{grid-template-columns:repeat(3,1fr);}
.card{
  border:1px solid var(--line);
  padding:32px;
  transition:box-shadow .3s ease, transform .3s ease;
}
.card:hover{
  box-shadow:0 16px 40px -24px rgba(15,31,61,0.35);
  transform:translateY(-4px);
}
.card h3{
  font-size:18px;
  color:var(--navy);
  border-left:4px solid var(--gold);
  padding-left:14px;
  margin-bottom:16px;
}
.card p{
  font-size:14px;
  color:#555;
}

/* ===== Profile block (弁護士紹介) ===== */
.profile{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:48px;
  padding:50px 0;
  border-bottom:1px solid var(--line);
}
.profile:last-child{border-bottom:none;}
.profile img{border-radius:2px;}
.profile h2{
  font-size:22px;
  color:var(--navy);
  margin-bottom:8px;
}
.profile .role{
  font-size:13px;
  color:var(--gold);
  letter-spacing:0.15em;
  margin-bottom:20px;
  display:block;
}
.profile p{
  font-size:14px;
  color:#444;
  margin-bottom:20px;
}
.profile dl{
  font-size:13px;
  color:#555;
}
.profile dl dt{
  float:left;
  width:110px;
  color:var(--gold);
  clear:left;
  margin-bottom:8px;
}
.profile dl dd{
  margin-left:110px;
  margin-bottom:8px;
}

/* ===== Map / Access ===== */
.accessBlock{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}
.accessBlock .mapWrap iframe,
.accessBlock .mapWrap img{
  width:100%;
  border:1px solid var(--line);
}
.accessInfo dl{font-size:14px;color:#444;}
.accessInfo dt{
  font-size:12px;
  letter-spacing:0.2em;
  color:var(--gold);
  margin-top:24px;
  margin-bottom:6px;
}
.accessInfo dt:first-child{margin-top:0;}

/* ===== Company info table (事務所概要) ===== */
.infoTable{
  width:100%;
  font-size:14px;
  color:#444;
  border-top:1px solid var(--line);
}
.infoTable .row{
  display:grid;
  grid-template-columns:180px 1fr;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.infoTable .row .key{
  font-family:'Noto Serif JP',serif;
  font-size:13px;
  letter-spacing:0.15em;
  color:var(--gold);
}
.infoTable .row .val a{
  color:var(--navy);
  text-decoration:underline;
}


/* ===== Editorial statements (理念ステートメント) ===== */
.statements{
  margin-bottom:100px;
}
.statement{
  position:relative;
  display:grid;
  grid-template-columns:140px 1fr;
  gap:32px;
  padding:48px 0;
  border-bottom:1px solid var(--line);
  align-items:start;
}
.statement:first-child{border-top:1px solid var(--line);}
.statement .bigNum{
  font-family:'Noto Serif JP',serif;
  font-size:72px;
  line-height:1;
  color:var(--bg-cream);
  -webkit-text-stroke:1px var(--line);
  font-weight:700;
}
.statement h3{
  font-size:20px;
  color:var(--navy);
  margin-bottom:14px;
  letter-spacing:0.1em;
}
.statement p{
  font-size:14px;
  color:#555;
  max-width:640px;
}

/* ===== Practice areas accordion (取扱分野) ===== */
.areasHeader{
  display:flex;
  align-items:baseline;
  gap:24px;
  margin-bottom:10px;
}
.areasHeader .areaCount{
  font-family:'Noto Serif JP',serif;
  font-size:64px;
  line-height:1;
  color:var(--navy);
}
.areasHeader .areaCountLabel{
  font-size:12px;
  letter-spacing:0.2em;
  color:var(--gold);
  text-transform:uppercase;
}
.areaList{
  border-top:1px solid var(--line);
}
.areaItem{
  border-bottom:1px solid var(--line);
}
.areaItem .areaHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 0;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.areaItem .areaHead .areaName{
  font-family:'Noto Serif JP',serif;
  font-size:20px;
  color:var(--navy);
  letter-spacing:0.06em;
  display:flex;
  align-items:baseline;
  gap:18px;
}
.areaItem .areaHead .areaIndex{
  font-size:12px;
  color:var(--gold);
  letter-spacing:0.1em;
}
.areaItem .areaHead .areaToggle{
  position:relative;
  width:20px;height:20px;
  flex:0 0 20px;
}
.areaItem .areaHead .areaToggle::before,
.areaItem .areaHead .areaToggle::after{
  content:"";
  position:absolute;
  background:var(--navy);
  transition:transform .3s ease, opacity .3s ease;
}
.areaItem .areaHead .areaToggle::before{
  top:9px;left:0;width:20px;height:1px;
}
.areaItem .areaHead .areaToggle::after{
  top:0;left:9px;width:1px;height:20px;
}
.areaItem.open .areaHead .areaToggle::after{
  transform:rotate(90deg);
  opacity:0;
}
.areaItem .areaBody{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.areaItem .areaBody .inner{
  padding:0 0 28px 0;
  font-size:13px;
  color:#666;
  max-width:680px;
}
.areaItem.open .areaHead .areaName{color:var(--gold);}


/* ===== PDF modal viewer (自作・カード風) ===== */
.pdfModalOverlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  background:rgba(15,31,61,0.92);
  padding:32px 20px;
  overflow-y:auto;
}
.pdfModalOverlay.open{display:block;}
.pdfModalInner{
  max-width:880px;
  margin:0 auto;
}
.pdfModalBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
  color:#fff;
}
.pdfModalTitle{
  font-family:'Noto Serif JP',serif;
  font-size:15px;
  letter-spacing:0.06em;
}
.pdfModalClose{
  background:none;
  border:1px solid rgba(255,255,255,0.4);
  color:#fff;
  font-size:12px;
  letter-spacing:0.1em;
  padding:9px 22px;
  cursor:pointer;
  transition:background .25s ease, border-color .25s ease;
  flex:0 0 auto;
  margin-left:20px;
}
.pdfModalClose:hover{
  background:rgba(255,255,255,0.12);
  border-color:#fff;
}
.pdfPageWrap{
  background:#fff;
  box-shadow:0 30px 80px -30px rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:300px;
  position:relative;
}
.pdfPageWrap canvas{
  display:block;
  max-width:100%;
  height:auto;
}
.pdfLoading{
  position:absolute;
  color:var(--gray);
  font-size:13px;
  letter-spacing:0.1em;
}
.pdfModalControls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  margin-top:20px;
}
.pdfPageBtn{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.4);
  background:none;
  color:#fff;
  cursor:pointer;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s ease, border-color .25s ease;
}
.pdfPageBtn:hover:not(:disabled){
  background:rgba(255,255,255,0.12);
  border-color:#fff;
}
.pdfPageBtn:disabled{
  opacity:0.3;
  cursor:default;
}
.pdfPageIndicator{
  color:#fff;
  font-size:13px;
  letter-spacing:0.1em;
  min-width:70px;
  text-align:center;
}

/* ===== Article modal (大人の法律事件簿などのHTML記事) ===== */
.articleModalOverlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  background:rgba(15,31,61,0.92);
  padding:32px 20px;
}
.articleModalOverlay.open{
  display:flex;
  flex-direction:column;
  align-items:center;
}
.articleModalBar{
  width:100%;
  max-width:1100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
  color:#fff;
}
.articleModalFrame{
  width:100%;
  max-width:1100px;
  flex:1;
  background:#fff;
  border:none;
  box-shadow:0 30px 80px -30px rgba(0,0,0,0.6);
}

/* テキスト抽出版（スマホ用） */
.articleTextView{
  display:none;
  width:100%;
  max-width:680px;
  flex:1;
  background:#fff;
  box-shadow:0 30px 80px -30px rgba(0,0,0,0.6);
  overflow-y:auto;
  padding:32px 24px 48px;
}
.articleTextView.show{display:block;}
.articleModalFrame.hide{display:none;}
.articleTextView .atTitle{
  font-family:'Noto Serif JP',serif;
  font-size:19px;
  line-height:1.6;
  color:var(--navy);
  margin-bottom:10px;
}
.articleTextView .atDate{
  font-size:12px;
  letter-spacing:0.1em;
  color:var(--gold);
  margin-bottom:24px;
  padding-bottom:20px;
  border-bottom:1px solid var(--line);
}
.articleTextView .atTopBanner{
  width:100%;
  display:block;
  margin-bottom:20px;
}
.articleTextView .atThumb{
  display:block;
  max-width:280px;
  margin:0 auto 24px;
}
.articleTextView .atNotice{
  width:100%;
  display:block;
  margin:32px 0;
}
.articleTextView .atFooterBanner{
  width:100%;
  display:block;
  margin-top:24px;
}
.articleTextView h3{
  font-size:15px;
  color:var(--navy);
  margin:28px 0 12px;
  padding-left:12px;
  border-left:3px solid var(--gold);
}
.articleTextView p{
  font-size:14px;
  line-height:1.9;
  color:#444;
  margin-bottom:16px;
}
.articleTextView a{
  color:var(--gold);
  text-decoration:underline;
}

/* ===== Series card (連載シリーズ：コンプラ通信など) ===== */
.seriesCard{
  display:flex;
  gap:32px;
  align-items:center;
  padding:32px;
  border:1px solid var(--line);
  margin-bottom:60px;
}
.seriesCard .seriesThumb{
  flex:0 0 140px;
  aspect-ratio:3/4;
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-family:'Noto Serif JP',serif;
}
.seriesCard .seriesThumb .vol{
  font-size:11px;
  letter-spacing:0.2em;
  color:var(--gold);
}
.seriesCard .seriesThumb .title{
  font-size:20px;
  margin-top:8px;
}
.seriesCard .seriesInfo .label{margin-bottom:10px;}
.seriesCard .seriesInfo h3{
  font-size:20px;
  color:var(--navy);
  margin-bottom:10px;
}
.seriesCard .seriesInfo p{
  font-size:13px;
  color:#555;
  margin-bottom:18px;
}

.seriesBackIssues{
  margin-top:20px;
}
.seriesBackIssues summary{
  cursor:pointer;
  font-size:13px;
  letter-spacing:0.1em;
  color:var(--navy);
  padding:10px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.seriesBackIssues summary::after{
  content:"＋ 表示する";
  float:right;
  color:var(--gold);
  font-size:12px;
}
.seriesBackIssues[open] summary::after{content:"－ 閉じる";}
.backIssueGrid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:20px;
}
.backIssueGrid button{
  font-family:'Noto Sans JP',sans-serif;
  font-size:12px;
  letter-spacing:0.05em;
  padding:10px 4px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  cursor:pointer;
  transition:border-color .2s ease, color .2s ease;
}
.backIssueGrid button:hover{
  border-color:var(--gold);
  color:var(--gold);
}
.backIssueGrid button[disabled]{
  color:#bbb;
  cursor:default;
  border-color:var(--line);
}
.backIssueGrid button[disabled]:hover{
  border-color:var(--line);
  color:#bbb;
}


/* ===== Buttons ===== */
.btn{
  display:inline-block;
  padding:14px 36px;
  border:1px solid var(--navy);
  color:var(--navy);
  font-size:13px;
  letter-spacing:0.2em;
  transition:background .3s ease, color .3s ease;
}
.btn:hover{
  background:var(--navy);
  color:#fff;
}

/* ===== Footer (全ページ共通) ===== */
footer.siteFooter{
  background:var(--navy);
  color:#cfd4e0;
  padding:0 0 32px;
}
.siteFooter .footDivider{
  width:100%;
  height:50px;
  background-image:url(../img/footer_skyline.svg);
  background-repeat:no-repeat;
  background-size:100% 100%;
  margin-bottom:40px;
}
.footInner{
  position:relative;
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
  padding-bottom:40px;
}
.footInner .fLogo{
  font-family:'Noto Serif JP',serif;
  font-size:17px;
  letter-spacing:0.15em;
  color:#fff;
  margin-bottom:16px;
}
.footInner .fAddr{
  font-size:13px;
  color:#9aa3b8;
  line-height:1.9;
}
.footNav ul{
  list-style:none;
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}
.footNav a{
  font-size:13px;
  letter-spacing:0.1em;
  color:#cfd4e0;
}
.footNav a:hover{color:var(--gold);}
.copyright{
  max-width:1180px;
  margin:24px auto 0;
  padding:0 32px;
  font-size:11px;
  color:#7d869c;
  letter-spacing:0.1em;
  text-align:center;
}

/* ===== Staff anchor nav (弁護士一覧の写真リンク) ===== */
.staffNav{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
  margin-bottom:60px;
}
.staffNav a{
  display:block;
  text-align:center;
  font-size:12px;
  color:var(--navy);
  letter-spacing:0.05em;
}
.staffNav img{
  border-radius:2px;
  margin-bottom:8px;
  transition:opacity .3s ease, transform .3s ease;
}
.staffNav a:hover img{
  opacity:0.85;
  transform:translateY(-3px);
}

/* ===== Staff hero (顔写真タイル) ===== */
.staffHero{
  position:relative;
  margin-top:72px;
  height:30vh;
  min-height:260px;
  overflow:hidden;
  display:grid;
  grid-template-columns:repeat(6,1fr);
}
.staffHero .tile{
  position:relative;
  overflow:hidden;
}
.staffHero .tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  filter:grayscale(100%);
}
.staffHero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(15,31,61,0.55);
  pointer-events:none;
}
.staffHero .heroLabel{
  position:absolute;
  bottom:32px;left:50%;
  transform:translateX(-50%);
  z-index:2;
  color:#fff;
  text-align:center;
}
.staffHero .heroLabel .eyebrow{
  font-size:12px;
  letter-spacing:0.35em;
  color:var(--gold);
  text-transform:uppercase;
  display:block;
  margin-bottom:12px;
}
.staffHero .heroLabel h1{
  font-size:clamp(24px,4vw,36px);
  text-shadow:0 2px 16px rgba(0,0,0,0.3);
}

/* ===== Staff selector cards (タブ切り替え) ===== */
.staffSelector{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:60px;
}
.staffSelector .selCard{
  display:block;
  border:1px solid var(--line);
  padding:20px;
  text-align:center;
  cursor:pointer;
  background:#fff;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.staffSelector .selCard img{
  width:80px;height:80px;
  object-fit:cover;
  object-position:top center;
  border-radius:50%;
  margin:0 auto 14px;
}
.staffSelector .selCard .name{
  font-family:'Noto Serif JP',serif;
  font-size:15px;
  color:var(--navy);
  margin-bottom:4px;
}
.staffSelector .selCard .role{
  display:block;
  font-size:11px;
  letter-spacing:0.15em;
  color:var(--gold);
  margin-bottom:8px;
}
.staffSelector .selCard .field{
  font-size:11px;
  color:#888;
  line-height:1.6;
}
.staffSelector .selCard:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px -24px rgba(15,31,61,0.35);
}
.staffSelector .selCard.active{
  border-color:var(--gold);
  box-shadow:0 16px 40px -24px rgba(15,31,61,0.35);
}
.staffSelector .selCard.active .name{color:var(--gold);}

/* profile panels toggled by JS */
.profilePanel{display:none;scroll-margin-top:90px;}
.profilePanel.active{display:block;animation:fadeIn .4s ease;}
@keyframes fadeIn{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}

/* placeholder guide shown before a lawyer is selected */
.profilePlaceholder{
  scroll-margin-top:90px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 32px;
  border:1px solid var(--line);
  background:var(--bg-cream);
  animation:fadeIn .4s ease;
}
.profilePlaceholder.hidden{display:none;}
.profilePlaceholder .icon{
  width:48px;height:48px;
  margin-bottom:24px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.profilePlaceholder .icon::before{
  content:"";
  display:block;
  width:10px;height:10px;
  border:1px solid var(--gold);
  border-width:0 2px 2px 0;
  transform:rotate(-45deg) translate(-1px,1px);
}
.profilePlaceholder .eyebrow{
  font-size:12px;
  letter-spacing:0.35em;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:14px;
}
.profilePlaceholder h2{
  font-size:22px;
  color:var(--navy);
  margin-bottom:12px;
}
.profilePlaceholder p{
  font-size:13px;
  color:#888;
}


.profile .detailBlock{margin-bottom:24px;}
.profile .detailBlock h4{
  font-size:13px;
  letter-spacing:0.2em;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:10px;
  padding-left:14px;
  border-left:3px solid var(--gold);
}
.profile .detailBlock .body{
  font-size:13px;
  color:#555;
}
.profile .detailBlock dl{font-size:13px;color:#555;}
.profile .detailBlock dt{
  float:left;
  width:110px;
  color:#888;
  clear:left;
  margin-bottom:8px;
}
.profile .detailBlock dd{
  margin-left:110px;
  margin-bottom:8px;
}
.profile .detailBlock ul.plain{list-style:none;}
.profile .detailBlock ul.plain li{margin-bottom:4px;}

/* collapsible long lists (講演・セミナー等) */
.profile details{
  font-size:13px;
  color:#555;
}
.profile details summary{
  cursor:pointer;
  color:var(--navy);
  font-size:13px;
  letter-spacing:0.1em;
  padding:8px 0;
  border-bottom:1px solid var(--line);
  margin-bottom:12px;
}
.profile details summary::-webkit-details-marker{display:none;}
.profile details summary::after{
  content:"＋ 表示する";
  float:right;
  color:var(--gold);
  font-size:12px;
}
.profile details[open] summary::after{content:"－ 閉じる";}

/* ===== Books / publication cards ===== */
.bookSectionTitle{
  font-size:13px;
  letter-spacing:0.3em;
  color:var(--gold);
  text-transform:uppercase;
  margin:60px 0 24px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.bookSectionTitle:first-child{margin-top:0;}
.byline{
  font-size:13px;
  color:var(--gold);
  letter-spacing:0.1em;
  margin-bottom:20px;
}
.bookCard{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:32px;
  padding:36px 0;
  border-bottom:1px solid var(--line);
  align-items:start;
}
.bookCard:last-child{border-bottom:none;}
.bookCard img{
  border:1px solid var(--line);
  box-shadow:0 12px 30px -18px rgba(15,31,61,0.35);
}
.bookCard h3{
  font-size:16px;
  color:var(--navy);
  margin-bottom:10px;
  line-height:1.6;
}
.bookCard .meta{
  font-size:12px;
  color:var(--gold);
  letter-spacing:0.05em;
  margin-bottom:14px;
}
.bookCard p.desc{
  font-size:13px;
  color:#555;
  margin-bottom:18px;
}
.bookCard .btn{font-size:12px;padding:10px 24px;}

/* article list (連載バックナンバー) */
.articleList{
  font-size:13px;
  color:#444;
}
.articleList li{
  display:flex;
  gap:20px;
  padding:10px 0;
  border-bottom:1px dotted var(--line);
}
.articleList .date{
  flex:0 0 90px;
  color:var(--gold);
  font-size:12px;
  letter-spacing:0.05em;
}
.articleList a{
  text-decoration:none;
}
.articleList a:hover{
  color:var(--gold);
}
.featuredArticle{
  display:grid;
  grid-template-columns:135px 1fr;
  gap:28px;
  padding:24px;
  background:var(--bg-cream);
  margin-bottom:28px;
  align-items:start;
}
.featuredArticle h4{
  font-size:15px;
  color:var(--navy);
  margin-bottom:8px;
}
.featuredArticle p{
  font-size:13px;
  color:#555;
}


/* ===== Staff list (anchor jump cards) ===== */
.staffNav{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  margin-bottom:60px;
}
.staffNav a{
  display:block;
  text-align:center;
  border:1px solid var(--line);
  padding:16px 8px;
  font-size:12px;
  letter-spacing:0.1em;
  color:var(--navy);
  transition:border-color .3s ease, color .3s ease;
}
.staffNav a:hover{
  border-color:var(--gold);
  color:var(--gold);
}
.staffNav img{
  width:100%;
  border-radius:2px;
  margin-bottom:10px;
}

/* ===== Profile detail blocks ===== */
.profile .detailBlock{
  margin-bottom:24px;
}
.profile .detailBlock h4{
  font-size:13px;
  letter-spacing:0.2em;
  color:var(--gold);
  border-left:3px solid var(--gold);
  padding-left:10px;
  margin-bottom:10px;
}
.profile .detailBlock p,
.profile .detailBlock li{
  font-size:13px;
  color:#555;
}
.profile .careerList dt{
  float:left;
  width:100px;
  color:#999;
  clear:left;
  margin-bottom:6px;
  font-size:12px;
}
.profile .careerList dd{
  margin-left:100px;
  margin-bottom:6px;
  font-size:13px;
}
.profile details{
  margin-top:8px;
  font-size:13px;
  color:#555;
}
.profile details summary{
  cursor:pointer;
  color:var(--gold);
  font-size:12px;
  letter-spacing:0.1em;
  margin-bottom:10px;
}
.profile details summary:hover{color:var(--navy);}

/* ===== Book recommendation cards ===== */
.bookSection{
  margin-bottom:80px;
}
.bookSection .authorLabel{
  display:inline-block;
  font-size:12px;
  letter-spacing:0.2em;
  color:var(--gold);
  border:1px solid var(--gold);
  padding:6px 16px;
  margin-bottom:24px;
}
.bookCard{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:32px;
  padding:32px 0;
  border-bottom:1px solid var(--line);
}
.bookCard:last-child{border-bottom:none;}
.bookCard img{
  border-radius:2px;
  box-shadow:0 12px 30px -16px rgba(15,31,61,0.35);
}
.bookCard h3{
  font-size:17px;
  color:var(--navy);
  margin-bottom:8px;
}
.bookCard .meta{
  font-size:12px;
  color:var(--gold);
  letter-spacing:0.05em;
  margin-bottom:14px;
}
.bookCard p.desc{
  font-size:13px;
  color:#555;
  margin-bottom:16px;
}

/* ===== Column article list (連載記事) ===== */
.featuredArticle{
  display:grid;
  grid-template-columns:135px 1fr;
  gap:24px;
  padding:24px;
  background:var(--bg-cream);
  margin-bottom:32px;
  align-items:center;
}
.featuredArticle img{border-radius:2px;}
.featuredArticle h4{
  font-size:15px;
  color:var(--navy);
  margin-bottom:8px;
}
.featuredArticle p{
  font-size:13px;
  color:#555;
}
.articleList{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4px 32px;
  font-size:13px;
}
.articleList li{
  display:flex;
  gap:14px;
  padding:10px 0;
  border-bottom:1px dotted var(--line);
}
.articleList .date{
  color:#999;
  font-size:12px;
  white-space:nowrap;
}
.articleList a:hover{color:var(--gold);}

@media (max-width:860px){
  .hero .slide .slideImg{
    background-position:20% center;
    animation-name:kbMobile;
  }
  .hero .slide:nth-child(1) .slideImg{--kb-x:4%;--kb-y:-1%;}
  .hero .slide:nth-child(2) .slideImg{--kb-x:4%;--kb-y:0.6%;}
  .hero .slide:nth-child(3) .slideImg{--kb-x:4%;--kb-y:-1.2%;}
  .hero .slide:nth-child(4) .slideImg{--kb-x:4%;--kb-y:-0.8%;}
  .hero .slide:nth-child(4) .slideImg.mobileSwap{
    background-image:url('../img/img_main_02_mobile.jpg') !important;
    background-position:center !important;
    animation-name:kbMobileCenter;
  }
  @keyframes kbMobile{
    from{background-position:20% center; transform:scale(1.04);}
    to{background-position:55% center; transform:scale(1.08);}
  }
  @keyframes kbMobileCenter{
    from{background-position:center; transform:scale(1.04);}
    to{background-position:center; transform:scale(1.08);}
  }

  .staffHero{grid-template-columns:repeat(3,1fr);height:auto;min-height:0;}
  .staffHero .tile{aspect-ratio:3/4;}
  .staffSelector{grid-template-columns:repeat(2,1fr);}
  .staffNav{grid-template-columns:repeat(3,1fr);}
  .bookCard{grid-template-columns:1fr;}
  .featuredArticle{grid-template-columns:1fr;}
  .articleList{grid-template-columns:1fr;}
  .navToggle{display:block;}
  .siteHeader nav{
    position:static;
  }
  .siteHeader nav ul{
    display:flex;
    flex-direction:column;
    gap:0;
    list-style:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
  }
  .siteHeader nav.open ul{
    max-height:400px;
  }
  .siteHeader nav ul li{
    border-top:1px solid var(--line);
  }
  .siteHeader nav a,
  .siteHeader nav span.current{
    display:block;
    padding:16px 32px;
  }
  .siteHeader nav a::after,
  .siteHeader nav span.current::after{
    display:none;
  }
  .greeting{grid-template-columns:1fr;gap:40px;}
  .pillars{grid-template-columns:1fr;}
  .cardGrid,
  .cardGrid.cols3{grid-template-columns:1fr;}
  .profile{grid-template-columns:1fr;}
  .accessBlock{grid-template-columns:1fr;}
  .section{padding:80px 24px;}
  .pageHead{padding:140px 24px 50px;}
  .statement{grid-template-columns:1fr;gap:12px;}
  .statement .bigNum{font-size:48px;}
  .areasHeader .areaCount{font-size:44px;}
  .areaItem .areaHead .areaName{font-size:16px;gap:10px;}
  .seriesCard{flex-direction:column;align-items:flex-start;padding:24px;}
  .seriesCard .seriesThumb{flex:0 0 auto;width:120px;}
  .backIssueGrid{grid-template-columns:repeat(3,1fr);}
  .pdfModalOverlay{padding:16px;}
  .pdfModalTitle{font-size:13px;}
  .pdfModalControls{gap:18px;}
  .articleModalOverlay{padding:12px;}
  .articleModalBar{margin-bottom:10px;}
}

