.exterior-hero {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--basewhite);
}

.exterior-hero__stage {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 796px;
  margin: 0 auto;
}

.exterior-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 1000px;
  height: 700px;
  overflow: hidden;
  border-bottom-left-radius: 60px;
}

.exterior-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exterior-hero__media::after {
  position: absolute;
  inset: 0;
  border-bottom-left-radius: 60px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
  content: "";
  pointer-events: none;
}

.exterior-hero__character {
  position: absolute;
  right: 150px;
  bottom: 0;
  z-index: 2;
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: top center;
}

.exterior-hero__content {
  position: absolute;
  top: 24px;
  left: 200px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 550px;
  gap: var(--size-space-1600);
}

.exterior-hero__copy,
.exterior-hero__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.exterior-hero__copy {
  gap: var(--size-space-800);
}

.exterior-hero__heading-group {
  gap: var(--size-space-100);
}

.exterior-hero__headline {
  margin: 0;
  color: #ff6f00;
  font-family: "Zen Kaku Gothic New", Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1.2;
}

.exterior-hero__headline-normal {
  color: #333333;
  letter-spacing: 3.6px;
}

.exterior-hero__headline-accent {
  color: #ff6f00;
  letter-spacing: 3.6px;
}

.exterior-hero__subhead {
  margin: 0;
  color: var(--baseblack);
  font-family: var(--h-2-font-family);
  font-size: var(--h-2-font-size);
  font-style: var(--h-2-font-style);
  font-weight: var(--h-2-font-weight);
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
}

.exterior-hero__body {
  margin: 0;
  color: var(--baseblack);
  font-family: var(--body-1-font-family);
  font-size: var(--body-1-font-size);
  font-style: var(--body-1-font-style);
  font-weight: var(--body-1-font-weight);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
}

.exterior-hero__point {
  display: block;
  max-width: 100%;
  height: auto;
}

.exterior-hero__points {
  display: flex;
  width: 100%;
  max-width: 508px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.exterior-hero__point-image {
  display: block;
  width: min(31.5%, 160px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.exterior-hero__button {
  box-sizing: border-box;
  display: inline-flex;
  min-width: 150px;
  max-width: 500px;
  height: 70px;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-300);
  padding: var(--size-space-400) var(--size-space-600);
  color: var(--basewhite);
  text-decoration: none;
  background-color: var(--themaprimary-700);
  border: 2px solid var(--themaprimary-400);
  border-radius: 99px;
  box-shadow: 0 5px 0 var(--themaprimary-400);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.exterior-hero__button:hover,
.exterior-hero__button:focus-visible {
  color: var(--basewhite);
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--themaprimary-400);
}

.exterior-hero__button-icon {
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.exterior-hero__button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--basewhite);
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-style: var(--button-font-style);
  font-weight: var(--button-font-weight);
  letter-spacing: var(--button-letter-spacing);
  line-height: var(--button-line-height);
  text-align: center;
}

@media (min-width: 1441px) {
  .exterior-hero__stage {
    max-width: none;
  }

  .exterior-hero__content {
    left: calc((100% - 1440px) / 2 + 200px);
  }
}

@media (max-width: 1280px) {
  .exterior-hero__stage {
    height: 700px;
  }

  .exterior-hero__media {
    top: 0;
    width: 820px;
    height: 620px;
  }

  .exterior-hero__character {
    right: 90px;
    width: 260px;
    height: 350px;
  }

  .exterior-hero__content {
    top: 20px;
    left: 60px;
    width: 500px;
    gap: var(--size-space-1200);
  }

  .exterior-hero__headline {
    font-size: 52px;
    letter-spacing: 4px;
  }

  .exterior-hero__subhead {
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  .exterior-hero__stage {
    height: auto;
    padding-bottom: 48px;
  }

  .exterior-hero__media {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    height: 360px;
    border-bottom-left-radius: 40px;
  }

  .exterior-hero__media::after {
    border-bottom-left-radius: 40px;
  }

  .exterior-hero__character {
    top: 40px;
    right: 16px;
    bottom: auto;
    width: 200px;
    height: 280px;
  }

  .exterior-hero__content {
    position: relative;
    top: 0;
    left: 0;
    width: calc(100% - 32px);
    margin: 24px auto 0;
    gap: var(--size-space-800);
  }

  .exterior-hero__copy {
    gap: var(--size-space-600);
  }

  .exterior-hero__headline {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .exterior-hero__subhead {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .exterior-hero__stage {
    height: 600px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .exterior-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    width: 290px;
    height: 203px;
    border-bottom-left-radius: 60px;
  }

  .exterior-hero__media::after {
    border-bottom-left-radius: 60px;
  }

  .exterior-hero__character {
    top: 17px;
    right: 16px;
    width: 141px;
    height: 187px;
  }

  .exterior-hero__content {
    position: absolute;
    top: 112px;
    left: 50%;
    align-items: center;
    width: min(342px, calc(100% - 32px));
    margin: 0;
    gap: var(--size-space-800);
    transform: translateX(-50%);
  }

  .exterior-hero__copy {
    gap: var(--size-space-400);
  }

  .exterior-hero__heading-group {
    gap: var(--size-space-100);
  }

  .exterior-hero__headline {
    width: 100%;
    font-size: 38px;
    letter-spacing: 3.8px;
    line-height: 1.2;
    text-shadow:
      2px 0 0 var(--basewhite),
      -2px 0 0 var(--basewhite),
      0 2px 0 var(--basewhite),
      0 -2px 0 var(--basewhite),
      2px 2px 0 var(--basewhite),
      -2px 2px 0 var(--basewhite),
      2px -2px 0 var(--basewhite),
      -2px -2px 0 var(--basewhite);
    white-space: nowrap;
  }

  .exterior-hero__headline-normal,
  .exterior-hero__headline-accent {
    letter-spacing: 3.8px;
  }

  .exterior-hero__subhead {
    width: 100%;
    font-size: 34px;
    letter-spacing: 1.7px;
    line-height: 1.6;
    text-shadow:
      2px 0 0 var(--basewhite),
      -2px 0 0 var(--basewhite),
      0 2px 0 var(--basewhite),
      0 -2px 0 var(--basewhite),
      2px 2px 0 var(--basewhite),
      -2px 2px 0 var(--basewhite),
      2px -2px 0 var(--basewhite),
      -2px -2px 0 var(--basewhite);
    white-space: nowrap;
  }

  .exterior-hero__body {
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
  }

  .exterior-hero__point {
    width: 100%;
  }

  .exterior-hero__points {
    max-width: 100%;
    gap: 10px;
  }

  .exterior-hero__point-image {
    width: min(31.5%, 108px);
  }

  .exterior-hero__button {
    width: auto;
    max-width: 100%;
    height: 70px;
    padding: var(--size-space-400) var(--size-space-600);
  }
}

@media (max-width: 400px) {
  .exterior-hero__content {
    width: calc(100% - 32px);
  }

  .exterior-hero__headline {
    white-space: normal;
  }

  .exterior-hero__button {
    padding-right: 20px;
    padding-left: 20px;
  }

  .exterior-hero__button-text {
    font-size: 18px;
    white-space: nowrap;
  }
}
