.page {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  color: #1b1c1c;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
}

.page__content {
  background: linear-gradient(180deg, #ffffff 0%, #f6f3f2 30%);
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #bdcabc;
}

.site-header__inner {
  max-width: 1280px;
  height: 57px;
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo {
  width: 166px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__nav-item {
  width: 112px;
  height: 33px;
  border-radius: 6px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  box-shadow: 0 1px 2px #0000000d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 1.2;
  white-space: nowrap;
  background: #ff8e16;
}
.site-header__cta span {
  padding-left: 22px;
  background: url(../img/tel_w.svg) no-repeat center left / 14px 14px;
}

.site-header__cta-icon-wrap {
  display: inline-flex;
}

.site-header__cta-icon {
  width: 14px;
  height: 14px;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.hero__main-visual {
  width: 100%;
  display: block;
  border-radius: 0;
}

.intro {
  max-width: 1232px;
  margin: 78px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
}
.intro::before {
  content: "";
  background: url(../img/intro_part01.png) no-repeat center center / contain;
  width: 260px;
  height: 353px;
  position: absolute;
  top: 10px;
  right: -65px;
  z-index: 0;
}

.intro__image {
  width: 612px;
  max-width: 50%;
  object-fit: cover;
  position: relative;
}
.intro__image::after {
  content: "";
  background: url(../img/intro_part02.png) no-repeat center center / contain;
  width: 142px;
  height: 155px;
  position: absolute;
  bottom: -20px;
  left: -50px;
  z-index: 2;
}

.intro__content {
  flex: 1;
  min-width: 0;
}

.intro__lead {
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 10px;
}

.intro__heading {
  margin: 0 0 18px;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.9;
  color: #000000;
  position: relative;
}
.intro__heading::before {
  content: "";
  background: url(../img/intro_text-decoration.png) no-repeat center center / contain;
  width: 335px;
  height: 5px;
  position: absolute;
  top: 47px;
  left: 0;
  z-index: 2;
}
.intro__heading::after {
  content: "";
  background: url(../img/intro_text-decoration.png) no-repeat center center / contain;
  width: 335px;
  height: 5px;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 2;
}

.intro__issues {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.intro__issue {
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 20px;
  color: #000000;
}

.intro__highlight {
  display: inline-block;
  margin: 0;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(transparent 68%, #ffdd63 68%);
  white-space: nowrap;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.section-title__text {
  margin: 0;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-weight: 700;
  color: #006933;
  font-size: 36px;
  text-align: center;
}
.section-title__text br {
  display: none;
}

.section-title__ornament {
  width: 32px;
  height: 15px;
  display: inline-block;
  position: relative;
}

.section-title__ornament::before,
.section-title__ornament::after {
  content: "";
  position: absolute;
  background: #d2dbc5;
  border-radius: 999px;
}

.section-title__ornament::before {
  top: 1px;
  left: 17px;
  width: 15px;
  height: 15px;
}

.section-title__ornament::after {
  top: 2px;
  left: 0;
  width: 11px;
  height: 11px;
}

.section-title__ornament--reverse {
  transform: rotate(180deg);
}

.services-area {
  position: relative;
  margin: 90px auto 0;
  padding: 0 30px;
  max-width: 1440px;
}
.services-area::before {
  content: "";
  background: url(../img/service_part01.png) no-repeat center center / contain;
  width: 270px;
  height: 190px;
  position: absolute;
  top: 50px;
  left: -48px;
  z-index: 2;
}
.services-area::after {
  content: "";
  background: url(../img/service_part02.png) no-repeat center center / contain;
  width: 300px;
  height: 185px;
  position: absolute;
  bottom: -100px;
  right: -68px;
  z-index: 2;
}

.services {
  margin: 0 auto;
  background: #ffffffe6;
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 56px 52px 59px;
  position: relative;
  z-index: 3;
}

.services__description {
  max-width: 880px;
  margin: 18px auto 46px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.services__card {
  background: #fefbf7;
  border: 2px solid #e6d8c4;
  border-radius: 10px;
  padding: 28px 20px;
  position: relative;
}

.services__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 90px;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 74px 74px;
}
.services__card:nth-of-type(1) .services__card-content {
  background-image: url(../img/service/service_icon01.svg);
}
.services__card:nth-of-type(2) .services__card-content {
  background-image: url(../img/service/service_icon02.svg);
}
.services__card:nth-of-type(3) .services__card-content {
  background-image: url(../img/service/service_icon03.png);
}
.services__card:nth-of-type(4) .services__card-content {
  background-image: url(../img/service/service_icon04.svg);
}
.services__card:nth-of-type(5) .services__card-content {
  background-image: url(../img/service/service_icon05.svg);
}
.services__card:nth-of-type(6) .services__card-content {
  background-image: url(../img/service/service_icon06.svg);
}

.services__icon {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
}

.services__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.services__card-text {
  margin: 0;
  font-size: 18px;
  color: #000000;
}

.services__badge {
  width: fit-content;
  padding: 7px 24px;
  border-radius: 40px;
  background: #ff9a28;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.consultation-targets {
  max-width: 1034px;
  margin: 68px auto 0;
  padding: 56px 40px;
  border-radius: 20px;
  position: relative;
}
.consultation-targets::before {
  content: "";
  background: url(../img/consul_part01.png) no-repeat center center / contain;
  position: absolute;
  top: 20px;
  left: -80px;
  width: 150px;
  height: 132px;
}
.consultation-targets::after {
  content: "";
  background: url(../img/consul_part02.png) no-repeat center center / contain;
  position: absolute;
  bottom: 0;
  right: -170px;
  width: 400px;
  height: 220px;
}

.consultation-targets__body {
  margin-top: 75px;
  display: flex;
  align-items: center;
  gap: 44px;
  background: #fff;
  padding: 50px 70px 60px;
  border-radius: 20px;
  position: relative;
}

.consultation-targets__body::after {
  content: "";
  background: url(../img/consul_badge.png) no-repeat center center / contain;
  width: 168px;
  height: 186px;
  position: absolute;
  bottom: -90px;
  left: -90px;
}

.consultation-targets__list {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.consultation-targets__item {
  font-size: 20px;
  padding-left: 36px;
  background: url(../img/check.svg) no-repeat center left / 25px auto;
}
.consultation-targets__item span {
  font-weight: 500;
}

.consultation-targets__check {
  width: 27px;
  height: 24px;
}

.consultation-targets__image {
  width: 544px;
  max-width: 50%;
  object-fit: cover;
  position: absolute;
  top: -30px;
  right: -40px;
}

.contact-area {
  background: #fff url(../img/contact_bg.png) no-repeat center center / cover;
  padding: 100px 30px 90px;
  margin-top: 90px;
}
.contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 68px;
  border: 2px solid #e6d8c4;
  border-radius: 30px;
  background: #FEFBF7;
}

.contact__subtitle {
  margin: 18px 0 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

.contact__img {
  max-width: 900px;
  margin: 40px auto;
}

.contact__divider {
  margin: 48px 0 35px;
  display: flex;
  justify-content: center;
  gap: 28px;
  position: relative;
}

.contact__divider-line1 {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 100%;
  height: 1px;
  background: #D4AB78;
}
.contact__divider-line2 {
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  width: 100%;
  height: 1px;
  background: #D4AB78;
}

.contact__divider-label {
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  color: #dd8226;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  background: #FEFBF7;
  padding: 0 20px;
}

.contact__actions {
  display: grid;
  grid-template-columns: 1fr 1px 435px;
  gap: 46px;
  align-items: center;
}

.contact__actions::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 248px;
  background: #d8d8d8;
}

.contact__phones {
  grid-column: 1;
  display: grid;
  gap: 26px;
}

.contact__phone-card,
.contact__fax-card {
  background: #fff6eb;
  border-radius: 117px;
  text-align: center;
  padding: 20px 24px;
}

.contact__phone-label {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.contact__phone-number {
  margin: 0 auto;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1.44px;
  padding-left: 46px;
  width: fit-content;
  background: url(../img/tel_orange.svg) no-repeat center left / 34px auto;
  pointer-events: none;
}

.contact__phone-hours {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 500;
}

.contact__fax-number {
  margin: 4px auto 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.08px;
  padding-left: 50px;
  width: fit-content;
  background: url(../img/fax_orange.svg) no-repeat center left / 34px auto;
}

.contact__buttons {
  grid-column: 3;
  display: grid;
  gap: 29px;
}

.contact__button {
  height: 80px;
  border-radius: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
.contact__button:hover {
  box-shadow: none;
  transform: translateY(4px);
}

.contact__button--mail {
  background: #ffb41e;
}

.contact__button--line {
  background: #06c755;
}

.contact__button-icon {
  width: 40px;
  height: 29px;
  object-fit: contain;
}

.contact__button-icon--line {
  width: 59px;
  height: 58px;
}

.advisor {
  padding: 100px 0 80px;
  background: #FEFBF7;
}

.advisor__card {
  max-width: 824px;
  margin: 0 auto;
  position: relative;
  border: 2px solid #f2ebe1;
  border-radius: 30px;
  background: #ffffff;
  padding: 43px 48px 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.advisor__card::after {
  content: "";
  background: url(../img/advisor_badge.png) no-repeat center center / contain;
  width: 177px;
  height: 200px;
  position: absolute;
  z-index: 2;
  top: -30px;
  right: -40px;
}

.advisor__profile {
  width: 275px;
}

.advisor__tag {
  margin: 0 0 10px;
  display: inline-block;
  padding: 3px 10px 4px;
  border-radius: 5px;
  background: #ff9a28;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.advisor__name-wrap {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 10px;
}

.advisor__name {
  margin: 0;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.advisor__ruby {
  margin: 0;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

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

.advisor__licenses li {
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.advisor__licenses li::before {
  content: "▶";
  margin-right: 7px;
  color: #F1D0AD;
}

.advisor__avatar {
  width: 183px;
  aspect-ratio: 1;
}

.site-footer {
  background: #f6f3f2;
  border-top: 1px solid #dac6ab;
}

.footer-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 38px 40px 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-cta__brand {
  max-width: 680px;
}

.footer-cta__logo {
  width: 332px;
  height: auto;
}

.footer-cta__tagline {
  margin: 6px 0 10px;
  color: #4a4a4a;
  font-size: 20px;
  font-weight: 500;
  background: url(../img/footer-tagline.svg) no-repeat center left / 18px 18px;
  padding-left: 24px;
}

.footer-cta__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-cta__chip {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 4px;
}

.footer-cta__chip--orange {
  background: #f2d5c1;
  color: #2f1500;
}
.footer-cta__chip--orange::before {
  content: "";
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2010%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%2010.5V3.5L4.66667%200L9.33333%203.5V10.5H5.83333V6.41667H3.5V10.5H0Z%22%20fill%3D%22%232F1500%22%2F%3E%3C%2Fsvg%3E')
              no-repeat center center / contain;
  width: 10px;
  height: 10px;
}

.footer-cta__chip--green {
  background: #bde7c7;
  color: #00210c;
}
.footer-cta__chip--green::before {
  content: "";
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2013%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.5%2010.8062V5.54167H4.43333C4.50139%205.54167%204.56944%205.54896%204.6375%205.56354C4.70556%205.57812%204.77361%205.59514%204.84167%205.61458L8.88125%207.11667C9.01736%207.16528%209.12674%207.25278%209.20938%207.37917C9.29201%207.50556%209.33333%207.63681%209.33333%207.77292C9.33333%207.97708%209.26285%208.14236%209.12187%208.26875C8.9809%208.39514%208.81806%208.45833%208.63333%208.45833H7.10208C7.05347%208.45833%207.01701%208.4559%206.99271%208.45104C6.9684%208.44618%206.93681%208.43403%206.89792%208.41458L5.96458%208.05L5.775%208.61875L6.89792%209.0125C6.91736%209.02222%206.94653%209.02951%206.98542%209.03438C7.02431%209.03924%207.05833%209.04167%207.0875%209.04167H11.0833C11.3944%209.04167%2011.6667%209.15347%2011.9%209.37708C12.1333%209.60069%2012.25%209.87778%2012.25%2010.2083L7.59792%2011.9583L3.5%2010.8062ZM0%2011.9583V5.54167H2.33333V11.9583H0ZM7.875%203.79167H8.45833V3.20833H7.875V3.79167ZM6.70833%203.79167H7.29167V3.20833H6.70833V3.79167ZM7.875%204.95833H8.45833V4.375H7.875V4.95833ZM6.70833%204.95833H7.29167V4.375H6.70833V4.95833ZM10.2229%207.29167C10.0868%206.97083%209.89236%206.68889%209.63958%206.44583C9.38681%206.20278%209.0757%206.01319%208.70625%205.87708L4.66667%204.375H3.5V2.91667L7.58333%200L11.6667%202.91667V7.29167H10.2229Z%22%20fill%3D%22%2300210C%22%2F%3E%3C%2Fsvg%3E')
              no-repeat center center / contain;
  width: 12px;
  height: 11px;
}

.footer-cta__chip--blue {
  background: #cae6ff;
  color: #001e30;
}
.footer-cta__chip--blue::before {
  content: "";
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%209%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1.16667%2012.5417L0.233333%2011.8417L1.75%209.81458V6.70833C1.75%206.40694%201.77431%206.07882%201.82292%205.72396C1.87153%205.3691%201.94444%205.04097%202.04167%204.73958L1.16667%205.22083V7.29167H0V4.55L2.56667%203.09167C2.80972%202.95556%203.02118%202.85104%203.20104%202.77813C3.3809%202.70521%203.54861%202.66875%203.70417%202.66875C3.94722%202.66875%204.1684%202.77326%204.36771%202.98229C4.56701%203.19132%204.79792%203.51944%205.06042%203.96667C5.37153%204.49167%205.65347%204.88542%205.90625%205.14792C6.15903%205.41042%206.43125%205.60972%206.72292%205.74583C6.82986%205.66806%206.92222%205.61458%207%205.58542C7.07778%205.55625%207.17014%205.54167%207.27708%205.54167C7.52014%205.54167%207.72917%205.62917%207.90417%205.80417C8.07917%205.97917%208.16667%206.18333%208.16667%206.41667V12.5417H7.58333V6.41667C7.58333%206.33889%207.55417%206.27083%207.49583%206.2125C7.4375%206.15417%207.36944%206.125%207.29167%206.125C7.21389%206.125%207.14583%206.15417%207.0875%206.2125C7.02917%206.27083%207%206.33889%207%206.41667V7.14583H6.41667V6.86875C5.89167%206.64514%205.48333%206.39479%205.19167%206.11771C4.9%205.84062%204.64236%205.46875%204.41875%205.00208C4.31181%205.27431%204.22674%205.60729%204.16354%206.00104C4.10035%206.39479%204.07847%206.76667%204.09792%207.11667L5.25%208.75V12.5417H4.08333V9.625L3.04792%208.1375L2.91667%2010.2083L1.16667%2012.5417ZM4.375%202.33333C4.05417%202.33333%203.77951%202.2191%203.55104%201.99063C3.32257%201.76215%203.20833%201.4875%203.20833%201.16667C3.20833%200.845833%203.32257%200.571181%203.55104%200.342708C3.77951%200.114236%204.05417%200%204.375%200C4.69583%200%204.97049%200.114236%205.19896%200.342708C5.42743%200.571181%205.54167%200.845833%205.54167%201.16667C5.54167%201.4875%205.42743%201.76215%205.19896%201.99063C4.97049%202.2191%204.69583%202.33333%204.375%202.33333Z%22%20fill%3D%22%23001E30%22%2F%3E%3C%2Fsvg%3E')
              no-repeat center center / contain;
  width: 10px;
  height: 14px;
}

.footer-cta__chip--red {
  background: #ffdad6;
  color: #93000a;
}
.footer-cta__chip--red::before {
  content: "";
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2012%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.83333%2010.7042L4.9875%209.94583C4.00556%209.06111%203.19375%208.29792%202.55208%207.65625C1.91042%207.01458%201.4%206.43854%201.02083%205.92812C0.641667%205.41771%200.376736%204.94861%200.226042%204.52083C0.0753472%204.09306%200%203.65556%200%203.20833C0%202.29444%200.30625%201.53125%200.91875%200.91875C1.53125%200.30625%202.29444%200%203.20833%200C3.71389%200%204.19514%200.106944%204.65208%200.320833C5.10903%200.534722%205.50278%200.836111%205.83333%201.225C6.16389%200.836111%206.55764%200.534722%207.01458%200.320833C7.47153%200.106944%207.95278%200%208.45833%200C9.37222%200%2010.1354%200.30625%2010.7479%200.91875C11.3604%201.53125%2011.6667%202.29444%2011.6667%203.20833C11.6667%203.65556%2011.5913%204.09306%2011.4406%204.52083C11.2899%204.94861%2011.025%205.41771%2010.6458%205.92812C10.2667%206.43854%209.75625%207.01458%209.11458%207.65625C8.47292%208.29792%207.66111%209.06111%206.67917%209.94583L5.83333%2010.7042Z%22%20fill%3D%22%2393000A%22%2F%3E%3C%2Fsvg%3E')
              no-repeat center center / contain;
  width: 11px;
  height: 10px;
}

.footer-cta__contact {
  text-align: right;
}

.footer-cta__contact-label {
  margin: 0;
  font-weight: 700;
  color: #3e4a3f;
}

.footer-cta__phone {
  margin: 4px 0 0 auto;
  font-size: 40px;
  font-weight: 700;
  background: url(../img/footer_tel.svg) no-repeat center left / 36px 36px;
  padding-left: 45px;
  width: fit-content;
}

.footer-cta__fax {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  color: #3e4a3f;
}

.footer-cta__address {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.site-footer__copyright {
  background: #066231;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 14px 16px;
}

@media (max-width: 999px) {
  .site-header__inner {
    height: auto;
    padding: 4px 15px;
    gap: 12px;
  }

  .site-header__logo {
    width: 130px;
    height: auto;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__cta {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero {
    padding-top: 0;
  }

  .intro {
    margin-top: 24px;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  .intro::before {
    background: url(../img/service_part02.png) no-repeat center center / contain;
    width: 170px;
    height: 130px;
    top: 400px;
    right: -40px;
    transform: rotate(-20deg);
  }

  .intro__image {
    width: 100%;
    max-width: 600px;
  }
  .intro__image::after {
    width: 73px;
    height: 80px;
    bottom: 0px;
    left: -13px;
  }

  .intro__content {
    width: 100%;
    max-width: 330px;
  }

  .intro__lead {
    font-size: 18px;
  }

  .intro__heading {
    font-size: 22px;
    line-height: 1.7;
  }
  .intro__heading::before {
    width: 255px;
    top: 34px;
  }
  .intro__heading::after {
    width: 265px;
    top: 72px;
  }

  .intro__issue {
    font-size: 16px;
  }

  .intro__highlight {
    font-size: 20px;
  }

  .section-title__text {
    font-size: 22px;
  }
  .section-title__text br {
    display: block;
  }

  .services-area {
    margin-top: 50px;
    padding: 0 15px;
  }
  .services-area::before {
    content: none;
  }
  .services-area::after {
    right: auto;
    background: url(../img/service_part_sp.png) no-repeat center center / contain;
    width: 130px;
    height: 140px;
    left: -10px;
    bottom: -60px;
  }

  .services {
    padding: 36px 20px 39px;
    max-width: 560px;
  }

  .services__description {
    font-size: 17px;
    margin-bottom: 23px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services__card {
    padding: 20px;
  }

  .services__card-content {
    gap: 6px;
    background-size: 52px;
    padding-left: 70px;
  }

  .services__card:nth-of-type(1) .services__card-content {
  background-image: url(../img/service/service_icon01_sp.svg);
  }
  .services__card:nth-of-type(2) .services__card-content {
    background-image: url(../img/service/service_icon02_sp.svg);
  }
  .services__card:nth-of-type(3) .services__card-content {
    background-image: url(../img/service/service_icon03_sp.png);
  }
  .services__card:nth-of-type(4) .services__card-content {
    background-image: url(../img/service/service_icon04_sp.svg);
  }
  .services__card:nth-of-type(5) .services__card-content {
    background-image: url(../img/service/service_icon05_sp.svg);
  }
  .services__card:nth-of-type(6) .services__card-content {
    background-image: url(../img/service/service_icon06_sp.svg);
  }

  .services__icon {
    width: 56px;
    height: 56px;
  }

  .services__card-title {
    font-size: 16px;
  }

  .services__card-text {
    font-size: 16px;
  }

  .services__badge {
    position: static;
    transform: none;
    margin: 10px auto 0;
    font-size: 16px;
  }

  .consultation-targets {
    margin-top: 44px;
    padding: 40px 15px;
  }
  .consultation-targets::before {
    z-index: 2;
    top: 240px;
    left: calc(50vw + 60px);
    width: 90px;
    height: 80px;
  }
  .consultation-targets::after {
    width: 220px;
    height: 130px;
    right: -26px;
    bottom: 20px;
  }

  .consultation-targets__body {
    flex-direction: column;
    gap: 22px;
    margin: 37px auto 0;
    padding: 30px 20px 82px;
    max-width: 440px;
  }
  .consultation-targets__body::after {
    left: 20px;
    width: 130px;
    height: 140px;
    bottom: -70px;
  }

  .consultation-targets__image {
    display: none;
  }

  .consultation-targets__item {
    font-size: 16px;
    gap: 12px;
  }

  .contact-area {
    padding: 60px 15px 80px;
  }
  .contact {
    padding: 46px 22px;
    max-width: 440px;
  }

  .contact__subtitle {
    font-size: 18px;
  }

  .contact__divider {
    margin: 28px 0 21px;
    gap: 12px;
  }

  .contact__divider-label {
    font-size: 20px;
  }

  .contact__actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__actions::before {
    display: none;
  }

  .contact__phones {
    gap: 16px;
  }

  .contact__buttons {
    grid-column: 1;
    gap: 12px;
  }

  .contact__button {
    height: 60px;
    font-size: 18px;
  }

  .contact__button-icon {
    width: 27px;
    height: 20px;
  }
  .contact__button-icon--line {
    width: 40px;
    height: 40px;
  }

  .contact__phone-label {
    font-size: 16px;
  }
  .contact__phone-number {
    font-size: 33px;
    letter-spacing: normal;
    pointer-events: auto;
    white-space: nowrap;
    background-size: 21px auto;
    padding-left: 30px;
  }

  .contact__fax-number {
    font-size: 30px;
    white-space: nowrap;
    background-size: 21px auto;
    padding-left: 30px;
    letter-spacing: normal;
  }

  .advisor {
    padding: 60px 15px 120px;
  }

  .advisor__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 30px 30px 35px;
    max-width: 440px;
    margin: 0 auto;
  }
  .advisor__card::after {
    top: auto;
    bottom: -80px;
    right: 0;
    width: 150px;
    height: 180px;
  }

  .advisor__profile {
    width: 100%;
  }

  .advisor__tag {
    margin-bottom: 15px;
  }
  .advisor__name-wrap {
    margin-bottom: 15px;
  }

  .advisor__avatar {
    width: 187px;
    height: 187px;
    margin: 0 auto;
  }

  .advisor__licenses li {
    font-size: 16px;
  }
  .advisor__licenses li::before {
    font-size: 14px;
  }

  .footer-cta {
    padding: 28px 16px 30px;
    flex-direction: column;
    gap: 20px;
    max-width: 440px;
  }

  .footer-cta__logo {
    width: 100%;
    max-width: 400px;
  }

  .footer-cta__tagline {
    font-size: 16px;
  }
  .footer-cta__chip {
    width: calc(50% - 8px / 2);
  }

  .footer-cta__contact {
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e6d8c4;
    border-radius: 12px;
    padding: 16px;
  }

  .footer-cta__phone {
    font-size: 30px;
    margin: 10px 0;
  }

  .footer-cta__fax {
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 10px;
  }

  .footer-cta__address br {
    display: none;
  }

  .site-footer__copyright {
    font-size: 14px;
    padding: 14px 8px;
  }
}
