:root {
  --color-text: #2d3538;
  --color-muted: #7d8589;
  --color-accent: #d16c93;
  --color-accent-dark: #d16c93;
  --color-line: #e8e1e4;
  --color-bg: #fffdfd;
  --font-base: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-base);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sp-only {
  display: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section[id] {
  scroll-margin-top: 126px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
}

.header-message {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 12px 0;
  color: #fff;
  background: var(--color-accent);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.header-message span {
  display: block;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.header-message span:not(:last-child)::after {
  margin-left: 10px;
  content: "";
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1240px, calc(100% - 64px));
  min-height: 82px;
  margin: 0 auto;
}

.site-brand {
  flex: 0 0 auto;
  width: auto;
  color: var(--color-text);
}

.brand-name {
  display: block;
  color: var(--color-text);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.global-nav a {
  padding: 10px 0;
  transition: color 160ms ease;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--color-accent);
}

.nav-button {
  display: none;
}

.main-visual {
  width: 100%;
  background: var(--color-bg);
}

.mv-inner {
  display: grid;
  grid-template-columns: minmax(330px, 32vw) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  min-height: clamp(420px, 38.9vw, 760px);
  margin: 0 auto;
}

.mv-image {
  --mv-bg-size: 138%;
  --mv-bg-position: 100% clamp(-210px, -9.72vw, -95px);
  min-height: 0;
  background-image: url("../images/mv_img.webp");
  background-repeat: no-repeat;
  background-position: var(--mv-bg-position);
  background-size: var(--mv-bg-size);
}

.mv-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  padding: 56px clamp(36px, 6vw, 92px) 56px clamp(24px, 4vw, 64px);
  color: #425059;
}

.mv-en {
  margin: 0;
  font-family: Gelasio, Georgia, "Times New Roman", serif;
  font-size: max(32px, 3.75vw);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  white-space: nowrap;
}

.mv-lead {
  margin: 18px 0 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: max(18px, 1.806vw);
  font-weight: 600;
  line-height: 1.7;
  white-space: nowrap;
}

.mv-profile {
  margin-top: 60px;
}

.mv-profile p {
  margin: 0;
}

.mv-field {
  margin-bottom: 12px;
  color: #b1436c;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: max(14px, 1.04vw);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.mv-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: max(20px, 1.74vw);
  font-weight: 600;
  line-height: 1.6;
}

.mv-name span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: max(11px, 0.94vw);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mv-firm {
  margin-top: 8px;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: max(14px, 1.11vw);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.opening-section {
  padding: clamp(58px, 6vw, 86px) 0;
  background: #fff;
  border-top: 1px solid var(--color-line);
}

.opening-inner {
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(420px, 520px);
  grid-template-areas:
    "heading image"
    "body image";
  column-gap: clamp(48px, 6vw, 88px);
  align-items: start;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.opening-heading {
  grid-area: heading;
  padding-top: 2px;
}

.opening-label {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.opening-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.opening-image {
  grid-area: image;
  margin: 0;
}

.opening-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.opening-body {
  grid-area: body;
  margin-top: 42px;
  color: #424d51;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.1;
}

.opening-body p {
  margin: 0;
}

.opening-body p + p {
  margin-top: 28px;
}

.page-guide {
  padding: clamp(56px, 6vw, 78px) 0;
  background: var(--color-accent);
}

.page-guide-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.page-guide-text {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.page-guide-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.page-guide-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 32px 12px 14px;
  color: var(--color-text);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  transition: color 160ms ease, background-color 160ms ease;
}

.page-guide-nav a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
}

.page-guide-nav a:hover,
.page-guide-nav a:focus-visible {
  color: var(--color-accent);
  background: #fff8fb;
}

.practice-intro {
  padding: clamp(56px, 6vw, 78px) 0 clamp(42px, 5vw, 62px);
  background: #fff;
}

.practice-intro-inner {
  width: min(880px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

.practice-label {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.practice-intro h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.practice-intro-lead {
  margin: 34px 0 0;
  color: #424d51;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  line-height: 2;
}

.practice-intro-lead strong {
  color: var(--color-accent);
  font-weight: 700;
}

.practice-intro-lead span {
  display: inline-block;
}

.practice-intro-notes {
  display: inline-block;
  margin-top: 30px;
  color: #424d51;
  font-size: 15px;
  line-height: 2;
  text-align: left;
}

.practice-intro-notes p {
  margin: 0;
}

.practice-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 5vw, 64px);
  row-gap: 34px;
  width: min(1180px, calc(100% - 64px));
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding-top: clamp(42px, 5vw, 64px);
  border-top: 1px solid var(--color-line);
}

.practice-field h3 {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.practice-field h3 span {
  display: inline-block;
  font-size: 0.78em;
}

.practice-field-image {
  margin: 0 0 28px;
}

.practice-field-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

.practice-field ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.practice-field li {
  position: relative;
  padding-left: 17px;
  color: #424d51;
  font-size: 14px;
  line-height: 1.85;
}

.practice-field li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
}

.practice-action {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.practice-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 58px;
  padding: 0 58px;
  color: #fff;
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease;
}

.primary-button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.primary-button span {
  transform: translateY(-1px);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #dd7fa2;
}

.secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 58px;
  padding: 0 58px;
  color: var(--color-accent);
  background: #fff;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.secondary-button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.secondary-button span {
  transform: translateY(-1px);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: #fff8fb;
}

.features-section {
  padding: clamp(62px, 7vw, 92px) 0;
  background: #fdfafb;
}

.features-heading {
  width: min(880px, calc(100% - 64px));
  margin: 0 auto clamp(44px, 5vw, 64px);
  text-align: center;
}

.features-label {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.features-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 560px);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.feature-row + .feature-row {
  margin-top: clamp(44px, 5vw, 68px);
}

.feature-row-reverse .feature-image {
  order: 2;
}

.feature-row-reverse .feature-text {
  order: 1;
}

.feature-image {
  margin: 0;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

.feature-text {
  color: #424d51;
}

.feature-index {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.feature-text h3 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.feature-text p:not(.feature-index) {
  margin: 26px 0 0;
  font-size: 15px;
  line-height: 2;
}

.feature-text a {
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
}

.features-action {
  display: flex;
  justify-content: center;
  width: min(1180px, calc(100% - 64px));
  margin: clamp(42px, 5vw, 60px) auto 0;
}

.promise-section {
  padding: clamp(72px, 8vw, 108px) 0;
  background: #fff;
}

.promise-heading {
  width: min(880px, calc(100% - 64px));
  margin: 0 auto clamp(44px, 5vw, 64px);
  text-align: center;
}

.promise-label {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.promise-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.promise-item {
  padding: 30px 32px 34px;
  background: #fdfafb;
}

.promise-item:last-child {
  grid-column: 1 / -1;
  width: min(100%, 578px);
  margin: 0 auto;
}

.promise-item h3 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.promise-item h3 span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.promise-item p {
  margin: 22px 0 0;
  color: #424d51;
  font-size: 14px;
  line-height: 1.9;
}

.promise-action {
  display: flex;
  justify-content: center;
  width: min(1180px, calc(100% - 64px));
  margin: clamp(38px, 5vw, 54px) auto 0;
}

.case-section {
  padding: clamp(72px, 8vw, 108px) 0;
  background: #fdfafb;
}

.case-heading {
  width: min(880px, calc(100% - 64px));
  margin: 0 auto clamp(44px, 5vw, 64px);
  text-align: center;
}

.case-label {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.case-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.case-item {
  padding: 28px 30px 32px;
  background: #fff;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin: 0 0 15px;
  padding: 3px 10px 4px;
  color: #fff;
  background: var(--color-accent);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.case-problems {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-problems li {
  position: relative;
  padding-left: 17px;
  color: #424d51;
  font-size: 14px;
  line-height: 1.85;
}

.case-problems li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
}

.case-support {
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #eadde3;
}

.case-support p:not(.case-tag) {
  margin: 0;
  color: #424d51;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
}

.case-action {
  display: flex;
  justify-content: center;
  width: min(1180px, calc(100% - 64px));
  margin: clamp(38px, 5vw, 54px) auto 0;
}

.page-title-section {
  padding: clamp(54px, 6vw, 82px) 0 clamp(34px, 4vw, 48px);
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}

.page-title-inner {
  width: min(960px, calc(100% - 64px));
  margin: 0 auto;
}

.page-title-label {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.page-title-inner h1 {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.article-page {
  padding: clamp(50px, 6vw, 78px) 0 clamp(68px, 8vw, 108px);
  background: #fff;
}

.article-content {
  width: min(820px, calc(100% - 64px));
  margin: 0 auto;
  color: #424d51;
}

.article-section + .article-section {
  margin-top: clamp(42px, 5vw, 62px);
}

.article-content h2 {
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(23px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.article-content h3 {
  margin: 34px 0 16px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.article-content h4 {
  margin: 28px 0 12px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.article-content p + h2 {
  margin-top: 42px;
}

.article-content p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

.article-content p + p {
  margin-top: 20px;
}

.article-lead {
  color: var(--color-text);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  line-height: 1.9;
}

.article-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-content p + ul,
.article-content h3 + ul,
.article-content .article-action + h3 {
  margin-top: 18px;
}

.article-content .article-action + h3 {
  margin-top: 46px;
}

.article-content ul + h3 {
  margin-top: 36px;
}

.article-content li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.95;
}

.article-content li::before {
  position: absolute;
  top: 0.86em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
}

.article-image {
  margin: 28px 0;
}

.article-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-hero-image {
  margin-top: 0;
}

.home-action {
  margin: 30px 0 38px;
}

.article-action.home-action .primary-button {
  width: min(100%, 310px);
}

.article-section > h2 + .article-image {
  margin-top: 0;
}

.article-image-portrait {
  width: min(100%, 644px);
  margin: 32px auto 0;
}

.article-image-right {
  float: right;
  width: 115px;
  margin: 0 0 18px 28px;
}

.article-image-small {
  width: min(100%, 450px);
  margin: 28px auto 0;
}

.article-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.article-content .primary-button,
.article-content .secondary-button {
  color: var(--color-accent);
  text-decoration: none;
}

.article-content .primary-button {
  color: #fff;
}

.article-action .primary-button {
  width: min(100%, 390px);
}

.article-separator {
  width: 100%;
  height: 1px;
  margin: clamp(42px, 5vw, 62px) 0;
  border: 0;
  background: var(--color-line);
}

.article-content blockquote {
  margin: 28px 0;
  padding: 26px 30px;
  color: #4c565a;
  background: #fdfafb;
  border-left: 4px solid var(--color-accent);
}

.article-content blockquote p {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.article-content blockquote p + p {
  margin-top: 16px;
}

.note-embed-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.note-embed-lead {
  text-align: center;
}

.note-embed {
  display: block;
  width: min(100%, 494px);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.site-footer {
  color: #fff;
  background: #2d3538;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(48px, 8vw, 96px);
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 86px) 0 42px;
}

.footer-brand {
  margin: 0 0 28px;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.footer-info {
  display: grid;
  gap: 14px;
  margin: 0;
}

.footer-info div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
}

.footer-info dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.footer-info dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

.footer-info dd a {
  margin-left: 8px;
  color: #f0a9c3;
  border-bottom: 1px solid currentColor;
}

.footer-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
}

.footer-note + .footer-note {
  margin-top: 10px;
}

.footer-note a {
  color: #f0a9c3;
  border-bottom: 1px solid currentColor;
}

.footer-nav {
  display: grid;
  gap: 13px;
  align-content: start;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #f0a9c3;
}

.footer-bottom {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1160px) {
  html {
    scroll-padding-top: 24px;
  }

  section[id] {
    scroll-margin-top: 24px;
  }

  .site-header {
    position: relative;
  }

  .header-message {
    min-height: auto;
    padding: 11px 0;
    font-size: 14px;
  }

  .header-message span {
    width: min(100% - 32px, 1240px);
  }

  .header-inner {
    gap: 12px;
    min-height: 58px;
    width: min(100% - 32px, 1240px);
  }

  .site-brand {
    width: auto;
    min-width: 0;
    max-width: calc(100% - 94px);
  }

  .brand-name {
    font-size: 16px;
  }

  .nav-button {
    display: inline-flex;
    position: fixed;
    top: var(--nav-button-top, 51px);
    right: 16px;
    z-index: 40;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--color-text);
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: top 0ms;
  }

  body.is-scrolled .nav-button {
    top: 12px;
  }

  .nav-button-line {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
    transform-origin: center;
  }

  .nav-button[aria-expanded="true"] .nav-button-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-button[aria-expanded="true"] .nav-button-line:nth-child(2) {
    opacity: 0;
  }

  .nav-button[aria-expanded="true"] .nav-button-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: 104px 32px 32px;
    background: var(--color-bg);
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.is-scrolled .global-nav {
    padding-top: 72px;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .global-nav a {
    width: min(100%, 340px);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 1160px) and (max-height: 560px) {
  .global-nav {
    padding: 82px 32px 16px;
  }

  .global-nav a {
    padding: 10px 0;
    font-size: 17px;
    font-weight: 600;
  }
}

@media (max-width: 980px) {
  .sp-only {
    display: block;
  }

  .mv-inner {
    grid-template-columns: minmax(330px, 32vw) minmax(0, 1fr);
    min-height: 38.9vw;
  }

  .mv-image {
    min-height: 0;
    --mv-bg-size: 138%;
    --mv-bg-position: 100% clamp(-140px, -9.72vw, -90px);
  }

  .mv-copy {
    padding: 32px 20px 40px;
  }

  .mv-en {
    font-size: max(24px, 3.2vw);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .mv-lead {
    margin-top: 10px;
    font-size: max(16px, 2.05vw);
    line-height: 1.65;
    white-space: normal;
  }

  .mv-profile {
    margin-top: 22px;
  }

  .mv-field {
    margin-bottom: 8px;
    font-size: max(11px, 1.32vw);
    letter-spacing: 0.08em;
  }

  .mv-name {
    gap: 2px 10px;
    font-size: max(16px, 2.1vw);
  }

  .mv-name span {
    font-size: max(10px, 1.11vw);
  }

  .mv-firm {
    margin-top: 5px;
    font-size: max(12px, 1.39vw);
  }

}

@media (max-width: 980px) {
  .opening-section {
    padding: 48px 0 56px;
  }

  .opening-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "image"
      "body";
    row-gap: 28px;
    width: min(100% - 40px, 720px);
  }

  .opening-label {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .opening-heading h2 {
    font-size: 25px;
  }

  .opening-image {
    margin-top: 0;
  }

  .opening-body {
    margin-top: 0;
    font-size: 14px;
    line-height: 2;
  }

  .opening-body p + p {
    margin-top: 24px;
  }

  .page-guide {
    padding: 44px 0;
  }

  .page-guide-inner {
    width: min(100% - 40px, 720px);
  }

  .page-guide-text {
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
  }

  .page-guide-nav {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .page-guide-nav a {
    min-height: 56px;
    padding: 10px 28px 10px 12px;
    font-size: 13px;
  }

  .page-guide-nav a::after {
    right: 14px;
  }

  .practice-intro {
    padding: 46px 0 58px;
  }

  .practice-intro-inner {
    width: min(100% - 40px, 720px);
  }

  .practice-intro h2 {
    font-size: 27px;
  }

  .practice-label {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .practice-intro-lead {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.9;
  }

  .practice-intro-notes {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.9;
  }

  .practice-fields {
    grid-template-columns: 1fr;
    row-gap: 58px;
    width: min(100% - 40px, 720px);
    margin-top: 42px;
    padding-top: 38px;
  }

  .practice-note {
    margin-top: -28px;
  }

  .practice-field h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .practice-field li {
    font-size: 13px;
    line-height: 1.8;
  }

  .practice-action {
    margin-top: -24px;
  }

  .primary-button {
    width: min(100%, 240px);
    min-width: 0;
    height: 54px;
    padding: 0 38px;
    font-size: 14px;
  }

  .secondary-button {
    width: min(100%, 270px);
    min-width: 0;
    height: 54px;
    padding: 0 38px;
    font-size: 14px;
  }

  .features-section {
    padding: 50px 0 64px;
  }

  .features-heading {
    width: min(100% - 40px, 720px);
    margin-bottom: 34px;
  }

  .features-label {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .features-heading h2 {
    font-size: 27px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(100% - 40px, 720px);
  }

  .feature-row + .feature-row {
    margin-top: 38px;
  }

  .feature-row-reverse .feature-image,
  .feature-row-reverse .feature-text {
    order: initial;
  }

  .feature-text h3 {
    font-size: 20px;
    line-height: 1.7;
  }

  .feature-index {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .feature-text p:not(.feature-index) {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
  }

  .features-action {
    width: min(100% - 40px, 720px);
    margin-top: 34px;
  }

  .promise-section {
    padding: 58px 0 70px;
  }

  .promise-heading {
    width: min(100% - 40px, 720px);
    margin-bottom: 34px;
  }

  .promise-label {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .promise-heading h2 {
    font-size: 27px;
  }

  .promise-list {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 40px, 720px);
  }

  .promise-item {
    padding: 24px 22px 28px;
  }

  .promise-item:last-child {
    grid-column: auto;
    width: 100%;
  }

  .promise-item h3 {
    font-size: 19px;
  }

  .promise-item h3 span {
    font-size: 13px;
  }

  .promise-item p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.85;
  }

  .promise-action {
    width: min(100% - 40px, 720px);
    margin-top: 32px;
  }

  .case-section {
    padding: 58px 0 70px;
  }

  .case-heading {
    width: min(100% - 40px, 720px);
    margin-bottom: 34px;
  }

  .case-label {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .case-heading h2 {
    font-size: 26px;
  }

  .case-list {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100% - 40px, 720px);
  }

  .case-item {
    padding: 24px 22px 28px;
  }

  .case-tag {
    margin-bottom: 13px;
    font-size: 14px;
  }

  .case-problems li {
    font-size: 13px;
    line-height: 1.8;
  }

  .case-support {
    margin-top: 22px;
    padding-top: 20px;
  }

  .case-support p:not(.case-tag) {
    font-size: 15px;
    line-height: 1.9;
  }

  .case-action {
    width: min(100% - 40px, 720px);
    margin-top: 32px;
  }

  .page-title-section {
    padding: 42px 0 30px;
  }

  .page-title-inner,
  .article-content {
    width: min(100% - 40px, 720px);
  }

  .page-title-label {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .page-title-inner h1 {
    font-size: 28px;
  }

  .article-page {
    padding: 42px 0 64px;
  }

  .article-section + .article-section {
    margin-top: 42px;
  }

  .article-content h2 {
    margin-bottom: 20px;
    font-size: 23px;
  }

  .article-content h3 {
    margin: 28px 0 14px;
    font-size: 17px;
  }

  .article-content h4 {
    margin: 24px 0 10px;
    font-size: 14px;
  }

  .article-content p + h2 {
    margin-top: 34px;
  }

  .article-content p {
    font-size: 14px;
    line-height: 1.95;
  }

  .article-lead {
    font-size: 16px;
  }

  .article-content p + p {
    margin-top: 18px;
  }

  .article-content li {
    font-size: 14px;
    line-height: 1.9;
  }

  .article-action .primary-button {
    width: min(100%, 330px);
    padding-right: 32px;
    padding-left: 32px;
  }

  .article-content blockquote {
    padding: 22px 20px;
  }

  .article-content blockquote p {
    font-size: 14px;
    line-height: 1.95;
  }

  .note-embed-list {
    gap: 14px;
  }

  .article-image {
    margin: 24px 0;
  }

  .article-image-right {
    float: none;
    width: min(48%, 150px);
    margin: 0 auto 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    width: min(100% - 40px, 720px);
    padding: 48px 0 34px;
  }

  .footer-brand {
    margin-bottom: 22px;
    font-size: 19px;
  }

  .footer-info div {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .footer-info dt {
    font-size: 12px;
  }

  .footer-info dd {
    font-size: 13px;
  }

  .footer-note {
    font-size: 12px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-bottom {
    width: min(100% - 40px, 720px);
    padding: 18px 0;
  }

}

@media (max-width: 760px) {
  .mv-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mv-image {
    min-height: max(360px, 108vw);
    --mv-bg-size: 130%;
    --mv-bg-position: 100% clamp(-140px, -29.3vw, -95px);
  }

  .mv-en {
    font-size: max(18px, 6.2vw);
  }

  .mv-lead {
    font-size: max(14px, 4.36vw);
  }

  .mv-field {
    font-size: max(11px, 3.2vw);
  }

  .mv-name {
    font-size: max(17px, 4.8vw);
  }

  .mv-name span {
    font-size: max(10px, 2.7vw);
  }

  .mv-firm {
    font-size: max(13px, 3.5vw);
  }
}
