/* ============================================
   Download CTA Section - 資料ダウンロードCTA
   ============================================ */

.download-cta-section {
  width: 100%;
  padding: 80px 0;
}

/* Gradient Border Container - グラデーション枠線コンテナ */
.download-cta {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.download-cta__border {
  position: relative;
  background: var(--gradient-primary);
  border-radius: 30px;
  padding: 8px;
  overflow: hidden;
}

/* Inner Container - 内側コンテナ */
.download-cta__container {
  position: relative;
  background: var(--color-bg-white);
  border-radius: 22px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

/* Background Gradient Overlay */
.download-cta__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(246, 221, 215, 0.2) 48.974%, rgba(246, 215, 215, 0) 92.372%);
  pointer-events: none;
  z-index: 0;
}

/* Content Section - コンテンツセクション */
.download-cta__content {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.download-cta__title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-primary);
  margin: 0;
}

.download-cta__description {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin: 0;
  text-align: justify;
}

/* Download Button - ダウンロードボタン */
.download-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: 16px 32px;
  border-radius: 60px;
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 1px 19.9px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.download-cta__button:hover {
  background: var(--color-primary-hover);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.download-cta__button:active {
  transform: translateY(0);
  box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.2);
}

.download-cta__button-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Image Section - 画像セクション */
.download-cta__image {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-cta__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ============================================
   Responsive Design - レスポンシブデザイン
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .download-cta__container {
    padding: 40px;
    gap: 40px;
  }

  .download-cta__title {
    font-size: 28px;
  }

  .download-cta__description {
    font-size: 15px;
  }
}

/* Mobile - モバイル */
@media (max-width: 1024px) {
  .download-cta-section {
    padding: 60px 0;
  }

  .download-cta {
    padding: 0 16px;
  }

  .download-cta__container {
    flex-direction: column-reverse;
    padding: 32px;
    gap: 20px;
  }

  .download-cta__title {
    font-size: 24px;
  }

  .download-cta__description {
    font-size: 15px;
  }

  .download-cta__button {
    width: 268px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  .download-cta__image {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 1024px) {
  .download-cta__container {
    padding: 24px;
  }

  .download-cta__title {
    font-size: 20px;
  }

  .download-cta__description {
    font-size: 14px;
  }
}
