.service-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 4vw, 56px) clamp(64px, 8vw, 120px);
  max-width: 1520px;
  margin: 0 auto;
}
.service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.service-hero__title {
  margin: 0;
  font-size: clamp(54px, 7.4vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}
.service-hero__text {
  margin: 0;
  max-width: 560px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.service-hero__art {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1/1;
  justify-self: center;
}
.service-hero__sun {
  position: absolute;
  left: 8%;
  top: 8%;
  width: 84%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F6B93B;
  transform: translate3d(calc(var(--mx, 0) * 16px), calc(var(--my, 0) * 16px), 0);
}
.service-hero__num {
  position: absolute;
  left: 24%;
  top: 24%;
  width: 52%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(calc(var(--mx, 0) * 34px), calc(var(--my, 0) * 34px), 0);
}
.service-hero__num > div {
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #2B1610;
}
.service-hero__arch {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: 40%;
  aspect-ratio: 2/1;
  border-radius: 999px 999px 0 0;
  background: #F4A6B7;
  transform: translate3d(calc(var(--mx, 0) * -46px), calc(var(--my, 0) * -46px), 0);
}
.service-hero__square {
  position: absolute;
  right: 2%;
  top: 4%;
  width: 18%;
  aspect-ratio: 1/1;
  background: #1F4A38;
  transform: translate3d(calc(var(--mx, 0) * 70px), calc(var(--my, 0) * 70px), 0) rotate(calc(14deg + var(--sy, 0) * 0.2deg));
}
.service-hero__ring {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 26%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid #2B1610;
  transform: translate3d(calc(var(--mx, 0) * -60px), calc(var(--my, 0) * -60px), 0);
}

.scope {
  padding: 0 clamp(20px, 4vw, 56px) clamp(80px, 10vw, 150px);
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.scope__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
}
.scope__card {
  border: 2px solid;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: transform 0.4s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.scope__card:hover {
  transform: translateY(-8px) rotate(-1deg);
}
.scope__card--0 {
  background: #F6B93B;
  color: #2B1610;
  border-color: #F6B93B;
}
.scope__card--1 {
  background: #F4A6B7;
  color: #2B1610;
  border-color: #F4A6B7;
}
.scope__card--2 {
  background: #1F4A38;
  color: #F7EEE1;
  border-color: #1F4A38;
}
.scope__card--3 {
  background: #FFFFFF;
  color: #2B1610;
  border-color: #2B1610;
}
.scope__card--4 {
  background: #E8542C;
  color: #F7EEE1;
  border-color: #E8542C;
}
.scope__card--5 {
  background: #F7EEE1;
  color: #2B1610;
  border-color: #2B1610;
}
.scope__card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.scope__card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}
.scope__num {
  font-size: 16px;
  font-weight: 700;
}

.approach {
  background: #1F4A38;
  color: #F7EEE1;
  border-radius: clamp(32px, 5vw, 72px);
  margin: 0 clamp(8px, 1.5vw, 20px);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.approach__ring {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 3px solid #F6B93B;
  transform: translate3d(calc(var(--mx, 0) * 30px), calc(var(--my, 0) * 30px), 0);
}
.approach__inner {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
}
.approach__accent {
  color: #F6B93B;
}
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 40px 28px;
}
.approach__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 2px solid #F7EEE1;
  padding-top: 24px;
}
.approach__step h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.approach__step p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}
.approach__num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: #F6B93B;
}

.others {
  padding: 0 clamp(20px, 4vw, 56px) clamp(80px, 10vw, 140px);
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.others__title {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.04em;
  font-weight: 800;
}
.others__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.others__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid #2B1610;
  font-size: 17px;
  font-weight: 600;
  transition: transform 0.2s;
}
.others__link:hover {
  background: #F6B93B;
  color: #2B1610;
  transform: translateY(-2px) rotate(-1deg);
}

/*# sourceMappingURL=service-4cf5bc59be.output.css.map */
