
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
* {
	box-sizing: border-box;
}

html,
body {

	
}

html {
	font-size: 24px;
	scroll-behavior: smooth; 
}
html { 
  font-family: "Pretendard", "Noto Sans KR", Apple SD Gothic Neo, "Malgun Gothic",
               system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body {
	font-size: 0.7rem;
	color: #333;
	line-height: 1;
	min-width: 320px;
	letter-spacing: -0.05em;
}

.white {
	background: #fff;
}

.viewr_white {
	background: #f9f9f9;
}


a {
	color: #333;
	text-decoration: none;
}
img {
	vertical-align: top;
	max-width:100%;
}

b{
	font-weight:600;
}

input,
select,
button,
textarea {
	font-family: 'Pretendard-Regular';
	display: inline-block;
	vertical-align: middle;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="image"],
input[type="tel"],
input[type="submit"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	border-radius:0;
	letter-spacing: -0.05em;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url(../images/select_down.png) no-repeat right 1.1rem center;
	background-size: 0.55rem;
	letter-spacing: -0.05em;
}

select::-ms-expand {
	display: none;
}

button {
	letter-spacing: -0.05em;
}

label{
	cursor:pointer;
    vertical-align: middle;
}


/* 체크박스 기본 디자인 */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #888;
    border-radius: 0px;
    background: #fff;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

/* 체크된 상태 */
input[type="checkbox"]:checked {
    background-color: #0000FF; /* 파란색 */
    border-color: #0000FF;
}

/* 체크 아이콘 (✔) */
input[type="checkbox"]:checked::after {
    content: '✔';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -55%); /* 정확히 중앙 정렬 */
}

/* 라디오 숨기고 커스텀 
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #666;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 2px;
    position: relative;
}

input[type="radio"]:checked {
    background-color: #0000FF; 
    border-color: #0000FF;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}
*/
/* 기본스타일을 없애고, 버튼모양을 구현한다.*/
input[type='radio'] {
  -webkit-appearance: none; /* 웹킷 브라우저에서 기본 스타일 제거*/
  -moz-appearance: none; /*모질라 브라우저에서 기본 스타일 제거 */
  appearance: none; /* 기본 브라우저에서 기본 스타일 제거*/
  width: 15px;
  height: 15px;
  border: 2px solid #ccc; /* 체크되지 않았을 때의 테두리 색상*/
  border-radius: 50%;
  outline: none; /* focus 시에 나타나는 기본 스타일 제거*/
  cursor: pointer;
    vertical-align: middle;
    margin-bottom: 2px;
}

/* 체크될 시에, 변화되는 스타일 설정*/
input[type='radio']:checked {
  background-color: #0000FF; /* 체크 시 내부 원으로 표시될 색상*/
  border: 3px solid white; /* 테두리가 아닌, 테두리와 원 사이의 색상*/
  box-shadow: 0 0 0 1.0px #0000FF; /* 얘가 테두리가 됨*/
  /* 그림자로 테두리를 직접 만들어야 함 (퍼지는 정도를 0으로 주면 테두리처럼 보입니다.)*/
  /* 그림자가 없으면 그냥 설정한 색상이 꽉 찬 원으로만 나옵니다.*/
}
.radio-list{
  padding-left: 25px;
  text-indent: -25px;
  padding-bottom:10px;
}
.radio-list label{
    vertical-align: middle;
  font-size:0.75rem;
  line-height:1.0;
}
.radio-list input[type='radio']{
    vertical-align: top;
}
.clear {
	clear: both;
}

.clear::after {
	content: "";
	display: block;
	clear: both;
}

.txt_hide {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	
}

.inner {
	max-width: 72rem;
	padding: 0 2.5rem;
	margin: 0 auto;
}

.inner2 {
	max-width: 40rem;
	padding: 0;
	margin: 0 auto;
	background:#fff;
	min-height:100vh;
}

.inner3 {
	max-width:82rem;
	min-width:76rem;
	padding: 0 1.5rem;
	margin: 0 auto;
}

.btn_04_1 {
	text-align: center;
	font-weight: 500;
	font-size: 0.9rem;
	color: #fff;
	background: #2ba1d3;/*등록페이지-로그인으로 이동*/
	border: 0;
	cursor: pointer;
	vertical-align: top;
	line-height: 1.2rem;
	white-space: normal;
	padding:0.5rem 1.0rem;
	margin:1rem auto ;
}
.btn_down{border:1px solid #5aa7dd; font-size:0.7rem; color:#5aa7dd; background:#fff;padding:0.3rem;margin:0 0.1rem;}

.btn_04 {
	display: inline-block;
	width: 12rem;
	height: 4rem;
	line-height: 3.8rem;
	text-align: center;
	font-weight: 500;
	font-size: 1.5rem;
	color: #fff;
	background: #90609a;/*웨비나 등록버튼 색상변경*/
	border: 0;
	border-radius: 0.6rem;
	cursor: pointer;
	vertical-align: middle;
}
.btn_reg_submit {
	display: inline-block;
	padding:0.6rem 2rem;
	text-align: center;
	font-weight: 500;
	font-size: 1.2rem;
	color: #fff;
	background: #bf0000;/*웨비나 등록버튼 색상변경*/
	border: 0;
	border-radius: 0.3rem;
	cursor: pointer;
	vertical-align: middle;
}
.color_red {
	color: #e6001d;
}
.color_green {
	color: #00702c;
}
.color_purple {
    color: #521778;
}
.color_purple2 {
    color: #9400D3;
}
.color_black {
	color: #010101;
}

.color_white {
	color: #ffffff;
}

.color_yellow {
	color: #ffde00;
}

.color_orange {
	color: #9a2c00;
}

.color_bv {
	color: #0050a0;
}

.col2 {
	float: left;
	width: 50% !important;
}
.lmar1{
	margin-left:1rem
}
.bold{
	font-weight:500;
}
.center{
	text-align:center;
}
.w100p{
	width:100%;
}
.section_title{
	display:block;
	text-align:center;
	width:100%;
	margin-bottom:1rem;
}
#header {
	
}

#header .logo {
	float: left;
	/*display: block;*/
	margin: 1.0rem 0 0 2.0rem;
}

#header .logo2 {
	float: right;
	/*display: block;*/
	margin:1rem 2rem 0rem 0rem;
}


#header_sub {
	/*웨비나 등록신청서 헤더색상변경*/
	background-size: cover;
	margin: 0rem auto;
	text-align:center;
}

#header_sub .top_title {
	margin: 0rem auto;
}
#header_sub .top_title p{
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	text-align: center;
	line-height: 150%;	
	padding-top: 1rem;
	padding-bottom:1rem;
}
#header_sub .top_title p span{
	color: #FFFF00;
	font-weight: 400;
	font-size: 1.8rem;
	font-weight: 600;
	text-shadow: 2px 2px 2px black;
}


/* 로그인 - index.php */

#login_main {
	
	

}

#login .l_bottom {
	width:100%;
	margin: 1rem auto;
	display:none;
	text-align:center;
	}

#login .l_bottom .logo_b{
	width:10rem;
	}
	
#login .con_wrap {
	background: url(../images/bg_2024ibs.png) no-repeat center ; 
	background-size: cover;
	margin: 2rem auto;
	padding:1rem 2rem 3rem 2rem;
	 font-family: 'GmarketSansMedium';
}



#login .main_title {
    
}

#login .main_title .element {
	width: 75%;	
	margin: 0 auto;
	padding-top: 5rem;
	text-align: left;
	word-break:keep-all;
	
	}

#login .main_title .element p.GradientBg{
	font-size: 2.0rem;
	padding:1rem 1rem 0.5rem 1rem;
	margin-bottom:1.5rem;
	font-weight: 500;
	text-align: center;
	color: #fff;
	width:15rem;
	border-top-right-radius:1rem;
	text-shadow: 2px 2px 3px rgb(32,32,32,0.2);
	background: #0072A9;
	
	}
#login .main_title .element p.colorFont{
	font-family: 'GmarketSansBold';
	color:#0072A9;
	font-weight:700;
	font-size:3.2rem;
}
#login .main_title .element p span{
	font-size: 3.2rem;
	color: #002D73;
	font-weight: 700;
	}

#login .main_title .element2 {
	float: right;
	width: calc(100% - 19.5rem);
	height: 4.0rem;
	background: url(../images/title02.png) no-repeat left;
	background-size: 25.00rem;
	margin: 0 auto;
	text-align: center;
	margin-left: 1.0rem;
}



#login .left_con {
	position:relative;
	padding-top: 0rem;
	width:100%;
	margin: 0 auto;
	text-align:left;
	
}

#login .left_con .main_top_info {
	display: none;
	margin-bottom: 3rem;
}
/*-------------top_list ----------------*/
#login .top_list {
	padding: 2rem 0rem 0rem 2.5rem;
	width:75%;
	margin: 0 auto;

}

#login .top_list dl {
	padding-bottom: 0.7rem;
}

#login .top_list dl:last-child {
	padding-bottom: 0;
}

#login .top_list dt,
#login .top_list dd {
	display: inline;
	vertical-align: middle;
	 font-family: 'KoPubDotumMedium';
}
#login .top_list dt img{
vertical-align: middle;

}
#login .top_list dt {
	font-size: 1.4rem;
	color: #003C73;
	font-weight: 600;
	line-height: 1.2rem;
	

}

/*#login .top_list dt::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 0.9rem;
	background: #121212;
	vertical-align: middle;
	margin: 0 0.4rem 0 0.75rem;
	line-height: 1.2rem;
}
*/
#login .top_list dd {
	width: calc(100% - 9rem);
	font-size: 1.7rem;
	color: #fff;
	line-height: 1.9rem;
}

#login .top_list dd span {
	font-weight:600;
	font-size: 1.7rem;
	line-height: 1.8rem;
}

/*-----------------------------*/



#login .right_con {
	position:relative;
	width:75%;
	height:100%;
	margin: 2rem auto;

}


#login .right_con .white_box {
    background-color:rgba(255,255,255,0.8); 
	width:100%;
	border-radius: 1.4rem;
	padding: 2.35rem 2rem;
	box-shadow:0px 0px 5px rgb(35,35,35,0.5);
}

#login .right_con .white_box .form_list > ul {
	float: left;
	width: calc(100% - 16.8rem);
}

#login .right_con .white_box .form_list > ul li {
	margin-bottom: 0.5rem;
}

#login .right_con .white_box .form_list > ul li:last-child {
	margin-bottom: 0;
}

#login .right_con .white_box .form_list > .btn_02 {
	position:relative;
	margin-left: 0.6rem;
	 border-radius:0.5rem;
}
#login .right_con .white_box .form_list a > .btn_02-1 {
	
	 border-radius:0.5rem;
}
#login .right_con .white_box .form_list .title {
	width: 4.1rem;
	display: block;
	float: left;
	font-weight: 500;
	font-size: 1rem;
	color: #000;
	line-height: 2.25rem;
}

#login .right_con .white_box .form_list .con {
	float: left;
	width: calc(100% - 4.1rem);
}

#login .right_con .white_box .form_list .con input {
	border: 1px solid #000;
	height: 2.25rem;
	width: 100%;
	padding: 0 0.6rem;
	font-size: 0.7rem;
	color: #333;

}

#login .right_con .white_box .form_list .con input::placeholder {
	color: #000;
	font-size: 0.7rem;

}

#login .right_con .white_box .form_list .con input:focus {
	outline: 2px solid #03314d; /*입력창테두리*/
	border: 1px solid transparent;
}

#login .right_con .white_box .guide_list {
	padding-top: 1.25rem;
	border-bottom: 1px solid #eee;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

#login .right_con .white_box .guide_list li {
	font-size: 0.8rem;
	color: #000;
	padding-bottom: 0.5rem;
}

#login .right_con .white_box .guide_list li:last-child {
	padding-bottom: 0;
}

#login .right_con .white_box .guide_list2 li {
	font-size: 0.7rem;
	line-height: 0.8rem;
	font-weight: 300;
	color: #000;
	padding-bottom: 0.5rem;
}

#login .right_con .white_box .guide_list2 li:last-child {
	padding-bottom: 0;
}


	
/* 동영상페이지*/

#viewer_main {
	background: url(../images/bg_main_2024.png) no-repeat ;
	background-size: cover;
	margin: 0rem auto;
	padding:1.5rem 0;
	height:100vh;
}

#viewer .con_wrap {	
	background:#fff;
	padding:1rem 1rem 0.5rem 1rem;
	box-shadow:0px 0px 5px rgb(35,35,35,0.5);
}



#viewer  .sub_top p.GradientBg{
	font-size:1.2rem;
	padding:0.5rem 1rem 0.5rem 1rem;
	margin-bottom:0.5rem;
	font-weight: 500;
	text-align: center;
	color: #fff;
	width:9rem;
	border-top-right-radius:1rem;
	text-shadow: 2px 2px 3px rgb(32,32,32,0.2);
	background: #90609a;
	}
#viewer  .sub_top p.colorFont{
	font-family: 'GmarketSansBold';
	color:#90609a;
	font-weight:700;
	font-size:1.4rem;
}
#viewer  .sub_top p span{
	font-size: 1.4rem;
	color: #3cbfcf;
	font-weight: 700;
	display:inline-block;
	}

#viewer .playWrap{	
	position:relative;
	height:100%;
	margin:1rem 0;
	display:flex;
	justify-content: space-between;
	background:url(../images/main_img.png) no-repeat bottom right;
	
	
}

#viewer .left_con{	
	width: 65%;
	
	/*max-width:60rem;
	max-height: 100%;*/
	
}



#viewer .left_con .movie-zone {
    position: relative;
    overflow: hidden;
	padding-bottom: 56.25%;
	height:0;
}


#viewer .left_con .movie-zone .iframe{
	position: absolute;
    top: 0;
    left: 0;
    width:  100%;
    height: 100%;
    border: 0;
	background:#000;
	}


#viewer .left_con .qna-box {
	padding-top: 0.2rem;
	width: 100%;
	margin: 0 auto;
}

#viewer .left_con .qna-box .vbtn{
	width:100%;
	display:block;
	margin-bottom:1rem;
}

#viewer .left_con .qna-box .vbtn_t{
	font-size: 0.7rem;
	line-height:1rem;
	text-align: left;
	width:100%;
}
#viewer .left_con .qna-box .vbtn_button{
	margin-top:-1rem;
	text-align: right;
	padding-top:0.1rem;
	float:right;
	width:100%;
}

#viewer .left_con .qna-box .txt p {	
	padding-top: 0.5rem;
	text-align: left;
	font-weight: 300;
	font-size: 0.9rem;
	height: 2rem;
	padding-left:0.5rem;
	color:#000;
}

#viewer .left_con .qna-box .txt p span{
	font-size: 1.2rem;
	font-weight: 500;
	color:#000;
 }

#viewr .left_con .qna-box .qna-forms{
	width: 100%;

}
.form_flex{
	width: 100%;
	display:flex;
	flex-wrap:nowrap;
	justify-content:space-between;
}@media(max-width:640px){	
.form_flex{
	display:block;
}
}

#viewer .left_con .qna-box .qna-forms textarea{
border:1px solid #cccccc;
width:80%;
height:5rem;
resize:none;
}
/*
#viewer .left_con .qna-box .qna-forms textarea{
border:1px solid #cccccc;
width:calc(100% - 16.5rem);
height:5rem;
resize:none;
}
*/
#viewer .left_con .qna-box .qna-forms textarea:focus {
	outline: 1px solid #ccc; /*질문창테두리색상*/
	border: 1px solid #ccc;
}
#viewer .left_con .qna-box .qna-forms .default_set{
background:url(/images/board_default_txt.png) no-repeat center center #fff ;
background-size: 20rem;
}

#viewer .left_con .qna-box .qna-forms input[type=submit]{
	margin-right: 0;
	position:relative;
	vertical-align: top;
}

#viewer .programList{
	width:34%;		
}
#viewer .programList table{
	width:100%;
	text-align:left;
	margin-bottom:0.1rem;
}
#viewer .programList table caption{
	text-align:left;
	font-size:1.2rem;
	margin-bottom:0.5rem;
	font-weight:600;
}
#viewer .programList table thead{
	text-align:center;
	background:#90609a;
	color:#fff;
	font-size:0.9rem;
	line-height:1.5rem;
		vertical-align:middle;
}
#viewer .programList table tbody tr td{
	border:1px solid #808080;
	font-size:0.8rem;
	color:#333633;
	line-height:1rem;
	text-align:center;
	font-weight:600;
	padding:0.5rem 0.5rem;
	vertical-align:middle;
	word-break:keep-all;
	background: rgba(255,255,255,0.8);
}
#viewer .programList table tbody tr td span{
	font-size:0.7rem;
	font-weight:400;
	display:block;
}
#viewer .programList table tbody tr td.timebg{
	background:#fffaff;
	font-weight:400;
	background: rgba(255,255,255,0.8);
}

#viewer .programList p{
	/*border-top:2px solid #00a9b3;*/
	padding-top:0.2rem;
}
#viewer .programList p span{
	background: rgba(255,255,255,0.5);
}
/* 신청 - pre(day)-registation.php */
#application {
	padding: 1.0rem 0;
	max-width: 36rem;
	margin:0 auto;
	padding-top:3.5rem;
}

#application .notice {
	position:relative; 
	margin: 0 auto;
	max-width: 36rem;
	padding: 0.5rem 1rem;
	border:1px solid#eee;
	background:#fafafa;
	margin-bottom:1rem;
}
#application .notice p {
	font-size: 0.9rem;
	line-height: 160%;
	color: #000;
	text-align: left;
	padding: 0.5rem 0;
}
#application .notice span {
	font-size: 0.8rem;
	font-weight: 400;
	color: #000;
	text-align: left;
}

#application .notice2 {
	position:relative; 
	margin: 0 auto;
	max-width: 36rem;
	padding: 0.5rem 1.5rem;
	text-align: left;
	margin-bottom:1.5rem;

}
#application .notice2 p{
	font-size: 1rem;
	padding: 0.5rem 1rem;
	font-weight:600;
	text-align: left;

}

#application .txt{
	font-size: 0.8rem;
	line-height:150%;
	padding: 0.5rem 0;
	text-align: left;

}
#application ul{
	font-size: 0.8rem;
}
#application ul li{
	line-height: 130%;
	padding-top:0.5rem;
	font-weight:600;
	padding-left:3.7rem;
	text-indent:-3.7rem;
}
#application ul span{
}

#application ul .title{
	font-size: 1.1rem;
	line-height: 130%;
	font-weight:900;
	letter-spacing:0;
}
#application .application_form {
	width: 100%;
	margin: 0 auto;
}
#application .application_form {
	width: 100%;
	margin: 0 auto;
}

#application .application_form table{
	border-top:2px solid#666666;	
}
#application .application_form tr {
	border-top:1px solid#dddddd;
	border-bottom:1px solid#dddddd;
	
}

#application .application_form th {
	font-size: 0.8rem;
	font-weight: 500;
	color: #222;
	text-align: center;
	width: 8rem;
	vertical-align: middle;
	background:#f9f9f9;
	padding:0.5rem;
}
#application .application_form th span{
	font-size: 0.7rem;
	font-weight: 300;
}

#application .application_form td {
	padding: 1rem 0 1rem 1rem;
}
#application .application_form td span{
	padding-left:0.5rem;
}

#application .application_form .subject{
	text-align:left;
	font-size: 0.8rem;
	line-height:130%;
	font-weight: 500;
	color: #222;
	padding:0.5rem 0;
}
#application .application_form .qtitle{
	text-align:left;
}
#application .application_form .qtitle p{
	font-size: 0.8rem;
	line-height:150%;
	font-weight: 500;
	color: #222;
	padding:1rem;
}
#application .application_form .qtitle p span{
	font-size: 0.7rem;
	font-weight: 300;
}

#application .application_form input[type=text],
#application .application_form input[type=tel] ,
#application .application_form input[type=password] ,
#application .application_form input[type=email] {
	height: 2rem;
	border: 1px solid #dddddd;
	width: 95%;
	padding: 0 1rem;
	color: #444;
	font-size: 0.8rem;
}

#application .application_form input[type=text]:focus,
#application .application_form input[type=tel]:focus,
#application .application_form input[type=email]:focus,
#application .application_form select:focus {
	outline: 2px solid #cccccc;/*입력창 테두리색상*/
	border: 1px solid transparent;
}
#application .application_form textarea {
	height: 4rem;
	border: 1px solid #dddddd;
	width: 100%;
	padding:0.2rem;
	color: #444;
	font-size: 0.8rem;
	padding:0.5rem;
	resize:none;
}
#application .application_form textarea:focus {
	outline: 2px solid #cccccc;/*입력창 테두리색상*/
	border: 1px solid transparent;
}

#application .application_form textarea::placeholder{
	color: #666;
	font-size: 0.7rem;
}
#application .application_form select {
	height: 2rem;
	border: 1px solid #dddddd;
	width: 95%;
	padding: 0 1rem;
	color: #444;
	font-size: 0.7rem;
	background: #fff url(../images/select_down.png) no-repeat right 1.1rem center;
	white-space:normal;
	text-overflow: ellipsis;
}

#application .application_form input::placeholder {
	color: #666;
	font-size: 0.7rem;
}

#application .application_form .inner_title {
	font-size: 0.8rem;
	padding:0.5rem;
	font-weight: 500;
	color: #222;
}
#application .application_form .inner_txt {
	font-size: 0.8rem;
	padding:0.5rem;
}

#application .check_box {
	margin-top:0.2rem;
	border-bottom:2px solid#666666;
	/*position:relative;
	min-height:10rem;
	*/
}
#application .check_box table{
	width:100%;
}
#application .check_box tr{
	border-top:1px solid#dddddd;
	border-bottom:1px solid#dddddd;
}
#application .check_box th{
	width:3rem;
	text-align:right;
	vertical-align:middle;
}

#application .check_box td{
}
.check_title {
	font-size: 0.8rem;
	font-weight: 500;
	padding: 0.5rem 0.5rem 0.5rem 1.5rem;
	text-align:left;
	background:#f5f5f5;
	width:100%;
}
.check_title span{
	font-size: 0.7rem;
	font-weight: 300;
	line-height:1.2rem;
	display:inline-block;
	min-width:8rem;
}


.check_txt {
	vertical-align:baseline;
	line-height:1.0rem;	
	font-size: 0.8rem;
	padding: 0.5rem 1rem;
}
.check_txt span{
	font-size: 0.7rem;
}

.topic {	
	font-size: 0.9rem;
	font-weight: 500;
}
.session {	
	text-align:left;
	font-size:0.7rem;
	line-height:1.0rem;
	padding-top:0.5rem;
	padding-left: 1.5rem; 
	text-indent:  -1.5rem;
}

.session span{	
	padding-left: 0.3rem; 
}
.p_title{
}
.padl_10{
	padding-left:0.5rem;
}

#application .check_box .check_btn {
	height:3rem;
	min-width:5rem;
	float:left;
	vertical-align:middle;
	text-align:right;
}

#application .check_box .check_btn span{
	display:inline-block;
	min-width:3.3rem;
}

#application .check_box .radio_btn{
	vertical-align:middle;
	text-align:center;
	
}


#application .agree{
	position:relative; 
	margin: 0.5rem auto;
	max-width: 36rem;
	}
	
#application .agree p{
	padding:1rem 0 0.5rem 0;
	font-size: 0.9rem; 
	font-weight:600;
	}

#application .agree .Privacy{ 
	margin: 0 auto;
	padding:0.5rem; 
	font-size:0.7rem; 
	line-height: 140%;
	color:#222; 
	height:8rem; 
	overflow-y: scroll; 
	border:1px solid #ccc; 
	background:#fbfbfb
	}
#application .agree .Privacy li{ 
	padding-left:1rem; 
	text-indent:-1rem
	}
#application .agree .Privacy p {
	font-size:1.0rem; 
	}

#application .agree .Privacy span {
	font-size:0.75rem; 
	font-weight:600;
	color:#222;
	text-decoration: underline;	
	}
#application .agree .Consent {
	color:#000; 
	font-size: 0.8rem; 
	text-align: left;
	padding-left:1.3rem;
	text-indent:-1.3rem;
	}
#application .agree .Consent p{
	padding:0.2rem;
	}
#application .agree .Consent label {
	font-size:0.8rem; 
	line-height: 1.1rem;
	font-weight:400;
	}



#footer {
	height: 6rem;
}

#footer .inner2 {
	position: relative;
}

#footer .logo {
	position: absolute;
	top: 1.7rem;
	left: 2.5rem;
}

#footer .logo img {
	width: 4.1rem;
	height: auto;
}

#footer .address {
	font-size: 0.9rem;
	color: #fff;
	text-align: center;
	padding-top: 2.35rem;
}

#footer .address a {
	color: #fff;
}

/*서베이*/
#survey{
 }

#header_survey {
	height: 7rem;
	/*웨비나 등록신청서 헤더색상변경*/
	background: #3c709f url(../images/survey_header_blue.jpg) no-repeat center; 
	background-size: 50rem;
	margin: 0 auto;
}

#header_survey .top_title2 {/*서베이헤더*/
	text-align: center;
	height: 100%;
	padding: 1.5rem;

}
#header_survey .top_title2 p{/*서베이헤더*/
	color: #fff;
	font-weight: 500;
	font-size: 2rem;
	line-height: 3rem;

}
#header_survey .top_title2 span {/*서베이헤더*/
	color: #fff;
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 3.5rem;

}

#survey .notice{
	width: 100%;
	max-width: 37rem;
	margin: 1rem auto;
	word-break:keep-all;
	padding:0 2rem;
}

#survey .notice p{
	font-size: 0.7rem;
	line-height: 1.0rem;
	color:#003a84;	
}

#survey .notice p span{
	font-size: 0.8rem;
	line-height: 1.0rem;
	color: #253d97;
}

#survey .notice2{
	width: 100%;
	max-width: 37rem;
	margin: 1rem auto;
	word-break:keep-all;
	padding:0 2rem;
}

#survey .notice2 p{
	font-size: 0.8rem;
	font-weight:600;
}
#survey .survey_con{
	width: 100%;
	max-width: 37rem;
	margin: 0 auto;
}

#survey .survey_con .survey_list{/*질문제목*/
	margin:1rem auto;
	padding:1rem;
	font-size:0.85rem;
	line-height:1.2rem;
	border: 1px solid #bbb;
	border-radius: 0.5rem;
}

#survey .survey_con .survey_list textarea {/*주관식 텍스트박스*/
	font-family: 'Noto Sans KR';
	width: 100%;
	border: 1px solid #ddd;
	resize:none;
	color: #444;
	margin-top:0.5rem;
	outline:none;
	overflow:auto;
}

#survey .survey_con .survey_list2{/*보기항목*/
	font-size:0.7rem;
	line-height:1.5rem;
	padding:0.5rem 0.5rem;
	vertical-align:baseline;
}

#survey .survey_con .survey_list2 input[type=text] {/*객관식 기타의견 텍스트박스*/
	font-family: 'Noto Sans KR';
	width: 100%;
	border:0;
	border-bottom: 1px solid #bbb;
	outline:none;
	resize:none;
	color: #444;
	font-weight:300;
	margin-top:0.5rem;
	overflow:auto;
}

#survey .survey_con .survey_list2 input[type=text] placeholder{/*객관식 기타의견 텍스트박스*/
	color: #444;
	font-weight:300;
}


#survey .btnwrap{
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #ddd;
	text-align: center;
}

.btn_10 {
	display: inline-block;
	width: 10rem;
	height: 4rem;
	line-height: 3.8rem;
	text-align: center;
	font-weight: 500;
	font-size: 1.5rem;
	color: #fff;
	background: #012545;/*서베이 제출버튼 색상변경*/
	border: 0;
	border-radius: 0.6rem;
	cursor: pointer;
	vertical-align: middle;
}



.custom-file-upload input[type=file]{
	border:1px solid#ccc;
	padding:4px;
    cursor: pointer;
}
.custom-file-upload:hover {
}
#file-name-display {
    margin-left: 10px;
    font-style: italic;
    color: #333;
}
.option-disabled {
    color: gray;
    opacity: 0.6;
    cursor: not-allowed;
}
.form-section {
  padding: 30px 20px;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  display: none;
}

.form-section.active {
  display: block;
}

h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #003366;
  margin-bottom: 10px;
}

.next-btn {
  background: #ff6600;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn_wrap {
  margin-top: 20px;
  text-align: center;
}

.btn_wrap .prev-btn {
  margin: 0 10px;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background-color: #007ACC;
  color: white;
  cursor: pointer;
}

.btn_wrap .btn_reg_submit:hover {
  background-color: #f33d01;
}

.btn_white {
	font-size: 0.8rem;background:#fff;margin-right:8px;padding:10px 16px;border:1px solid#ddd;border-radius:6px;color:#000;cursor:pointer;}
.btn_white:hover {border:1px solid#222;}

.reg-check-box {font-size:0.8rem;display:none;margin:20px 0;padding:16px 25px;border:1px solid #e3e3e3;background:#fafafa;border-radius:8px;}
.reg-check-box .box-inner {display:flex;flex-wrap:wrap;gap:15px;align-items:center;}
.reg-check-box label {font-weight:bold;}
.reg-check-box input {flex:1;min-width:150px;padding:12px;border:1px solid #ccc;border-radius:6px;}
.reg-check-box .box-inner .btn_reg_check {padding:12px 18px;border:0;border-radius:6px;background:#4a6cf7;color:#fff;cursor:pointer;}
.reg-check-box .box-inner .btn_reg_check:hover  {background:#0934e1;}

#regCheckModal{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.45);z-index:9999;}
#regCheckModal .modal_inner {max-width:540px;margin:8vh auto;background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,0.2);}
#regCheckModal .modal_header {font-size:0.9rem;color: #003366;padding:16px 20px;border-bottom:1px solid #eee;display:flex;justify-content:space-between;align-items:center;}
#regCheckModal .modal_header  button{background:transparent;border:0;font-size:18px;cursor:pointer;}
#regCheckModal .regCheckBody {font-size:0.8rem;padding:18px 20px;max-height:60vh;overflow:auto;}
#regCheckModal .btn_wrap{padding:14px 20px;border-top:1px solid #eee;display:flex;gap:8px;justify-content:flex-end;}
#regCheckModal button{font-size:0.7rem;}
#regCheckModal .btn_black{padding:10px 14px;border:0;border-radius:8px;background:#111;color:#fff;cursor:pointer;}
#regCheckModal .btn_black:hover {background:#444;}



.navbar {
  position: fixed;
  top: 0;
  width:100%;
  z-index: 999;
  transition: transform 0.3s ease; /* 부드러운 애니메이션 */
}

/* 숨김 상태 */
.navbar.hidden {
  transform: translateY(-100%);
}
.navbar .inner {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin:0 auto;
  max-width:40rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  min-height:40px;
}
.navbar img.logo {    margin-left:20px;}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;     /* ★ 추가 */
  gap: 5px;
  padding-right:20px;
}

.navbar ul li {  white-space: nowrap;   /* ★ 메뉴 줄바꿈 방지 */}

.navbar ul li a {
  position: relative;
  text-decoration: none;
  font-size:0.8rem;
  font-weight:500;
  color: #fff;
  padding: 8px 8px;
  transition: all 0.5s ease-in-out;
}


.navbar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #FF0000;
  transition: width 0.5s ease;
}

.navbar ul li a:hover::after {
  width: 100%;
}

.navbar ul li a:hover {
  color: #FF0000;
  font-weight:700;
}

#welcome, #program, #regist, #section1{
	scroll-margin-top: 3rem;
}