/* =========================================================
지원자격 RE_CA0000V
========================================================= */

.main-title--PR {
  background-image: url('/resources/front/images/contents/hero_title_PR_pc.svg');

  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;

  max-width: 115rem;
  width: 100%;
  height: 13.1rem;
}

/* hero 오브젝트 */
/* ===========================================================
main.css랑 공통, 위치 다르면 부모클래스 추가 modifier
============================================================== */
.bg-objects--sub03 .hero__obj--spring {
  background-image: url('/resources/front/images/common/hero__object-PR-01.png');
  /* top: clamp(-10rem, -4.5vw, -5rem); */
  left: 23%;
}
.bg-objects--sub03 .hero__obj--doughnut {
  background-image: url('/resources/front/images/common/hero__object-PR-02.png');
  width: clamp(13.2rem, 11.8vw, 23.9rem);
  right: clamp(-7rem, -2.8vw, -5rem);
}
.bg-objects--sub03 .hero__obj--flower {
  background-image: url('/resources/front/images/common/hero__object-PR-03.png');
  width: clamp(20.4rem, 18vw, 36rem);
  right: 13%;
  bottom: clamp(-12rem, -5vw, -7rem);
}
.bg-objects--sub03 .hero__obj--blur {
  background-image: url('/resources/front/images/common/hero__object-PR-04.png');
  width: clamp(10.4rem, 13vw, 26rem);
  bottom: 22%;
}

@media screen and (max-width: 767px) {
  .main-title--PR {
    background-image: url('/resources/front/images/contents/hero_title_PR_mo.svg');

    max-width: 24.8rem;
    height: 10.8rem;
  }

  .bg-objects--sub03 .hero__obj--spring {
    left: 17.5rem;
  }
  .bg-objects--sub03 .hero__obj--doughnut {
    width: clamp(13.2rem, 15vw, 23.9rem);
    right: -7rem;
  }
  
  /* [수정] 20260710 : 오브젝트 크기 조정 */
  .bg-objects--sub03 .hero__obj--flower {
    width: clamp(18rem, 48vw, 22rem);
    left: 31%;
  }
  /* //[수정] 20260710 : 오브젝트 크기 조정 */
  
  .bg-objects--sub03 .hero__obj--blur {
    bottom: 6rem;
  }
}

/* =========================================================
section01 .section--tmrbegin
========================================================= */

.tmrbegin-process {
  max-width: 122rem;
  margin: 0 auto 8rem auto;
}

/* 상단 스텝 원형 프로세스 */
.tmrbegin-step {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4.5rem;
}

.tmrbegin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20.8rem;
  height: 20.8rem;
  border-radius: 20rem;
  background-color: #01c1d6;
  color: #fff;
  text-align: center;
  position: relative;
  flex-shrink: 0;
  font-family: var(--font-family-point);
}

.tmrbegin-item--last {
  background-color: var(--color-surface-secondary, #150f96);
}

.step-num {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.step-label {
  font-size: var(--font-size-h4-pc, 2.6rem);
  line-height: 1.36;
}

/* 스텝 사이 화살표 */
.tmrbegin-item:not(:last-child)::after {
  content: '';
  background: url('/resources/front/images/common/icon_arrow--gray.svg') no-repeat
    center / 100% auto;
  position: absolute;
  right: -2.3rem;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
  width: 1.6rem;
  height: 1.6rem;
}

/* 하단 프로세스 상세 리스트 */
.tmrbegin-info-wrap {
  max-width: 122rem;
  margin: 0 auto;
}
.process-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-info__item {
  display: flex;
  align-items: flex-start;
  padding: 4.8rem 0 4rem 4rem;
  border-bottom: 1px solid #e2e8f0;
}
.process-info__item:first-child {
  padding-top: 0;
}
.process-info__num {
  color: #01c1d6;
  font-size: 2rem;
  padding-top: 0.2rem;
}
.process-info__num--navy {
  color: #150f96;
}

.process-info__title {
  font-family: var(--font-family-point);
  color: var(--color-text---color-text-title, #020618);
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  flex: 0 0 42.5rem;
  font-size: var(--font-size-h3-pc, 3rem);
}

.process-info__desc {
  color: var(--color-text-body, #1f2732);
  flex: 1;
  font-size: 2rem;
  line-height: 1.5;
  word-break: keep-all;
}

.process-info__desc strong {
  font-weight: 700;
  color: var(--color-text-strong, #020618);
}

/*
   태블릿 768px ~ 1199px
 */
@media (min-width: 768px) and (max-width: 1199px) {
  .tmrbegin-process {
    max-width: 96rem;
    width: 100%;
  }
  .tmrbegin-step {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }

  .process-info__item {
    flex-direction: column;
    gap: 0.8rem;
  }

  .process-info__title {
    flex: none;
  }
}

/* 
모바일 ~ 767px 
*/
@media screen and (max-width: 767px) {
  .tmrbegin-process {
    width: 100%;
    margin-bottom: 4.8rem;
    max-width: 32rem;
  }

  .tmrbegin-step {
    max-width: 29.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2.8rem;
    list-style: none;
    justify-items: center;
  }

  /* 스텝 사이 화살표 */
  .tmrbegin-item:not(:last-child)::after {
    right: -1.6rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .tmrbegin-item {
    max-width: 12.8rem;
    width: 100%;
    height: 12.8rem;
  }

  .step-num {
    font-size: 1.6rem;
  }

  .step-label {
    font-size: var(--font-size-h4-mo, 1.8rem);
  }

  /* 5번째 아이템 2열 가운데 */
  .tmrbegin-item:last-child {
    grid-column: 1 / -1;
    max-width: 12.8rem;
    width: 100%;
    height: 12.8rem;
  }

  /* 하단 상세 설명 */
  .process-info {
    min-width: 32rem;
    margin: 0 auto;
  }
  .process-info__item {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.4rem 0;
  }

  .process-info__title {
    flex: none;
    font-size: var(--font-size-h3-mo, 3rem);
    gap: 1.6rem;
  }
  .process-info__num {
    font-size: 1.6rem;
  }

  .process-info__desc {
    font-size: 1.7rem;
  }
}

/* =========================================================
section02 .section--faq
========================================================= */
.section--faq {
  background-color: #f0f5ff;
  padding: 16rem 4rem !important;
  margin-bottom: 0;
}
/* 
모바일 ~ 767px 
*/
@media screen and (max-width: 767px) {
  .section--faq {
    padding: 8rem 2rem !important;
  }
}

/*
   태블릿 768px ~ 1199px
 */
@media (min-width: 768px) and (max-width: 1199px) {
  .section--faq {
    padding: 16rem 4rem !important;
  }
}
