/* =========================================================
   さくら社会保険労務士事務所 — Corporate LP
   和モダン / 信頼感・誠実
   ========================================================= */

:root {
  /* 黄緑テーマ：明るく前向き。変数名は元のままだが、値を黄緑系に変更しています */
  --navy:       #5d9b1f;   /* メインの黄緑（見出し・ボタン・タグ・Contact背景） */
  --navy-deep:  #437414;   /* 濃い緑（フッター背景・ホバー時） */
  --navy-soft:  #79b53a;   /* 補助の黄緑 */
  --blue-pale:  #eaf4d8;   /* 淡い黄緑（タグ背景・大きな数字） */
  --blue-mist:  #f4faea;   /* ホバー時の極淡い黄緑 */
  --blue-line:  #d4e6bb;   /* 淡い罫線 */
  --ink:        #1d2530;
  --ink-soft:   #4a5563;
  --gray:       #7b8696;
  --line:       #e4e8ee;
  --bg:         #ffffff;
  --bg-soft:    #f6faef;   /* セクション交互背景：ほんのり黄緑 */
  --gold:       #f2a51e;   /* アクセント：あたたかいオレンジ（差し色） */

  --serif-en: 'Cormorant Garamond', 'Shippori Mincho', serif;
  --serif-jp: 'Shippori Mincho', serif;
  --sans:     'Noto Sans JP', -apple-system, sans-serif;

  --maxw: 1180px;
  --header-h: 84px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Section label (English big + JP small) ---------- */
.sec-label { margin-bottom: 56px; }
.sec-label.center { text-align: center; }
.sec-label .en {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: .01em;
  display: block;
}
.sec-label .jp {
  font-family: var(--serif-jp);
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 14px;
  display: inline-block;
  position: relative;
  padding-left: 0;
  letter-spacing: .14em;
}
.sec-label.center .jp::before,
.sec-label.center .jp::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--blue-line);
  vertical-align: middle;
  margin: 0 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: .92rem; font-weight: 500;
  letter-spacing: .12em;
  padding: 17px 38px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
}
.btn .arrow { width: 22px; height: 1px; background: currentColor; position: relative; transition: all .4s var(--ease); }
.btn .arrow::after { content:""; position:absolute; right:0; top:-3px; width:7px; height:7px; border-top:1px solid currentColor; border-right:1px solid currentColor; transform: rotate(45deg); }
.btn:hover { background: var(--navy); color: #fff; }
.btn:hover .arrow { width: 30px; }
.btn.solid { background: var(--navy); color: #fff; }
.btn.solid:hover { background: var(--navy-deep); }
.btn.light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn.light:hover { background: #fff; color: var(--navy); border-color:#fff; }
.btn.big { padding: 22px 54px; font-size: 1rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s var(--ease);
}
.header.scrolled { box-shadow: 0 6px 30px rgba(40,75,25,.09); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 36px; }

.logo { display: flex; align-items: center; gap: 14px; }
.logo .mark { width: 38px; height: 38px; flex: none; }
.logo .word { line-height: 1.15; }
.logo .word .en { font-family: var(--serif-en); font-weight: 600; font-size: 1.5rem; letter-spacing: .18em; color: var(--navy); }
.logo .word .jp { font-family: var(--serif-jp); font-size: .64rem; letter-spacing: .26em; color: var(--ink-soft); display:block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: block; padding: 12px 15px;
  font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--ink);
  transition: color .3s;
}
.nav > li > a:hover { color: var(--navy); }
.nav > li.has-drop > a::after { content:"›"; transform: rotate(90deg); display:inline-block; margin-left:6px; font-size:.8rem; color: var(--gray); }
.nav .pill { color:#fff !important; background: var(--navy); padding: 12px 22px !important; border-radius: 2px; }
.nav .pill:hover { background: var(--navy-deep); }

.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; min-width: 230px; padding: 10px 0;
  box-shadow: 0 18px 44px rgba(40,75,25,.16); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transition: all .32s var(--ease);
}
.nav > li.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.dropdown li a { display: block; padding: 11px 24px; font-size: .82rem; color: var(--ink-soft); transition: all .25s; }
.dropdown li a:hover { background: var(--blue-mist); color: var(--navy); padding-left: 30px; }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--ink); transition: all .35s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 99; background: #fff; padding: calc(var(--header-h) + 20px) 32px 40px; transform: translateX(100%); transition: transform .5s var(--ease); overflow-y: auto; }
.drawer.open { transform: none; }
.drawer ul { display: flex; flex-direction: column; }
.drawer > ul > li { border-bottom: 1px solid var(--line); }
.drawer > ul > li > a { display: block; padding: 18px 4px; font-family: var(--serif-jp); font-size: 1.05rem; }
.drawer .sub a { padding: 10px 4px 10px 22px; font-size: .9rem; color: var(--ink-soft); }
.drawer .pill { display:inline-block; margin-top: 28px; background: var(--navy); color:#fff; padding: 16px 32px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
/* ヒーロー背景スライドショー（クロスフェード＋ゆっくりズーム） */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1.6s var(--ease); }
.hero-slide.active { opacity: 1; animation: heroKen 7s var(--ease) forwards; }
@keyframes heroKen { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce){ .hero-slide.active { animation: none; transform: none; } }
.hero::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(105deg, rgba(26,52,14,.80) 0%, rgba(42,78,24,.52) 55%, rgba(42,78,24,.26) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero .ey { font-family: var(--serif-en); font-style: italic; letter-spacing: .18em; font-size: 1.1rem; opacity: .85; margin-bottom: 26px; }
.hero h1 {
  font-family: var(--serif-jp); font-weight: 600;
  font-size: clamp(2.2rem, 5.2vw, 4.1rem); line-height: 1.5;
  letter-spacing: .03em; text-shadow: 0 2px 24px rgba(0,0,0,.25);
  margin-bottom: 38px;
}
.hero h1 .hl { color: #fff; border-bottom: 3px solid var(--gold); padding-bottom: 4px; }
.hero .checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 46px; }
.hero .checks li { font-size: 1.02rem; letter-spacing: .04em; padding-left: 30px; position: relative; opacity: .95; }
.hero .checks li::before { content:""; position:absolute; left:0; top:.5em; width: 16px; height: 9px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.hero .scroll-ind { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; writing-mode: vertical-rl; font-family: var(--serif-en); font-size: .72rem; letter-spacing: .3em; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 14px; }
.hero .scroll-ind::after { content:""; width: 1px; height: 54px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top; } 51%{ transform-origin: bottom; } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================
   SECTION SHELL
   ========================================================= */
section { position: relative; }
.pad { padding: clamp(80px, 11vw, 150px) 0; }
.pad-soft { background: var(--bg-soft); }

/* =========================================================
   NEWS
   ========================================================= */
.news-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 54px; }
.news-head .sec-label { margin-bottom: 0; }
.news-list { border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 132px 116px 1fr; align-items: center; gap: 26px; padding: 26px 8px; border-bottom: 1px solid var(--line); transition: background .3s, padding .3s; }
.news-item:hover { background: var(--blue-mist); padding-left: 18px; }
.news-item .date { font-family: var(--serif-en); font-size: 1.05rem; color: var(--gray); letter-spacing: .04em; }
.news-tag { justify-self: start; font-size: .7rem; letter-spacing: .1em; padding: 5px 16px; white-space: nowrap; }
.news-tag.notice { background: var(--navy); color: #fff; }
.news-tag.law { background: var(--blue-pale); color: var(--navy); }
.news-item .ttl { font-size: .96rem; color: var(--ink); transition: color .3s; }
.news-item:hover .ttl { color: var(--navy); }

/* =========================================================
   MESSAGE
   ========================================================= */
.message { position: relative; color: #fff; overflow: hidden; }
.message .bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.message::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(90deg, rgba(24,48,12,.90), rgba(40,74,22,.70)); }
.message .container { position: relative; z-index: 2; }
.message .block { max-width: 720px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(4px); padding: clamp(40px,5vw,64px); }
.message .lab { font-family: var(--serif-en); font-size: 1rem; letter-spacing: .3em; opacity: .8; }
.message h2 { font-family: var(--serif-jp); font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.6; margin: 14px 0 30px; }
.message p { opacity: .92; margin-bottom: 30px; max-width: 60ch; }
.message .defs { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 30px; }
.message .defs li { display: flex; gap: 18px; align-items: baseline; }
.message .defs .k { font-family: var(--serif-jp); font-size: 1.15rem; color: var(--gold); white-space: nowrap; min-width: 88px; }
.message .defs .v { font-size: .92rem; opacity: .9; }

/* =========================================================
   REASONS (選ばれる理由)
   ========================================================= */
.reasons .sec-label .jp { font-family: var(--serif-jp); }
.reasons-head { text-align: center; margin-bottom: 70px; }
.reasons-head .big { font-family: var(--serif-jp); font-size: clamp(1.6rem,3.4vw,2.4rem); font-weight:600; color: var(--navy); margin-top: 10px; }
.reasons-head .big b { color: var(--gold); font-size: 1.3em; }
.reason { display: grid; grid-template-columns: 200px 1fr; gap: 50px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--line); }
.reason:last-of-type { border-bottom: none; }
.reason .num { font-family: var(--serif-en); font-size: clamp(4rem,9vw,7rem); line-height: 1; color: var(--blue-pale); font-weight: 600; position: relative; }
.reason .num small { display:block; font-family: var(--serif-jp); font-size: .8rem; letter-spacing:.3em; color: var(--navy); margin-top: 6px; }
.reason h3 { font-family: var(--serif-jp); font-size: clamp(1.3rem,2.4vw,1.7rem); color: var(--navy); margin-bottom: 16px; font-weight: 600; }
.reason p { color: var(--ink-soft); max-width: 62ch; }

/* =========================================================
   ABOUT US
   ========================================================= */
.about-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.acard { position: relative; height: 540px; overflow: hidden; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.acard .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); z-index:0; }
.acard:hover .img { transform: scale(1.07); }
.acard::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(to top, rgba(20,42,10,.93) 8%, rgba(20,42,10,.34) 55%, rgba(20,42,10,.14) 100%); }
.acard .inner { position: relative; z-index: 2; padding: 36px 30px 38px; }
.acard .script { position: absolute; top: 30px; left: 30px; z-index: 2; font-family: var(--serif-en); font-style: italic; font-size: 1.5rem; opacity: .85; }
.acard .no { font-family: var(--serif-en); font-size: 1rem; letter-spacing: .3em; opacity: .8; display:block; margin-bottom: 8px; }
.acard h3 { font-family: var(--serif-jp); font-size: 1.6rem; font-weight: 600; margin-bottom: 14px; }
.acard p { font-size: .86rem; opacity: .9; line-height: 1.8; margin-bottom: 20px; }
.acard .stat { display:flex; gap: 22px; margin-bottom: 20px; }
.acard .stat div { line-height: 1.2; }
.acard .stat .n { font-family: var(--serif-en); font-size: 1.9rem; color: #fff; }
.acard .stat .l { font-size: .68rem; opacity: .82; letter-spacing: .08em; }
.acard .more { font-size: .76rem; letter-spacing: .15em; display: inline-flex; align-items: center; gap: 10px; border-top: 1px solid rgba(255,255,255,.3); padding-top: 16px; }
.acard .more::after { content:"→"; transition: transform .35s; }
.acard:hover .more::after { transform: translateX(6px); }

/* =========================================================
   SERVICE
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc { background: #fff; padding: 48px 38px; transition: background .4s var(--ease); position: relative; }
.svc:hover { background: var(--blue-mist); }
.svc .no { font-family: var(--serif-en); font-size: .8rem; letter-spacing: .2em; color: var(--gray); }
.svc .ic { width: 52px; height: 52px; margin: 20px 0 22px; color: var(--navy); }
.svc h3 { font-family: var(--serif-jp); font-size: 1.35rem; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.svc .en { font-family: var(--serif-en); font-style: italic; font-size: .9rem; color: var(--gold); margin-bottom: 14px; }
.svc p { font-size: .86rem; color: var(--ink-soft); }

/* =========================================================
   OFFICE
   ========================================================= */
.office-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: start; }
.office h2 { font-family: var(--serif-jp); font-size: clamp(1.5rem,2.8vw,2.1rem); font-weight: 600; color: var(--navy); line-height: 1.6; margin-bottom: 38px; }
.office-table { width: 100%; border-top: 1px solid var(--line); }
.office-table .row { display: grid; grid-template-columns: 150px 1fr; padding: 20px 4px; border-bottom: 1px solid var(--line); gap: 20px; }
.office-table .k { font-family: var(--serif-jp); font-size: .92rem; color: var(--navy); }
.office-table .v { font-size: .92rem; color: var(--ink-soft); }
.office-links { background: var(--bg-soft); border: 1px solid var(--line); }
.office-links a { display: flex; justify-content: space-between; align-items: center; padding: 26px 30px; border-bottom: 1px solid var(--line); font-family: var(--serif-jp); font-size: 1.08rem; transition: all .3s; }
.office-links a:last-child { border-bottom: none; }
.office-links a:hover { background: var(--navy); color: #fff; padding-left: 38px; }
.office-links a .ar { font-family: var(--serif-en); }
.office-links a span.s { display:block; font-family: var(--serif-en); font-size: .7rem; letter-spacing:.16em; color: var(--gray); }
.office-links a:hover span.s { color: rgba(255,255,255,.7); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--navy); color: #fff; text-align: center; }
.contact .lab { font-family: var(--serif-en); font-size: 1.1rem; letter-spacing: .3em; opacity: .8; }
.contact h2 { font-family: var(--serif-jp); font-size: clamp(1.3rem,2.6vw,1.9rem); font-weight: 500; margin: 18px auto 40px; max-width: 24em; line-height: 1.7; }
.contact .tel { font-family: var(--serif-en); font-size: clamp(2.6rem,6vw,4.2rem); font-weight: 600; letter-spacing: .04em; line-height: 1.1; }
.contact .tel-sub { opacity: .75; font-size: .9rem; letter-spacing: .12em; margin-bottom: 40px; }
.contact .tel .ph-ic { font-size: .55em; vertical-align: middle; margin-right: 14px; }

/* =========================================================
   FOOTER
   ========================================================= */
.banners { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--navy-deep); }
.banners a { position: relative; height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 0 36px; color: #fff; overflow: hidden; }
.banners a .bgi { position:absolute; inset:0; background-size:cover; background-position:center; z-index:0; transition: transform 1s var(--ease); }
.banners a:hover .bgi { transform: scale(1.08); }
.banners a::after { content:""; position:absolute; inset:0; z-index:1; background: rgba(34,64,18,.78); transition: background .4s; }
.banners a:hover::after { background: rgba(34,64,18,.58); }
.banners a .t { position: relative; z-index:2; font-family: var(--serif-en); font-size: 1.5rem; letter-spacing: .12em; }
.banners a .s { position: relative; z-index:2; font-size: .74rem; opacity: .8; margin-top: 6px; }

.footer { background: var(--navy-deep); color: rgba(255,255,255,.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; padding-bottom: 64px; }
.footer .f-logo .en { font-family: var(--serif-en); font-weight: 600; font-size: 1.6rem; letter-spacing: .18em; color: #fff; }
.footer .f-logo .jp { font-family: var(--serif-jp); font-size: .72rem; letter-spacing: .22em; display:block; margin-top: 4px; }
.footer .f-logo p { font-size: .82rem; margin-top: 22px; line-height: 1.9; opacity: .7; }
.footer .f-col h4 { font-family: var(--serif-en); font-size: .9rem; letter-spacing: .14em; color: #fff; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.18); }
.footer .f-col li a { display: block; padding: 7px 0; font-size: .84rem; opacity: .78; transition: all .3s; }
.footer .f-col li a:hover { opacity: 1; padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 26px 0; text-align: center; font-size: .76rem; opacity: .6; letter-spacing: .08em; }

/* =========================================================
   FLOATING UI
   ========================================================= */
.totop { position: fixed; right: 26px; bottom: 96px; z-index: 80; width: 54px; height: 54px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .4s var(--ease); }
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--navy-deep); }
.totop::before { content:""; width: 11px; height: 11px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(-45deg); margin-top: 4px; }

.zoom-bar { position: fixed; left: 0; bottom: 0; width: 100%; z-index: 85; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; gap: 36px; padding: 16px 60px 16px 24px; transform: translateY(0); transition: transform .5s var(--ease); }
.zoom-bar.hide { transform: translateY(100%); }
.zoom-bar .txt li { font-size: .82rem; letter-spacing: .04em; padding-left: 20px; position: relative; }
.zoom-bar .txt li::before { content:"・"; position:absolute; left:0; color: var(--gold); }
.zoom-bar .txt { display: flex; gap: 30px; flex-wrap: wrap; }
.zoom-bar .zbtn { background: var(--gold); color: #fff; padding: 12px 28px; font-size: .9rem; font-weight: 500; letter-spacing: .08em; white-space: nowrap; display:flex; align-items:center; gap:10px; transition: background .3s; }
.zoom-bar .zbtn:hover { background: #9a7945; }
.zoom-bar .close { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.4); color:#fff; background:none; cursor: pointer; font-size: 1rem; line-height: 1; display:flex; align-items:center; justify-content:center; transition: all .3s; }
.zoom-bar .close:hover { background: rgba(255,255,255,.15); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .about-cards { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .office-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 860px){
  :root { --header-h: 70px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .banners { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .reason { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
  .reason .num { font-size: 4rem; }
  .news-item { grid-template-columns: 100px 1fr; row-gap: 6px; }
  .news-item .ttl { grid-column: 1 / -1; }
  .zoom-bar .txt { display: none; }
  .zoom-bar { justify-content: space-between; padding: 14px 56px 14px 24px; }
  .zoom-bar::before { content:"オンライン打合せ対応"; font-family: var(--serif-jp); font-size: .9rem; }
}
@media (max-width: 560px){
  .container { padding: 0 22px; }
  .about-cards { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .acard { height: 460px; }
  .header-inner { padding: 0 22px; }
}
