@charset "UTF-8";
@media (min-width: 768px) {
  .is-hidden_pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .is-hidden_sp {
    display: none;
  }
}
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}

a {
  transition: 0.3s;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: #000;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.7;
}

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

table {
  width: 100%;
}
@media (max-width: 767px) {
  table {
    display: block;
  }
  table tbody,
  table tr,
  table th,
  table td {
    box-sizing: border-box;
    display: block;
    width: 100% !important;
  }
}

.c-ttlwrap {
  margin-block-end: 3.4375rem;
}
@media (max-width: 767px) {
  .c-ttlwrap {
    margin-block-end: 1.875rem;
  }
}

.c-ttlwrap__lead {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .c-ttlwrap__lead {
    font-size: 1rem;
  }
}

.c-ttl__primary {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "BIZ UDPGothic", serif;
  border-block-end: 1px solid #353535;
  margin-block-end: 2.5rem;
  margin-inline-end: -3.75rem;
  padding-block-end: 1.25rem;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .c-ttl__primary {
    font-size: 2.1875rem;
  }
}
@media (max-width: 767px) {
  .c-ttl__primary {
    font-size: 1.875rem;
    margin-block-end: 0.9375rem;
    margin-inline-end: -1.25rem;
    padding-block-end: 0.9375rem;
  }
}

.u-color__primary {
  color: var(--color-primary);
}

.u-underline {
  border-block-end: 1px solid var(--color-txt);
}

/* スクロールすると用度がフェードイン
----------------------- */
.js-inview {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}

.js-inview.is-show {
  transform: translateY(0);
  opacity: 1;
}

.js-inview_delay {
  transform: translateY(50px);
  opacity: 0;
}

.js-inview_delay.is-show {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --color-txt: #353535;
  --color-primary: #d0b050;
  --color-bg-gray: #f6f6f4;
}

body {
  background: var(--color-bg-gray);
  color: var(--color-txt);
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
  animation: loading 1.5s;
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
  outline: none;
}

.wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .wrapper {
    padding-inline-start: 12.5rem;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding-block-start: 3.75rem;
  }
}

main {
  display: block;
}

@media (min-width: 768px) {
  section:not(.wealth-mv) {
    padding-inline: clamp(1.25rem, -6.25rem + 15.625vw, 3.75rem) 3.75rem;
  }
}
@media (max-width: 767px) {
  section:not(.wealth-mv) {
    padding-inline: 1.25rem;
  }
}

.container {
  margin-inline: auto;
}

.container, .c-ttl__primary, .wealth-about__inner {
  max-width: 81.25rem;
}

/* =======================================
ヘッダー関連 header
======================================= */
.header {
  width: 12.5rem;
  background: #fff;
  font-family: "BIZ UDPGothic", serif;
  padding: 2.5rem;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.9375rem;
    height: 3.75rem;
    inset: 0 0 auto 0;
    width: 100%;
  }
}
.header__logo {
  margin: 0 auto;
  margin-block-end: 2.5rem;
  width: fit-content;
}
.header__logo img {
  width: 6.25rem;
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .header__logo {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
  }
  .header__logo img {
    width: 2.625rem;
  }
}
.header__brand {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-block-start: 0.625rem;
}
@media (max-width: 767px) {
  .header__brand {
    margin-block-start: 0;
    text-align: left;
  }
}
.header__btn-contact {
  margin-block-start: 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .header__btn-contact {
    margin-block-start: 3.75rem;
  }
}
.header__btn-contact .btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 0.875rem;
  color: #fff;
}
.header__btn-contact .btn-contact:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .header__btn-contact .btn-contact {
    font-size: 1.25rem;
    width: 11.5rem;
    height: 3.75rem;
  }
}

/* =======================================
グローバルナビゲーション関連 gnav
======================================= */
.gnav {
  margin-block-start: 2.5rem;
}
@media (max-width: 767px) {
  .gnav {
    margin-block-start: 0rem;
  }
}
.gnav__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .gnav__list {
    gap: 1.875rem;
  }
}
.gnav__link {
  display: block;
  font-size: 0.875rem;
  color: #c0c0c0;
  padding-inline-start: 1.875rem;
  position: relative;
  text-decoration: none;
}
.gnav__link:hover {
  color: var(--color-txt);
}
@media (max-width: 767px) {
  .gnav__link {
    color: var(--color-txt);
    font-size: 1.25rem;
    padding-inline-start: 0rem;
  }
  .gnav__link::before {
    content: "";
    height: 0.375rem;
    aspect-ratio: 1;
    background: var(--color-primary);
    border-radius: 50%;
    margin-block: auto;
    position: absolute;
    inset: 0 auto 0 -1.25rem;
    transition: 0.3s;
    opacity: 0;
  }
  .gnav__link:hover {
    color: var(--color-primary);
  }
  .gnav__link:hover::before {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .gnav__link.js-current {
    color: var(--color-txt);
  }
  .gnav__link.js-current::before {
    content: "";
    height: 0.375rem;
    aspect-ratio: 1;
    background: var(--color-primary);
    border-radius: 50%;
    margin-block: auto;
    position: absolute;
    inset: 0 auto 0 0.625rem;
  }
}

@media (max-width: 767px) {
  #js-gnav {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    z-index: -1;
    padding-inline: 0.9375rem;
    transition: 0.3s;
  }
  #js-gnav.is-open {
    opacity: 1;
  }
  #js-gnav:not(.is-open) {
    opacity: 0;
    visibility: hidden;
  }
}

/* ハンバーガーボタン
----------------------- */
.gnav__btn {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: center;
  justify-content: center;
  width: 2rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .gnav__btn {
    display: none;
  }
}

.gnav__btn-line {
  width: 1.375rem;
  height: 0.125rem;
  background: var(--color-txt);
  transition: 0.3s;
}

.gnav__btn.is-open .gnav__btn-line {
  transition: 0.2s;
}
.gnav__btn.is-open .gnav__btn-line:first-child, .gnav__btn.is-open .gnav__btn-line:nth-child(3) {
  opacity: 0;
}

/* =======================================
フッター関連 footer
======================================= */
.footer {
  margin-block-start: 9.375rem;
}
@media (max-width: 767px) {
  .footer {
    margin-block-start: 6.25rem;
  }
}
.footer__contact {
  padding: 5rem clamp(1.25rem, -6.25rem + 15.625vw, 3.75rem) 6.25rem 3.75rem;
  position: relative;
  background-color: var(--color-txt);
}
@media (max-width: 767px) {
  .footer__contact {
    padding: 3.75rem 1.25rem;
    margin-block-start: 6.25rem;
  }
}
.footer__contact-title {
  color: #fff;
  border-color: #fff;
}
.footer__contact-text {
  font-size: 1.5rem;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__contact-text {
    font-size: 1.125rem;
  }
}
.footer__btn-contact {
  margin-block-start: 2.5rem;
}
@media (max-width: 767px) {
  .footer__btn-contact {
    margin-block-start: 1.875rem;
  }
}
.footer__btn-contact .btn-contact {
  font-family: "BIZ UDPGothic", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  width: 15rem;
  height: 3.75rem;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  position: relative;
}
@media (max-width: 767px) {
  .footer__btn-contact .btn-contact {
    font-size: 1.25rem;
  }
}
.footer__btn-contact .btn-contact::after {
  content: "";
  width: 6.0625rem;
  height: 0.0625rem;
  background-color: #fff;
  margin-block: auto;
  position: absolute;
  inset: 0 -3.75rem 0 auto;
}
@media (max-width: 767px) {
  .footer__btn-contact .btn-contact::after {
    width: 3.75rem;
    inset-inline-end: -1.875rem;
  }
}
.footer__btn-contact .btn-contact:hover {
  opacity: 0.7;
}
.footer__bottom {
  background-color: #fff;
  padding: 0.9375rem 1.25rem;
}
.footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #c0c0c0;
  font-family: "BIZ UDPGothic", serif;
}

.wealth-mv {
  position: relative;
}
.wealth-mv__img img {
  height: 43.75rem;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .wealth-mv__img img {
    height: 20rem;
  }
}
.wealth-mv__content {
  color: #fff;
  text-align: center;
  margin-inline: auto;
  width: fit-content;
  height: fit-content;
  position: absolute;
  inset: 11.125rem 0 auto;
}
@media (max-width: 767px) {
  .wealth-mv__content {
    width: 90%;
    margin: auto;
    padding-block-start: 1.125rem;
    inset: 0;
  }
}
.wealth-mv__en {
  font-family: "BIZ UDPGothic", serif;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .wealth-mv__en {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .wealth-mv__en {
    font-size: 1.875rem;
  }
  .wealth-mv__en .s {
    font-size: 1.5625rem;
  }
}
.wealth-mv__lead {
  margin-block-start: 1.25rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .wealth-mv__lead {
    font-size: 0.875rem;
  }
}

.wealth-about {
  margin-block-start: -14.1875rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .wealth-about {
    padding-inline: 0 !important;
    margin-block-start: 0rem;
  }
}
.wealth-about__inner {
  background: url(../img/about_img_pod.svg) no-repeat right 3.75rem bottom 3.5rem #fff;
  padding: 3.75rem 3.75rem 5rem clamp(2.5rem, -1.25rem + 7.8125vw, 3.75rem);
  margin-inline-end: -3.75rem;
}
@media (max-width: 767px) {
  .wealth-about__inner {
    background-position: bottom 0.625rem center;
    background-size: 20.8125rem;
    margin-inline-end: 0;
    padding: 3.75rem 1.25rem;
  }
}
.wealth-about__body .wealth-about__lead {
  font-size: 1.5rem;
  margin-block-end: 1.5rem;
}
@media (max-width: 767px) {
  .wealth-about__body .wealth-about__lead {
    font-size: 1.125rem;
    margin-block-start: 0.9375rem;
  }
}
.wealth-about__body .wealth-about__desc {
  font-weight: 400;
}

.wealth-feature {
  margin-block-start: 7.5rem;
}
@media (max-width: 767px) {
  .wealth-feature {
    margin-block-start: 3.75rem;
  }
}
.wealth-feature__list {
  display: flex;
  justify-content: center;
}
@media (max-width: 1190px) and (min-width: 951px) {
  .wealth-feature__list {
    margin-inline: auto;
    width: 50rem;
    max-width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 950px) {
  .wealth-feature__list {
    flex-direction: column;
    align-items: center;
  }
}
.wealth-feature__item {
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block-start: 3.75rem;
  width: 21.0625rem;
  height: auto;
  aspect-ratio: 1;
  position: relative;
}
.wealth-feature__item::before {
  content: "";
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  position: absolute;
  inset: 0.25rem;
}
@media (min-width: 951px) {
  .wealth-feature__item:not(:first-child) {
    margin-inline-start: -2.1875rem;
  }
  .wealth-feature__item:nth-child(2) .wealth-feature__item-desc-sub {
    margin-block-start: 0.625rem;
  }
}
@media (max-width: 1190px) and (min-width: 951px) {
  .wealth-feature__item:nth-child(3) {
    margin-block-start: -4.6875rem;
    margin-inline-start: 0;
  }
}
@media (max-width: 950px) {
  .wealth-feature__item {
    max-width: 95%;
  }
  .wealth-feature__item:first-child {
    padding-block-start: 2.9375rem;
  }
  .wealth-feature__item:nth-child(2) {
    justify-content: center;
    margin-block: -3.9375rem;
    padding-block-start: 0;
  }
  .wealth-feature__item:nth-child(3) {
    padding-block-start: clamp(5rem, -28.203125rem + 141.6666666667vw, 7.125rem);
  }
}
.wealth-feature__item-title {
  font-size: 1.375rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .wealth-feature__item-title {
    font-size: 1.25rem;
  }
}
.wealth-feature__item-desc {
  margin-block-start: 1.25rem;
}
@media (max-width: 767px) {
  .wealth-feature__item-desc {
    margin-block-start: 0.9375rem;
  }
}
.wealth-feature__item-desc-sub {
  font-size: 0.75rem;
  margin-block-start: 0.3125rem;
}
@media (max-width: 767px) {
  .wealth-feature__item-desc-sub {
    font-size: 0.625rem;
  }
}
.wealth-feature__item-desc-sub + .wealth-feature__item-desc-main {
  margin-block-start: 0.625rem;
}

.wealth-merit {
  margin-block-start: 8.75rem;
}
@media (max-width: 767px) {
  .wealth-merit {
    margin-block-start: 6.25rem;
  }
}
.wealth-merit__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: number 0;
}
@media (max-width: 1500px) {
  .wealth-merit__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .wealth-merit__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}
.wealth-merit__item {
  position: relative;
  padding: 0.25rem 0 0 1.5rem;
  border-bottom: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  min-height: 6.5rem;
}
@media (max-width: 767px) {
  .wealth-merit__item {
    padding: 0.25rem 0 0 1.875rem;
    min-height: 5rem;
  }
}
.wealth-merit__item::before {
  content: counter(number);
  counter-increment: number 1;
  color: var(--color-primary);
  font-family: "BIZ UDPGothic", serif;
  font-weight: 700;
  font-size: 7.5rem;
  line-height: 1;
  position: absolute;
  inset: auto 0 -0.75rem auto;
}
@media (max-width: 767px) {
  .wealth-merit__item::before {
    font-size: 6.25rem;
    inset-block-end: -0.625rem;
  }
}
@media (max-width: 767px) {
  .wealth-merit__item-text {
    font-size: 1.125rem;
  }
}

.wealth-member {
  background: #353535;
  color: #fff;
  margin-block-start: 11.25rem;
  margin-inline-start: 0;
  padding: 5rem 3.75rem;
}
@media (max-width: 767px) {
  .wealth-member {
    margin-block-start: 6.25rem;
    padding-block: 3.75rem;
  }
}
.wealth-member__heading-en {
  border-color: #fff;
}
.wealth-member__leader {
  display: flex;
  gap: clamp(1.875rem, -1.1125518672rem + 6.22406639vw, 3.75rem);
}
@media (max-width: 767px) {
  .wealth-member__leader {
    flex-direction: column;
    gap: 1.875rem;
  }
}
.wealth-member__leader .wealth-member__item-img {
  flex-shrink: 0;
  text-align: center;
  max-width: 40%;
}
.wealth-member__leader .wealth-member__item-img img {
  width: 26.75rem;
  aspect-ratio: 428/400;
}
@media (max-width: 767px) {
  .wealth-member__leader .wealth-member__item-img {
    max-width: none;
  }
}
.wealth-member__leader .wealth-member__item-content {
  flex-grow: 1;
}
.wealth-member__leader .wealth-member__item-name {
  margin-block-start: 0;
}
.wealth-member__leader .wealth-member__item-job {
  min-height: auto;
}
.wealth-member__list {
  display: grid;
  gap: clamp(1.875rem, -2.1084024896rem + 8.2987551867vw, 4.375rem);
  grid-template-columns: repeat(3, 1fr);
  margin-block-start: 4.6875rem;
}
@media (max-width: 767px) {
  .wealth-member__list {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    margin-block-start: 3.75rem;
  }
}
.wealth-member__item-content {
  width: 100%;
  text-align: left;
}
.wealth-member__item-name {
  border-block-end: 1px solid #c0c0c0;
  margin-block-start: 2.5rem;
  margin-block-end: 1.25rem;
  padding-block-end: 1.25rem;
}
@media (max-width: 767px) {
  .wealth-member__item-name {
    margin-block-start: 0.9375rem;
    margin-block-end: 0.9375rem;
    padding-block-end: 0.9375rem;
  }
}
.wealth-member__item-job {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .wealth-member__item-job {
    min-height: 3.2em;
  }
}
.wealth-member__item-name-ja {
  font-size: 1.5rem;
  margin-block-start: 0.625rem;
}
@media (max-width: 767px) {
  .wealth-member__item-name-ja {
    font-size: 1.375rem;
  }
}
.wealth-member__item-name-en {
  font-family: "BIZ UDPGothic", serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #c0c0c0;
}
.wealth-member__item-desc {
  font-size: 0.875rem;
  font-weight: 400;
}
.wealth-member__item-desc-row.-sb {
  font-size: 0.75rem;
  font-weight: 400;
  margin-inline-start: 0.625rem;
}
.wealth-member__item-desc-row:not(.-sb) + .wealth-member__item-desc-row.-sb {
  margin-block-start: 0.625rem;
}
.wealth-member__item-desc * + .wealth-member__item-desc-row:not(.-sb) {
  margin-block-start: 1.25rem;
}
@media (max-width: 767px) {
  .wealth-member__item-desc * + .wealth-member__item-desc-row:not(.-sb) {
    margin-block-start: 0.875rem;
  }
}

.wealth-product {
  margin-block-start: 11.25rem;
  counter-reset: productNumber 0;
}
@media (max-width: 767px) {
  .wealth-product {
    margin-block-start: 6.25rem;
  }
}
.wealth-product__item {
  counter-increment: productNumber 1;
}
.wealth-product__item--rei {
  margin-block-start: 6.25rem;
}
@media (max-width: 767px) {
  .wealth-product__item--rei {
    margin-block-start: 3.75rem;
  }
}
@media (max-width: 767px) {
  .wealth-product__item--rei .wealth-product__map-img {
    margin-inline-start: -1.25rem;
  }
}
.wealth-product__item--blanc {
  margin-block-start: 7.5rem;
}
@media (max-width: 767px) {
  .wealth-product__item--blanc {
    margin-block-start: 6.875rem;
  }
}
@media (min-width: 768px) {
  .wealth-product__item--blanc .wealth-product__map-body {
    gap: 4.0625rem;
  }
}
@media (min-width: 1025px) {
  .wealth-product__item--blanc .wealth-product__map-text {
    margin-block-start: 5.3125rem;
  }
}
.wealth-product__item--blanc .wealth-product__map-title {
  margin-block-end: 1.25rem;
}
.wealth-product__item-heading {
  background: var(--color-bg-gray);
  margin-block-end: 2.5rem;
  margin-inline-start: 3.125rem;
  padding-block-start: 0.625rem;
  padding-inline-start: 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .wealth-product__item-heading {
    margin-block-end: 1.875rem;
    margin-inline-start: 1.25rem;
    padding-block-start: 0.3125rem;
    padding-inline-start: 0.9375rem;
  }
}
.wealth-product__item-heading::before {
  content: "";
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  width: 6.25rem;
  aspect-ratio: 1;
  position: absolute;
  inset: -3.125rem auto auto -3.125rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .wealth-product__item-heading::before {
    inset: -1.75rem auto auto -1.25rem;
    width: 2.9375rem;
  }
}
.wealth-product__item-heading::after {
  content: counter(productNumber, decimal-leading-zero);
  color: var(--color-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  aspect-ratio: 1;
  position: absolute;
  inset: -3.125rem auto auto -3.125rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .wealth-product__item-heading::after {
    font-size: 1rem;
    inset: -1.75rem auto auto -1.25rem;
    width: 2.9375rem;
  }
}
.wealth-product__label {
  font-size: 1.75rem;
  margin-inline-start: -0.7em;
}
@media (max-width: 767px) {
  .wealth-product__label {
    font-size: 1.5rem;
  }
}
.wealth-product__lead {
  margin-block-start: 0.625rem;
}
@media (max-width: 767px) {
  .wealth-product__lead {
    margin-block-start: 0.9375rem;
    margin-inline-start: -2.1875rem;
  }
}
.wealth-product__about-body, .wealth-product__map-body {
  display: flex;
}
@media (max-width: 1024px) {
  .wealth-product__about-body, .wealth-product__map-body {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wealth-product__about-body, .wealth-product__map-body {
    gap: 1.875rem;
  }
}
.wealth-product__map-body {
  margin-block-start: 3.75rem;
}
@media (min-width: 768px) {
  .wealth-product__map-body {
    gap: 4.6875rem;
  }
}
.wealth-product__about-img {
  width: 50%;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .wealth-product__about-img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .wealth-product__about-img {
    margin-inline-end: -1.25rem;
    width: auto;
  }
}
@media (min-width: 768px) {
  .wealth-product__about-text {
    flex-grow: 1;
    background: var(--color-bg-gray);
    margin-block-start: 3.75rem;
    margin-inline-start: -2.5rem;
    padding: 2.5rem;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .wealth-product__about-text {
    margin-block-start: -2.5rem;
    margin-inline-start: 5rem;
  }
}
.wealth-product__map-img {
  flex-shrink: 0;
  order: 1;
  padding-inline-end: 2.5rem;
  width: 50.58%;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .wealth-product__map-img {
    padding-inline-end: 0;
    max-width: 90%;
    width: auto;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .wealth-product__map-img {
    padding-inline-end: 0;
    width: auto;
  }
}
.wealth-product__map-text {
  flex-grow: 1;
}
.wealth-product__map-dl_item:not(:first-child) {
  border-block-start: 1px solid #c0c0c0;
  margin-block-start: 1.875rem;
  padding-block-start: 1.875rem;
}
@media (max-width: 767px) {
  .wealth-product__map-dl_item:not(:first-child) {
    margin-block-start: 0.9375rem;
    padding-block-start: 0.9375rem;
  }
}
.wealth-product__map-title {
  font-size: 1.25rem;
  margin-block-end: 0.625rem;
}
@media (max-width: 767px) {
  .wealth-product__map-title {
    margin-block-end: 0.9375rem;
  }
}
.wealth-product__sub-title {
  font-size: 1.5rem;
  margin-block-end: 1.25rem;
}
@media (max-width: 767px) {
  .wealth-product__sub-title {
    font-size: 1.25rem;
    margin-block-end: 0.9375rem;
  }
}
.wealth-product__tenant-info {
  font-size: 0.875rem;
  border-block-start: 1px solid #c0c0c0;
  margin-block-start: 1.25rem;
  padding-block-start: 1.25rem;
}
@media (max-width: 767px) {
  .wealth-product__tenant-info {
    font-size: 0.75rem;
    margin-block-start: 0.9375rem;
    padding-block-start: 0.9375rem;
  }
}
.wealth-product__owner-list {
  list-style: none;
}
.wealth-product__owner-item {
  border-block-end: 1px solid #c0c0c0;
  padding: 0 0 0.5rem 2.3125rem;
  position: relative;
}
.wealth-product__owner-item::before {
  content: "";
  background: url(../img/ico_check.svg) no-repeat center/contain;
  width: 1.125rem;
  aspect-ratio: 1;
  position: absolute;
  inset: 0.25rem auto auto 0.375rem;
}
.wealth-product__owner-item + * {
  margin-block-start: 1rem;
}

