:root {
  --navy: #123653;
  --navy-dark: #0a2942;
  --indigo: #1d4f73;
  --orange: #d45522;
  --orange-dark: #b74217;
  --sage: #6b8553;
  --sage-light: #edf3e8;
  --ivory: #fbf8f1;
  --paper: #f4efe4;
  --ink: #20303a;
  --muted: #60717b;
  --line: #d8e0e3;
  --white: #fff;
  --shadow: 0 14px 40px rgba(14, 46, 69, .10);
  --radius: 22px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--orange); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f4a340; outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; transform: translateY(-160%); padding: 10px 16px; color: var(--white); background: var(--navy-dark); border-radius: 8px; }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.utility { color: var(--white); background: var(--navy-dark); font-size: .88rem; }
.utility__inner { min-height: 38px; display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.utility a { color: var(--white); font-weight: 700; text-decoration: none; }
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(18,54,83,.12); backdrop-filter: blur(12px); }
.header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-dark); text-decoration: none; font-weight: 800; letter-spacing: .04em; white-space: nowrap; }
.brand__mark { width: 42px; aspect-ratio: 1; display: grid; place-items: center; border: 3px solid var(--navy); border-radius: 50%; background: radial-gradient(circle, var(--navy) 0 14%, transparent 15%), conic-gradient(from 22.5deg, var(--navy) 0 12.5%, transparent 12.5% 25%, var(--navy) 25% 37.5%, transparent 37.5% 50%, var(--navy) 50% 62.5%, transparent 62.5% 75%, var(--navy) 75% 87.5%, transparent 87.5%); }
.brand__name { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.08rem, 2vw, 1.42rem); }
.global-nav { display: flex; align-items: center; gap: 4px; }
.global-nav > a, .nav-group__toggle { display: inline-flex; align-items: center; min-height: 46px; padding: 0 11px; border: 0; color: var(--ink); background: transparent; font-size: .9rem; font-weight: 700; text-decoration: none; cursor: pointer; border-radius: 10px; }
.global-nav > a:hover, .global-nav > a[aria-current="page"], .nav-group__toggle:hover, .nav-group:focus-within .nav-group__toggle { color: var(--orange); background: #fff5ed; }
.nav-group.is-current > .nav-group__toggle { color: var(--orange); background: #fff5ed; }
.global-nav > .nav-group:nth-last-child(2) .nav-group__menu { right: 0; left: auto; }
.nav-group { position: relative; }
.nav-group__toggle::after { content: ""; width: 7px; height: 7px; margin: -4px 0 0 8px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg); }
.nav-group__menu { position: absolute; top: calc(100% - 2px); left: 0; width: 250px; display: grid; gap: 2px; padding: 10px; visibility: hidden; opacity: 0; transform: translateY(8px); background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); transition: .2s ease; }
.nav-group:hover .nav-group__menu, .nav-group:focus-within .nav-group__menu, .nav-group.is-open .nav-group__menu { visibility: visible; opacity: 1; transform: none; }
.nav-group__menu a { padding: 8px 10px; color: var(--ink); text-decoration: none; border-radius: 8px; }
.nav-group__menu a:hover { color: var(--orange); background: #fff5ed; }
.header__cta { padding: 11px 17px !important; color: var(--white) !important; background: var(--orange) !important; border-radius: 999px !important; }
.header__cta:hover { background: var(--orange-dark) !important; }
.menu-button { width: 46px; height: 46px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; }
.menu-button > span[aria-hidden="true"], .menu-button > span[aria-hidden="true"]::before, .menu-button > span[aria-hidden="true"]::after { width: 23px; height: 2px; display: block; position: relative; background: var(--navy); transition: .2s; }
.menu-button > span[aria-hidden="true"]::before, .menu-button > span[aria-hidden="true"]::after { content: ""; position: absolute; left: 0; }
.menu-button > span[aria-hidden="true"]::before { top: -7px; }
.menu-button > span[aria-hidden="true"]::after { top: 7px; }
.menu-button[aria-expanded="true"] > span[aria-hidden="true"] { background: transparent; }
.menu-button[aria-expanded="true"] > span[aria-hidden="true"]::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] > span[aria-hidden="true"]::after { top: 0; transform: rotate(-45deg); }

.hero { position: relative; overflow: hidden; background: linear-gradient(90deg, #fff 0 43%, rgba(255,255,255,.92) 52%, rgba(255,255,255,0) 72%), var(--ivory); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 34px; opacity: .18; background: radial-gradient(circle at 50% 100%, transparent 0 18px, var(--indigo) 19px 21px, transparent 22px) 0 0/48px 34px; }
.hero__inner { min-height: 610px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; }
.hero__content { position: relative; z-index: 2; padding: 75px 0 90px; }
.hero__eyebrow, .eyebrow { margin: 0 0 12px; color: var(--orange); font-size: .93rem; font-weight: 800; letter-spacing: .16em; }
.hero h1 { margin: 0 0 22px; color: var(--navy-dark); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2.3rem, 4.4vw, 4.35rem); line-height: 1.28; letter-spacing: .02em; }
.hero h1 strong { color: var(--orange); font-weight: inherit; }
.hero__lead { max-width: 590px; margin: 0 0 32px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); font-weight: 600; }
.hero__image { position: absolute; z-index: 0; top: 0; right: 0; width: 59%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero__route { position: absolute; z-index: 1; right: 3%; bottom: 7%; width: 150px; height: 220px; opacity: .65; border-right: 3px dotted var(--orange); transform: rotate(8deg); border-radius: 50%; }
.hero__route::before, .hero__route::after { content: ""; position: absolute; right: -7px; width: 11px; aspect-ratio: 1; background: var(--orange); border: 2px solid var(--white); border-radius: 50%; }
.hero__route::before { top: 30px; }.hero__route::after { bottom: 30px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 23px; color: var(--white); background: var(--navy); border: 2px solid var(--navy); border-radius: 12px; font-weight: 800; text-decoration: none; box-shadow: 0 8px 18px rgba(18,54,83,.13); transition: transform .2s, background .2s; }
.button::after { content: "→"; }
.button:hover { color: var(--white); background: var(--navy-dark); transform: translateY(-2px); }
.button--accent { background: var(--orange); border-color: var(--orange); }
.button--accent:hover { background: var(--orange-dark); }
.button--outline { color: var(--navy); background: transparent; }
.button--outline:hover { color: var(--white); }

.section { padding: 90px 0; }
.section--compact { padding: 58px 0; }
.section--ivory { background: var(--ivory); }
.section--sage { background: var(--sage-light); }
.section--navy { color: var(--white); background: var(--navy-dark); }
.section__head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__title { margin: 0 0 14px; color: var(--navy-dark); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.85rem, 3.3vw, 2.8rem); line-height: 1.4; letter-spacing: .06em; }
.section--navy .section__title { color: var(--white); }
.section__intro { margin: 0; color: var(--muted); font-size: 1.06rem; }
.section--navy .section__intro { color: #dce8ef; }
.section-divider { height: 28px; opacity: .16; background: radial-gradient(circle at 50% 100%, transparent 0 15px, var(--indigo) 16px 18px, transparent 19px) 0 0/42px 28px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card { position: relative; overflow: hidden; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(19,54,81,.06); }
.card--service { min-height: 310px; padding-bottom: 100px; }
.card--service::after { content: ""; position: absolute; right: -4%; bottom: -15px; width: 80%; height: 105px; opacity: .22; background: linear-gradient(155deg, transparent 0 45%, var(--sage) 46% 48%, transparent 49%), repeating-radial-gradient(ellipse at bottom, transparent 0 16px, var(--indigo) 17px 18px, transparent 19px 30px); }
.card__icon { width: 62px; aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 22px; color: var(--white); background: var(--navy); border-radius: 50%; font-size: 1.05rem; font-weight: 800; }
.card:nth-child(even) .card__icon { background: var(--sage); }
.card:nth-child(3n) .card__icon { background: var(--orange); }
.card h2, .card h3 { margin: 0 0 12px; color: var(--navy-dark); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; line-height: 1.45; }
.card h2 { font-size: 1.7rem; }.card h3 { font-size: 1.3rem; }
.card p:last-child { margin-bottom: 0; }
.card__link { position: relative; z-index: 2; display: inline-flex; gap: 8px; align-items: center; margin-top: 12px; font-weight: 800; text-decoration: none; }
.card__link::after { content: "→"; }

.strength { text-align: center; }
.strength .card__icon { margin-inline: auto; }
.steps { counter-reset: step; }
.step { position: relative; text-align: center; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); width: 62px; aspect-ratio: 1; display: grid; place-items: center; margin: 0 auto 18px; color: var(--white); background: var(--navy); border-radius: 50%; font-size: 1.18rem; font-weight: 900; }
.step:nth-child(2)::before { background: var(--sage); }.step:nth-child(3)::before { background: var(--orange); }
.step h3 { margin: 0 0 8px; color: var(--navy-dark); }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }
.step:not(:last-child)::after { content: "→"; position: absolute; top: 17px; right: -17px; color: #93a2aa; font-size: 1.7rem; }

.notice { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; padding: 26px 30px; background: var(--white); border: 2px solid var(--navy); border-radius: 18px; }
.notice__icon { width: 58px; aspect-ratio: 1; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-weight: 800; }
.notice h2, .notice h3 { margin: 0 0 4px; color: var(--navy-dark); font-family: "Yu Mincho", serif; }
.notice p { margin: 0; color: var(--muted); }
.news-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a, .news-list__item { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: center; padding: 20px 8px; color: var(--ink); text-decoration: none; }
.news-list time { color: var(--muted); font-variant-numeric: tabular-nums; }
.news-list a::after { content: "→"; color: var(--orange); }

.cta { position: relative; overflow: hidden; color: var(--white); background: var(--orange); }
.cta::before { content: ""; position: absolute; inset: 0; opacity: .12; background: radial-gradient(circle at 50% 100%, transparent 0 22px, #fff 23px 25px, transparent 26px) 0 0/58px 42px; }
.cta__inner { position: relative; padding: 54px 0; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta h2 { margin: 0 0 8px; font-family: "Yu Mincho", serif; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.cta p { margin: 0; }
.cta__phone { display: block; color: var(--white); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: .05em; line-height: 1.2; text-decoration: none; }
.cta .button { color: var(--navy); background: var(--white); border-color: var(--white); }
.cta .button:hover { color: var(--white); background: var(--navy-dark); border-color: var(--navy-dark); }

.page-hero { position: relative; overflow: hidden; padding: 78px 0 72px; background: linear-gradient(110deg, var(--ivory), #fff); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; right: -30px; bottom: -45px; width: 380px; height: 170px; opacity: .18; background: repeating-radial-gradient(ellipse at bottom, transparent 0 22px, var(--indigo) 23px 25px, transparent 26px 40px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 28px; padding: 0; list-style: none; color: var(--muted); font-size: .87rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #a3afb6; }
.breadcrumbs a { color: var(--muted); }
.page-hero h1 { max-width: 850px; margin: 0 0 10px; color: var(--navy-dark); font-family: "Yu Mincho", serif; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.4; }
.page-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.06rem; }
.content { max-width: 880px; margin-inline: auto; }
.content--wide { max-width: none; }
.prose h2 { margin: 2.2em 0 .75em; padding: 0 0 .5em 18px; color: var(--navy-dark); font-family: "Yu Mincho", serif; font-size: clamp(1.55rem, 2.8vw, 2.15rem); line-height: 1.45; border-left: 5px solid var(--orange); border-bottom: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.8em 0 .6em; color: var(--navy-dark); font-size: 1.3rem; }
.prose p { margin: 0 0 1.25em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .55em; }
.lead-box, .quote-box { margin: 0 0 34px; padding: 28px 30px; background: var(--ivory); border-radius: 18px; border-left: 5px solid var(--sage); }
.quote-box { font-family: "Yu Mincho", serif; font-size: 1.35rem; text-align: center; border-left: 0; border-top: 3px solid var(--orange); border-bottom: 3px solid var(--orange); }
.check-list, .cross-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .cross-list li { position: relative; padding: 12px 12px 12px 46px; border-bottom: 1px solid var(--line); }
.check-list li::before, .cross-list li::before { position: absolute; left: 12px; top: 11px; width: 24px; aspect-ratio: 1; display: grid; place-items: center; color: var(--white); border-radius: 50%; font-weight: 900; line-height: 1; }
.check-list li::before { content: "✓"; background: var(--sage); }.cross-list li::before { content: "×"; background: var(--orange); }
.profile { display: grid; grid-template-columns: 240px 1fr; gap: 38px; align-items: start; padding: 30px; background: var(--ivory); border-radius: var(--radius); }
.profile + .profile { margin-top: 28px; }
.profile img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; border-radius: 16px; background: #e9ecec; }
.profile h2 { margin-top: 0; }
.profile__role { color: var(--orange); font-weight: 800; }
.signature { margin-top: 28px; text-align: right; font-family: "Yu Mincho", serif; font-size: 1.15rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { width: 28%; color: var(--navy-dark); background: #f1f6f8; }
tr:last-child th, tr:last-child td { border-bottom: 0; }
.job-card { margin-bottom: 30px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(19,54,81,.05); }
.job-card h2 { margin-top: 0; }
.job-card .tag { display: inline-flex; margin-bottom: 12px; padding: 4px 12px; color: var(--white); background: var(--sage); border-radius: 999px; font-size: .85rem; font-weight: 800; }
.document-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.document-card { padding: 16px; background: var(--paper); border-radius: 14px; }
.document-card img { width: 100%; border: 1px solid #ccd2d5; }
.document-card p { margin: 10px 0 0; text-align: center; font-weight: 800; }
.access-box { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; }
.map-placeholder { min-height: 390px; display: grid; place-items: center; padding: 35px; background: linear-gradient(135deg, #e9f0eb, #eef3f5); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.map-placeholder::before { content: "七里駅  →  徒歩4分  →  マスヤ介護サービス"; color: var(--navy); font-weight: 800; letter-spacing: .04em; }

.form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 210px 1fr; gap: 22px; align-items: start; }
.form-row > label, .form-label { padding-top: 11px; color: var(--navy-dark); font-weight: 800; }
.required { margin-left: 8px; padding: 2px 7px; color: var(--white); background: var(--orange); border-radius: 4px; font-size: .72rem; }
.optional { margin-left: 8px; color: var(--muted); font-size: .78rem; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid #aebbc2; border-radius: 9px; }
textarea { min-height: 180px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; }
.form-check input { width: auto; margin-top: 7px; }
.form-actions { padding-left: 232px; }
.form-message { display: none; margin-top: 18px; padding: 16px 18px; border-radius: 10px; }
.form-message.is-visible { display: block; }
.form-message.is-info { color: #5a4200; background: #fff4c9; border: 1px solid #e5c35e; }
.form-message.is-error { color: #7a2117; background: #fff0ed; border: 1px solid #e5a397; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 54px 22px 48px; color: var(--navy-dark); font-size: 1.08rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 8px; top: 20px; color: var(--orange); font-family: serif; font-size: 1.35rem; }
.faq summary::after { content: "+"; position: absolute; right: 16px; top: 18px; font-size: 1.55rem; }
.faq details[open] summary::after { content: "−"; }
.faq__answer { padding: 0 48px 24px; }

.site-footer { color: #e6eef2; background: var(--navy-dark); }
.footer__main { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 45px; padding: 60px 0 50px; }
.footer__main::after { content: ""; position: absolute; right: -60px; bottom: -55px; width: 460px; height: 160px; opacity: .11; background: repeating-radial-gradient(ellipse at bottom, transparent 0 24px, #fff 25px 27px, transparent 28px 42px); }
.site-footer .brand { color: var(--white); margin-bottom: 20px; }
.site-footer .brand__mark { border-color: var(--white); filter: brightness(0) invert(1); }
.footer__info { position: relative; z-index: 1; }
.footer__info p { margin: 0 0 5px; }
.footer__nav { position: relative; z-index: 1; display: grid; align-content: start; gap: 7px; }
.footer__nav h2 { margin: 0 0 10px; color: var(--white); font-size: 1rem; }
.footer__nav a { color: #e6eef2; text-decoration: none; }
.footer__nav a:hover { color: #ffb391; }
.footer__bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 20px; }
.floating-call { position: fixed; z-index: 900; right: 16px; bottom: 16px; display: none; align-items: center; gap: 8px; padding: 12px 16px; color: var(--white); background: var(--orange); border-radius: 999px; box-shadow: var(--shadow); font-weight: 800; text-decoration: none; }

@media (max-width: 1080px) {
  .menu-button { display: grid; }
  .global-nav { position: fixed; top: 120px; right: 16px; left: 16px; max-height: calc(100vh - 138px); display: none; overflow-y: auto; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .global-nav.is-open { display: grid; }
  .global-nav > a, .nav-group__toggle { width: 100%; justify-content: space-between; padding: 10px 12px; }
  .nav-group__menu { position: static; width: auto; display: none; margin: 0 8px 8px; visibility: visible; opacity: 1; transform: none; box-shadow: none; }
  .nav-group.is-open .nav-group__menu { display: grid; }
  .nav-group:hover .nav-group__menu:not(:focus-within) { visibility: visible; }
  .hero__inner { min-height: 570px; grid-template-columns: 1fr; }
  .hero__image { width: 64%; opacity: .48; }
  .hero { background: linear-gradient(90deg, #fff 0 38%, rgba(255,255,255,.86) 63%, rgba(255,255,255,.3) 100%); }
  .hero__content { max-width: 680px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--content)); }
  .utility__inner { min-height: 34px; justify-content: center; gap: 11px; font-size: .78rem; }
  .utility__hours { display: none; }
  .header__inner { min-height: 70px; }
  .global-nav { top: 111px; }
  .brand__mark { width: 36px; }.brand__name { font-size: 1rem; }
  .hero { background: var(--ivory); }
  .hero__inner { min-height: auto; display: flex; flex-direction: column; }
  .hero__content { order: 2; padding: 38px 0 62px; }
  .hero__image { position: relative; order: 1; width: 100vw; height: 310px; margin-left: calc(50% - 50vw); opacity: 1; object-position: 65% center; }
  .hero__route { top: 200px; right: 2%; bottom: auto; height: 140px; }
  .hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .section { padding: 64px 0; }.section--compact { padding: 46px 0; }
  .section__head { margin-bottom: 32px; text-align: left; }
  .grid-2, .grid-3, .grid-4, .access-box { grid-template-columns: 1fr; }
  .card { padding: 24px; }.card--service { min-height: 280px; padding-bottom: 85px; }
  .step { padding: 8px 0 25px; text-align: left; display: grid; grid-template-columns: 58px 1fr; gap: 0 16px; }
  .step::before { grid-row: 1 / 3; width: 52px; margin: 0; }
  .step h3, .step p { grid-column: 2; }
  .step:not(:last-child)::after { content: "↓"; top: auto; right: auto; bottom: 0; left: 17px; }
  .notice { grid-template-columns: auto 1fr; padding: 22px; }
  .notice .button { grid-column: 1 / -1; }
  .news-list a, .news-list__item { grid-template-columns: 1fr auto; gap: 5px 14px; }
  .news-list time { grid-column: 1 / -1; }
  .cta__inner { grid-template-columns: 1fr; text-align: center; }
  .cta .button { justify-self: center; }
  .page-hero { padding: 55px 0 50px; }
  .profile { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
  .profile img { max-width: 280px; margin-inline: auto; }
  .document-grid { grid-template-columns: 1fr; }
  th, td { display: block; width: 100%; }
  th { padding-bottom: 5px; border-bottom: 0; }
  td { padding-top: 7px; }
  .form-row { grid-template-columns: 1fr; gap: 6px; }
  .form-row > label, .form-label { padding-top: 0; }
  .form-actions { padding-left: 0; }
  .footer__main { grid-template-columns: 1fr; gap: 30px; padding: 48px 0 40px; }
  .footer__bottom .container { flex-direction: column; gap: 5px; }
  .floating-call { display: inline-flex; }
}

/* ===== concept-02 fidelity and interaction fixes ===== */
.site-header .container,
.utility .container { width: min(calc(100% - 44px), 1640px); }

.hero { background: var(--white); }
.hero .container { width: min(100%, 1640px); }
.hero__inner { min-height: 0; grid-template-columns: 44% 56%; }
.hero__content { z-index: 3; padding: 72px 44px 76px max(44px, calc((100vw - 1540px) / 2)); }
.hero h1 { font-size: clamp(2.25rem, 2.55vw, 3rem); }
.hero__line { display: block; white-space: nowrap; }
.hero__visual { position: relative; min-height: 590px; overflow: hidden; }
.hero__visual::before { content: ""; position: absolute; z-index: 2; inset: 0 auto 0 0; width: 115px; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.82) 32%, rgba(255,255,255,0) 100%); pointer-events: none; }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero__visual .hero__route { z-index: 3; right: 4%; bottom: 7%; }
.home-company-title { white-space: nowrap; font-size: clamp(1.8rem, 2.65vw, 2.7rem); letter-spacing: .035em; }

.steps .step { padding-top: 2px; }
.steps .step::before { position: absolute; z-index: 2; top: 0; left: calc(50% - 56px); width: 28px; margin: 0; font-size: .78rem; }
.step__icon { width: 96px; height: 96px; display: block; margin: 0 auto 16px; border-radius: 50%; object-fit: cover; }
.steps .step:not(:last-child)::after { top: 31px; }

.philosophy-band { color: var(--ink); background: linear-gradient(180deg, #fbf8f1 0%, #f4eee2 100%); }
.philosophy-band::before { content: ""; position: absolute; right: 0; bottom: 0; width: 52%; height: 52%; opacity: .12; background: linear-gradient(155deg, transparent 0 44%, var(--indigo) 45% 47%, transparent 48%), repeating-radial-gradient(ellipse at bottom, transparent 0 19px, var(--indigo) 20px 22px, transparent 23px 38px); }
.philosophy-band::after { opacity: .08; background: repeating-radial-gradient(ellipse at bottom, transparent 0 22px, var(--navy) 23px 25px, transparent 26px 41px); }
.philosophy-band .section__title { color: var(--navy-dark); font-size: clamp(2rem, 3.3vw, 3rem); }
.philosophy-band .section__intro { color: var(--muted); }
.philosophy-quote { max-width: 820px; padding: 38px 78px; color: var(--white); background: linear-gradient(135deg, var(--navy-dark), var(--indigo)); border: 0; border-radius: 4px 22px 4px 22px; box-shadow: 12px 12px 0 rgba(212,85,34,.16); font-size: clamp(1.75rem, 3.3vw, 2.65rem); letter-spacing: .12em; }
.philosophy-quote::before { content: "社訓"; position: absolute; top: -14px; left: 24px; padding: 5px 10px; color: var(--white); background: var(--orange); border-radius: 3px; font-family: "Yu Mincho", serif; font-size: .78rem; letter-spacing: .2em; }
.philosophy-list { max-width: 1020px; margin-inline: auto; }
.philosophy-list li { border-top: 3px solid var(--orange); border-radius: 4px 4px 14px 14px; box-shadow: 0 10px 24px rgba(18,54,83,.08); font-family: "Yu Mincho", serif; font-size: 1.05rem; }

.staff-card__photo { aspect-ratio: 4/5; display: grid; place-items: center; overflow: hidden; background: #fbf7ef; }
.staff-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transform-origin: center top; }
.staff-card--otsuka .staff-card__photo img { transform: scale(.94); }
.staff-card--kimura .staff-card__photo img { transform: scale(.98); }
.staff-card--washizu .staff-card__photo img { transform: scale(.88); }

.company-exterior { margin: 0 0 34px; overflow: hidden; background: var(--ivory); border: 1px solid var(--line); border-radius: 18px; }
.company-exterior img { width: 100%; max-height: 460px; object-fit: cover; }
.company-exterior figcaption,
.access-map figcaption { padding: 10px 16px; color: var(--muted); font-size: .86rem; text-align: center; }
.access-map { margin: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.access-map img { width: 100%; }

.cta a.cta__phone:hover,
.cta a.cta__phone:focus-visible { color: var(--white); }
.site-footer .footer__info a,
.site-footer .footer__info a:hover,
.site-footer .footer__info a:focus-visible { color: var(--white) !important; opacity: 1; }

@media (max-width: 1180px) {
  body.nav-open { overflow: hidden; }
  .menu-button { display: grid; flex: 0 0 46px; }
  .global-nav { position: absolute; z-index: 1100; top: calc(100% + 8px); right: 14px; left: auto; width: min(420px, calc(100vw - 28px)); max-height: calc(100vh - 130px); display: none; grid-template-columns: minmax(0, 1fr); justify-content: stretch; align-items: stretch; overflow-y: auto; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .global-nav.is-open { display: grid; }
  .global-nav > .nav-group { width: 100%; }
  .global-nav > a, .nav-group__toggle { width: 100%; justify-content: space-between; padding: 10px 12px; }
  .nav-group__menu { position: static; width: auto; display: none; margin: 0 8px 8px; visibility: visible; opacity: 1; transform: none; box-shadow: none; }
  .nav-group.is-open .nav-group__menu { display: grid; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { padding: 48px 28px 50px; }
  .hero__visual { min-height: 470px; }
  .hero__line { white-space: normal; }
  .home-company-title { white-space: normal; }
}

@media (max-width: 760px) {
  .hero__inner { display: flex; }
  .hero__visual { order: 1; width: 100%; min-height: 0; height: 310px; margin: 0; }
  .hero__visual::before { width: 70px; }
  .hero__image { position: absolute; width: 100%; height: 100%; margin: 0; object-position: 63% center; }
  .hero__content { order: 2; padding: 38px 20px 60px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero__visual .hero__route { top: auto; right: 2%; bottom: 3%; height: 120px; }
  .steps .step { display: grid; grid-template-columns: 72px 1fr; gap: 0 14px; padding: 8px 0 25px; text-align: left; }
  .step__icon { grid-row: 1 / 3; width: 68px; height: 68px; margin: 0; }
  .steps .step h3, .steps .step p { grid-column: 2; }
  .steps .step::before { top: 2px; left: -3px; width: 24px; }
  .steps .step:not(:last-child)::after { top: auto; bottom: 0; left: 24px; }
  .philosophy-quote { padding: 32px 24px; letter-spacing: .06em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .utility, .site-header, .cta, .floating-call, .site-footer { display: none !important; }
  .section, .page-hero { padding: 24px 0; }
  a { color: inherit; text-decoration: none; }
}

/* ===== 2026 redesign: concept-02 aligned layout ===== */
:root { --content: 1240px; }
.utility .container,
.site-header .container { width: min(calc(100% - 44px), 1540px); }
.site-header { position: relative; }
.header__inner { min-height: 78px; gap: 22px; }
.brand { flex: 0 0 auto; }
.brand__name { font-size: clamp(1.08rem, 1.45vw, 1.42rem); }
.global-nav { flex: 1 1 auto; justify-content: flex-end; gap: 1px; }
.global-nav > a,
.nav-group__toggle { min-height: 44px; padding-inline: 10px; font-size: .88rem; white-space: nowrap; word-break: keep-all; }
.header__cta { padding-inline: 18px !important; }

.page-hero { padding: 46px 0 42px; }
.page-hero::after { right: 2%; bottom: -70px; width: 330px; height: 150px; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
.breadcrumbs { margin-bottom: 17px; }
.section { padding: 72px 0; }
.content { max-width: 1040px; }
.content--wide { max-width: none; }
section[id] { scroll-margin-top: 24px; }

.page-anchor-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -24px auto 52px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 10px 30px rgba(18,54,83,.08); }
.page-anchor-nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 7px 15px; color: var(--navy); background: #f3f7f8; border-radius: 999px; font-size: .9rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.page-anchor-nav a:hover { color: var(--white); background: var(--navy); }
.subsection { padding: 66px 0; }
.subsection + .subsection { border-top: 1px solid var(--line); }
.subsection--tint { margin-inline: calc(50% - 50vw); padding-inline: max(14px, calc((100vw - var(--content))/2)); background: var(--ivory); }
.subsection__head { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; margin-bottom: 32px; }
.subsection__number { width: 52px; aspect-ratio: 1; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-weight: 900; }
.subsection__head h2 { margin: 0; color: var(--navy-dark); font-family: "Yu Mincho", serif; font-size: clamp(1.65rem, 3vw, 2.25rem); }

.icon-image { width: 82px; height: 82px; object-fit: cover; margin-bottom: 18px; border-radius: 50%; background: #fffdf8; }
.card--service .icon-image { position: relative; z-index: 2; }
.service-panel { position: relative; overflow: hidden; min-height: 330px; padding: 32px 34px 110px; background: var(--white); border: 1px solid #cbd8df; border-radius: 18px; }
.service-panel::after { content: ""; position: absolute; right: -5%; bottom: -15px; width: 86%; height: 115px; opacity: .24; background: linear-gradient(155deg, transparent 0 45%, var(--sage) 46% 48%, transparent 49%), repeating-radial-gradient(ellipse at bottom, transparent 0 16px, var(--indigo) 17px 18px, transparent 19px 30px); }
.service-panel h2, .service-panel h3 { margin: 0 0 12px; color: var(--navy-dark); font-family: "Yu Mincho", serif; }
.service-panel p, .service-panel a { position: relative; z-index: 2; }
.feature-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; }
.feature-item { padding: 10px 30px; text-align: center; }
.feature-item + .feature-item { border-left: 1px dashed #aab7bc; }
.feature-item .icon-image { margin-inline: auto; }
.feature-item h3 { margin: 0 0 8px; color: var(--navy); }

.philosophy-band { position: relative; overflow: hidden; color: var(--white); background: var(--navy-dark); }
.philosophy-band::after { content: ""; position: absolute; inset: auto 0 0; height: 110px; opacity: .12; background: repeating-radial-gradient(ellipse at bottom, transparent 0 22px, #fff 23px 25px, transparent 26px 41px); }
.philosophy-band .section__title, .philosophy-band .section__intro { color: var(--white); }
.philosophy-quote { position: relative; z-index: 1; margin: 0 auto 32px; color: var(--navy-dark); background: var(--ivory); border: 2px solid #e1caa7; border-radius: 18px; padding: 28px; font-family: "Yu Mincho", serif; font-size: clamp(1.55rem, 3vw, 2.25rem); text-align: center; }
.philosophy-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; counter-reset: creed; }
.philosophy-list li { counter-increment: creed; list-style: none; padding: 24px; color: var(--ink); background: var(--white); border-radius: 14px; box-shadow: var(--shadow); }
.philosophy-list li::before { content: counter(creed, decimal-leading-zero); display: block; margin-bottom: 8px; color: var(--orange); font-weight: 900; }

.portrait-card { display: grid; grid-template-columns: 310px 1fr; gap: 42px; align-items: start; padding: 34px; background: var(--ivory); border: 1px solid #e5dfd2; border-radius: 20px; }
.portrait-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 14px; }
.portrait-card h2 { margin-top: 0; }
.staff-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.staff-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 26px rgba(18,54,83,.07); }
.staff-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.staff-card__body { padding: 24px; }
.staff-card__body h2 { margin: 5px 0 10px; color: var(--navy); font-family: "Yu Mincho", serif; }

.split-content { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 32px; align-items: start; }
.compact-card { padding: 26px; background: var(--ivory); border-radius: 16px; }
.compact-card h3 { margin-top: 0; color: var(--navy); }
.policy-copy { max-width: 920px; margin-inline: auto; }
.policy-copy h2 { margin-top: 2.5em; }
.policy-copy h3 { margin-top: 1.8em; }
.policy-copy .numbered { padding-left: 1.7em; }
.policy-copy .numbered > li { margin-bottom: 1.2em; }
.policy-copy .subpoints { margin-top: .6em; }
.redirect-note { min-height: 46vh; display: grid; place-items: center; text-align: center; }

@media (max-width: 1180px) {
  .menu-button { display: grid; }
  .global-nav { position: fixed; z-index: 1100; top: 118px; right: 16px; left: 16px; max-height: calc(100vh - 136px); display: none; overflow-y: auto; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .global-nav.is-open { display: grid; }
  .global-nav > a, .nav-group__toggle { width: 100%; justify-content: space-between; padding: 10px 12px; }
  .nav-group__menu { position: static; width: auto; display: none; margin: 0 8px 8px; visibility: visible; opacity: 1; transform: none; box-shadow: none; }
  .nav-group.is-open .nav-group__menu { display: grid; }
}

@media (max-width: 760px) {
  .page-hero { padding: 34px 0 32px; }
  .page-anchor-nav { justify-content: flex-start; margin-top: -12px; overflow-x: auto; flex-wrap: nowrap; }
  .subsection { padding: 50px 0; }
  .subsection--tint { padding-inline: 14px; }
  .feature-row, .philosophy-list, .staff-grid, .split-content { grid-template-columns: 1fr; }
  .feature-item + .feature-item { border-left: 0; border-top: 1px dashed #aab7bc; }
  .portrait-card { grid-template-columns: 1fr; gap: 26px; padding: 22px; }
  .portrait-card img { max-width: 340px; margin-inline: auto; }
}

/* ===== 2026-07 requested homepage emphasis ===== */
@media (min-width: 1181px) {
  .menu-button { display: none !important; }
  .global-nav { position: static !important; width: auto !important; max-height: none !important; display: flex !important; overflow: visible !important; padding: 0 !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; }
  .global-nav > a,
  .nav-group__toggle { width: auto !important; min-height: 44px; padding-inline: 8px; font-size: .84rem; }
  .nav-group__menu { position: absolute; display: grid; width: 245px; }
}

.hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.hero__content { min-width: 0; min-height: 680px; display: flex; flex-direction: column; justify-content: center; padding-top: 76px; padding-bottom: 82px; }
.hero h1 { font-size: clamp(2.8rem, 3.45vw, 3.45rem); line-height: 1.3; letter-spacing: .01em; }
.hero__lead { max-width: 720px; font-size: clamp(1.2rem, 1.55vw, 1.5rem); line-height: 1.9; }
.hero__visual { min-height: 680px; }
.hero__visual::before { width: 76px; }
.hero__image { object-position: 52% center; }

.service-panel-grid { gap: 32px; }
.service-panel { min-height: 0; padding: 0 38px 38px; border-width: 2px; box-shadow: 0 16px 34px rgba(18,54,83,.1); }
.service-panel::after { display: none; }
.service-panel__art { width: calc(100% + 76px); height: 270px; display: block; margin: 0 -38px 0; object-fit: cover; }
.service-panel > .icon-image { position: relative; z-index: 2; width: 108px; height: 108px; margin: -58px 0 14px; border: 6px solid var(--white); box-shadow: 0 10px 22px rgba(18,54,83,.18); }
.service-panel h2 { position: relative; z-index: 2; font-size: clamp(2rem, 3vw, 2.75rem); letter-spacing: .05em; }
.service-panel p { font-size: 1.05rem; }
.service-panel .card__link { min-height: 46px; margin-top: 18px; padding: 7px 18px; color: var(--white); background: var(--navy); border-radius: 999px; }
.service-panel:nth-child(2) .card__link { background: var(--sage); }

.home-company-title { max-width: none; font-size: clamp(2.15rem, 3vw, 3rem); }
.feature-row { gap: 24px; }
.feature-item { padding: 30px 30px 32px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 28px rgba(18,54,83,.08); }
.feature-item + .feature-item { border-left: 1px solid var(--line); }
.strength-image { width: 174px; height: 174px; display: block; margin: 0 auto 18px; object-fit: cover; border-radius: 50%; }
.feature-item h3 { margin-bottom: 12px; font-family: "Yu Mincho", serif; font-size: clamp(1.3rem, 2vw, 1.65rem); }

.philosophy-band { padding-block: 94px; }
.philosophy-band .section__title { font-size: clamp(2.65rem, 4vw, 3.6rem); letter-spacing: .18em; }
.philosophy-quote { max-width: 1060px; padding: 52px 78px; border-radius: 8px 28px 8px 28px; box-shadow: 14px 14px 0 rgba(212,85,34,.2); font-size: clamp(2.25rem, 4vw, 3.35rem); line-height: 1.45; letter-spacing: .14em; }
.philosophy-quote::before { top: -18px; left: 30px; padding: 8px 15px; font-size: .92rem; }
.philosophy-list { max-width: 1120px; gap: 24px; }
.philosophy-list li { min-height: 142px; display: grid; align-content: center; padding: 30px; border-top-width: 5px; font-size: clamp(1.12rem, 1.6vw, 1.35rem); line-height: 1.7; text-align: center; }
.philosophy-list li::before { font-size: .9rem; }

.steps { gap: 22px; }
.steps .step { min-height: 270px; display: block; padding: 30px 20px 26px; background: var(--white); border: 1px solid #cbd8df; border-radius: 18px; box-shadow: 0 12px 28px rgba(18,54,83,.08); text-align: center; }
.steps .step::before { top: 16px; left: 16px; width: 34px; margin: 0; font-size: .78rem; box-shadow: 0 5px 12px rgba(18,54,83,.18); }
.step__icon { width: 108px; height: 108px; margin: 0 auto 18px; }
.steps .step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.steps .step:not(:last-child)::after { top: 54px; right: -23px; z-index: 3; width: 24px; color: var(--orange); font-weight: 900; }

@media (max-width: 1180px) {
  body.nav-open { overflow: hidden; }
  .menu-button { display: grid; flex: 0 0 46px; }
  .global-nav { position: absolute; z-index: 1100; top: calc(100% + 8px); right: 14px; left: auto; width: min(420px, calc(100vw - 28px)); max-height: calc(100vh - 130px); display: none; overflow-y: auto; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .global-nav.is-open { display: grid; }
  .global-nav > a,
  .nav-group__toggle { width: 100%; justify-content: space-between; padding: 10px 12px; }
  .nav-group__menu { position: static; width: auto; display: none; margin: 0 8px 8px; visibility: visible; opacity: 1; transform: none; box-shadow: none; }
  .nav-group.is-open .nav-group__menu { display: grid; }
}

@media (max-width: 1080px) {
  .steps .step:not(:last-child)::after { display: none; }
}

@media (max-width: 980px) {
  .hero__content { min-height: 0; }
  .hero__visual { min-height: 470px; }
  .service-panel__art { height: 230px; }
}

@media (max-width: 760px) {
  .hero__content { min-height: 0; padding: 38px 20px 60px; }
  .hero h1 { font-size: clamp(2rem, 9.3vw, 2.3rem); }
  .hero__line:first-child { white-space: nowrap; }
  .hero__lead { font-size: 1.08rem; }
  .hero__visual { min-height: 0; height: 330px; }
  .hero__image { object-position: 92% center; }
  .service-panel { padding: 0 22px 28px; }
  .service-panel__art { width: calc(100% + 44px); height: 200px; margin-inline: -22px; }
  .service-panel > .icon-image { width: 88px; height: 88px; margin-top: -46px; }
  .service-panel h2 { font-size: 2rem; }
  .home-company-title { white-space: normal; font-size: 2rem; }
  .feature-row { gap: 18px; }
  .feature-item + .feature-item { border-top: 1px solid var(--line); }
  .strength-image { width: 150px; height: 150px; }
  .philosophy-band { padding-block: 70px; }
  .philosophy-band .section__title { font-size: 2.65rem; }
  .philosophy-quote { padding: 38px 22px; font-size: clamp(1.8rem, 9vw, 2.45rem); letter-spacing: .07em; }
  .philosophy-list li { min-height: 118px; padding: 24px; font-size: 1.15rem; }
  .steps { gap: 18px; }
  .steps .step { min-height: 0; display: grid; grid-template-columns: 78px 1fr; gap: 0 16px; padding: 22px; text-align: left; }
  .steps .step::before { top: 14px; left: 14px; width: 28px; }
  .step__icon { grid-row: 1 / 3; width: 76px; height: 76px; margin: 0; }
  .steps .step h3,
  .steps .step p { grid-column: 2; }
}

/* ===== 2026-07 detailed alignment revision ===== */
.hero h1 { font-weight: 700; }
.hero__line--values { display: flex; align-items: baseline; gap: .03em; margin-bottom: .12em; line-height: 1.05; }
.hero__line--values > span { font-size: 1.28em; font-weight: 700; letter-spacing: .015em; }
.hero__line--values small { font-size: .72em; font-weight: 700; }
.hero__image { object-position: 82% center; }

.home-services__container { width: min(calc(100% - 64px), 1640px); }
.service-panel-grid { width: 100%; }
.service-panel__art { height: 310px; }
.service-panel__icon { position: relative; z-index: 3; width: 112px; height: 112px; display: grid; place-items: center; margin: -56px 0 18px; background: var(--white); border: 6px solid var(--white); border-radius: 50%; box-shadow: 0 10px 24px rgba(18,54,83,.2); }
.service-panel__icon img { width: 94px; height: 94px; display: block; object-fit: cover; border-radius: 50%; }
.service-panel h2,
.service-panel p,
.service-panel .card__link { width: 100%; }

.philosophy-band .section__title { font-weight: 900; }
.philosophy-quote,
.philosophy-list { width: 100%; max-width: 1180px; box-sizing: border-box; }
.philosophy-quote { padding: 56px 72px; font-size: clamp(2.75rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.3; letter-spacing: .09em; }
.philosophy-list { gap: 26px; }
.philosophy-list li { min-height: 170px; padding: 34px 30px; font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 700; line-height: 1.65; }
.philosophy-list li::before { font-size: 1rem; font-weight: 900; }

.page-hero { padding: 32px 0 28px; }
.page-hero h1 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
main > .page-hero + .section { padding-top: 28px; }
.page-anchor-nav { gap: 6px; margin: 0 auto 18px; padding: 7px 10px; border-radius: 10px; box-shadow: 0 5px 16px rgba(18,54,83,.06); }
.page-anchor-nav a { min-height: 30px; padding: 3px 10px; font-size: .76rem; }
.subsection { padding: 44px 0; }
.subsection--tint {
  margin-inline: 0;
  padding-inline: 0;
  box-shadow: 0 0 0 100vmax var(--ivory);
  clip-path: inset(0 -100vmax);
}
.subsection__head { margin-bottom: 24px; }
.standards-copy { max-width: 960px; margin-left: 72px; }
.standards-copy > :first-child { margin-top: 0; }

@media (max-width: 980px) {
  .hero__image { object-position: 88% center; }
  .service-panel__art { height: 250px; }
  .philosophy-quote { font-size: clamp(2.2rem, 6.5vw, 3.2rem); }
  .standards-copy { margin-left: 0; }
}

@media (max-width: 760px) {
  .hero__line--values { gap: .02em; }
  .hero__line--values > span { font-size: 1.05em; }
  .hero__line--values small { font-size: .78em; }
  .hero__image { object-position: 92% center; }
  .home-services__container { width: min(calc(100% - 28px), 1640px); }
  .service-panel__art { height: 210px; }
  .service-panel__icon { width: 92px; height: 92px; margin-top: -46px; }
  .service-panel__icon img { width: 76px; height: 76px; }
  .philosophy-quote { padding: 40px 20px; font-size: clamp(1.95rem, 9vw, 2.55rem); font-weight: 800; }
  .philosophy-list li { min-height: 122px; padding: 24px 20px; font-size: 1.2rem; font-weight: 700; }
  .page-hero { padding: 26px 0 22px; }
  main > .page-hero + .section { padding-top: 20px; }
  .page-anchor-nav { justify-content: flex-start; gap: 5px; margin: 0 auto 14px; padding: 6px; }
  .page-anchor-nav a { min-height: 28px; padding: 3px 9px; font-size: .72rem; }
  .subsection { padding: 36px 0; }
  .subsection__head { margin-bottom: 20px; }
}

/* ===== 2026-07 content and image refinement ===== */
@media (min-width: 1181px) {
  .site-header .brand__name { font-size: clamp(1.45rem, 2.15vw, 1.9rem); }
}

.service-panel__art { max-width: none; }
.service-panel__icon { overflow: hidden; }
.service-panel__icon img { margin: 0; object-position: center; transform-origin: center; }
.service-panel:first-child .service-panel__icon img { transform: translateX(-6px) scale(1.08); }
.service-panel:nth-child(2) .service-panel__icon img { transform: scale(1.08); }

.philosophy-list li {
  grid-template-rows: auto 1fr;
  justify-items: center;
  gap: 14px;
}
.philosophy-list li::before { display: none; }
.philosophy-list__icon {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(18,54,83,.14);
}

.portrait-card--reverse { grid-template-columns: minmax(0, 1fr) 310px; }
.portrait-card--reverse .prose { grid-column: 1; grid-row: 1; }
.portrait-card--reverse > img { grid-column: 2; grid-row: 1; }

.staff-card__photo {
  height: clamp(360px, 32vw, 430px);
  overflow: hidden;
  background: #f4f1eb;
}
.staff-card__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 18%;
  transform-origin: center 20%;
}
.staff-card--otsuka .staff-card__photo img { transform: scale(.94); }
.staff-card--kimura .staff-card__photo img { transform: scale(1.08); }
.staff-card--washizu .staff-card__photo img { transform: scale(.82); }

.infection-copy {
  max-width: none;
  margin-left: 150px;
  margin-right: 48px;
}

.important-intro {
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 20px 24px;
  background: #f3f7f8;
  border-left: 4px solid var(--sage);
  border-radius: 10px;
  line-height: 1.9;
}
.document-grid {
  max-width: 960px;
  grid-template-columns: minmax(0, 1fr);
  margin-inline: auto;
}

@media (max-width: 980px) {
  .infection-copy { margin-left: 38px; margin-right: 0; }
}

@media (max-width: 760px) {
  .site-header .brand__name { font-size: 1.15rem; }
  .philosophy-list__icon { width: 78px; height: 78px; }
  .portrait-card--reverse { grid-template-columns: 1fr; }
  .portrait-card--reverse > img { grid-column: 1; grid-row: 1; }
  .portrait-card--reverse .prose { grid-column: 1; grid-row: 2; }
  .staff-card__photo { height: 390px; }
  .infection-copy { margin-left: 0; margin-right: 0; }
  .important-intro { padding: 17px 18px; }
}

/* ===== 2026-07 final structure and presentation revision ===== */
.nav-group__head {
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.nav-group__parent {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 3px 0 9px;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}
.nav-group__toggle {
  width: 27px !important;
  min-height: 44px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center;
  border-radius: 0 10px 10px 0 !important;
}
.nav-group__toggle::after { margin: -4px 0 0; }
.nav-group__head:hover,
.nav-group:focus-within .nav-group__head,
.nav-group.is-current .nav-group__head {
  background: #fff5ed;
}
.nav-group__head:hover .nav-group__parent,
.nav-group:focus-within .nav-group__parent,
.nav-group.is-current .nav-group__parent,
.nav-group__parent[aria-current="page"] { color: var(--orange); }

.hero__eyebrow {
  font-size: clamp(1.25rem, 1.65vw, 1.5rem);
  font-weight: 900;
  letter-spacing: .12em;
}
.hero__lead br { display: block; }

.philosophy-quote,
.philosophy-art,
.philosophy-list {
  width: 100%;
  max-width: 1180px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.philosophy-art {
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 28px;
  background: var(--ivory);
  border: 2px solid rgba(212,85,34,.45);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(8,35,56,.22);
}
.philosophy-art img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.philosophy-list {
  padding: 0;
  gap: 26px;
}
.philosophy-list li {
  min-height: 148px;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: start;
  align-content: center;
  gap: 12px;
  padding: 30px 32px;
  text-align: left;
}
.philosophy-list__number {
  color: var(--orange);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.philosophy-list li strong {
  display: block;
  color: var(--navy-dark);
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  font-weight: 800;
  line-height: 1.55;
}

.history-copy {
  max-width: none;
  margin-left: 72px;
  margin-right: 40px;
}
.message-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--navy-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.28rem;
  font-weight: 800;
}
.message-kicker img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(18,54,83,.14);
}
.message-kicker small {
  display: block;
  margin-bottom: 2px;
  color: var(--orange);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.staff-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  margin-inline: auto;
}
.staff-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: stretch;
}
.staff-card__photo {
  width: 360px;
  height: 430px;
  aspect-ratio: auto;
}
.staff-card__photo img,
.staff-card--otsuka .staff-card__photo img,
.staff-card--kimura .staff-card__photo img,
.staff-card--washizu .staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}
.staff-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 44px;
}

@media (max-width: 1180px) {
  .nav-group__head {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
  }
  .nav-group__parent {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
  }
  .nav-group__toggle {
    width: 48px !important;
    min-height: 46px !important;
  }
}

@media (max-width: 760px) {
  .hero__eyebrow { font-size: 1.1rem; }
  .philosophy-art { margin-bottom: 20px; border-radius: 15px; }
  .philosophy-list { gap: 16px; }
  .philosophy-list li { min-height: 112px; padding: 24px; }
  .philosophy-list li strong { font-size: 1.22rem; }
  .history-copy { margin-left: 0; margin-right: 0; }
  .message-kicker img { width: 56px; height: 56px; flex-basis: 56px; }
  .staff-card { grid-template-columns: minmax(0, 1fr); }
  .staff-card__photo { width: 100%; height: auto; aspect-ratio: 3 / 4; }
  .staff-card__body { padding: 28px 24px; }
}

/* ===== 2026-07 supplied imagery, icon and favicon revision ===== */
.icon-image,
.subsection__head .icon-image,
.notice .icon-image {
  margin: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.service-panel__icon img,
.service-panel:first-child .service-panel__icon img,
.service-panel:nth-child(2) .service-panel__icon img,
.step__icon,
.strength-image {
  object-position: center;
  transform: none;
}
.service-panel .card__link {
  width: 50%;
  max-width: 260px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.philosophy-list--photo {
  align-items: stretch;
  gap: 24px;
}
.philosophy-list--photo li {
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border-top: 0;
  border-radius: 18px;
  text-align: left;
}
.creed-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center;
}
.creed-copy {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px 28px 28px;
  border-top: 5px solid var(--orange);
}
.philosophy-list--photo li:nth-child(2) .creed-copy { border-top-color: var(--sage); }
.philosophy-list--photo li:nth-child(3) .creed-copy { border-top-color: var(--indigo); }

.message-kicker {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.35;
}
.message-kicker img {
  width: 82px;
  height: 82px;
  max-width: none;
  flex-basis: 82px;
  aspect-ratio: 1;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.portrait-card .prose > h2 {
  font-size: clamp(1.3rem, 2.1vw, 1.72rem);
}

.infection-copy {
  max-width: 960px;
  margin-left: 72px;
  margin-right: 0;
}

@media (max-width: 760px) {
  .service-panel .card__link { width: 70%; }
  .creed-copy { min-height: 112px; padding: 20px 22px 24px; }
  .message-kicker { font-size: 1.65rem; }
  .message-kicker img { width: 64px; height: 64px; flex-basis: 64px; }
  .infection-copy { margin-left: 0; margin-right: 0; }
}

/* ===== 2026-07 page hero artwork trial ===== */
.page-hero--image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero--image::after { display: none; }
.page-hero--image > .container { position: relative; z-index: 1; }

.creed-photo {
  height: clamp(250px, 17vw, 330px);
  aspect-ratio: auto;
}
.creed-copy strong { text-wrap: balance; }
.creed-copy__line {
  display: block;
  white-space: nowrap;
}

@media (min-width: 761px) {
  .portrait-card--reverse > img { margin-top: 42px; }
}

@media (max-width: 760px) {
  .page-hero--image {
    background-position: 58% center;
  }
  .creed-photo { height: clamp(210px, 56vw, 320px); }
}

/* ===== 2026-07 multi-page hero and scale revision ===== */
.global-nav > a,
.nav-group__parent { font-size: .84rem; }

.site-header {
  position: sticky;
  top: 0;
}

.philosophy-list--photo {
  --creed-image-height: clamp(250px, 17vw, 330px);
}
.philosophy-list--photo li {
  display: grid;
  grid-template-rows: var(--creed-image-height) minmax(0, 1fr);
}
.philosophy-list--photo .creed-photo {
  width: 100%;
  height: 100%;
  align-self: stretch;
  object-fit: cover;
  object-position: center center;
}

.steps .step__icon {
  width: 142px;
  height: 142px;
  margin-bottom: 22px;
}

.steps .step:not(:last-child)::after {
  content: "➜";
  top: 82px;
  right: -33px;
  width: 44px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 760px) {
  .philosophy-list--photo {
    --creed-image-height: clamp(210px, 56vw, 320px);
  }
  .steps .step { grid-template-columns: 104px minmax(0, 1fr); }
  .steps .step__icon {
    width: 104px;
    height: 104px;
    margin-bottom: 0;
  }
}
