/* ========================================
  Top Page / トップページ
======================================== */

/* ========================================
  First View / ヒーロー
======================================== */

.hero {
  --hero-sky-left: 455px;
  --hero-sky-height: 519px;
  --hero-image-top: 96px;
  --hero-image-left: 57px;
  --hero-image-width: 1328px;
  --hero-image-height: 761px;
  --hero-copy-top: 547px;
  --hero-copy-width: 894px;
  --hero-copy-height: 264px;
  position: relative;
  min-height: 857px;
  padding-top: var(--hero-image-top);
  background: #fff;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: calc(100vw - var(--hero-sky-left));
  height: var(--hero-sky-height);
  background: var(--sky-wash);
  content: "";
}

.hero-image {
  position: relative;
  z-index: 1;
  width: var(--hero-image-width);
  height: var(--hero-image-height);
  margin-left: var(--hero-image-left);
  overflow: hidden;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: rgba(21, 38, 84, 0.14);
  content: "";
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% bottom;
}

.hero-copy {
  position: absolute;
  left: 0;
  top: var(--hero-copy-top);
  z-index: 2;
  width: var(--hero-copy-width);
  height: var(--hero-copy-height);
  padding: 39px 57px 34px;
  color: #fff;
  background: var(--hero-copy-bg);
}

.hero-copy h1 {
  margin: 0 0 15px;
  font-family: var(--font-en);
  font-size: 68px;
  font-weight: 600;
  line-height: 69px;
  letter-spacing: 2.72px;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2.2px;
}

main > section:nth-of-type(odd):not(.hero) {
  background: #f5fbff;
}

/* ========================================
  Scroll Reveal / スクロール時の控えめな出現演出
======================================== */

body.is-scroll-reveal-ready [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

body.is-scroll-reveal-ready [data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.is-scroll-reveal-ready [data-scroll-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
  Flow / ご依頼の流れ
======================================== */

main > section.flow:not(.hero) {
  padding: 0;
  padding-bottom: 180px;
  background: #fff;
}

.flow-visual {
  --flow-parallax-bleed: 96px;
  --flow-parallax-y: 0px;
  position: relative;
  height: min(34.375vw, 704px);
  min-height: 420px;
  overflow: hidden;
  background: #fff;
}

.flow-visual::before,
.flow-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.flow-visual::before {
  inset: 0;
  z-index: 1;
  background: linear-gradient(var(--flow-overlay), var(--flow-overlay));
}

.flow-visual::after {
  top: calc(var(--flow-parallax-bleed) * -1);
  right: 0;
  bottom: calc(var(--flow-parallax-bleed) * -1);
  left: 0;
  z-index: 0;
  background: url("../images/flow-surveying-equipment.webp") center center /
    cover no-repeat;
  transform: translate3d(0, var(--flow-parallax-y), 0);
  will-change: transform;
}

.flow .section-inner {
  width: min(1560px, calc(100% - 160px));
  padding-top: 128px;
}

.flow-heading {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

#flow-title {
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}

.flow .section-subtitle {
  margin: 0;
  color: var(--price-blue);
  font-family: var(--font-ja);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 54px;
  margin: 122px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  text-align: center;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 67px;
  right: -36px;
  width: 12px;
  height: 27px;
  background: url("../images/follow.webp") center / contain no-repeat;
}

.flow-icon-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin: 0 auto;
  background: var(--flow-icon-bg);
  border-radius: 50%;
}

.flow-icon-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 78px;
  height: 92px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.flow-list li:first-child .flow-icon-wrap img {
  transform: translate(calc(-50% + 10px), -50%);
}

.flow-list li:nth-child(2) .flow-icon-wrap img {
  transform: translate(calc(-50% + 10px), -50%);
}

.flow-list li:nth-child(3) .flow-icon-wrap img,
.flow-list li:nth-child(5) .flow-icon-wrap img {
  transform: translate(calc(-50% + 4px), -50%);
}

.flow-list li:nth-child(4) .flow-icon-wrap img {
  width: 86px;
  height: 104px;
  transform: translate(calc(-50% + 4px), -50%);
}

.flow-number {
  position: absolute;
  top: -26px;
  right: -15px;
  color: var(--flow-number);
  font-family: var(--font-en);
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.flow-text h3 {
  margin: 36px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 1px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.flow-text p {
  margin: 26px 0 0;
  color: #596571;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* ========================================
  Reason / 選ばれる理由
======================================== */

main > section.reason:not(.hero) {
  padding: 180px 0 180px;
  background: var(--profile-bg);
}

.reason .section-inner {
  width: min(1170px, calc(100% - 80px));
  text-align: center;
}

.reason-title {
  color: var(--ink);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.reason-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin: 33px auto 0;
  background: rgba(24, 145, 216, 0.5);
}

.reason-lead {
  margin: 36px auto 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.reason-sp-break {
  display: none;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  margin: 252px 0 0;
  padding: 0;
  list-style: none;
}

.reason-item {
  position: relative;
  min-height: 356px;
  padding: 101px 50px 49px;
  background: #fff;
  border-radius: 16px;
  text-align: left;
}

.reason-number {
  position: absolute;
  top: -169px;
  right: 32px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.reason-illustration {
  position: absolute;
  z-index: 1;
  display: block;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  pointer-events: none;
}

.reason-item-speed .reason-illustration {
  top: -166px;
  left: 73px;
  width: 168px;
  height: 242px;
  background-image: url("../images/reason-person-phone.webp");
}

.reason-item-realestate .reason-illustration {
  top: -107px;
  left: 50%;
  width: 260px;
  height: 134px;
  background-image: url("../images/reason-contract-map.webp");
  transform: translateX(-50%);
}

.reason-item-careful .reason-illustration {
  top: -141px;
  left: 50%;
  width: 288px;
  height: 200px;
  background-image: url("../images/reason-tablet-explain.webp");
  transform: translateX(-50%);
}

.reason-item h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 3px;
  text-align: center;
}

.reason-item p {
  position: relative;
  z-index: 2;
  margin: 40px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0;
}

/* ========================================
  Service / 取扱業務
======================================== */

main > section.service:not(.hero) {
  padding: 120px 0 180px;
  background: #fff;
}

.service .section-inner {
  width: min(1170px, calc(100% - 40px));
  text-align: center;
}

#service-title {
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 2px;
}

.service .section-subtitle {
  margin: 18px 0 0;
  color: #008cea;
  font-family: var(--font-ja);
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 60px;
  row-gap: 95px;
  margin: 123px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-item {
  position: relative;
  min-width: 0;
}

.service-item::after {
  content: "";
  position: absolute;
  top: 88px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(0, 140, 234, 0.36);
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding-left: 28px;
}

.service-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  margin: 0;
  object-fit: contain;
}

.service-item h3,
.service-title-lines {
  display: flex;
  align-items: center;
  min-height: 63px;
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
}

.service-title-lines {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.service-title-lines p {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: 1.15;
  letter-spacing: inherit;
  text-align: inherit;
}

.service-item > p {
  margin: 30px 0 0;
  color: #4d5b66;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-align: left;
}

/* ========================================
  Concerns / お悩み
======================================== */

main > section.concerns:not(.hero) {
  padding: 111px 0 0;
  background: #fff;
  overflow: hidden;
}

.concerns .section-inner {
  width: min(1154px, calc(100% - 40px));
}

.concerns h2 {
  display: flex;
  justify-content: center;
  color: var(--ink);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.concerns-title-bracket {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 0 34px;
}

.concerns-title-bracket::before,
.concerns-title-bracket::after {
  position: absolute;
  color: var(--accent-blue);
  font-size: 39px;
  font-weight: 500;
  line-height: 1;
}

.concerns-title-bracket::before {
  top: -10px;
  left: -10px;
  content: "\300c";
}

.concerns-title-bracket::after {
  right: -10px;
  bottom: -10px;
  content: "\300d";
}

.concerns-title-accent {
  position: relative;
  display: inline-block;
  color: var(--accent-blue);
  font-size: 40px;
  line-height: 1;
}

.concerns-title-accent::before {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 76px;
  height: 9px;
  background: radial-gradient(
      circle,
      var(--accent-blue) 0 4px,
      transparent 4.5px
    )
    0 0 / 28px 9px repeat-x;
  transform: translateX(-50%);
  content: "";
}

.concerns-layout {
  position: relative;
  min-height: 416px;
  margin-top: 50px;
}

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

.concern-item {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 18px 31px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  background: var(--concern-pill);
  border-radius: 30px 30px 0 30px;
  box-shadow: 0 4px 0 var(--concern-shadow);
}

.concern-item strong {
  font-weight: 700;
}

.concern-item-heritage {
  top: 5px;
  left: 332px;
  min-width: 270px;
  border-radius: 30px 30px 0 30px;
}

.concern-item-neighbor {
  top: 121px;
  left: 40px;
  min-width: 321px;
}

.concern-item-marker {
  top: 241px;
  left: 108px;
  min-width: 235px;
  border-radius: 30px 0 30px 30px;
}

.concern-item-crossing {
  top: 43px;
  right: auto;
  left: 709px;
  min-width: 270px;
  border-radius: 30px 30px 30px 0;
}

.concern-item-survey {
  top: 199px;
  right: auto;
  left: 754px;
  min-width: 400px;
  border-radius: 0 30px 30px 30px;
}

.concern-person {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.concern-person-man {
  left: 410px;
  bottom: 0;
  width: 130px;
}

.concern-person-woman {
  left: 560px;
  bottom: 0;
  width: 120px;
}

/* ========================================
  Lead / お問い合わせ導線
======================================== */

main > section.lead:not(.hero) {
  position: relative;
  min-height: 496px;
  padding: 118px 0 0;
  color: #fff;
  background-color: #087cd0;
  background-image:
    linear-gradient(rgba(0, 73, 117, 0.3), rgba(0, 73, 117, 0.3)),
    url("../images/lead-bg.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.lead .section-inner {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  min-height: 378px;
}

.lead-content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 200px));
  margin-left: 120px;
}

.lead h2 {
  width: auto;
  color: #fff;
  font-size: 34px;
  font-weight: 5500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lead-title-break {
  display: none;
}

.lead-text-break {
  display: none;
}

.lead p {
  margin: 26px 0 0;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.lead-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  /* width: 414px; */
  min-height: 85px;
  margin-top: 37px;
  margin-left: min(448px, calc(100% - 414px));
  padding: 19px 30px 18px 54px;
  color: var(--accent-blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(11, 58, 91, 0.18);
  white-space: nowrap;
  transition:
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.lead-button img {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
}

/* Lead Button Hover / Lead CTAのホバー演出 */
@media (hover: hover) and (pointer: fine) {
  .lead-button:hover,
  .lead-button:focus-visible {
    box-shadow: 0 10px 18px rgba(11, 58, 91, 0.18);
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-button {
    transition: none;
  }

  .lead-button:hover,
  .lead-button:focus-visible {
    transform: none;
  }
}

.lead-instrument {
  position: absolute;
  left: -75px;
  bottom: -2px;
  z-index: 1;
  width: 171px;
  pointer-events: none;
}

/* ========================================
  Price / 料金表
======================================== */

main > section.price:not(.hero) {
  padding: 140px 0 200px;
  background:
    linear-gradient(var(--price-overlay), var(--price-overlay)),
    url("../images/price-bg-office.webp") center / cover fixed no-repeat;
  overflow: hidden;
}

.price .section-inner {
  width: min(1270px, calc(100% - 80px));
  padding: 0;
  text-align: center;
}

#price-title {
  color: #fff;
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}

.price .section-subtitle {
  margin: 18px 0 0;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.16em;
}

.price-card {
  margin-top: 84px;
  padding: 124px 70px 68px;
  color: var(--ink);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 0 rgba(11, 58, 91, 0.28);
  text-align: left;
}

.price-group {
  display: grid;
  grid-template-columns: 510px 1fr;
  align-items: center;
  gap: 50px;
}

.price-group + .price-group {
  margin-top: 110px;
}

.price-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.price-visual img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}

.price-group:nth-of-type(1) .price-visual img {
  max-width: 500px;
}

.price-group:nth-of-type(2) .price-visual img {
  max-width: 430px;
}

.price-group:nth-of-type(3) .price-visual img {
  max-width: 500px;
}

.price-sp-visual {
  display: none;
}

.price-detail h3 {
  margin: 0;
  padding-bottom: 22px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.07em;
  border-bottom: 2px solid var(--price-line);
}

.price-card dl {
  display: grid;
  gap: 26px;
  margin: 38px 0 0;
}

.price-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 40px;
}

.price-card dt,
.price-card dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}

.price-card dt {
  color: var(--ink);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.price-card dd {
  color: var(--price-blue);
  font-family: var(--font-ja);
  font-size: 18px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.price-amount-number,
.price-amount-unit {
  font: inherit;
}

.price-amount-number {
  font-size: 30px;
}

.price-amount-unit {
  font-size: 18px;
}

.price-note {
  margin: 68px 0 0;
  color: #596775;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

/* ========================================
  Office & Profile / 事務所案内・プロフィール
======================================== */

main > section.office:not(.hero) {
  padding: 150px 0 82px;
  background: #fff;
}

.office .section-inner,
.profile .section-inner {
  width: min(1200px, calc(100% - 80px));
}

.office-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: flex-start;
  gap: 66px;
}

.office-heading,
.profile-heading {
  display: flex;
  align-items: baseline;
}

.office-heading {
  gap: 24px;
}

#office-title {
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}

.office .section-subtitle {
  margin: 0;
  color: var(--price-blue);
  line-height: 1.35;
  letter-spacing: 0.14em;
}

.office-name {
  width: 320px;
  margin: 40px 0 0;
  line-height: 0;
}

.office-name img {
  display: block;
  width: 100%;
  height: auto;
}

.office address {
  display: grid;
  gap: 2px;
  margin-top: 28px;
  color: var(--ink);
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.office-map {
  display: flex;
  width: 100%;
  aspect-ratio: 732 / 328;
  overflow: hidden;
  background: #d9d9d9;
}

.office-map iframe {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
}

main > section.profile:not(.hero) {
  padding: 60px 0 0;
  padding-bottom: 180px;
  background: #fff;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 510px;
  align-items: flex-end;
  gap: 88px;
  padding: 88px 60px 88px;
  background: var(--profile-bg);
  border-radius: 8px;
}

.profile-heading {
  gap: 32px;
}

#profile-title {
  color: var(--ink);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.profile-en {
  margin: 0;
  color: var(--price-blue);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.profile-body {
  display: grid;
  gap: 34px;
  margin-top: 62px;
}

.profile-body p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}

.profile-image {
  --profile-parallax-y: 0px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.profile-image picture,
.profile-image img {
  display: block;
  width: 100%;
}

.profile-image img {
  aspect-ratio: 510 / 626;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--profile-parallax-y), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

/* ========================================
  FAQ / よくある質問
======================================== */

main > section.faq:not(.hero) {
  display: flow-root;
  position: relative;
  min-height: 906px;
  padding: 0;
  background: var(--faq-bg-pc);
  overflow: visible;
  z-index: 2;
}

.faq .section-inner {
  position: relative;
  isolation: isolate;
  width: 1283px;
  max-width: none;
  height: 746px;
  margin-top: 160px;
}

.faq-heading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 334px;
  text-align: center;
}

#faq-title {
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0px;
}

.faq .section-subtitle {
  margin: 18px 0 0;
  color: #0e92d5;
  font-family: var(--font-ja);
  line-height: 1.1;
  letter-spacing: 0.11em;
}

.faq-list {
  display: grid;
  position: absolute;
  top: 0;
  left: 371px;
  z-index: 3;
  width: 816px;
  gap: 20px;
  margin: 0;
}

.faq-item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.faq-item.is-animating {
  transition: height 0.42s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: height;
}

.faq-question {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 20px;
  align-items: center;
  column-gap: 50px;
  min-height: 100px;
  padding: 20px 30px;
  background: transparent;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:active {
  background: transparent;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-badge,
.faq-answer-badge {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
  text-indent: 5px;
  border-radius: 50%;
}

.faq-badge {
  color: #fff;
  background: var(--button);
}

.faq-question-text {
  min-width: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.faq-toggle {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  color: #111827;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  content: "";
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition:
    opacity 0.24s ease,
    transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item[open]:not(.is-closing) .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0.7);
}

.faq-answer {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  column-gap: 50px;
  padding: 0 30px 28px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.28s ease,
    transform 0.42s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item[open]:not(.is-opening):not(.is-closing) .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-badge {
  align-self: center;
  color: var(--button);
  border: 1px solid var(--button);
}

.faq-answer-body {
  padding-top: 18px;
  border-top: 1px solid var(--faq-line);
}

.faq-answer-body p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 300;
  line-break: strict;
  line-height: 1.55;
  letter-spacing: 0.03em;
  overflow-wrap: normal;
}

.faq-illustrations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.faq-illustration {
  position: absolute;
  height: auto;
}

.faq-tower {
  bottom: 0;
  left: 82px;
  width: 156px;
}

.faq-couple {
  bottom: 0;
  left: 346px;
  width: 110px;
}

.faq-woman {
  bottom: 0;
  left: 779px;
  width: 84px;
}

.faq-dog-walker {
  bottom: -14px;
  left: 1137px;
  width: 144px;
}

/* ========================================
  Responsive 900px-1800px / FAQ PC基準の等比縮小・拡大
======================================== */

@media (min-width: 900px) and (max-width: 1800px) {
  main > section.faq:not(.hero) {
    min-height: 62.9167vw;
  }

  .faq .section-inner {
    width: 89.0972vw;
    height: 51.8056vw;
    margin-top: 11.1111vw;
  }

  .faq-heading {
    width: 23.1944vw;
  }

  #faq-title {
    font-size: 3.6111vw;
    letter-spacing: 0.2222vw;
  }

  .faq .section-subtitle {
    margin-top: 1.25vw;
  }

  .faq-list {
    left: 25.7639vw;
    width: 56.6667vw;
    gap: 1.3889vw;
  }

  .faq-item {
    border-radius: 1.3889vw;
  }

  .faq-question {
    grid-template-columns: 4.1667vw minmax(0, 1fr) 1.3889vw;
    column-gap: 3.4722vw;
    min-height: 6.9444vw;
    padding: 1.3889vw 2.0833vw;
  }

  .faq-badge,
  .faq-answer-badge {
    width: 4.1667vw;
    height: 4.1667vw;
    font-size: 1.9444vw;
    letter-spacing: 0.3472vw;
    text-indent: 0.3472vw;
  }

  .faq-question-text {
    font-size: 1.3889vw;
  }

  .faq-toggle {
    width: 1.3889vw;
    height: 1.3889vw;
  }

  .faq-toggle::before,
  .faq-toggle::after {
    height: max(1px, 0.1389vw);
  }

  .faq-answer {
    grid-template-columns: 4.1667vw minmax(0, 1fr);
    align-items: center;
    column-gap: 3.4722vw;
    padding: 0 2.0833vw 1.9444vw;
  }

  .faq-answer-body {
    padding-top: 1.25vw;
  }

  .faq-answer-body p {
    font-size: 1.3889vw;
  }

  .faq-tower {
    left: 5.6944vw;
    width: 10.8333vw;
  }

  .faq-couple {
    left: 24.0278vw;
    width: 7.6389vw;
  }

  .faq-woman {
    left: 54.0972vw;
    width: 5.8333vw;
  }

  .faq-dog-walker {
    bottom: -0.9722vw;
    left: 78.9583vw;
    width: 10vw;
  }
}

/* ========================================
  Responsive >= 1801px / FAQ 1800px時点のコンテンツ幅で固定
======================================== */

@media (min-width: 1801px) {
  main > section.faq:not(.hero) {
    min-height: 1132.5px;
  }

  .faq .section-inner {
    width: 1603.75px;
    height: 932.5px;
    margin-top: 200px;
  }

  .faq-heading {
    width: 417.5px;
  }

  #faq-title {
    font-size: 65px;
    letter-spacing: 4px;
  }

  .faq .section-subtitle {
    margin-top: 22.5px;
  }

  .faq-list {
    left: 463.75px;
    width: 1020px;
    gap: 25px;
  }

  .faq-item {
    border-radius: 25px;
  }

  .faq-question {
    grid-template-columns: 75px minmax(0, 1fr) 25px;
    column-gap: 62.5px;
    min-height: 125px;
    padding: 25px 37.5px;
  }

  .faq-badge,
  .faq-answer-badge {
    width: 75px;
    height: 75px;
    font-size: 35px;
    letter-spacing: 6.25px;
    text-indent: 6.25px;
  }

  .faq-question-text {
    font-size: 25px;
  }

  .faq-toggle {
    width: 25px;
    height: 25px;
  }

  .faq-toggle::before,
  .faq-toggle::after {
    height: 2.5px;
  }

  .faq-answer {
    grid-template-columns: 75px minmax(0, 1fr);
    align-items: center;
    column-gap: 62.5px;
    padding: 0 37.5px 35px;
  }

  .faq-answer-body {
    padding-top: 22.5px;
  }

  .faq-answer-body p {
    font-size: 25px;
  }

  .faq-tower {
    left: 102.5px;
    width: 195px;
  }

  .faq-couple {
    left: 432.5px;
    width: 137.5px;
  }

  .faq-woman {
    left: 973.75px;
    width: 105px;
  }

  .faq-dog-walker {
    bottom: -17.5px;
    left: 1421.25px;
    width: 180px;
  }
}

/* ========================================
  Responsive <= 899px / FAQ 393pxのSP基準を縮小・拡大
======================================== */

@media (max-width: 899px) {
  main > section.faq:not(.hero) {
    min-height: 146.565vw;
    background: var(--faq-bg-sp);
  }

  .faq .section-inner {
    width: 100vw;
    height: 146.565vw;
    margin-top: 0;
  }

  .faq-heading {
    top: 15.2672vw;
    left: 0;
    width: 100%;
  }

  #faq-title {
    font-size: 7.1247vw;
    line-height: 1.5;
    letter-spacing: 0.5598vw;
  }

  .faq .section-subtitle {
    margin-top: 0;
    line-height: 5.598vw;
    letter-spacing: 0.16em;
  }

  .faq-list {
    top: 41.2214vw;
    left: 4.8346vw;
    width: 90.3308vw;
    gap: 3.8168vw;
  }

  .faq-item {
    border-radius: 5.0891vw;
  }

  .faq-question {
    grid-template-columns: 8.6514vw minmax(0, 1fr) 3.0534vw;
    column-gap: 4.0712vw;
    min-height: 14.2494vw;
    padding: 2.798vw 4.0712vw;
  }

  .faq-badge,
  .faq-answer-badge {
    width: 8.6514vw;
    height: 8.6514vw;
    font-family: var(--font-en);
    font-size: 4.3257vw;
    letter-spacing: 0.7125vw;
    text-indent: 0.7125vw;
  }

  .faq-answer-badge {
    padding-bottom: 0.2545vw;
  }

  .faq-question-text {
    color: #111827;
    font-size: 3.5623vw;
    line-height: 1.4;
  }

  .faq-toggle {
    width: 3.0534vw;
    height: 3.0534vw;
  }

  .faq-toggle::before,
  .faq-toggle::after {
    height: max(1px, 0.3053vw);
  }

  .faq-answer {
    grid-template-columns: 8.6514vw minmax(0, 1fr);
    align-items: center;
    column-gap: 4.0712vw;
    padding: 0 4.0712vw 4.5802vw;
  }

  .faq-answer-body {
    padding-top: 3.0534vw;
  }

  .faq-answer-body p {
    font-size: 3.5623vw;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .faq-tower {
    left: 5.8524vw;
    width: 15.7761vw;
  }

  .faq-couple {
    left: 25.1908vw;
    width: 12.4682vw;
  }

  .faq-woman {
    left: 48.3461vw;
    width: 8.6514vw;
  }

  .faq-dog-walker {
    bottom: -1.5267vw;
    left: 79.3893vw;
    width: 17.3028vw;
  }
}

/* ========================================
  Contact / お問い合わせ
======================================== */

main > section.contact:not(.hero) {
  position: relative;
  min-height: 610px;
  padding: 0;
  color: #fff;
  background-image: url("../images/contact-bg-pc.webp");
  background-position: center 37%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}

.contact::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--contact-overlay);
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  padding: 100px 0 120px;
  align-items: center;
  justify-content: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.contact-copy {
  display: flex;
  width: 572px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}

.contact h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 5px;
}

.contact-lead {
  display: flex;
  min-width: 100%;
  margin: 0;
  flex-direction: column;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0;
  text-align: center;
}

.contact-pc-inline {
  display: inline;
}

.contact-sp-line,
.contact-label-sp {
  display: none;
}

.contact-actions {
  display: flex;
  width: 978px;
  height: 160px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  gap: 61px;
  border-radius: 20px;
  background: var(--contact-card-bg);
}

.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-family: var(--font-en);
  font-size: 37px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.96px;
  white-space: nowrap;
}

.contact-tel::before {
  display: block;
  width: 39.5px;
  height: 39.5px;
  flex: 0 0 auto;
  background: url("../images/icon-phone-blue.svg") center / contain no-repeat;
  content: "";
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-button {
  display: inline-flex;
  width: 220px;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.28px;
  white-space: nowrap;
  transition:
    background-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.contact-button-mail {
  width: auto;
  min-width: 252px;
  padding: 0 30px;
  background: var(--contact-mail);
}

.contact-button-line {
  background: var(--contact-line);
}

.contact-button img {
  flex: 0 0 auto;
  object-fit: contain;
}

/* Contact Button Hover / お問い合わせボタンのホバー演出 */
@media (hover: hover) and (pointer: fine) {
  .contact-button:hover,
  .contact-button:focus-visible {
    box-shadow: 0 6px 14px rgba(11, 58, 91, 0.18);
    transform: translateY(-3px);
  }

  .contact-button-mail:hover,
  .contact-button-mail:focus-visible {
    background-color: #082f4a;
  }

  .contact-button-line:hover,
  .contact-button-line:focus-visible {
    background-color: #4f9d17;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-button {
    transition: none;
  }

  .contact-button:hover,
  .contact-button:focus-visible {
    transform: none;
  }
}

.contact-button-mail img {
  width: 20px;
  height: 16px;
}

.contact-button-line img {
  width: 21px;
  height: 20px;
}

/* ========================================
  Responsive >= 900px / Lead画像仕様・余白調整
======================================== */

@media (min-width: 900px) {
  main > section.lead:not(.hero) {
    min-height: 503px;
  }

  .lead .section-inner {
    width: min(1120px, calc(100% - 40px));
  }

  .lead-content {
    width: auto;
    margin-left: clamp(0px, calc((100vw - 900px) * 0.222222), 120px);
  }

  .lead h2 {
    font-size: clamp(30px, calc(30px + (100vw - 900px) * 0.007407), 34px);
  }

  .lead p {
    font-size: clamp(17px, calc(17px + (100vw - 900px) * 0.007407), 21px);
  }

  .lead-title-break,
  .lead-text-break {
    display: none;
  }

  .lead-button {
    margin-left: 0;
    transform: none;
  }

  .lead-instrument {
    right: clamp(-115px, calc(-115px + (100vw - 900px) * 0.25), 20px);
    bottom: -8px;
    left: auto;
    width: 175px;
  }
}

/* ========================================
  Responsive 900px-1439px / ヒーロー・Lead・FooterをPC比率で縮小
======================================== */

@media (min-width: 900px) and (max-width: 1439px) {
  .hero {
    --hero-sky-left: 31.5972vw;
    --hero-sky-height: 36.0417vw;
    --hero-image-top: 6.6667vw;
    --hero-image-left: 3.9583vw;
    --hero-image-width: 92.2222vw;
    --hero-image-height: 52.8472vw;
    --hero-copy-top: 37.9861vw;
    --hero-copy-width: 62.0833vw;
    --hero-copy-height: 18.3333vw;
    min-height: 59.5139vw;
    padding-top: var(--hero-image-top);
  }

  .hero-copy {
    width: calc(var(--hero-copy-width) + 4vw);
    padding: 2.7083vw 7.9583vw 2.3611vw;
  }

  .hero-copy h1 {
    margin-bottom: 1.0417vw;
    font-size: 4.7222vw;
    line-height: 4.7917vw;
    letter-spacing: 0.1889vw;
  }

  .hero-copy p {
    font-size: 1.5278vw;
    letter-spacing: 0.1528vw;
  }

  .lead .section-inner {
    --lead-text-width: clamp(650px, 56vw, 780px);
    --lead-instrument-gap: 40px;
    --lead-instrument-width: 150px;
    width: min(
      calc(
        var(--lead-text-width) + var(--lead-instrument-gap) +
          var(--lead-instrument-width)
      ),
      calc(100% - 40px)
    );
  }

  .lead-content {
    width: var(--lead-text-width);
    margin-left: 0;
  }

  .lead h2 {
    white-space: nowrap;
  }

  .lead-instrument {
    right: auto;
    left: calc(var(--lead-text-width) + var(--lead-instrument-gap));
    width: var(--lead-instrument-width);
  }

  .lead-button {
    gap: 1.6667vw;
    min-height: 5.9028vw;
    margin-top: 2.5694vw;
    padding: 1.3194vw 2.0833vw 1.25vw 3.75vw;
    font-size: 1.5278vw;
    box-shadow: 0 0.4167vw 0 rgba(11, 58, 91, 0.18);
  }

  .lead-button img {
    width: 2.4306vw;
    height: 2.4306vw;
  }
}

/* ========================================
  Responsive 900px-1800px / Service PC基準の比率可変
======================================== */

@media (min-width: 900px) and (max-width: 1800px) {
  .service .section-inner {
    width: 81.25vw;
  }

  #service-title {
    font-size: 4vw;
  }

  .service .section-subtitle {
    margin-top: 0.4861vw;
  }

  .service-list {
    column-gap: 4.1667vw;
    row-gap: 6.5972vw;
    margin-top: 8.5417vw;
  }

  .service-item::after {
    top: calc(5.4167vw + 10px);
  }

  .service-heading {
    gap: 1.9444vw;
    min-height: 5.4167vw;
    padding-left: 1.9444vw;
  }

  .service-icon {
    width: 4.3056vw;
    height: 4.3056vw;
  }

  .service-item h3,
  .service-title-lines {
    min-height: 4.375vw;
    font-size: 1.9444vw;
  }

  .service-title-lines {
    gap: 0.2778vw;
  }

  .service-item > p {
    margin-top: 2.0833vw;
    font-size: 1.25vw;
  }
}

/* ========================================
  Responsive 900px-1800px / Price PC基準の比率可変
======================================== */

@media (min-width: 900px) and (max-width: 1800px) {
  main > section.price:not(.hero) {
    background-position: center center;
  }

  .price .section-inner {
    width: 88.1944vw;
  }

  #price-title {
    font-size: 3.6111vw;
  }

  .price .section-subtitle {
    margin-top: 1.25vw;
  }

  .price-card {
    margin-top: 5.8333vw;
    padding: 8.6111vw 4.8611vw 4.7222vw;
    border-radius: 1.6667vw;
    box-shadow: 0 0.5556vw 0 rgba(11, 58, 91, 0.28);
  }

  .price-group {
    grid-template-columns: 35.4167vw 1fr;
    gap: 3.4722vw;
  }

  .price-group + .price-group {
    margin-top: 7.6389vw;
  }

  .price-visual {
    min-height: 17.3611vw;
  }

  .price-visual img {
    max-height: 21.5278vw;
  }

  .price-group:nth-of-type(1) .price-visual img,
  .price-group:nth-of-type(3) .price-visual img {
    max-width: 34.7222vw;
  }

  .price-group:nth-of-type(2) .price-visual img {
    max-width: 29.8611vw;
  }

  .price-detail h3 {
    padding-bottom: 1.5278vw;
    font-size: 2.0833vw;
    border-bottom-width: 0.1389vw;
  }

  .price-card dl {
    gap: 1.8056vw;
    margin-top: 2.6389vw;
  }

  .price-card dl div {
    column-gap: 2.7778vw;
  }

  .price-card dt {
    font-size: 1.8056vw;
  }

  .price-card dd {
    font-size: 1.25vw;
  }

  .price-amount-number {
    font-size: 2.0833vw;
  }

  .price-amount-unit {
    font-size: 1.25vw;
  }

  .price-note {
    margin-top: 6.7222vw;
    font-size: 1.1111vw;
  }
}

/* ========================================
  Responsive 900px-1800px / Flow PC基準の比率可変
======================================== */

@media (min-width: 900px) and (max-width: 1800px) {
  .flow-visual {
    height: 34.375vw;
    min-height: 0;
  }

  .flow .section-inner {
    width: 88.8889vw;
    padding-top: 8.8889vw;
  }

  #flow-title {
    font-size: 3.6111vw;
  }

  .flow-list {
    gap: 3.75vw;
    margin-top: 8.4722vw;
  }

  .flow-list li:not(:last-child)::after {
    top: 4.6528vw;
    right: -2.5vw;
    width: 12px;
    height: 27px;
  }

  .flow-icon-wrap {
    width: 10.2778vw;
    height: 10.2778vw;
  }

  .flow-icon-wrap img {
    width: 5.4167vw;
    height: 6.3889vw;
  }

  .flow-list li:nth-child(4) .flow-icon-wrap img {
    width: 5.9722vw;
    height: 7.2222vw;
  }

  .flow-number {
    top: -1.8056vw;
    right: -1.0417vw;
    font-size: 4.3056vw;
  }

  .flow-text h3 {
    margin-top: 2.5vw;
    font-size: 1.7361vw;
  }

  .flow-text p {
    margin-top: 1.8056vw;
    font-size: 1.25vw;
  }
}

/* ========================================
  Responsive 900px-1800px / Reason PC基準の比率可変
======================================== */

@media (min-width: 900px) and (max-width: 1800px) {
  main > section.reason:not(.hero) {
    padding: 12.5vw 0;
  }

  .reason .section-inner {
    width: 81.25vw;
  }

  .reason-title {
    font-size: 2.9167vw;
  }

  .reason-title::after {
    width: 3.4722vw;
    height: 0.1389vw;
    margin-top: 2.2917vw;
  }

  .reason-lead {
    margin-top: 2.5vw;
    font-size: 1.6667vw;
  }

  .reason-list {
    gap: 3.6111vw;
    margin-top: 17.5vw;
  }

  .reason-item {
    min-height: 24.7222vw;
    padding: 7.0139vw 3.4722vw 3.4028vw;
    border-radius: 1.1111vw;
  }

  .reason-number {
    top: -11.7361vw;
    right: 2.2222vw;
    font-size: 6.9444vw;
  }

  .reason-item-speed .reason-illustration {
    top: -11.9444vw;
    left: 5.0694vw;
    width: 11.6667vw;
    height: 16.8056vw;
  }

  .reason-item-realestate .reason-illustration {
    top: -5.4306vw;
    width: 18.0556vw;
    height: 9.3056vw;
  }

  .reason-item-careful .reason-illustration {
    top: -8.7917vw;
    width: 20vw;
    height: 13.8889vw;
  }

  .reason-item h3 {
    font-size: 1.7361vw;
  }

  .reason-item p {
    margin-top: 2.7778vw;
    font-size: 1.25vw;
  }
}

/* ========================================
  Responsive 900px-1800px / Office・Profile PC基準の比率可変
======================================== */

@media (min-width: 900px) and (max-width: 1800px) {
  main > section.office:not(.hero) {
    padding: 10.4167vw 0 5.6944vw;
  }

  .office .section-inner,
  .profile .section-inner {
    width: 83.3333vw;
  }

  .office-grid {
    grid-template-columns: 27.0833vw minmax(0, 1fr);
    gap: 4.5833vw;
  }

  .office-heading {
    gap: 1.6667vw;
  }

  #office-title {
    font-size: 3.6111vw;
  }

  .office-name {
    margin-top: 5.4167vw;
    width: 22.2222vw;
  }

  .office address {
    margin-top: 1.9444vw;
    font-size: 1.3889vw;
  }

  main > section.profile:not(.hero) {
    padding-top: 4.1667vw;
  }

  .profile-card {
    grid-template-columns: minmax(0, 1fr) 35.4167vw;
    gap: 6.1111vw;
    padding: 6.1111vw 4.1667vw;
  }

  .profile-heading {
    gap: 1.6667vw;
  }

  #profile-title {
    font-size: 2.2222vw;
  }

  .profile-en {
    font-size: 1.1111vw;
  }

  .profile-body {
    gap: 2.3611vw;
    margin-top: 4.3056vw;
  }

  .profile-body p {
    font-size: 1.25vw;
  }
}

/* ========================================
  Responsive 1440px-1800px / 共通・ヒーロー・導線をPC基準で拡大
======================================== */

@media (min-width: 1440px) and (max-width: 1800px) {
  .hero {
    --hero-sky-left: 31.5972vw;
    --hero-sky-height: 36.0417vw;
    --hero-image-top: 6.6667vw;
    --hero-image-left: 3.9583vw;
    --hero-image-width: 92.2222vw;
    --hero-image-height: 52.8472vw;
    --hero-copy-top: 37.9861vw;
    --hero-copy-width: 62.0833vw;
    --hero-copy-height: 18.3333vw;
    min-height: 59.5139vw;
    padding-top: var(--hero-image-top);
  }

  .hero-copy {
    width: calc(var(--hero-copy-width) + 4vw);
    padding: 2.7083vw 7.9583vw 2.3611vw;
  }

  .hero-copy h1 {
    margin-bottom: 1.0417vw;
    font-size: 4.7222vw;
    line-height: 4.7917vw;
    letter-spacing: 0.1889vw;
  }

  .hero-copy p {
    font-size: 1.5278vw;
    letter-spacing: 0.1528vw;
  }

  main > section.lead:not(.hero) {
    min-height: 34.9306vw;
    padding-top: 8.1944vw;
  }

  .lead .section-inner {
    width: min(77.7778vw, calc(100% - 2.7778vw));
    min-height: 26.25vw;
  }

  .lead-content {
    width: auto;
    margin-left: 8.3333vw;
  }

  .lead h2 {
    font-size: 2.3611vw;
  }

  .lead p {
    margin-top: 1.8056vw;
    font-size: 1.4583vw;
  }

  .lead-button {
    gap: 1.6667vw;
    /* width: 28.75vw; */
    min-height: 5.9028vw;
    margin-top: 2.5694vw;
    padding: 1.3194vw 2.0833vw 1.25vw 3.75vw;
    font-size: 1.5278vw;
    box-shadow: 0 0.4167vw 0 rgba(11, 58, 91, 0.18);
  }

  .lead-button img {
    width: 2.4306vw;
    height: 2.4306vw;
    /* margin-right: 10px; */
  }

  .lead-instrument {
    right: 1.3889vw;
    width: 11.875vw;
  }
}

/* ========================================
  Responsive 900px-1800px / Contact PC基準の比率可変
======================================== */

@media (min-width: 900px) and (max-width: 1800px) {
  main > section.contact:not(.hero),
  .contact-inner {
    min-height: 42.3611vw;
  }

  .contact-inner {
    padding: 6.9444vw 0 8.3333vw;
  }

  .contact-content {
    gap: 4.4444vw;
  }

  .contact-copy {
    width: 39.7222vw;
    gap: 3.4722vw;
  }

  .contact h2 {
    font-size: 2.7778vw;
    line-height: 2.5vw;
    letter-spacing: 0.3472vw;
  }

  .contact-lead {
    font-size: 1.5278vw;
    line-height: 2.7778vw;
  }

  .contact-actions {
    width: 67.9167vw;
    height: 11.1111vw;
    padding: 0 2.0833vw;
    gap: 4.2361vw;
    border-radius: 1.3889vw;
  }

  .contact-tel {
    gap: 1.3vw;
    font-size: 2.5694vw;
    letter-spacing: 0.2056vw;
  }

  .contact-tel::before {
    width: 2.5vw;
    height: 2.5vw;
  }

  .contact-buttons {
    gap: 0.6944vw;
  }

  .contact-button {
    width: 15.2778vw;
    height: 4.3056vw;
    gap: 0.6944vw;
    border-radius: 0.5556vw;
    font-size: 1.1111vw;
    letter-spacing: 0.0889vw;
  }

  .contact-button-mail {
    width: auto;
    min-width: 17.5vw;
    padding: 0 2.0833vw;
  }

  .contact-button-mail img {
    width: 1.3889vw;
    height: 1.1111vw;
  }

  .contact-button-line img {
    width: 1.4583vw;
    height: 1.3889vw;
  }
}

/* ========================================
  Responsive >= 1801px / 1800px時点のコンテンツ幅で固定
======================================== */

@media (min-width: 1801px) {
  .hero {
    --hero-sky-left: calc((100vw - 1800px) / 2 + 569px);
    --hero-sky-height: 649px;
    --hero-image-top: 120px;
    --hero-image-left: calc((100vw - 1800px) / 2 + 71px);
    --hero-image-width: 1660px;
    --hero-image-height: 951px;
    --hero-copy-top: 684px;
    --hero-copy-width: 1118px;
    --hero-copy-height: 330px;
    min-height: 1071px;
    padding-top: var(--hero-image-top);
  }

  .hero-copy {
    left: calc((100vw - 1800px) / 2);
    width: calc(var(--hero-copy-width) + 72px);
    padding: 49px 143px 43px;
    background: transparent;
  }

  .hero-copy::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc((100vw - 1800px) / -2);
    z-index: -1;
    background: var(--hero-copy-bg);
    content: "";
  }

  .hero-copy h1 {
    margin-bottom: 19px;
    font-size: 85px;
    line-height: 86px;
    letter-spacing: 3.4px;
  }

  .hero-copy p {
    font-size: 28px;
    letter-spacing: 2.75px;
  }

  .service .section-inner {
    width: 1463px;
  }

  #service-title {
    font-size: 65px;
  }

  .service .section-subtitle {
    margin-top: 9px;
  }

  .service-list {
    column-gap: 75px;
    row-gap: 119px;
    margin-top: 154px;
  }

  .service-item::after {
    top: 108px;
  }

  .service-heading {
    gap: 35px;
    min-height: 98px;
    padding-left: 35px;
  }

  .service-icon {
    width: 78px;
    height: 78px;
  }

  .service-item h3,
  .service-title-lines {
    min-height: 79px;
    font-size: 35px;
  }

  .service-item > p {
    margin-top: 38px;
    font-size: 23px;
  }

  .price .section-inner {
    width: 1588px;
  }

  #price-title {
    font-size: 65px;
  }

  .price .section-subtitle {
    margin-top: 23px;
  }

  .price-card {
    margin-top: 105px;
    padding: 155px 88px 85px;
    border-radius: 30px;
    box-shadow: 0 10px 0 rgba(11, 58, 91, 0.28);
  }

  .price-group {
    grid-template-columns: 638px 1fr;
    gap: 63px;
  }

  .price-group + .price-group {
    margin-top: 138px;
  }

  .price-visual {
    min-height: 313px;
  }

  .price-visual img {
    max-height: 388px;
  }

  .price-detail h3,
  .price-amount-number {
    font-size: 38px;
  }

  .price-card dt {
    font-size: 33px;
  }

  .price-card dd,
  .price-amount-unit {
    font-size: 23px;
  }

  .price-note {
    margin-top: 85px;
    font-size: 20px;
  }

  main > section.reason:not(.hero) {
    padding: 225px 0;
  }

  .reason .section-inner {
    width: 1463px;
  }

  .reason-title {
    font-size: 53px;
  }

  .reason-lead {
    font-size: 30px;
  }

  .flow-visual {
    height: 619px;
  }

  .flow .section-inner {
    width: 1600px;
    padding-top: 160px;
  }

  #flow-title {
    font-size: 65px;
  }

  main > section.office:not(.hero) {
    padding: 188px 0 103px;
  }

  .office .section-inner,
  .profile .section-inner {
    width: 1500px;
  }

  .office-grid {
    grid-template-columns: 488px minmax(0, 1fr);
    gap: 83px;
  }

  #office-title {
    font-size: 65px;
  }

  main > section.profile:not(.hero) {
    padding-top: 75px;
  }

  .profile-card {
    grid-template-columns: minmax(0, 1fr) 638px;
    gap: 110px;
    padding: 110px 75px;
  }

  main > section.contact:not(.hero),
  .contact-inner {
    min-height: 763px;
  }

  .contact-inner {
    width: 1800px;
    margin: 0 auto;
    padding: 125px 0 150px;
  }

  .contact-content {
    gap: 80px;
  }

  .contact-copy {
    width: 715px;
    gap: 63px;
  }

  .contact h2 {
    font-size: 50px;
    line-height: 45px;
    letter-spacing: 6.25px;
  }

  .contact-lead {
    font-size: 28px;
    line-height: 50px;
  }

  .contact-actions {
    width: 1223px;
    height: 200px;
    padding: 0 38px;
    gap: 76px;
    border-radius: 25px;
  }

  .contact-tel {
    gap: 13px;
    font-size: 46px;
    letter-spacing: 3.7px;
  }

  .contact-tel::before {
    width: 49.5px;
    height: 49.5px;
  }

  .contact-buttons {
    gap: 13px;
  }

  .contact-button {
    width: 275px;
    height: 78px;
    gap: 13px;
    border-radius: 10px;
    font-size: 20px;
    letter-spacing: 1.6px;
  }

  .contact-button-mail {
    width: auto;
    min-width: 315px;
    padding: 0 38px;
  }

  .contact-button-mail img {
    width: 25px;
    height: 20px;
  }

  .contact-button-line img {
    width: 26px;
    height: 25px;
  }
}

/* ========================================
  Responsive <= 899px / 393pxのSP基準を縮小・拡大
======================================== */

@media (max-width: 899px) {
  .hero {
    --hero-sky-left: min(66.1578vw, 260px);
    --hero-sky-height: 582px;
    --hero-image-top: 62px;
    --hero-image-left: 0;
    --hero-image-width: calc(100vw - 44px);
    --hero-image-height: 585px;
    --hero-copy-top: 471px;
    --hero-copy-width: 100%;
    --hero-copy-height: 133px;
    min-height: 647px;
    padding-top: var(--hero-image-top);
  }

  .hero-image img {
    object-position: 29% bottom;
  }

  .hero-copy {
    left: 0;
    padding: 15px 22px 12px;
  }

  .hero-copy h1 {
    margin-bottom: 6px;
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.04em;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  /* Flow SP <= 899px / 固定画像と縦並びステップ */

  main > section.flow:not(.hero) {
    padding: 0 0 86px;
  }

  .flow-visual {
    --flow-parallax-bleed: 64px;
    height: calc(44.24vw + 80px);
    min-height: 268px;
  }

  .flow-visual::before {
    background:
      linear-gradient(#fff, #fff) top / 100% 80px no-repeat,
      linear-gradient(var(--flow-overlay), var(--flow-overlay));
  }

  .flow-visual::after {
    background-position: center top;
  }

  .flow .section-inner {
    width: min(526px, calc(100% - 48px));
    padding-top: 88px;
  }

  .flow-heading {
    display: block;
    text-align: center;
  }

  #flow-title {
    font-size: 28px;
    line-height: 1;
    word-break: normal;
  }

  .flow .section-subtitle {
    margin-top: 10px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .flow-list {
    display: flex;
    flex-direction: column;
    gap: 54px;
    margin-top: 80px;
  }

  .flow-list li {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    text-align: left;
  }

  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .flow-icon-wrap {
    width: 112px;
    height: 112px;
    margin: 0;
  }

  .flow-icon-wrap img {
    width: 58px;
    height: 70px;
  }

  .flow-list li:nth-child(4) .flow-icon-wrap img {
    width: 64px;
    height: 78px;
  }

  .flow-number {
    top: -12px;
    right: -24px;
    font-size: 48px;
  }

  .flow-text h3 {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .flow-text p {
    margin-top: 12px;
    color: #3f4850;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .concerns h2 {
    max-width: none;
    font-size: 15px;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  main > section.reason:not(.hero) {
    padding: 80px 0 100px;
  }

  .reason .section-inner {
    width: min(309px, calc(100% - 48px));
  }

  .reason-title {
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .reason-title::after {
    width: 46px;
    height: 2px;
    margin-top: 14px;
  }

  .reason-lead {
    width: min(309px, 100%);
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0;
  }

  .reason-sp-break {
    display: inline;
  }

  .reason-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .reason-item {
    min-height: 172px;
    padding: 39px 22px 24px;
    border-radius: 24px;
  }

  .reason-item-speed {
    padding-right: 20px;
    padding-left: 20px;
  }

  .reason-number {
    top: auto;
    right: 18px;
    bottom: -10px;
    color: rgba(243, 250, 253, 0.95);
    font-size: 66px;
  }

  .reason-item-speed .reason-illustration {
    top: auto;
    right: auto;
    bottom: 0;
    left: -8px;
    width: 84px;
    height: 166px;
    transform: none;
  }

  .reason-item-realestate {
    padding: 38px 22px 31px;
  }

  .reason-item-realestate .reason-number {
    right: auto;
    left: 18px;
  }

  .reason-item-realestate .reason-illustration {
    top: auto;
    right: -16px;
    bottom: 21px;
    left: auto;
    width: 126px;
    height: 72px;
    transform: none;
  }

  .reason-item-careful {
    padding: 38px 22px 31px;
  }

  .reason-item-careful .reason-illustration {
    top: auto;
    right: auto;
    bottom: 0;
    left: -18px;
    width: 130px;
    height: 116px;
    transform: none;
  }

  .reason-item h3 br {
    display: none;
  }

  .reason-item h3 {
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .reason-item p {
    width: 170px;
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .reason-item-speed p,
  .reason-item-careful p {
    margin-left: auto;
  }

  .reason-item-speed p {
    width: 200px;
  }

  main > section.service:not(.hero) {
    padding: 83px 0 87px;
  }

  .service .section-inner {
    width: min(300px, calc(100% - 48px));
  }

  #service-title {
    font-size: 30px;
    line-height: 1.1;
  }

  .service .section-subtitle {
    margin-top: 6px;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 68px;
    margin-top: 42px;
  }

  .service-item {
    text-align: center;
  }

  .service-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: auto;
    padding-left: 0;
  }

  .service-item::after {
    top: 109px;
  }

  .service-icon {
    width: 43px;
    height: 43px;
    margin: 0 auto;
  }

  .service-item h3,
  .service-title-lines {
    justify-content: center;
    align-items: center;
    min-height: 48px;
    margin: 0;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.09em;
    text-align: center;
  }

  .service-title-lines {
    gap: 4px;
  }

  .service-title-lines p {
    line-height: 1.2;
  }

  .service-item > p {
    margin-top: 23px;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0;
    text-align: left;
  }

  main > section.concerns:not(.hero) {
    padding: 76px 0 35px;
  }

  .concerns .section-inner {
    width: calc(100% - 32px);
  }

  .concerns-title-bracket {
    gap: 0;
    padding: 0 14px;
  }

  .concerns-title-bracket::before,
  .concerns-title-bracket::after {
    font-size: 25px;
  }

  .concerns-title-bracket::before {
    top: 0px;
    left: -14px;
  }

  .concerns-title-bracket::after {
    right: -14px;
    bottom: 0px;
  }

  .concerns-title-accent {
    font-size: 26px;
    line-height: 0.6;
  }

  .concerns-title-accent::before {
    top: -17px;
    width: 58px;
    height: 7px;
    background-size: 21px 7px;
    background-image: radial-gradient(
      circle,
      var(--accent-blue) 0 3px,
      transparent 3.5px
    );
  }

  .concerns-layout {
    min-height: 0;
    margin-top: 48px;
  }

  .concern-groups {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .concern-group {
    display: flex;
    justify-content: center;
    width: min(100%, 345px);
  }

  .concern-group-man {
    align-items: flex-start;
    gap: 12px;
    padding-right: 0;
  }

  .concern-group-woman {
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
  }

  .concern-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .concern-list-man {
    gap: 15px;
    width: 235px;
  }

  .concern-list-woman {
    gap: 15px;
    width: 205px;
  }

  .concern-list-woman .concern-item {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 10.8px;
  }

  .concern-item {
    position: static;
    min-height: 40px;
    padding: 10px 18px;
    font-size: 11.5px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    border-radius: 16px 16px 0 16px;
    box-shadow: 0 3px 0 var(--concern-shadow);
  }

  .concern-item-heritage {
    width: 190px;
    min-width: 190px;
  }

  .concern-item-neighbor {
    width: 235px;
    min-width: 235px;
    border-radius: 24px 0 24px 24px;
  }

  .concern-item-marker {
    width: 164px;
    min-width: 164px;
  }

  .concern-item-crossing {
    width: 190px;
    min-width: 0;
  }

  .concern-item-survey {
    width: 205px;
    min-width: 0;
  }

  .concern-item-marker {
    border-radius: 24px 0 24px 24px;
  }

  .concern-item-crossing {
    border-radius: 24px 24px 24px 0;
  }

  .concern-item-survey {
    border-radius: 0 24px 24px 24px;
  }

  .concern-person-man {
    position: static;
    width: 68px;
  }

  .concern-person-woman {
    position: static;
    width: 68px;
  }

  main > section.lead:not(.hero) {
    min-height: 332px;
    padding: 60px 0 30px;
    background-position: center bottom;
  }

  .lead .section-inner {
    width: calc(100% - 60px);
    min-height: 284px;
  }

  .lead-content {
    width: min(100%, 320px);
    margin-left: 0;
  }

  .lead h2 {
    max-width: none;
    font-size: 21px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
  }

  .lead p {
    margin-top: 19px;
    max-width: 290px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .lead-button {
    gap: 17px;
    /* width: min(229px, 100%); */
    min-height: 42px;
    margin-top: 29px;
    margin-left: 0;
    padding: 9px 12px 9px 27px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.22em;
    box-shadow: none;
  }

  .lead-button img {
    width: 26px;
    height: 26px;
  }

  .lead-instrument {
    right: -10px;
    bottom: -31px;
    left: auto;
    z-index: 0;
    width: 124px;
  }

  main > section.price:not(.hero) {
    padding: 0;
    /* iOS Safari は background-attachment: fixed + cover で背景が巨大化し拡大表示される不具合があるため、SP では scroll に変更 */
    background:
      linear-gradient(var(--price-overlay), var(--price-overlay)),
      url("../images/price-bg-office.webp") center center / cover scroll no-repeat;
  }

  .price .section-inner {
    width: 100%;
    padding: 60px 0 100px;
  }

  #price-title {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .price .section-subtitle {
    margin-top: 10px;
    line-height: 1.35;
  }

  .price-card {
    width: min(746px, calc(100% - 62px));
    margin: 84px auto 0;
    padding: 88px min(13.6vw, 104px) 58px;
    border-radius: 24px;
    box-shadow: none;
  }

  .price-group {
    display: block;
  }

  .price-group + .price-group {
    margin-top: 56px;
  }

  .price-detail h3 {
    padding-bottom: 13px;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: 0.07em;
    border-bottom-width: 2px;
  }

  .price-card dl {
    gap: 12px;
    margin-top: 28px;
  }

  .price-card dl div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: 18px;
  }

  .price-card dt {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .price-card dd {
    font-size: 14px;
    line-height: 1.08;
    letter-spacing: 0.03em;
  }

  .price-amount-number {
    font-size: 20px;
  }

  .price-amount-unit {
    font-size: 14px;
  }

  .price-visual {
    min-height: 0;
    margin-top: 82px;
  }

  .price-group:nth-of-type(1) .price-visual,
  .price-group:nth-of-type(2) .price-visual,
  .price-group:nth-of-type(3) .price-visual {
    display: none;
  }

  .price-sp-visual {
    display: flex;
    justify-content: center;
    margin-top: 82px;
  }

  .price-sp-visual img {
    width: min(100%, 590px);
    object-fit: contain;
  }

  .price-note {
    margin-top: 48px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }

  main > section.office:not(.hero) {
    padding: 88px 0 104px;
    background: #fff;
  }

  .office .section-inner,
  .profile .section-inner {
    width: min(526px, calc(100% - 48px));
  }

  .office-grid {
    display: block;
  }

  .office-heading {
    gap: 18px;
  }

  #office-title {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.08em;
    word-break: normal;
  }

  .office .section-subtitle {
    line-height: 1.35;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .office-name {
    margin-top: 40px;
    width: min(100%, 320px);
  }

  .office address {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
  }

  .office-map {
    margin-top: 28px;
    aspect-ratio: 502 / 218;
  }

  main > section.profile:not(.hero) {
    padding: 62px 0 86px;
    background: var(--profile-bg);
  }

  .profile-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .profile-text {
    display: contents;
  }

  .profile-heading {
    order: 1;
    gap: 24px;
    align-items: baseline;
    width: 100%;
  }

  #profile-title {
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .profile-en {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.26em;
  }

  .profile-image {
    order: 2;
    width: 100%;
    margin-top: 38px;
    border-radius: 20px;
  }

  .profile-image img {
    aspect-ratio: 526 / 361;
    border-radius: 20px;
  }

  .profile-body {
    order: 3;
    gap: 35px;
    margin-top: 68px;
  }

  .profile-body p {
    font-size: 16px;
    line-height: 2.15;
    letter-spacing: 0.04em;
  }

  main > section.contact:not(.hero) {
    min-height: 96.6921vw;
    background-image: url("../images/contact-bg-sp.webp");
    background-position: center center;
  }

  .contact-inner {
    min-height: 96.6921vw;
    padding: 9.9237vw 0 9.9237vw;
    align-items: flex-start;
  }

  .contact-content {
    width: 100%;
    gap: 5.598vw;
  }

  .contact-copy {
    width: 100%;
    padding: 0 5.3435vw;
    gap: 3.0534vw;
  }

  .contact h2 {
    font-size: 5.598vw;
    line-height: 9.1603vw;
    letter-spacing: 0.5089vw;
  }

  .contact-lead {
    font-size: 3.5623vw;
    line-height: 6.1069vw;
  }

  .contact-lead > span {
    min-width: 0;
    max-width: 100%;
  }

  .contact-pc-inline,
  .contact-label-pc {
    display: none;
  }

  .contact-sp-line,
  .contact-label-sp {
    display: block;
  }

  .contact-actions {
    width: 89.313vw;
    max-width: calc(100% - 10.687vw);
    height: 40.7125vw;
    padding: 0 7.888vw;
    flex-direction: column;
    gap: 5.0891vw;
    border-radius: 5.0891vw;
  }

  .contact-tel {
    gap: 2.5445vw;
    font-family: var(--font-ja);
    font-size: 7.0891vw;
    letter-spacing: 0.4071vw;
  }

  .contact-tel::before {
    width: 5.397vw;
    height: 5.397vw;
  }

  .contact-buttons {
    width: 65.6489vw;
    max-width: 100%;
    gap: 2.5445vw;
    justify-content: center;
  }

  .contact-button {
    width: 31.5522vw;
    flex: 0 0 31.5522vw;
    height: 9.6692vw;
    gap: 2.5445vw;
    padding: 0;
    font-size: 3.5623vw;
    letter-spacing: 0.285vw;
  }

  .contact-button-mail {
    width: 31.5522vw;
    min-width: 0;
    padding: 0 3.0534vw;
  }

  .contact-button-mail img {
    width: 5.0891vw;
    height: 4.0712vw;
  }

  .contact-button-line img {
    width: 5.3435vw;
    height: 5.0891vw;
  }
}

/* ========================================
  Responsive 420px-560px / Lead余白調整
======================================== */

@media (min-width: 420px) and (max-width: 560px) {
  .lead .section-inner {
    width: 360px;
  }
}

/* ========================================
  Responsive <= 560px / Lead本文改行
======================================== */

@media (max-width: 560px) {
  .lead-text-break {
    display: inline;
  }
}

/* ========================================
  Responsive <= 480px / Price SP幅固定調整
======================================== */

@media (max-width: 480px) {
  .price .section-inner {
    padding-top: 60px;
  }

  .price-card {
    width: calc(100% - 62px);
    margin-top: 40px;
    padding: 48px 30px 20px;
  }

  .price-group + .price-group {
    margin-top: 40px;
  }

  .price-detail h3 {
    font-size: 20px;
  }

  .price-card dl {
    gap: 8px;
    margin-top: 16px;
  }

  .price-card dl div {
    column-gap: 8px;
  }

  .price-sp-visual {
    margin-top: 30px;
  }

  .price-note {
    margin-top: 20px;
    font-size: 10px;
    line-height: 1.65;
  }
}

/* ========================================
  Responsive <= 378px / Flow SP狭幅調整
======================================== */

@media (max-width: 378px) {
  .flow .section-inner {
    width: calc(100% - 32px);
  }

  .flow-list li {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
  }

  .flow-icon-wrap {
    width: 96px;
    height: 96px;
  }

  .flow-icon-wrap img {
    width: 50px;
    height: 60px;
  }

  .flow-list li:nth-child(4) .flow-icon-wrap img {
    width: 56px;
    height: 68px;
  }

  .flow-number {
    right: -18px;
    font-size: 42px;
  }

  .flow-text h3 {
    font-size: 20px;
  }

  .flow-text p {
    font-size: 14px;
  }
}

/* ========================================
  Responsive <= 378px / Reason SP狭幅イラスト調整
======================================== */

@media (max-width: 378px) {
  .reason-item {
    overflow: visible;
  }

  .reason-item-speed .reason-illustration {
    bottom: 0;
    left: -20px;
    width: 64px;
    height: 126px;
  }

  .reason-item-realestate .reason-illustration {
    right: -20px;
    bottom: 25px;
    width: 92px;
    height: 53px;
  }

  .reason-item-careful .reason-illustration {
    bottom: 0;
    left: -20px;
    width: 94px;
    height: 84px;
  }
}

/* ========================================
  Responsive <= 378px / Profile見出し狭幅調整
======================================== */

@media (max-width: 378px) {
  .profile-heading {
    gap: 16px;
  }

  #profile-title {
    font-size: 22px;
  }

  .profile-en {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
}

/* ========================================
  Responsive <= 559px / Lead見出し改行
======================================== */

@media (max-width: 559px) {
  .lead-title-break {
    display: inline;
  }
}

/* ========================================
  Responsive 560px-899px / Lead余白調整
======================================== */

@media (min-width: 560px) and (max-width: 899px) {
  .lead .section-inner {
    width: 500px;
  }

  .lead-content {
    width: 430px;
  }

  .lead h2 {
    max-width: none;
    white-space: nowrap;
  }

  .lead p {
    max-width: none;
    white-space: nowrap;
  }
}

/* ========================================
  Responsive 640px-899px / Serviceを3列2段に調整
======================================== */

@media (min-width: 640px) and (max-width: 899px) {
  .service .section-inner {
    width: min(620px, calc(100% - 48px));
  }

  .service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 68px;
  }
}

/* ========================================
  Responsive 768px-899px / タブレット縦専用調整
======================================== */

@media (min-width: 768px) and (max-width: 899px) {
  .flow-text br {
    display: none;
  }

  .hero {
    --hero-sky-left: 66.1578vw;
    --hero-sky-height: 680px;
    --hero-image-height: 680px;
    --hero-copy-top: 504px;
    --hero-copy-width: min(720px, 100%);
    --hero-copy-height: 178px;
    min-height: 760px;
  }

  .hero-copy {
    padding: 28px 40px 24px;
  }

  .hero-copy h1 {
    font-size: 54px;
    line-height: 56px;
  }

  .hero-copy p {
    font-size: 20px;
  }
}

/* ========================================
  Responsive 768px-899px / タブレット縦のFV背景調整
======================================== */

@media (min-width: 768px) and (max-width: 899px) {
  .hero {
    --hero-copy-height: 206px;
  }
}

/* ========================================
  Responsive <= 767px / SP幅固有調整
======================================== */

@media (max-width: 767px) {
  .concerns h2 {
    font-size: clamp(13px, 3.8vw, 15px);
  }

  .concerns-title-accent {
    font-size: clamp(23px, 6.6vw, 26px);
  }
}

/* ========================================
  Responsive 768px-1439px / お悩みPC基準を画面幅に合わせて縮小
======================================== */

@media (min-width: 768px) and (max-width: 1439px) {
  main > section.concerns:not(.hero) {
    padding: 7.7083vw 0 0;
  }

  .concerns .section-inner {
    width: 80.1389vw;
  }

  .concerns h2 {
    font-size: 2.1528vw;
  }

  .concerns-title-bracket {
    gap: 0.2778vw;
    padding: 0 2.3611vw;
  }

  .concerns-title-bracket::before,
  .concerns-title-bracket::after {
    font-size: 2.7083vw;
  }

  .concerns-title-bracket::before {
    top: -0.6944vw;
    left: -0.6944vw;
  }

  .concerns-title-bracket::after {
    right: -0.6944vw;
    bottom: -0.6944vw;
  }

  .concerns-title-accent {
    font-size: 2.7778vw;
  }

  .concerns-title-accent::before {
    top: -1.1111vw;
    width: 5.2778vw;
    height: 0.625vw;
    background-size: 1.9444vw 0.625vw;
  }

  .concerns-layout {
    min-height: 28.8889vw;
    margin-top: 3.4722vw;
  }

  .concern-groups,
  .concern-group,
  .concern-list {
    display: block;
    width: auto;
    transform: none;
  }

  .concern-item {
    position: absolute;
    min-height: 5vw;
    padding: 1.25vw 2.1528vw;
    font-size: 1.25vw;
    border-radius: 2.0833vw 2.0833vw 0 2.0833vw;
    box-shadow: 0 0.2778vw 0 var(--concern-shadow);
  }

  .concern-item-heritage {
    top: 0.3472vw;
    left: 23.0556vw;
    min-width: 18.75vw;
    border-radius: 2.0833vw 2.0833vw 0 2.0833vw;
  }

  .concern-item-neighbor {
    top: 8.4028vw;
    left: 2.7778vw;
    min-width: 22.2917vw;
  }

  .concern-item-marker {
    top: 16.7361vw;
    left: 10.9028vw;
    min-width: 16.3194vw;
    border-radius: 2.0833vw 0 2.0833vw 2.0833vw;
  }

  .concern-item-crossing {
    top: 2.9861vw;
    right: auto;
    left: 49.2361vw;
    min-width: 18.75vw;
    border-radius: 2.0833vw 2.0833vw 2.0833vw 0;
  }

  .concern-item-survey {
    top: 13.8194vw;
    right: auto;
    left: 52.3611vw;
    min-width: 27.7778vw;
    border-radius: 0 2.0833vw 2.0833vw 2.0833vw;
  }

  .concern-person-man {
    position: absolute;
    bottom: 0;
    left: 28.4722vw;
    width: 9.0278vw;
  }

  .concern-person-woman {
    position: absolute;
    bottom: 0;
    left: 38.8889vw;
    width: 8.3333vw;
  }
}

/* ========================================
  Responsive 768px-899px / お悩みPC配置時の人物重なり補正
======================================== */

@media (min-width: 768px) and (max-width: 899px) {
  .concerns-title-accent::before {
    top: -1.65vw;
  }

  .concern-item-heritage {
    left: 21.5vw;
  }

  .concern-item-neighbor {
    left: 0;
  }

  .concern-item-marker {
    left: 4.5vw;
  }

  .concern-item-crossing {
    left: 50.5vw;
  }

  .concern-item-survey {
    left: 50.5vw;
  }

  .concern-person-man,
  .concern-person-woman {
    z-index: 3;
  }
}
