@charset "utf-8";
/* 下層ページ（プライバシーポリシー等）専用。LPのstyle.css/layout.cssには依存しない */

:root {
  --navy: #103b61;
  --navy-dark: #07355f;
  --blue: #005aaa;
  --bg-tint: #f8fbfe;
  --line: #d9e2ec;
  --text: #22303c;
  --text-mute: #5b6b7a;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  line-height: 1.9;
  font-size: 16px;
  background: #fff;
}
img { max-width: 100%; height: auto; border: 0; }
a { color: var(--blue); }

.wrap { width: min(100% - 40px, 880px); margin-inline: auto; }

/* header */
.site-head { border-bottom: 1px solid var(--line); background: #fff; }
.site-head__in {
  width: min(100% - 40px, 1100px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0; flex-wrap: wrap;
}
.brand a { text-decoration: none; color: inherit; }
.brand__site { display: block; font-size: 18px; font-weight: 700; color: var(--navy); }
.brand__firm { display: block; font-size: 12px; color: var(--text-mute); }
.head-actions { display: flex; align-items: center; gap: 12px; }
.head-tel { text-decoration: none; color: var(--navy); text-align: right; }
.head-tel__num { display: block; font-size: 22px; font-weight: 700; letter-spacing: .02em; }
.head-tel__hours { display: block; font-size: 11px; color: var(--text-mute); }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 4px;
  text-decoration: none; font-weight: 700; font-size: 14px; line-height: 1.4;
  text-align: center; transition: opacity .2s;
}
.btn:hover { opacity: .82; }
.btn--primary { background: var(--navy); color: #fff; }
.btn--ghost { background: #fff; color: var(--navy); border: 1px solid var(--navy); }
.btn--sm { padding: 10px 16px; font-size: 13px; }

/* page head */
.page-head { background: var(--navy); color: #fff; padding: 44px 0; }
.page-head__label { margin: 0 0 6px; font-size: 12px; letter-spacing: .18em; opacity: .75; }
.page-head__title { margin: 0; font-size: clamp(22px, 4vw, 30px); font-weight: 700; }

/* breadcrumbs */
.crumbs { background: var(--bg-tint); border-bottom: 1px solid var(--line); font-size: 12px; }
.crumbs ol { list-style: none; margin: 0; padding: 10px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "›"; margin-right: 6px; color: var(--text-mute); }
.crumbs a { color: var(--text-mute); }

/* article */
.article { padding: 44px 0 56px; }
.article__lead { margin: 0 0 32px; }
.article section { margin-bottom: 34px; }
.article h2 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  border-left: 4px solid var(--navy); padding-left: 12px; margin: 0 0 14px; line-height: 1.6;
}
.article h3 { font-size: 15px; font-weight: 700; margin: 22px 0 8px; color: var(--navy-dark); }
.article p { margin: 0 0 12px; }
.article ol.num { margin: 0; padding-left: 1.4em; }
.article ol.num li { margin-bottom: 10px; }

/* 事務所概要テーブル */
.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.info-table th { background: var(--bg-tint); width: 26%; font-weight: 700; color: var(--navy); white-space: nowrap; }
@media (max-width: 640px) {
  .info-table th, .info-table td { display: block; width: 100%; border-bottom: 0; }
  .info-table tr:last-child td { border-bottom: 1px solid var(--line); }
}

/* CTA */
.page-cta { background: var(--bg-tint); border-top: 1px solid var(--line); padding: 36px 0; text-align: center; }
.page-cta__h { margin: 0 0 6px; font-size: 20px; font-weight: 700; color: var(--navy); }
.page-cta__t { margin: 0 0 18px; font-size: 14px; color: var(--text-mute); }
.page-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* footer */
.site-foot { background: var(--navy); color: #fff; padding: 28px 0; font-size: 13px; }
.site-foot a { color: #fff; }
.site-foot__nav { margin: 0 0 14px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-foot__addr { margin: 0 0 10px; line-height: 1.8; opacity: .9; }
.site-foot__about { margin: 0 0 12px; font-size: 12px; line-height: 1.8; opacity: .8; }
.site-foot__copy { margin: 0; font-size: 12px; opacity: .7; }
