@charset "utf-8";

#shSub {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  margin: 0 auto;
  background: url(./sub_bg.jpg) center no-repeat;
  background-size: cover;
  font-family: var(--e-font), var(--k-font);
}
#shSub .txt_area {
  padding-top: 40px;
  color: #fff;
  text-align: center;
}
#shSub .txt_area p {
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 500;
  font-family: var(--e-font);
}
#shSub .txt_area div {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
#shSub .txt_area div a {
  color: #fff;
}
#shSub .txt_area div i {
  margin: 0 20px;
  font-size: 14px;
}

/* 반응형 [s] */
@media (max-width: 1024px) {
  #shSub {
    height: 380px;
  }
  #shSub .txt_area {
    padding-top: 0px;
  }
  #shSub .txt_area p {
    margin-bottom: 12px;
    font-size: 32px;
  }
  #shSub .txt_area div {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #shSub {
    height: 345px;
  }
  #shSub .txt_area p {
    margin-top: 10px;
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  #shSub {
    height: 55px;
    background: none;
    border-bottom: 1px solid #e1e1e1;
  }
  #shSub .txt_area p {
    font-size: 16px;
    margin: 0px;
    color: #000;
  }
  #shSub .txt_area div {
    display: none;
  }
}
/* 반응형 [e] */
