/* ===========================
   ページヒーローセクション
   =========================== */
.hero {
  position: relative;
  height: 308px;
  margin-top: 40px;
}

.hero__image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: max(60px, calc(50% - 540px));
  border-radius: 354px 0 0 0;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__text {
  position: absolute;
  bottom: 24px;
  left: max(60px, calc(50% - 540px));
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero__badge {
  background: var(--white);
  display: inline-block;
}

.hero__badge--title {
  padding: 8px 20px;
}

.hero__badge--code {
  padding: 5px 20px;
}

.hero__badge-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'M PLUS 1', sans-serif;
  line-height: 1.3;
  white-space: nowrap;
}

.hero__badge-code {
  font-size: 36px;
  font-weight: 400;
  color: var(--cyan);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
  white-space: nowrap;
}

/* ===========================
   レスポンシブ
   =========================== */
@media (max-width: 1100px) {
  .hero {
    height: 260px;
    margin-top: 24px;
  }

  .hero__image-container {
    border-radius: 200px 0 0 0;
  }

  .hero__badge-title {
    font-size: 24px;
  }

  .hero__badge-code {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .hero__image-container {
    left: 20px;
    border-radius: 100px 0 0 0;
  }

  .hero__text {
    left: 20px;
    padding-left: 0;
    bottom: 16px;
    gap: 4px;
  }

  .hero {
    height: 200px;
    margin-top: 16px;
  }

  .hero__badge--title {
    padding: 6px 12px;
  }

  .hero__badge--code {
    padding: 4px 12px;
  }

  .hero__badge-title {
    font-size: 18px;
  }

  .hero__badge-code {
    font-size: 22px;
  }
}
