.about-approach {
  position: relative;
  background: #d8cdbd;
  color: #243831;
  padding: 125px 7vw 135px;
  overflow: hidden;
}
.approach-intro {
  display: grid;
  grid-template-columns: 15% 48% 37%;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(36, 56, 49, 0.16);
}
.approach-intro-index {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(36, 56, 49, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.approach-intro-index span:first-child {
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 0.7;
  color: #bd674f;
  letter-spacing: -0.05em;
}
.approach-intro-title > span {
  display: block;
  margin-bottom: 22px;
  color: #bd674f;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.approach-intro-title h2 {
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.08em;
}
.approach-intro-title h2 em {
  font-style: italic;
  color: #bd674f;
}
.approach-intro-copy {
  padding-left: 35px;
  padding-bottom: 4px;
}
.approach-intro-copy p {
  max-width: 280px;
  color: rgba(36, 56, 49, 0.55);
  font-size: 9px;
  line-height: 1.9;
}
.approach-visual {
  position: relative;
  height: 700px;
  margin-top: 85px;
}
.approach-image {
  position: absolute;
  overflow: hidden;
  background: #243831;
}
.approach-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.approach-image:hover img {
  transform: scale(1.05);
}
.approach-image span {
  position: absolute;
  left: 17px;
  bottom: 16px;
  z-index: 2;
  color: rgba(238, 230, 218, 0.76);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.approach-image-main {
  left: 5%;
  top: 0;
  width: 40%;
  height: 560px;
}
.approach-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(20, 35, 29, 0.5));
}
.approach-image-detail {
  right: 7%;
  top: 35px;
  width: 22%;
  height: 285px;
  transform: rotate(3deg);
  z-index: 3;
  box-shadow: 0 25px 55px rgba(36, 56, 49, 0.2);
}
.approach-image-portrait {
  left: 34%;
  bottom: 0;
  width: 28%;
  height: 330px;
  z-index: 4;
  border: 8px solid #eee6da;
  transform: rotate(-2deg);
  box-shadow: 0 20px 45px rgba(36, 56, 49, 0.18);
}
.approach-image-portrait::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(36, 56, 49, 0.22);
  z-index: -1;
}
.approach-circle {
  position: absolute;
  right: 7%;
  bottom: 35px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(36, 56, 49, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #d8cdbd;
  z-index: 5;
}
.approach-circle::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(189, 103, 79, 0.45);
  border-radius: 50%;
}
.approach-circle span {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.approach-circle strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: #bd674f;
  line-height: 1;
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(36, 56, 49, 0.18);
  border-bottom: 1px solid rgba(36, 56, 49, 0.18);
}
.approach-steps article {
  min-height: 205px;
  padding: 28px 28px 25px 0;
  border-right: 1px solid rgba(36, 56, 49, 0.16);
}
.approach-steps article + article {
  padding-left: 28px;
}
.approach-steps article:last-child {
  border-right: 0;
}
.approach-steps article > span {
  display: block;
  margin-bottom: 42px;
  color: #bd674f;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.approach-steps h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.approach-steps p {
  max-width: 210px;
  margin-top: 12px;
  color: rgba(36, 56, 49, 0.52);
  font-size: 7px;
  line-height: 1.8;
}
@media (max-width: 1050px) {
  .about-approach {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .approach-intro {
    grid-template-columns: 15% 52% 33%;
  }
  .approach-visual {
    height: 620px;
  }
  .approach-image-main {
    height: 500px;
  }
  .approach-image-detail {
    height: 250px;
  }
  .approach-image-portrait {
    height: 290px;
  }
  .approach-circle {
    width: 125px;
    height: 125px;
  }
  .approach-steps article {
    min-height: 190px;
  }
  .approach-steps h3 {
    font-size: 23px;
  }
}
@media (max-width: 760px) {
  .about-approach {
    padding: 85px 20px 95px;
  }
  .approach-intro {
    display: block;
    padding-bottom: 50px;
  }
  .approach-intro-index {
    flex-direction: row;
    align-items: center;
    margin-bottom: 45px;
    font-size: 5px;
  }
  .approach-intro-index span:first-child {
    font-size: 48px;
  }
  .approach-intro-copy {
    padding: 28px 0 0;
  }
  .approach-intro-copy p {
    font-size: 8px;
    max-width: 340px;
  }
  .approach-visual {
    height: 610px;
    margin-top: 55px;
  }
  .approach-image-main {
    left: 0;
    width: 66%;
    height: 470px;
  }
  .approach-image-detail {
    right: 2%;
    top: 20px;
    width: 32%;
    height: 210px;
  }
  .approach-image-portrait {
    left: 42%;
    bottom: 20px;
    width: 37%;
    height: 270px;
    border-width: 5px;
  }
  .approach-circle {
    right: 4%;
    bottom: 0;
    width: 105px;
    height: 105px;
  }
  .approach-circle strong {
    font-size: 32px;
  }
  .approach-steps {
    grid-template-columns: 1fr 1fr;
  }
  .approach-steps article {
    min-height: 180px;
    padding: 24px 20px 22px 0;
  }
  .approach-steps article + article {
    padding-left: 20px;
  }
  .approach-steps article:nth-child(2) {
    border-right: 0;
  }
  .approach-steps article:nth-child(3),
  .approach-steps article:nth-child(4) {
    border-top: 1px solid rgba(36, 56, 49, 0.16);
  }
  .approach-steps article > span {
    margin-bottom: 30px;
  }
  .approach-steps h3 {
    font-size: 22px;
  }
  .approach-steps p {
    font-size: 7px;
  }
}
@media (max-width: 480px) {
  .about-approach {
    padding-left: 15px;
    padding-right: 15px;
  }
  .approach-intro-title h2 {
    font-size: 55px;
  }
  .approach-visual {
    height: 520px;
  }
  .approach-image-main {
    width: 70%;
    height: 390px;
  }
  .approach-image-detail {
    width: 34%;
    height: 170px;
  }
  .approach-image-portrait {
    left: 38%;
    width: 42%;
    height: 220px;
  }
  .approach-circle {
    width: 85px;
    height: 85px;
  }
  .approach-circle span {
    font-size: 4px;
  }
  .approach-circle strong {
    font-size: 27px;
  }
  .approach-steps {
    grid-template-columns: 1fr;
  }
  .approach-steps article,
  .approach-steps article + article {
    padding: 22px 0;
    border-right: 0 !important;
  }
  .approach-steps article:nth-child(2),
  .approach-steps article:nth-child(3),
  .approach-steps article:nth-child(4) {
    border-top: 1px solid rgba(36, 56, 49, 0.16);
  }
  .approach-steps article > span {
    margin-bottom: 20px;
  }
}
