*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (max-width: 1362px) {
  html {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: #3b3f42;
  background-color: #f7f5f2;
  -webkit-font-smoothing: antialiased;
  animation: page-fade-in 0.55s ease-out both;
}

body.is-nav-open {
  overflow: hidden;
}

@media (max-width: 1362px) {

  html.is-nav-open,
  body.is-nav-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.75;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

address {
  font-style: normal;
}

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

.l-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .l-container {
    padding-inline: 16px;
  }
}

.l-main {
  overflow-x: hidden;
}

@media (max-width: 1362px) {
  .l-main {
    padding-top: 70px;
  }

  body:not(.home):not(.front-page) .l-main {
    padding-top: 0;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
}

@media (min-width: 1363px) {
  .l-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    min-height: 90px;
    padding-inline: 40px;
  }
}

@media (max-width: 1362px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    overflow: visible;
    background-color: #f7f5f2;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
  max-width: none;
  padding-inline: 40px;
}

@media (min-width: 1363px) {
  .header__inner {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin-inline: 0;
    min-height: 0;
    padding-inline: 0;
  }
}

@media (max-width: 1362px) {
  .header__inner {
    height: 100%;
    min-height: 0;
    width: 100%;
    max-width: none;
    padding-left: 20px;
    padding-right: 0;
    gap: 8px;
  }
}

.header__logo {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.header__logo:hover {
  opacity: 0.92;
}

@media (max-width: 1362px) {
  .header__logo {
    line-height: 1;
  }
}

.header__logo-img {
  display: block;
  width: 210px;
  max-width: min(210px, 52vw);
  height: auto;
}

@media (max-width: 1362px) {
  .header__logo-img {
    display: none;
  }
}

.header__logo-text {
  display: none;
}

@media (max-width: 1362px) {
  .header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.header__logo-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #2f6d5d;
}

.header__logo-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #2f6d5d;
}

.header__menu-btn {
  display: none;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

@media (max-width: 1362px) {
  .header__menu-btn {
    display: flex;
    width: 70px;
    height: 70px;
    padding-top: 3px;
    background-color: #41917a;
  }
}

.header__menu-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.header__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 18px;
  position: relative;
}

.header__menu-icon-svg {
  display: block;
  width: 27px;
  height: 18px;
  transition: opacity 0.25s ease;
}

.header__menu-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

@media (max-width: 1362px) {
  .is-nav-open .header__menu-icon-svg {
    opacity: 0;
  }

  .is-nav-open .header__menu-icon::before,
  .is-nav-open .header__menu-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    margin-left: -12px;
    margin-top: -1px;
    background-color: #ffffff;
    transition: transform 0.25s ease;
  }

  .is-nav-open .header__menu-icon::before {
    transform: rotate(45deg);
  }

  .is-nav-open .header__menu-icon::after {
    transform: rotate(-45deg);
  }
}

@media (min-width: 1363px) {
  .header__nav {
    display: flex;
    flex: 1 1 0;
    justify-content: flex-end;
    min-width: 0;
    gap: clamp(12px, 1.5vw, 24px);
  }

  .header__nav.nav {
    gap: clamp(12px, 1.5vw, 24px);
  }

  .header__nav .nav__list {
    gap: clamp(14px, 1.6vw, 24px);
  }

  .header__nav .nav__list .nav__item+.nav__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(clamp(14px, 1.6vw, 24px) / -2);
    transform: translateY(-50%);
    width: 0;
    height: 15px;
    border-left: 1px solid #3b3f42;
  }

  .header__nav .nav__link {
    font-size: clamp(13px, 0.95vw, 15px);
  }
}

@media (max-width: 1362px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 16px 64px;
    background-color: #f7f5f2;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: none;
    visibility: hidden;
    pointer-events: none;
  }

  html.is-nav-animated .header__nav {
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .is-nav-open .header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    top: 70px;
    z-index: 98;
    background-color: rgba(59, 63, 66, 0.2);
    pointer-events: auto;
  }
}

.l-footer {
  background-color: #ffffff;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 60px clamp(16px, 8.33vw, 120px) 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .footer__inner {
    padding-top: 60px;
    gap: 40px;
  }
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px 40px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    padding-bottom: 40px;
    gap: 40px;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 210px;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
}

.footer__logo:hover {
  opacity: 0.92;
}

.footer__logo-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #2f6d5d;
}

.footer__logo-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #2f6d5d;
}

@media (max-width: 768px) {
  .footer__logo-name {
    font-size: 22px;
  }
}

.footer__address {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.footer__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 60px;
}

@media (max-width: 768px) {
  .footer__right {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 64px;
  }
}

.footer__nav {
  display: block;
}

.footer__services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__services-title {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #41917a;
}

.footer__services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__services-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #3b3f42;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer__services-list a:hover {
  opacity: 0.7;
}

.footer__services-list a::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: #41917a;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  border-top: 1px solid #d7d9da;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
    padding-block: 24px;
  }
}

.footer__copyright {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: #7b8083;
}

.footer__subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__subnav a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #7b8083;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer__subnav a:hover {
  opacity: 0.7;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1362px) {
  .header__nav.nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1362px) {
  .header__nav .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.nav__list--footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 768px) {
  .nav__list--footer {
    gap: 0;
  }
}

.nav__item {
  position: relative;
}

@media (max-width: 1362px) {
  .header__nav .nav__item {
    border-bottom: 1px solid #d9d9d9;
  }
}

@media (max-width: 768px) {
  .nav__item {
    border-bottom: 1px solid #d9d9d9;
  }
}

@media (min-width: 1363px) {
  .nav__item--has-child:hover .nav__child {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav__link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #3b3f42;
  white-space: nowrap;
}

@media (max-width: 1362px) {
  .header__nav .nav__link {
    padding: 16px 0;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .nav__link {
    padding: 16px 0;
    white-space: normal;
  }
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__trigger::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 8px;
  background-color: #41917a;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media (max-width: 1362px) {
  .header__nav .nav__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .header__nav .nav__trigger[aria-expanded=true]+.nav__child {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav__trigger[aria-expanded=true]+.nav__child {
    display: block;
  }
}

@media (min-width: 1363px) {
  .nav__child {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(59, 63, 66, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 10;
  }

  .nav__child a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 4px;
  }

  .nav__child a:hover {
    background-color: #e7eeea;
    opacity: 1;
  }
}

@media (max-width: 1362px) {
  .header__nav .nav__child {
    display: none;
    padding: 0 0 16px 16px;
  }

  .header__nav .nav__child a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #7b8083;
  }
}

@media (max-width: 768px) {
  .nav__child {
    display: none;
    padding: 0 0 16px 16px;
  }

  .nav__child a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #7b8083;
  }
}

@media (max-width: 1362px) {
  .header__nav .nav__cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav__cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }
}

.nav--footer .nav__link {
  font-size: 15px;
}

@media (max-width: 768px) {
  .nav--footer .nav__link {
    padding: 16px 0;
  }
}

@media (max-width: 768px) {
  .nav--footer .nav__item {
    border-bottom: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: 8px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  opacity: 1;
}

.btn__arrow {
  font-size: 12px;
  line-height: 1;
}

.btn--outline {
  color: #41917a;
  border: 1px solid #41917a;
  background-color: transparent;
}

.btn--outline:hover {
  background-color: #41917a;
  color: #ffffff;
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
    padding: 14px 20px;
    white-space: normal;
    text-align: center;
  }
}

.title {
  margin-bottom: 40px;
}

.title__en {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #1a4c4c;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .title__en {
    font-size: 28px;
  }
}

.title__ja {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .title__ja {
    font-size: 22px;
  }
}

.title--center {
  text-align: center;
}

.title--center .title__ja::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 16px;
  background-color: #c7b07a;
}

.title--center .title__ja::after {
  margin-inline: auto;
}

.title--light .title__en {
  color: #ffffff;
  opacity: 0.9;
}

.title--light .title__ja {
  color: #ffffff;
}

.title--light .title__ja::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 16px;
  background-color: #c7b07a;
}

.title--light .title__ja::after {
  background-color: #ffffff;
}

.card--strength {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 384px;
  height: 100%;
  margin-inline: auto;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: none;
}

@media (max-width: 768px) {
  .card--strength {
    max-width: none;
  }
}

.card--strength .card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #41917a;
}

.card--strength .card__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.card--strength .card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.card--strength .card__head-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
  padding-bottom: 8px;
}

.card--strength .card__point {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding-bottom: 8px;
  margin: 0;
  border-bottom: 1px dashed #41917a;
  width: fit-content;
}

.card--strength .card__point-label {
  font-family: "Zen Antique", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #41917a;
  letter-spacing: 0.04em;
}

.card--strength .card__point-num {
  font-family: "Zen Antique", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: rgba(65, 145, 122, 0.5);
}

.card--strength .card__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #41917a;
}

.card--strength .card__body {
  gap: 12px;
  flex: 1;
}

.card--strength .card__lead {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #c7b07a;
}

.card--strength .card__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.card--strength .card__lead,
.card--strength .card__text {
  margin: 0;
}

.card__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dashed #41917a;
}

.card__point {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #41917a;
  width: fit-content;
}

.card__point-label {
  font-size: 12px;
  font-weight: 700;
  color: #41917a;
  letter-spacing: 0.05em;
}

.card__point-num {
  font-size: 24px;
  font-weight: 700;
  color: #c7b07a;
  line-height: 1;
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: #41917a;
  line-height: 1.4;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.card__lead {
  font-size: 16px;
  font-weight: 700;
  color: #c7b07a;
  line-height: 1.5;
}

.card__text {
  font-size: 15px;
  line-height: 1.8;
  color: #3b3f42;
}

.card--service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 40px;
  background-color: #ffffff;
  border: 1px solid #41917a;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #41917a;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.card--service:hover {
  background-color: #41917a;
  color: #ffffff;
  opacity: 1;
}

.card--service:hover .card__arrow {
  color: #ffffff;
}

.card__arrow {
  flex-shrink: 0;
  font-size: 12px;
  color: #41917a;
  transition: color 0.25s ease;
}

.strengths {
  position: relative;
  padding-block: 80px;
}

@media (max-width: 768px) {
  .strengths {
    padding-block: 64px;
  }
}

.strengths {
  overflow: hidden;
}

.strengths__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.strengths__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 769px) {
  .strengths__inner {
    padding-inline: 0;
  }
}

.strengths__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.strengths__lead-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.strengths__heading {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #3b3f42;
  text-align: center;
}

@media (max-width: 768px) {
  .strengths__heading {
    font-size: clamp(22px, 5.2vw, 28px);
  }
}

.strengths__line {
  display: flex;
  align-items: center;
  width: 120px;
  height: 2px;
}

.strengths__line-side {
  flex: 1;
  height: 1px;
  background-color: #d7d9da;
}

.strengths__line-gold {
  flex-shrink: 0;
  width: 50px;
  height: 2px;
  margin-inline: 0;
  background-color: #c7b07a;
}

.strengths__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .strengths__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.strengths__list>li {
  display: flex;
  min-width: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 16px 2px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #41917a;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}

.cta:hover {
  background-color: #2f6d5d;
  opacity: 1;
}

@media (max-width: 768px) {
  .cta--header {
    display: flex;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7b8083;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #c7b07a;
  margin-left: 8px;
}

.breadcrumb__link {
  color: #7b8083;
}

.breadcrumb__link:hover {
  color: #41917a;
}

.breadcrumb__current {
  color: #3b3f42;
}

.page-header {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(-40deg, #c2d0dc 11%, #e1ecec 70%);
}

@media (max-width: 1362px) {
  .page-header {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 0;
    overflow: visible;
    background: none;
  }
}

.page-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  box-sizing: border-box;
  max-width: 1200px;
  min-height: 220px;
  margin-inline: auto;
  padding: 57px 40px 60px;
}

@media (max-width: 768px) {
  .page-header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: none;
    min-height: 0;
    margin-inline: 0;
    padding: 0;
  }
}

.page-header__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}

@media (max-width: 768px) {
  .page-header__lead {
    box-sizing: border-box;
    width: 100%;
    min-height: 160px;
    padding: 43px 23px 0;
    background: linear-gradient(-40deg, #c2d0dc 11%, #e1ecec 70%);
  }
}

.page-header__rule {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #c7b07a;
}

.page-header__headings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

@media (max-width: 768px) {
  .page-header__headings {
    gap: 12px;
  }
}

.page-header__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .page-header__title {
    font-size: 26px;
  }
}

.page-header__en {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #2f6d5d;
}

@media (max-width: 768px) {
  .page-header__en {
    font-size: 12px;
  }
}

.page-header__nav {
  flex-shrink: 0;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .page-header__nav {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    background: none;
  }
}

.page-header__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .page-header__crumbs {
    justify-content: flex-end;
  }
}

.page-header__crumb-item {
  display: flex;
  align-items: center;
}

.page-header__crumb-sep {
  display: flex;
  align-items: center;
  list-style: none;
}

.page-header__crumb-line {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #c7b07a;
}

.page-header__crumb-link,
.page-header__crumb-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #7b8083;
  text-decoration: none;
}

.page-header__crumb-link:hover {
  color: #41917a;
  opacity: 1;
}

.page-header__crumb-text--current {
  color: #3b3f42;
}

.fv {
  position: relative;
  min-height: 750px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fv {
    min-height: auto;
    padding-bottom: 40px;
    background-color: #f7f5f2;
    height: 90vh;
  }
}

.fv__visual {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(76.8vw, 1106px);
  max-width: 1106px;
  z-index: 0;
}

@media (max-width: 768px) {
  .fv__visual {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    margin-bottom: 18px;
    overflow: hidden;
  }
}

.fv__svg {
  display: block;
  width: 100%;
}

.fv__svg--pc {
  height: 100%;
}

@media (max-width: 768px) {
  .fv__svg--pc {
    display: none;
  }
}

.fv__img {
  display: none;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .fv__img--sp {
    display: block;
    aspect-ratio: 375/490;
  }
}

.fv__image {
  display: block;
}

.fv__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  min-height: 750px;
  margin-inline: auto;
  padding-block: 80px;
  padding-inline: 40px;
  padding-right: 48px;
}

@media (max-width: 768px) {
  .fv__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    min-height: 600px;
    padding-block: 26px;
    padding-inline: 16px;
  }
}

.fv__head {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
  padding-right: 40px;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .fv__head {
    position: relative;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .fv__head {
    grid-column: auto;
    grid-row: auto;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
    margin-bottom: 0;
    padding: 0 2px 0 0;
    gap: 6px 8px;
  }
}

.fv__catch {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
  margin: 0;
  width: max-content;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 768px) {
  .fv__catch {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: clamp(7.5px, 2vw, 10px);
    max-width: calc(100% - 64px);
  }
}

.fv__catch-col {
  display: block;
  margin: 0;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  color: #4d5a6b;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 48px;
  line-height: 62px;
  letter-spacing: 0.12em;
}

.fv__catch-col--order1 {
  order: 1;
}

.fv__catch-col--order2 {
  order: 2;
}

.fv__catch-col--order3 {
  order: 3;
}

@media (max-width: 768px) {
  .fv__catch-col {
    font-size: clamp(32px, 6vw, 36px);
    line-height: 1;
    letter-spacing: 0.5em;
  }

  .fv__catch-col--order3 {
    line-height: 1;
  }
}

.fv__catch-col--mid {
  width: auto;
  min-height: auto;
}

@media (max-width: 768px) {
  .fv__catch-col--mid {
    width: auto;
    min-width: 0;
    min-height: auto;
    justify-content: center;
  }
}

.fv__catch-mid {
  display: block;
  line-height: 62px;
}

@media (max-width: 768px) {
  .fv__catch-mid {
    line-height: 1.22;
  }
}

.fv__badges {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 615px);
  max-width: 615px;
  margin: 0;
  margin-top: 64px;
  padding: 38px 24px;
  list-style: none;
}

@media (max-width: 768px) {
  .fv__badges {
    position: relative;
    z-index: 2;
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-top: 28px;
    padding: 8px 0 0;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fv__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 104px;
  padding: 10px 8px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(-51deg, #c2d0dc 3%, #e1ecec 86%);
}

@media (max-width: 768px) {
  .fv__badge {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 65px;
    padding: 12px 6px;
    gap: 4px;
    border-radius: 9px;
    background: linear-gradient(180deg, #c2d0dc 0%, #e1ecec 100%);
  }
}

.fv__badge-label {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  font-family: "Zen Antique", serif;
  line-height: 1.2;
  color: #1a4c4c;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .fv__badge-label {
    font-family: "Zen Antique", serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    white-space: normal;
  }
}

.fv__badge-note {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a4c4c;
  text-align: center;
}

@media (max-width: 768px) {
  .fv__badge-note {
    font-size: clamp(7.8px, 2vw, 9px);
    line-height: 1.25;
  }
}

.fv__side {
  z-index: 2;
  flex-shrink: 0;
  width: max-content;
  max-width: 44vw;
  min-width: 0;
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #2f3a40;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.08em;
}

@media (min-width: 769px) {
  .fv__side {
    position: absolute;
    top: 60px;
    right: 30px;
  }
}

@media (max-width: 768px) {
  .fv__side {
    position: absolute;
    max-width: none;
    width: auto;
    top: 30px;
    right: 24px;
    font-size: clamp(16px, 3vw, 20px);
    letter-spacing: 0.04em;
    line-height: 1.25;
    overflow: hidden;
  }
}

.fv__side-txt {
  display: inline;
}

.fv__side-txt--gold {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  color: #c8b07a;
}

.greeting {
  position: relative;
}

.greeting__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: 600px;
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .greeting__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
    padding-bottom: 64px;
  }
}

.greeting__figure--01 {
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 300px;
  margin: 0;
}

@media (max-width: 768px) {
  .greeting__figure--01 {
    justify-self: center;
    order: 1;
    max-width: 220px;
  }
}

.greeting__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .greeting__center {
    order: 1;
    gap: 24px;
  }
}

.greeting__heading {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #41917a;
}

@media (max-width: 768px) {
  .greeting__heading {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.5;
  }
}

.greeting__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 180px;
  height: 50px;
  padding: 0 16px 2px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #41917a;
  text-decoration: none;
  border: 1px solid #41917a;
  border-radius: 8px;
  background-color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.greeting__cta:hover {
  opacity: 1;
  background-color: rgba(65, 145, 122, 0.08);
}

@media (max-width: 768px) {
  .greeting__cta {
    width: 100%;
    max-width: 180px;
  }
}

.greeting__cta-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
}

.greeting__cta-arrow img {
  display: block;
  width: 23px;
  height: auto;
}

.greeting__stack {
  position: relative;
  justify-self: end;
  align-self: center;
  width: 170px;
  min-height: 220px;
  margin: 0 0 64px;
}

@media (max-width: 768px) {
  .greeting__stack {
    order: 4;
    width: min(100%, 200px);
    min-height: 0;
    margin: 0 auto 48px;
  }
}

.greeting__figure--02 {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .greeting__figure--02 {
    width: 80%;
    right: -30%;
  }
}

.greeting__figure--03 {
  position: absolute;
  z-index: 1;
  left: -125px;
  bottom: -125px;
  width: 150px;
  max-width: none;
  margin: 0;
}

@media (max-width: 768px) {
  .greeting__figure--03 {
    bottom: -24px;
    left: -20px;
    width: min(120px, 30vw);
  }
}

.greeting__figure {
  margin: 0;
}

.greeting__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.greeting__figure--01 .greeting__img {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 3/2;
}

.greeting__figure--02 .greeting__img {
  width: 170px;
  max-width: 100%;
  aspect-ratio: 17/22;
}

.greeting__figure--03 .greeting__img {
  width: 150px;
  max-width: 100%;
  aspect-ratio: 1/1;
}

@media (max-width: 768px) {

  .greeting__figure--01 .greeting__img,
  .greeting__figure--02 .greeting__img,
  .greeting__figure--03 .greeting__img {
    width: 100%;
    height: auto;
    aspect-ratio: 900/567;
  }

  .greeting__figure--02 .greeting__img {
    aspect-ratio: 510/660;
  }

  .greeting__figure--03 .greeting__img {
    aspect-ratio: 1/1;
  }
}

.services {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: 0;
  padding-inline: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

@media (max-width: 768px) {
  .services {
    padding-inline: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.services__hero {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  max-width: 100vw;
  height: clamp(260px, 28vw, 380px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

@media (max-width: 768px) {
  .services__hero {
    height: 212px;
  }
}

.services__hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.services__hero-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.services__hero-img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .services__hero-img {
    object-fit: cover;
  }
}

.services__stack {
  position: relative;
  z-index: 1;
  --services-banner-overlap: clamp(40px, 6vw, 80px);
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .services__stack {
    --services-banner-overlap: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-inline: 20px;
  }
}

.services__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .services__inner {
    margin-top: 50px;
  }
}

.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.services__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.services__label {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.services__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

.services__line {
  display: flex;
  align-items: center;
  width: 120px;
  height: 2px;
}

.services__line-side {
  flex: 1;
  height: 1px;
  background-color: #d7d9da;
}

.services__line-gold {
  flex-shrink: 0;
  width: 50px;
  height: 2px;
  margin-inline: 0;
  background-color: #c7b07a;
}

.services__panel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-bottom: calc(-1 * var(--services-banner-overlap));
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .services__panel {
    padding: 20px;
    margin-bottom: 0;
  }
}

.services__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .services__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.services__card-br {
  display: none;
}

.services__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 66px;
  padding: 20px 20px 22px;
  background-color: #ffffff;
  border: 1px solid #41917a;
  border-radius: 8px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #41917a;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.services__card:hover {
  opacity: 1;
  background-color: #41917a;
  color: #ffffff;
}

@media (max-width: 768px) {
  .services__card {
    min-height: 66px;
    padding: 12px 20px 14px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.services__card-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
}

.services__card-arrow img {
  display: block;
  width: 23px;
  height: auto;
  transition: filter 0.25s ease;
}

@media (max-width: 768px) {
  .services__card-arrow img {
    width: 25px;
    height: 5px;
  }
}

@media (max-width: 768px) {
  .services__card-br {
    display: block;
  }
}

.services__card:hover .services__card-arrow img {
  filter: brightness(0) invert(1);
}

.banner-cta {
  --services-banner-overlap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
  padding-top: var(--services-banner-overlap);
  color: #ffffff;
}

@media (max-width: 768px) {
  .banner-cta {
    --services-banner-overlap: clamp(24px, 5vw, 40px);
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .services__stack .banner-cta {
    padding-top: 0;
    margin-inline: -20px;
  }
}

.banner-cta--standalone {
  margin-top: 60px;
  padding: 0;
}

@media (max-width: 768px) {
  .banner-cta--standalone {
    padding-bottom: 60px;
  }
}

.banner-cta__row {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-right: 120px;
}

@media (max-width: 768px) {
  .banner-cta__row {
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
    max-width: none;
    padding-right: 0;
  }
}

.banner-cta__visual {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 783px;
  margin-right: -20px;
  aspect-ratio: 783/519;
  z-index: 1;
}

@media (max-width: 768px) {
  .banner-cta__visual {
    flex: none;
    width: 100%;
    max-width: none;
    height: 248.4px;
    margin-right: 0;
    aspect-ratio: auto;
    border-radius: 0;
    overflow: visible;
  }
}

.banner-cta__visual-clip {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: url("#banner-cta-visual-clip");
}

.banner-cta__visual-media {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-color: #2a2c2b;
  background-image: url("../img/photos/cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-cta__visual-copy {
  position: absolute;
  top: 39.69%;
  left: 22.46%;
  z-index: 2;
  box-sizing: border-box;
  width: 55.15%;
  max-width: 432px;
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #7b8083;
  pointer-events: none;
}

@media (min-width: 769px) {
  .banner-cta__visual-copy-line {
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .banner-cta__visual-copy {
    width: 58%;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .banner-cta__visual-copy {
    top: 50%;
    left: 50%;
    width: min(88%, 432px);
    font-size: clamp(22px, 5.87vw, 36px);
    transform: translate(-50%, -50%);
  }
}

.banner-cta__aside {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 1 500px;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  max-width: 500px;
  min-width: 0;
  padding-block: 24px;
}

@media (max-width: 768px) {
  .banner-cta__aside {
    flex: none;
    width: 100%;
    max-width: none;
    gap: 20px;
    padding: 0 20px;
  }
}

.banner-cta__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 160px;
  padding: 40px 20px;
  text-align: center;
  background-color: #e7eeea;
  border-radius: 8px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .banner-cta__item {
    min-height: 0;
    padding: 20px 0;
  }
}

.banner-cta__text {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #3b3f42;
}

.banner-cta__btn {
  height: 50px;
  min-height: 50px;
  padding: 0 16px 2px;
  font-weight: 700;
  gap: 16px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .banner-cta__btn {
    width: auto;
    max-width: none;
    padding: 0 16px 2px;
    white-space: nowrap;
  }
}

.banner-cta__btn-arrow {
  flex-shrink: 0;
  line-height: 0;
}

.banner-cta__btn-arrow img {
  display: block;
  width: 25px;
  height: 5px;
}

.contact {
  padding-block: 60px;
  padding-inline: clamp(16px, 8.33vw, 120px);
  background: linear-gradient(164deg, #e1ecec 25%, #c2d0dc 100%);
}

@media (max-width: 768px) {
  .contact {
    padding-block: 40px;
    padding-inline: 16px;
  }
}

.contact__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 64px;
  column-gap: 40px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
    align-items: stretch;
    row-gap: 40px;
  }
}

.contact__lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.contact__lead .title__en {
  margin: 0;
}

.contact__heading {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .contact__heading {
    font-size: 14px;
  }
}

.contact__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

@media (max-width: 768px) {
  .contact__actions {
    flex-direction: column;
    width: 100%;
  }
}

.contact__box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  width: 380px;
  max-width: 100%;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease;
}

.contact__box:hover {
  box-shadow: 0 4px 16px rgba(59, 63, 66, 0.1);
  opacity: 1;
}

@media (max-width: 768px) {
  .contact__box {
    width: 100%;
  }
}

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #41917a;
  border-radius: 50%;
}

.contact__icon--tel::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.36 11.36 0 003.56.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.36 11.36 0 00.57 3.56 1 1 0 01-.25 1.01l-2.2 2.22z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
}

.contact__icon--mail::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
}

.contact__box-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  box-sizing: border-box;
}

.contact__tel {
  font-family: "Zen Antique", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #41917a;
}

@media (max-width: 768px) {
  .contact__tel {
    font-size: 24px;
  }
}

.contact__hours {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #3b3f42;
}

.contact__mail {
  font-family: "Zen Antique", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #41917a;
}

.about-message {
  color: #3b3f42;
  padding-block: 80px;
}

@media (max-width: 768px) {
  .about-message {
    padding-block: 64px;
  }
}

.about-message__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 720px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .about-message__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-message__visual {
  position: relative;
  justify-self: start;
  width: 100%;
  max-width: min(360px, 100%);
  margin: 0;
  aspect-ratio: 360/424.55;
}

@media (max-width: 768px) {
  .about-message__visual {
    justify-self: center;
    max-width: min(360px, 88vw);
  }
}

.about-message__figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.about-message__figure--main {
  top: 0;
  left: 41.3805555556%;
  z-index: 0;
  width: 58.6194444444%;
  height: 64.3269344011%;
}

.about-message__figure--sub {
  top: 56.1394417619%;
  left: 0;
  z-index: 1;
  width: 51.725%;
  height: 43.8605582381%;
}

.about-message__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-message__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  box-sizing: border-box;
  width: 100%;
  margin-inline-start: auto;
  padding: 40px 48px;
  background-color: #f7f5f2;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .about-message__content {
    align-items: stretch;
    margin-inline: 0;
    padding: 32px 16px;
    border-radius: 8px;
  }
}

.about-message__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.about-message__heading {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
  color: #41917a;
}

@media (max-width: 768px) {
  .about-message__heading {
    font-size: 24px;
  }
}

.about-message__heading-line {
  display: block;
}

.about-message__heading-line:not(:first-child) {
  margin-top: 0;
}

.about-message__br {
  display: none;
}

@media (max-width: 768px) {
  .about-message__br {
    display: inline;
  }
}

.about-message__body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  text-align: left;
}

.about-message__body p {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.about-message__sign {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0;
  line-height: 1;
  color: #3b3f42;
}

.about-message__sign-role {
  font-family: "Zen Antique", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.about-message__sign-name {
  display: block;
  width: auto;
  height: 32px;
}

.lawyer-profile {
  color: #e8eaec;
  padding-block: clamp(72px, 10vw, 120px) clamp(40px, 6vw, 60px);
}

.lawyer-profile__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .lawyer-profile__inner {
    padding-inline: 16px;
  }
}

.lawyer-profile__inner {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(48px, 6vw, 80px);
  row-gap: 64px;
}

@media (max-width: 768px) {
  .lawyer-profile__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.lawyer-profile__figure {
  margin: 0;
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .lawyer-profile__figure {
    max-width: min(380px, 88vw);
  }
}

.lawyer-profile__img {
  display: block;
  width: 100%;
  height: auto;
}

.lawyer-profile__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  min-width: 0;
}

@media (max-width: 768px) {
  .lawyer-profile__content {
    align-items: center;
    width: 100%;
    max-width: 640px;
  }
}

.lawyer-profile__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .lawyer-profile__intro {
    align-items: center;
  }
}

.lawyer-profile__name-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 768px) {
  .lawyer-profile__name-block {
    align-items: center;
  }
}

.lawyer-profile__role {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #9aa0a4;
}

.lawyer-profile__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

@media (max-width: 768px) {
  .lawyer-profile__name-row {
    justify-content: center;
  }
}

.lawyer-profile__name-ja {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #41917a;
}

.lawyer-profile__name-en {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #41917a;
}

.lawyer-profile__meta {
  margin: 0;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #7b8083;
}

.lawyer-profile__history {
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 16px;
  row-gap: 16px;
  margin: 0;
  width: 100%;
  max-width: 640px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .lawyer-profile__history {
    text-align: left;
  }
}

.lawyer-profile__history-term {
  margin: 0;
  font-weight: 500;
  color: #3b3f42;
  white-space: nowrap;
}

.lawyer-profile__history-desc {
  margin: 0;
  font-weight: 500;
  color: #3b3f42;
}

.lawyer-affiliation__inner {
  display: flex;
  justify-content: center;
  padding-block: 0px 120px;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .lawyer-affiliation__inner {
    padding-inline: 16px;
    padding-bottom: 40px;
  }
}

.lawyer-affiliation__board {
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  width: min(100%, 900px);
  min-height: 540px;
  margin-inline: auto;
  padding: clamp(24px, 5.56vw, 50px);
  background-image: url("../img/bg/lawyer_bg.webp");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
}

.lawyer-affiliation__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

.lawyer-affiliation__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
}

.lawyer-affiliation__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #41917a;
}

.lawyer-affiliation__body {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.lawyer-affiliation__body p {
  margin: 0;
}

.lawyer-band {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.lawyer-band__img {
  display: block;
  width: 100%;
  height: auto;
}

.lawyer-personality {
  background-color: #e7eeea;
  padding-block: clamp(64px, 10vw, 120px);
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .lawyer-personality {
    padding-inline: 16px;
  }
}

.lawyer-personality__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  box-sizing: border-box;
}

.lawyer-personality__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.lawyer-personality__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.lawyer-personality__label {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #41917a;
}

.lawyer-personality__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.lawyer-personality__rule {
  display: block;
  width: 120px;
  height: 2px;
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background: linear-gradient(90deg, #d7d9d9 0, #d7d9d9 29.1666666667%, #c7b07a 29.1666666667%, #c7b07a 70.8333333333%, #d7d9d9 70.8333333333%, #d7d9d9 100%);
}

.lawyer-personality__lead {
  margin: 0;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3b3f42;
}

.lawyer-personality__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.lawyer-personality__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
}

.lawyer-personality__q-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}

.lawyer-personality__q-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding-bottom: 4px;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #8fa3b0;
  border-radius: 50%;
}

.lawyer-personality__question {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #c7b07a;
}

.lawyer-personality__answer {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.service-page {
  padding-block: 64px;
}

@media (max-width: 768px) {
  .service-page {
    padding-block: 40px;
  }
}

.service-page__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .service-page__inner {
    padding-inline: 16px;
  }
}

.service-page__placeholder {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.service-intro__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-block: clamp(48px, 6vw, 80px);
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .service-intro__inner {
    padding-inline: 16px;
  }
}

.service-intro__greeting {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.service-intro__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.service-intro__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #3b3f42;
  text-align: center;
}

.service-intro__line {
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #d7d9da 0, #d7d9da 35px, #c7b07a 35px, #c7b07a 85px, #d7d9da 85px, #d7d9da 120px);
}

.service-intro__heading {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #41917a;
}

.service-intro__heading-line {
  display: block;
}

.service-intro__body {
  margin: 0;
}

.service-intro__body p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.service-problem {
  background-color: #e7eeea;
  padding-block: clamp(64px, 10vw, 120px);
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .service-problem {
    padding-inline: 16px;
  }
}

.service-problem__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

.service-problem__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.service-problem__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.service-problem__label {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #41917a;
}

.service-problem__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.service-problem__rule {
  display: block;
  width: 120px;
  height: 2px;
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background: linear-gradient(90deg, #d7d9d9 0, #d7d9d9 29.1666666667%, #c7b07a 29.1666666667%, #c7b07a 70.8333333333%, #d7d9d9 70.8333333333%, #d7d9d9 100%);
}

.service-problem__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-problem__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px dashed #7b8083;
}

.service-problem__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  background-color: #ffffff;
  border-radius: 50%;
}

.service-problem__icon-img {
  display: block;
  width: 14px;
  height: auto;
}

.service-problem__text {
  flex: 1;
  min-width: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.service-problem__deco {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  line-height: 0;
}

.service-problem__deco-img {
  display: block;
  width: 182px;
  max-width: 100%;
  height: auto;
}

.service-problem__closing {
  margin: 0;
  max-width: 100%;
  font-family: "Zen Antique", serif;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  color: #41917a;
}

.service-problem__closing-line {
  display: block;
}

.service-band {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.service-band__img {
  display: block;
  width: 100%;
  height: auto;
}

.service-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 40px);
  box-sizing: border-box;
  width: 100%;
  padding-block: clamp(64px, 10vw, 120px) 0;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .service-support {
    padding-inline: 16px;
  }
}

.service-support__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 900px;
}

.service-support__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.service-support__label {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #41917a;
}

.service-support__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.service-support__title-line {
  display: block;
}

.service-support__rule {
  display: block;
  width: 120px;
  height: 2px;
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background: linear-gradient(90deg, #d7d9d9 0, #d7d9d9 29.1666666667%, #c7b07a 29.1666666667%, #c7b07a 70.8333333333%, #d7d9d9 70.8333333333%, #d7d9d9 100%);
}

.service-support__panel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 0;
}

.service-support__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #d9d9d9;
  background-image: url("../img/bg/service-support-bg.webp");
  background-position: center;
  background-size: cover;
}

.service-support__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  padding: clamp(24px, 5.5vw, 50px);
}

.service-support__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-support__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  box-sizing: border-box;
  width: 100%;
  padding: clamp(24px, 4vw, 32px) clamp(20px, 4.5vw, 40px);
  background-color: #ffffff;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .service-support__item {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.service-support__num {
  position: relative;
  flex-shrink: 0;
  width: 91px;
  height: 91px;
}

@media (max-width: 768px) {
  .service-support__num {
    align-self: center;
  }
}

.service-support__num-ring {
  position: absolute;
  inset: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  pointer-events: none;
}

.service-support__num-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Antique", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 0;
  color: #41917a;
  opacity: 0.3;
  transform: translateY(-0.06em);
}

.service-support__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.service-support__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #41917a;
}

.service-support__tag {
  box-sizing: border-box;
  align-self: flex-start;
  margin: 0;
  padding: 6px 12px 8px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #c7b07a;
  background-color: #f7f5f2;
  border: 1px solid #c7b07a;
}

.service-support__sub {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: clamp(20px, 2.8vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #41917a;
}

.service-support__text {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.price-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.price-section-head__labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.price-section-head__en {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #41917a;
}

.price-section-head__ja {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3b3f42;
}

.price-section-head__line {
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #d7d9da 0, #d7d9da 35px, #c7b07a 35px, #c7b07a 85px, #d7d9da 85px, #d7d9da 120px);
}

.price-consult {
  padding-block: 80px 0;
}

@media (max-width: 768px) {
  .price-consult {
    padding: 60px 20px 0;
  }
}

.price-consult__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(900px + 2 * 40px);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .price-consult__inner {
    max-width: none;
    padding-inline: 0;
    gap: 32px;
  }
}

.price-consult__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  width: 100%;
  padding: 32px;
  border-radius: 8px;
  background-color: #41917a;
  color: #ffffff;
}

.price-consult__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 120px;
  height: 34px;
  margin: 0;
  padding: 0 0 2px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  background-color: #2f6d5d;
}

.price-consult__fee {
  display: inline-block;
  margin: 0;
  padding: 0 0 16px;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px dashed #e7eeea;
}

.price-consult__note {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
}

.price-plan {
  padding-top: 120px;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .price-plan {
    padding: 60px 20px 0;
  }
}

.price-plan__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(900px + 2 * 40px);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .price-plan__inner {
    max-width: none;
    padding-inline: 0;
    gap: 32px;
  }
}

.price-plan__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 100%;
}

.price-plan__set {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .price-plan__set {
    gap: 28px;
  }
}

.price-plan__plan-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #41917a;
}

.price-plan__ribbon {
  align-self: flex-start;
  margin: 0;
  padding: 4px 12px 6px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
  background-color: #c7b07a;
  border-radius: 2px;
}

.price-plan__plan-title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #41917a;
}

.price-plan__lead {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.price-plan__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.price-plan__table th,
.price-plan__table td {
  padding: 20px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #d9d9d9;
}

.price-plan__table th {
  width: 200px;
  box-sizing: border-box;
  font-weight: 500;
  background-color: #e7eeea;
}

.price-plan__table td {
  background-color: #ffffff;
}

@media (max-width: 768px) {

  .price-plan__table th,
  .price-plan__table td {
    display: table-cell;
    width: auto;
  }

  .price-plan__table th {
    width: 100px;
    line-height: 1.3;
    word-break: keep-all;
    border-bottom: 1px solid #d9d9d9;
  }
}

.price-plan__th-line {
  display: inline-block;
  white-space: nowrap;
}

.price-plan__callout {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px;
  border: 2px solid #41917a;
  border-radius: 8px;
  background-color: #ffffff;
}

.price-plan__callout-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.price-plan__callout-icon {
  display: block;
  flex-shrink: 0;
}

.price-plan__callout-title {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #41917a;
  text-align: left;
}

.price-plan__callout-body {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.price-plan__topics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 768px) {
  .price-plan__topics {
    gap: 40px;
  }
}

.price-plan__topic {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-plan__topic-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.price-plan__topic-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8fa3b0;
}

.price-plan__topic-label {
  flex: 1 1 12rem;
  min-width: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #41917a;
}

@media (max-width: 768px) {
  .price-plan__topic-label {
    line-height: 1.3;
  }
}

.price-other-fees {
  padding-block: 120px;
}

@media (max-width: 768px) {
  .price-other-fees {
    padding: 60px 20px;
  }
}

.price-other-fees__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(900px + 2 * 40px);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .price-other-fees__inner {
    max-width: none;
    padding-inline: 0;
    gap: 32px;
  }
}

.price-other-fees__table {
  width: 100%;
  align-self: stretch;
  border-collapse: collapse;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.price-other-fees__table th,
.price-other-fees__table td {
  padding: 20px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #d9d9d9;
}

.price-other-fees__table th {
  width: 200px;
  box-sizing: border-box;
  font-weight: 500;
  background-color: #e7eeea;
}

.price-other-fees__table td {
  background-color: #ffffff;
}

@media (max-width: 768px) {

  .price-other-fees__table th,
  .price-other-fees__table td {
    display: table-cell;
    width: auto;
  }

  .price-other-fees__table th {
    width: 100px;
    line-height: 1.3;
    word-break: keep-all;
    border-bottom: 1px solid #d9d9d9;
  }
}

.price-other-fees__emph {
  align-self: stretch;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #41917a;
  text-align: center;
}

@media (max-width: 768px) {
  .price-other-fees__emph {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }
}

.price-other-fees__tax-note {
  align-self: stretch;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
  text-align: center;
}

@media (max-width: 768px) {
  .price-other-fees__tax-note {
    text-align: left;
  }
}

.price-flow {
  scroll-margin-top: calc(90px + 16px);
  position: relative;
  padding-block: 120px;
  background-image: url("../img/bg/fllow_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .price-flow {
    scroll-margin-top: 85px;
    padding: 60px 20px;
  }
}

.price-flow__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .price-flow__inner {
    padding-inline: 16px;
  }
}

.price-flow__inner {
  padding-inline: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .price-flow__inner {
    padding-inline: 0;
  }
}

.price-flow__layout {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  gap: 0;
}

@media (max-width: 1159px) {
  .price-flow__layout {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .price-flow__layout {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    align-items: center;
    gap: 60px;
  }
}

.price-flow__photos {
  position: relative;
  flex: 0 0 auto;
  width: 399px;
  max-width: 100%;
  aspect-ratio: 399/484;
  margin: 0;
}

@media (max-width: 768px) {
  .price-flow__photos {
    width: 300px;
    aspect-ratio: 300/363.91;
    margin-inline: auto;
  }
}

.price-flow__figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.price-flow__figure--main {
  top: 0;
  left: 37.343358396%;
  z-index: 0;
  width: 62.656641604%;
  height: 66.9421487603%;
}

.price-flow__figure--sub {
  top: 54.5454545455%;
  left: 0;
  z-index: 1;
  width: 55.1378446115%;
  height: 45.4545454545%;
}

.price-flow__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-flow__steps {
  display: flex;
  flex: 0 0 700px;
  flex-direction: column;
  gap: 24px;
  width: 700px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1159px) {
  .price-flow__steps {
    flex: 1 1 700px;
    width: min(100%, 700px);
  }
}

@media (max-width: 768px) {
  .price-flow__steps {
    flex: none;
    width: 100%;
  }
}

.price-flow__step {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  padding: 32px 40px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 24px rgba(59, 63, 66, 0.06);
}

@media (max-width: 768px) {
  .price-flow__step {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    padding: 32px;
  }
}

.price-flow__step--compact {
  align-items: center;
}

@media (max-width: 768px) {
  .price-flow__step--compact {
    align-items: center;
  }
}

.price-flow__numcol {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 40px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #41917a;
}

.price-flow__flow-label {
  font-family: "Zen Antique", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #41917a;
  text-align: center;
}

.price-flow__num {
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #41917a;
  opacity: 0.5;
}

.price-flow__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

@media (max-width: 768px) {
  .price-flow__text {
    align-self: stretch;
    width: 100%;
  }
}

.price-flow__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #41917a;
}

@media (max-width: 768px) {
  .price-flow__title {
    line-height: 1.3;
    text-align: center;
  }
}

.price-flow__desc {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.price-flow__cta {
  align-self: flex-end;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .price-flow__cta {
    align-self: stretch;
    width: 100%;
  }
}

.faq-page {
  padding-block: 120px;
  background-color: #f7f5f2;
}

@media (max-width: 768px) {
  .faq-page {
    padding-block: 80px;
  }
}

.faq-page__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .faq-page__inner {
    padding-inline: 16px;
  }
}

.faq-page__inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .faq-page__inner {
    gap: 80px;
  }
}

.faq-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.faq-cat-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.faq-cat-head__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .faq-cat-head__title {
    font-size: clamp(24px, 6vw, 30px);
  }
}

.faq-cat-head__line {
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #d7d9da 0, #d7d9da 35px, #c7b07a 35px, #c7b07a 85px, #d7d9da 85px, #d7d9da 120px);
}

.faq-category__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 0;
  padding: 0;
}

.faq-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 32px;
  border-radius: 8px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 24px 24px;
  }
}

.faq-item__heading {
  margin: 0;
  font: inherit;
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-item__trigger:active {
  background-color: transparent;
}

.faq-item__trigger::-moz-focus-inner {
  border: 0;
}

.faq-item__trigger:focus:not(:focus-visible) {
  outline: none;
}

.faq-item__trigger:focus-visible {
  outline: 2px solid #41917a;
  outline-offset: 4px;
}

.faq-item__qrow {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.faq-item__badge {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding-bottom: 4px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #41917a;
  background-color: #e7eeea;
  border-radius: 50%;
}

.faq-item__question {
  flex: 1;
  min-width: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-inline-start: 16px;
  margin-inline-end: 16px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: #41917a;
  border-radius: 1px;
}

.faq-item__icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.faq-item__icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: scaleY(0);
}

.faq-item__panel {
  display: grid;
  max-width: 790px;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease-in-out;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__answer {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel {
    transition-duration: 0.01ms !important;
  }

  .faq-item__icon::after {
    transition-duration: 0.01ms !important;
  }
}

.cases-pc-br {
  display: none;
}

@media (min-width: 769px) {
  .cases-pc-br {
    display: block;
  }
}

.cases-page__intro {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 80px;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .cases-page__intro {
    padding-block: 48px;
    padding-inline: 16px;
  }
}

.cases-page__intro-text {
  max-width: 1200px;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3b3f42;
}

.cases-sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.cases-sec-head__en {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #41917a;
}

.cases-sec-head__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .cases-sec-head__title {
    font-size: clamp(22px, 5.5vw, 30px);
  }
}

.cases-sec-head__title--voice {
  line-height: 1.3;
}

.cases-sec-head__line {
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #d7d9da 0, #d7d9da 35px, #c7b07a 35px, #c7b07a 85px, #d7d9da 85px, #d7d9da 120px);
}

.cases-section--cases {
  padding-block: 120px;
  background-color: #e7eeea;
}

@media (max-width: 768px) {
  .cases-section--cases {
    padding-block: 80px;
  }
}

.cases-section--voice {
  padding-block: 120px;
  background-color: #f7f5f2;
}

@media (max-width: 768px) {
  .cases-section--voice {
    padding-block: 80px;
  }
}

.cases-section__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .cases-section__inner {
    padding-inline: 16px;
  }
}

.cases-section .cases-sec-head {
  margin-bottom: 32px;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border-radius: 8px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .case-card {
    gap: 24px;
    padding: 24px 24px;
  }
}

.case-card__hero {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px dashed #41917a;
}

.case-card__thumb {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  overflow: hidden;
  background-color: transparent;
  border-radius: 4px;
}

.case-card__thumb-img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.case-card__hero-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.case-card__cat {
  display: inline-block;
  padding: 6px 12px 8px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
  background-color: #41917a;
  border-radius: 2px;
}

.case-card__who {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #41917a;
}

.case-card__lead {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .case-card__lead {
    font-size: 18px;
  }
}

.case-card__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-card__label {
  box-sizing: border-box;
  align-self: flex-start;
  margin: 0;
  padding: 4px 12px 6px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #41917a;
  background-color: #e7eeea;
  border: 1px solid #41917a;
}

.case-card__text {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.case-card__result {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card__result-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 12px 6px;
  background-color: #c7b07a;
}

.case-card__result-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #c7b07a;
  background-color: #ffffff;
  border-radius: 50%;
}

.case-card__result-title {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.case-card__result-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-card__result-lead {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #41917a;
}

.cases-voice {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .cases-voice {
    padding-inline: 16px;
  }
}

.cases-voice__panel {
  position: relative;
  max-width: 900px;
  min-height: 320px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px;
  background-color: #e7eeea;
}

@media (max-width: 768px) {
  .cases-voice__panel {
    min-height: 0;
  }
}

.cases-voice__panel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(231, 238, 234, 0.92);
}

.cases-voice__panel-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
  padding: 50px 40px;
}

@media (max-width: 768px) {
  .cases-voice__panel-inner {
    padding: 32px 24px;
  }
}

.voice-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 40px;
  border-radius: 8px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .voice-card {
    padding: 24px 24px;
  }
}

.voice-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #41917a;
}

.voice-card__badge {
  box-sizing: border-box;
  align-self: flex-start;
  padding: 4px 12px 6px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #c7b07a;
  background-color: #f7f5f2;
  border: 1px solid #c7b07a;
}

.voice-card__title {
  max-width: 720px;
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #41917a;
}

@media (max-width: 768px) {
  .voice-card__title {
    font-size: 18px;
  }
}

.voice-card__body {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-page {
  padding-block: 120px;
  background-color: #f7f5f2;
}

@media (max-width: 768px) {
  .blog-page {
    padding-block: 80px;
  }
}

.blog-page__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .blog-page__inner {
    padding-inline: 16px;
  }
}

.blog-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: start;
  gap: 60px 80px;
}

@media (max-width: 900px) {
  .blog-page__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.blog-page__main {
  min-width: 0;
}

.blog-page__main-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.blog-page__aside {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (max-width: 900px) {
  .blog-page__aside {
    max-width: 400px;
  }
}

.blog-archive__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: fit-content;
  margin-inline: auto;
}

.blog-archive__title {
  align-self: auto;
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .blog-archive__title {
    font-size: clamp(22px, 5.5vw, 28px);
  }
}

.blog-archive__line {
  display: block;
  flex-shrink: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #d7d9da 0, #d7d9da 35px, #c7b07a 35px, #c7b07a 85px, #d7d9da 85px, #d7d9da 120px);
}

.blog-archive__list {
  align-self: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding-block: 30px;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-block: 20px;
  }
}

.blog-card:hover .blog-card__title {
  color: #41917a;
}

.blog-card__thumb {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.blog-card__thumb:has(.blog-card__noimg) {
  background-color: #d9d9d9;
}

@media (max-width: 1024px) {
  .blog-card {
    gap: 12px;
  }

  .blog-card__thumb {
    flex: 0 0 30%;
    width: 30%;
    min-width: 0;
    max-width: none;
  }

  .blog-card__body {
    flex: 0 0 70%;
    width: 70%;
  }
}

.blog-card__noimg {
  font-family: "Zen Kaku Gothic New", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #495947;
}

.blog-card__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.blog-card__title {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #3b3f42;
  transition: color 0.25s ease;
}

@media (max-width: 768px) {
  .blog-card__title {
    font-size: 15px;
    line-height: 1.45;
  }
}

.blog-card__meta {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #7b8083;
}

.blog-pager {
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #d9d9d9;
}

.blog-pager__nums {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pager__num {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding-bottom: 4px;
  font-family: "Zen Antique", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  color: #c7b07a;
  border: 1px solid #c7b07a;
  border-radius: 50%;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.blog-pager__num:hover {
  background-color: rgba(199, 176, 122, 0.2);
}

.blog-pager__num.is-current {
  color: #ffffff;
  pointer-events: none;
  background-color: #c7b07a;
  border-color: #c7b07a;
}

.blog-pager__arrow {
  display: block;
  width: 0;
  height: 0;
  text-decoration: none;
  border-style: solid;
}

.blog-pager__arrow--prev {
  border-width: 6px 9px 6px 0;
  border-color: transparent #c7b07a transparent transparent;
}

.blog-pager__arrow--prev:hover {
  opacity: 0.75;
}

.blog-pager__arrow--next {
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #c7b07a;
}

.blog-pager__arrow--next:hover {
  opacity: 0.75;
}

.blog-pager__arrow.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}

.blog-widget {
  width: 100%;
  max-width: 240px;
}

@media (max-width: 900px) {
  .blog-widget {
    max-width: none;
  }
}

.blog-widget__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-widget__bar {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 3px;
  background-color: #41917a;
}

.blog-widget__head-text {
  flex: 1;
}

.blog-widget__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-widget__list--cat {
  border-top: 1px solid #d9d9d9;
}

.blog-widget__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-block: 20px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #3b3f42;
  text-decoration: none;
  border-bottom: 1px solid #d9d9d9;
  transition: color 0.25s ease;
}

.blog-widget__link::before {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #c7b07a;
}

.blog-widget__link:hover {
  color: #41917a;
}

.blog-widget__list--new li {
  border-bottom: 1px solid #d9d9d9;
}

.blog-widget__list--new li:last-child {
  border-bottom: 0;
}

.blog-mini {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-block: 20px;
  text-decoration: none;
  color: inherit;
}

.blog-mini:hover .blog-mini__title {
  color: #41917a;
}

.blog-mini__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.blog-mini__thumb:empty {
  background-color: #d9d9d9;
}

.blog-mini__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-mini__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  max-width: 172px;
}

.blog-mini__title {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #3b3f42;
  transition: color 0.25s ease;
}

.blog-mini__meta {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #7b8083;
}

.blog-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.blog-article__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.blog-article__title {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: #3b3f42;
}

@media (max-width: 768px) {
  .blog-article__title {
    font-size: clamp(22px, 5.5vw, 28px);
  }
}

.blog-article__line {
  display: block;
  flex-shrink: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #d7d9da 0, #d7d9da 35px, #c7b07a 35px, #c7b07a 85px, #d7d9da 85px, #d7d9da 120px);
}

.blog-article__meta {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #7b8083;
}

.blog-article__hero {
  align-self: stretch;
  width: 100%;
  height: 460px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-article__hero {
    height: min(56vw, 360px);
  }
}

.blog-article__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.blog-article__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 60px;
  width: 100%;
}

@media (max-width: 768px) {
  .blog-article__content {
    gap: 40px;
  }
}

.blog-article__block {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
}

.blog-article__block--h2 {
  gap: 0;
}

.blog-article__block--h3 {
  gap: 0;
}

.blog-article__block--h4 {
  gap: 0;
}

.blog-article__h2-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d7d9da;
}

.blog-article__h3-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-article__bar {
  display: block;
  flex-shrink: 0;
  width: 3px;
  background-color: #c7b07a;
}

.blog-article__bar--h2 {
  height: 24px;
}

.blog-article__bar--h3 {
  height: 22px;
}

.blog-article__h2,
.blog-article__prose h2 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-article__h2 {
  flex: 1;
  margin: 0;
  min-width: 0;
}

.blog-article__prose>* {
  margin: 0;
}

.blog-article__prose h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d7d9da;
}

.blog-article__prose h2:first-child,
.blog-article__prose h3:first-child,
.blog-article__prose h4:first-child {
  margin-top: 0;
}

.blog-article__prose h2::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 24px;
  background-color: #c7b07a;
}

.blog-article__prose h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.blog-article__prose h3::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 22px;
  background-color: #c7b07a;
}

/* 見出し以外の連続ブロック（段落・リスト・画像など） */
.blog-article__prose> :not(h1):not(h2):not(h3):not(h4)+ :not(h1):not(h2):not(h3):not(h4) {
  margin-top: 1.5em;
}

/* セクション見出し前 */
.blog-article__prose>*+h2 {
  margin-top: 60px;
}

.blog-article__prose>*+h3 {
  margin-top: 40px;
}

.blog-article__prose>h2+h3 {
  margin-top: 32px;
}

.blog-article__prose>*+h4 {
  margin-top: 32px;
}

.blog-article__prose>h2+h4 {
  margin-top: 28px;
}

.blog-article__prose>h3+h4 {
  margin-top: 24px;
}

.blog-article__prose>h4+h4 {
  margin-top: 24px;
}

/* 見出し直後の本文ブロック */
.blog-article__prose> :is(h2, h3, h4)+ :is(p, ul, ol, figure, blockquote, table, hr, div[class*="wp-block-"], .wp-block-image, .wp-block-gallery, .wp-block-embed, .wp-block-quote, .wp-block-table, .wp-block-video) {
  margin-top: 1.25em;
}

.blog-article__prose>h2 {
  margin-bottom: 20px;
}

.blog-article__prose>h3,
.blog-article__prose>h4 {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .blog-article__prose>*+h2 {
    margin-top: 40px;
  }

  .blog-article__prose>*+h3 {
    margin-top: 32px;
  }

  .blog-article__prose>h2+h3 {
    margin-top: 24px;
  }

  .blog-article__prose>*+h4 {
    margin-top: 24px;
  }

  .blog-article__prose>h2+h4 {
    margin-top: 24px;
  }

  .blog-article__prose>h3+h4 {
    margin-top: 20px;
  }

  .blog-article__prose>h4+h4 {
    margin-top: 20px;
  }
}

.blog-article__h3,
.blog-article__prose h3,
.legal-doc-prose h3 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-article__h3 {
  flex: 1;
  margin: 0;
  min-width: 0;
}

.blog-article__h4,
.blog-article__prose h4 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-article__h4 {
  margin: 0;
}

.blog-article__prose p {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-article__prose ul,
.blog-article__prose ol {
  padding-left: 1.5em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-article__prose li+li {
  margin-top: 0.35em;
}

.blog-article__prose li>ul,
.blog-article__prose li>ol {
  margin-top: 0.35em;
}

.blog-article__prose figure,
.blog-article__prose .wp-block-image,
.blog-article__prose .wp-block-gallery,
.blog-article__prose .wp-block-embed,
.blog-article__prose .wp-block-video {
  margin: 0;
}

.blog-article__prose img {
  max-width: 100%;
  height: auto;
}

.blog-article__prose blockquote,
.blog-article__prose .wp-block-quote {
  padding: 0 0 0 1em;
  border-left: 3px solid #d7d9da;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-article__prose a {
  color: #41917a;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-article__prose a:hover {
  text-decoration-thickness: 2px;
}

.blog-article__prose hr {
  border: 0;
  border-top: 1px solid #d7d9da;
}

.blog-related {
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-top: 50px;
  border-top: 1px solid #d9d9d9;
}

.blog-article__content+.blog-related {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .blog-article__content+.blog-related {
    margin-top: 10px;
  }
}

.blog-related__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.blog-related__bar {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 3px;
  background-color: #41917a;
}

.blog-related__head-text {
  flex: 1;
}

.blog-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-related__item {
  flex: 1 1 calc(50% - 15px);
  min-width: min(100%, 280px);
  max-width: 405px;
}

@media (max-width: 640px) {
  .blog-related__item {
    flex: 1 1 100%;
    max-width: none;
  }
}

.blog-related-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.blog-related-card:hover .blog-related-card__title {
  color: #41917a;
}

.blog-related-card__thumb {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  overflow: hidden;
}

.blog-related-card__thumb:empty {
  background-color: #d9d9d9;
}

@media (max-width: 768px) {
  .blog-related-card__thumb {
    width: 90px;
    height: 90px;
  }
}

.blog-related-card__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-width: 0;
  max-width: 278px;
}

.blog-related-card__title {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #3b3f42;
  transition: color 0.25s ease;
}

.blog-related-card__meta {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #7b8083;
}

.legal-doc-page {
  padding-block: 120px;
  background-color: #f7f5f2;
}

@media (max-width: 768px) {
  .legal-doc-page {
    padding-block: 80px;
  }
}

.legal-doc-page__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .legal-doc-page__inner {
    padding-inline: 16px;
  }
}

.legal-doc-page__inner {
  max-width: min(900px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.legal-doc-page.sitemap-page .legal-doc-page__inner {
  max-width: min(1040px, 100%);
}

.legal-doc-note {
  margin: 0;
  padding: 24px 24px 24px 40px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #7b8083;
  background-color: #ffffff;
  border-left: 3px solid #41917a;
  border-radius: 8px;
}

.legal-doc-prose {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: #3b3f42;
}

.legal-doc-prose>*:first-child {
  margin-top: 0;
}

.legal-doc-prose>*:last-child {
  margin-bottom: 0;
}

.legal-doc-prose h2 {
  margin: 2.2em 0 0.75em;
  font-family: "Zen Antique", serif;
  font-size: clamp(20px, 2.8vw, 24px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #41917a;
}

.legal-doc-prose h2:first-child {
  margin-top: 0;
}

.legal-doc-prose h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 1.6em 0 0;
  margin-bottom: 16px;
}

.legal-doc-prose h3::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 22px;
  background-color: #c7b07a;
}

.legal-doc-prose p {
  margin: 0 0 1em;
}

.legal-doc-prose ul {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.legal-doc-prose li {
  margin-bottom: 0.35em;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 80px);
}

@media (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

.sitemap-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sitemap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sitemap-list__item {
  list-style: none;
}

.sitemap-list__current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #41917a;
}

.sitemap-list__current::before {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #c7b07a;
}

.sitemap-list__empty {
  display: block;
  padding: 10px 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #7b8083;
}

.sitemap-list__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #3b3f42;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.sitemap-list__link::before {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #c7b07a;
}

.sitemap-list__link:hover {
  color: #41917a;
  border-bottom-color: rgba(65, 145, 122, 0.25);
}

/* --------------------------------------------------------------------------
   Contact page — Figma 638:3570（アクセス）/ 638:3578（お問い合わせ）
   -------------------------------------------------------------------------- */
.contact-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.contact-section-head__labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-section-head__en {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #41917a;
}

.contact-section-head__ja {
  margin: 0;
  font-family: "Zen Antique", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3b3f42;
}

.contact-section-head__line {
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #d7d9da 0, #d7d9da 35px, #c7b07a 35px, #c7b07a 85px, #d7d9da 85px, #d7d9da 120px);
}

.contact-access {
  padding: 120px clamp(20px, 8.33vw, 120px);
}

@media (max-width: 768px) {
  .contact-access {
    padding: 80px 20px 60px;
  }
}

.contact-access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

.contact-access__map {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #dde0df;
}

@media (max-width: 768px) {
  .contact-access__map {
    height: 240px;
  }
}

.contact-access__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-access__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.contact-access__row {
  display: flex;
  align-items: stretch;
  margin-top: -1px;
}

.contact-access__row:first-child {
  margin-top: 0;
}

.contact-access__term,
.contact-access__desc {
  margin: 0;
  padding: 20px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
  border: 1px solid #d7d9da;
}

.contact-access__term {
  flex: 0 0 200px;
  box-sizing: border-box;
  background-color: #e7eeea;
}

.contact-access__desc {
  flex: 1 1 auto;
  min-width: 0;
  background-color: #ffffff;
}

.contact-access__tel {
  color: inherit;
  text-decoration: none;
}

.contact-access__tel:hover {
  opacity: 0.75;
}

.contact-access__tel-note {
  display: block;
  margin-top: 0.35em;
  color: #41917a;
  font-weight: 700;
}

.contact-access__tel--accent {
  font-size: 20px;
  font-weight: 700;
  color: #41917a;
}

@media (max-width: 768px) {
  .contact-access__row {
    flex-direction: column;
  }

  .contact-access__term,
  .contact-access__desc {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-access__term {
    flex: none;
    border-bottom: 0;
  }
}

.contact-inquiry {
  padding: 80px clamp(20px, 8.33vw, 120px) 0;
}

@media (max-width: 768px) {
  .contact-inquiry {
    padding: 60px 20px 0;
  }
}

.contact-inquiry__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

.contact-inquiry__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.contact-inquiry__recommend {
  width: 100%;
  margin: 0 0 12px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-inquiry__lead {
  width: 100%;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
  text-align: center;
}

.contact-inquiry__note {
  width: 100%;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #7b8083;
  text-align: center;
}

.contact-form {
  width: 100%;
}

.contact-form__list {
  border-top: 1px solid #d7d9da;
}

.contact-form__row,
.contact-form--cf7 .contact-form__row {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 26px 0;
  border-bottom: 1px solid #d7d9da;
}

.contact-form__row--textarea,
.contact-form--cf7 .contact-form__row--textarea {
  align-items: flex-start;
  min-height: 304px;
  box-sizing: border-box;
}

.contact-form__label,
.contact-form--cf7 .contact-form__label {
  flex: 0 0 270px;
  box-sizing: border-box;
  min-height: 66px;
  display: flex;
  align-items: center;
  margin: 0;
  padding-left: 30px;
}

.contact-form__label-text,
.contact-form--cf7 .contact-form__label label,
.contact-form--cf7 .contact-form__label>span:not([class]) {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #3b3f42;
}

.contact-form__field,
.contact-form--cf7 .contact-form__field {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  margin: 0;
  padding-right: 30px;
}

.contact-form__row--textarea .contact-form__field,
.contact-form--cf7 .contact-form__row--textarea .contact-form__field {
  align-items: flex-start;
  padding-top: 8px;
}

.contact-form__field--birth,
.contact-form--cf7 .contact-form__field--birth {
  flex-wrap: nowrap;
}

.contact-form__badge,
.contact-form--cf7 .contact-form__badge {
  flex-shrink: 0;
  box-sizing: border-box;
  max-width: 56px;
  padding: 4px 14px 6px;
  border-radius: 4px;
  background-color: #c7b07a;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}

.contact-form__field .wpcf7-form-control-wrap {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.contact-form__field>.contact-form__input,
.contact-form__field>.contact-form__textarea {
  flex: 1 1 auto;
  min-width: 0;
}

.contact-form__field--birth .wpcf7-form-control-wrap,
.contact-form__birth-item .wpcf7-form-control-wrap {
  flex: 0 0 80px;
  width: 80px;
}

.contact-form__birth,
.contact-form--cf7 .contact-form__birth {
  display: flex;
  flex: 0 0 375px;
  width: 375px;
  max-width: 375px;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}

.contact-form__birth-item,
.contact-form--cf7 .contact-form__birth-item {
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.contact-form__input,
.contact-form__textarea,
.contact-form--cf7 input[type="text"],
.contact-form--cf7 input[type="email"],
.contact-form--cf7 input[type="tel"],
.contact-form--cf7 input[type="number"],
.contact-form--cf7 input[type="date"],
.contact-form--cf7 textarea,
.contact-form--cf7 select {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background-color: #ffffff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #3b3f42;
}

.contact-form__input,
.contact-form--cf7 input[type="text"],
.contact-form--cf7 input[type="email"],
.contact-form--cf7 input[type="tel"],
.contact-form--cf7 input[type="number"],
.contact-form--cf7 input[type="date"],
.contact-form--cf7 select {
  height: 50px;
  padding: 0 20px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder,
.contact-form--cf7 input::placeholder,
.contact-form--cf7 textarea::placeholder {
  color: rgba(123, 128, 131, 0.5);
}

.contact-form__textarea,
.contact-form--cf7 textarea {
  min-height: 240px;
  height: 240px;
  padding: 18px 20px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form__input--year,
.contact-form__input--md,
.contact-form--cf7 .contact-form__input--year,
.contact-form--cf7 .contact-form__input--md {
  width: 80px;
  flex: 0 0 80px;
}

.contact-form__birth-unit,
.contact-form--cf7 .contact-form__birth-unit {
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #3b3f42;
}

.contact-form__policy,
.contact-form--cf7 .contact-form__policy {
  margin: 40px 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.contact-form__policy-label,
.contact-form--cf7 .contact-form__policy-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-form__checkbox,
.contact-form--cf7 .contact-form__policy input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #41917a;
}

.contact-form__policy-text,
.contact-form--cf7 .contact-form__policy-text,
.contact-form--cf7 .contact-form__policy .wpcf7-list-item-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b3f42;
}

.contact-form__policy-link,
.contact-form--cf7 .contact-form__policy-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-form__policy-link:hover,
.contact-form--cf7 .contact-form__policy-link:hover {
  opacity: 0.75;
}

.contact-form__actions,
.contact-form--cf7 .contact-form__actions {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
  padding: 0;
  border: 0;
}

.contact-form__submit,
.contact-form--cf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 46px;
  margin: 0;
  padding: 0 16px 2px;
  border: 0;
  border-radius: 8px;
  background-color: #41917a;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.contact-form__submit:hover:not(:disabled),
.contact-form--cf7 .wpcf7-submit:hover {
  background-color: #2f6d5d;
  opacity: 1;
}

.contact-form__note {
  margin: 24px 0 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #7b8083;
  text-align: center;
}

/* Contact Form 7 */
.contact-form--cf7 .wpcf7 {
  width: 100%;
}

.contact-form--cf7 .wpcf7-form {
  border-top: 0;
}

.contact-form--cf7 .wpcf7-form>p:not(.contact-form__policy):not(.contact-form__actions) {
  margin: 0;
}

.contact-form--cf7 .contact-form__policy .wpcf7-list-item {
  margin: 0;
}

.contact-form--cf7 .contact-form__policy .wpcf7-form-control-wrap {
  flex: none;
  width: auto;
}

.contact-form--cf7 .wpcf7-spinner {
  margin-left: 12px;
}

.contact-form--cf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  color: #c0392b;
}

.contact-form--cf7 .hidden-fields-container {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form--cf7 .wpcf7-response-output {
  box-sizing: border-box;
  width: 100%;
  margin: 24px 0 0;
  padding: 16px 20px;
  border: 0;
  border-radius: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.contact-form--cf7 .wpcf7 form.invalid .wpcf7-response-output,
.contact-form--cf7 .wpcf7 form.unaccepted .wpcf7-response-output {
  color: #3b3f42;
}

.contact-form--cf7 .wpcf7 form.sent .wpcf7-response-output {
  color: #2f6d5d;
}

.contact-form--cf7 .wpcf7 form.failed .wpcf7-response-output {
  color: #c0392b;
}

/* CF7 デフォルトマークアップ（クラスなし）フォールバック */
.contact-form--cf7 .wpcf7-form>p:not([class]) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 0;
  padding: 26px 30px;
  border-bottom: 1px solid #d7d9da;
}

.contact-form--cf7 .wpcf7-form>p:not([class]) label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #3b3f42;
}

@media (max-width: 768px) {

  .contact-form__row,
  .contact-form--cf7 .contact-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 0;
  }

  .contact-form__row--textarea,
  .contact-form--cf7 .contact-form__row--textarea {
    min-height: 0;
  }

  .contact-form__label,
  .contact-form--cf7 .contact-form__label {
    flex: none;
    width: 100%;
    min-height: 0;
    padding-left: 0;
  }

  .contact-form__field,
  .contact-form--cf7 .contact-form__field {
    flex-direction: column;
    align-items: stretch;
    padding-right: 0;
  }

  .contact-form__row--textarea .contact-form__field,
  .contact-form--cf7 .contact-form__row--textarea .contact-form__field {
    padding-top: 0;
  }

  .contact-form__field--birth,
  .contact-form--cf7 .contact-form__field--birth {
    flex-wrap: nowrap;
  }

  .contact-form__birth,
  .contact-form--cf7 .contact-form__birth {
    flex: 0 0 auto;
    height: auto;
    width: 375px;
    max-width: 375px;
    flex-wrap: nowrap;
  }

  .contact-form__field--birth .contact-form__badge,
  .contact-form--cf7 .contact-form__field--birth .contact-form__badge {
    align-self: flex-start;
  }

  .contact-form--cf7 .wpcf7-form>p:not([class]) {
    padding: 20px 0;
  }
}

/* SP固定CTA — 全ページ下部追従（Figma 689:4271）／初回スクロールでフェード表示 */
.sp-fixed-cta {
  display: none;
}

@media (max-width: 768px) {
  .sp-fixed-cta {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 56px;
    padding: 0 16px 2px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    background-color: #41917a;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(59, 63, 66, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease,
      background-color 0.25s ease;
  }

  .sp-fixed-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sp-fixed-cta:hover,
  .sp-fixed-cta:focus-visible {
    background-color: #2f6d5d;
    color: #ffffff;
  }

  body.is-nav-open .sp-fixed-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body {
    padding-bottom: calc(56px + 48px + env(safe-area-inset-bottom, 0px));
  }
}

/*# sourceMappingURL=style.css.map */