/* =========================
   섹션 기본
========================= */
.startup_expense_intro{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
}


/* =========================
   배경
========================= */
.startup_expense_bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

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


/* =========================
   중앙 컨텐츠 영역
========================= */
.startup_expense_block{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:100px 20px;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:60px;
}


/* =========================
   이미지 공통
========================= */
.startup_expense_img{
  width:100%;
  max-width:1000px;
  height:auto;
  display:block;
}


/* =========================
   등장 애니메이션
========================= */
.fadeUp2{
  opacity:0;
  transform:translateY(60px);
  transition:all 1s ease;
}

.fadeUp2.show{
  opacity:1;
  transform:translateY(0);
}