/* ========================================
   Return Hero Section Styles
======================================== */
.return-hero {
  position: relative;
  padding: 15px 0 80px 0;
  overflow: hidden;
  background-color: #FEFCF9;
}

.return-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 20px;
  /* 左のみpadding、右は画像がはみ出す */
  display: flex;
  align-items: center;
  position: relative;
}

/* Left Content Area */
.return-hero-content {
  flex: 0 0 450px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
  position: relative;
}

.return-hero-text {
  display: flex;
  flex-direction: column;
}

/* Hero Heading */
.return-hero-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: var(--color-text-primary);
  letter-spacing: 0.13px;
}

.return-hero-heading-line {
  display: block;
  white-space: nowrap;
}

/* Badge with Icon */
.return-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: var(--color-bg-white);
  border: 2px solid var(--color-border-primary);
  border-radius: 8px;
  padding: 4px 12px;
  vertical-align: middle;
}

.return-hero-badge-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.return-hero-badge-text {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}

/* Description */
.return-hero-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0;
}

/* Right Image Area */
.return-hero-images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.return-hero-images img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design - Return Hero Section */

/* フォントサイズ調整 - 中間サイズ (1024px以下) */
@media (max-width: 1024px) {
  .return-hero-heading {
    font-size: 36px;
  }

  .return-hero-badge-text {
    font-size: 36px;
  }

  .return-hero-badge-icon {
    width: 26px;
    height: 26px;
  }

  .return-hero-description {
    font-size: 16px;
  }

  .return-hero-images {
    margin-right: -7%;
  }
}

/* レイアウト調整 + フォントサイズ小 (768px以下) */
@media (max-width: 768px) {
  .return-hero {
    padding: 40px 0;
  }

  .return-hero-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .return-hero-content {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }

  .return-hero-heading {
    font-size: 26px;
  }

  .return-hero-badge {
    margin-left: 0;
    padding: 4px 8px;
  }

  .return-hero-badge-text {
    font-size: 26px;
  }

  .return-hero-badge-icon {
    width: 24px;
    height: 24px;
  }

  .return-hero-description {
    font-size: 14px;
  }

  .return-hero-images {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .return-hero-images img {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .return-hero-heading {
    font-size: 22px;
  }

  .return-hero-badge-text {
    font-size: 22px;
  }
}
