/* ====================================
        2025 studycafe
====================================*/

/* common */
.text_center {
  text-align: center;
}
.color_key {
  color: #07b53a !important;
}
.color_red {
  color: #fe3c3c !important;
}
.color_blue {
  color: #3987e9;
}
.color_mint {
  color: #0dab9b !important;
}
.color_orange {
  color: #ff5e24 !important;
}
.color_purple {
  color: #7f38ca !important;
}

.list_type_bar > li,
.list_type_dot > li {
  position: relative;
  padding-left: 15px;
}
.list_type_bar > li:before {
  display: block;
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 2px;
  background-color: #000;
}
.list_type_dot > li:before {
  display: block;
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: inherit;
}
.list_type_circle > li,
.list_type_info > li {
  display: flex;
  align-items: flex-start;
}
.list_type_circle > li > span {
  padding-right: 10px;
}
.list_type_info > li > span {
  display: inline-block;
  width: 16px;
  vertical-align: middle;
}
.list_type_info > li > span + div {
  width: calc(100% - 16px);
}
.list_type_check > li {
  position: relative;
  padding-left: 30px;
}
.list_type_check > li:before {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 22px;
  height: 18px;
  background-image: url("/img/suneung/recruit/2026_bs_jaesu_class/ico_check.png");
  background-repeat: no-repeat;
  background-position: top left;
}
.list_type_decimal {
  padding-left: 25px;
}
.list_type_decimal > li {
  display: list-item;
  list-style-type: decimal;
}

/* layout */
.container {
  overflow: unset;
  position: relative;
  max-width: unset;
}
.2025_studycafe_contents {
  overflow: hidden;
  min-width: 1200px;
}
.2025_studycafe_contents * {
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  box-sizing: border-box;
}
.2025_studycafe_contents .inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.studycafe_sec {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

@media screen and (max-width: 1200px) {
  .2025_studycafe_contents .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* float banner */
.float_banner {
	/* display: none; */
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 11;
}
.float_banner img {
	width: 120px;	
}
.float_banner a {
	display: block;
	animation: updown 1.5s linear infinite;
}
.float_banner a + a {
	top: 320px;
}
@keyframes updown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* section 1 */
.studycafe_sec_01 {
	text-align: center;
	background-color: #050400;
}

/* section 2 */
.studycafe_sec_02 {
	text-align: center;
	background-color: #050400;
	padding: 0 20px;
}

/* section 3 */
.studycafe_sec_03 {
	text-align: center;
	background-color: #fff;
	padding: 0 20px;
}

/* section 4 */
.studycafe_sec_04 {
	text-align: center;
	background-color: #FFDC00;
	padding: 0 20px;
}

/* section 5 */
.studycafe_sec_05 {
	text-align: center;
	background-color: #fff;
	padding: 0 20px;
}

/* section 6 */
.studycafe_sec_06 {
	text-align: center;
	background-color: #FFDC00;
	padding: 0 20px;
}

/* section 7 */
.studycafe_sec_07 {
	text-align: center;
	background-color: #1C2123;
}


/* modal */
body.ofh {
  overflow-y: hidden;
}
#dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal_contents {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10002;
  width: 1064px;
  max-height: 600px;
  padding: 80px;
  padding-right: 20px;
  border-radius: 40px;
  background-color: #fff;
}
.modal_wrap {
  overflow-y: scroll;
  max-height: 520px;
}
.modal_wrap::-webkit-scrollbar {
  width: 5px;
}
.modal_wrap::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 9px;
}
.modal_wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal_wrap .img_wrap {
  max-width: 904px;
}
.btn_modal_close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-image: url("/img/suneung/recruit/2026_bs_jaesu_class/ico_pop_close.png");
}

/* form */
.studycafe_sec_form {
  padding-top: 80px;
  padding-bottom: 0;
}