@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic:800|Open+Sans:800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding:wght@400:700&family=Nanum+Gothic:wght@400:700:800&family=Noto+Sans+KR:wght@100..900&display=swap');

*{
	margin:0px;
	padding:0px;
	font-family: "Noto Sans KR", sans-serif;
}
html
{
	font-size:16px;
}

a
{
	color:inherit;
	text-decoration:none;
}

#all
{
	min-width:1200px;
}

html, body
{
	min-width:1200px;
}

/*
	마법학교 리뉴얼 공지
*/

	#pop_renewal_view {
	  position: fixed;
	  top: 50%; 
	  left: 50%;
	  width: 850px; 
	  height: 530px;
	  transform: translate(-50%, -50%);
	 
	  background-image:url('https://www.seedlearn.co.kr/19image/index/renew.jpg');
	  background-size: cover;
	  border: 3px solid #3a2d1c;
	  box-shadow: 0 0 30px rgba(0,0,0,0.6);
	  
	  font-weight:bold;
	  overflow: hidden;
	  display: none;
	  z-index: 1000;
	  font-family: 'Cormorant Garamond', serif !important;
	}

	.pop_notice > div
	{
		position:relative;
		padding:10px 0px;
		text-align:center;
		font-size:1.5rem;
		line-height:2;
	}

	.pop_notice h3, .pop_detail h3 
	{
		position:relative;
		text-align: center;
		font-size: 22px;
		font-weight: bold;
		border-bottom: 2px solid #000;
		padding: 5px 0px;
	}

	/* 리스트 애니메이션 */
	.pop_list_view_detail
	{
		position:relative;
	}
	.pop_detail ul 
	{
		position:relative;
		list-style: none;
		text-align: center;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-around;
	}
	
	.pop_detail li 
	{
	  font-size: 18px;
	  margin: 15px 0;
	  opacity: 0;
	  position: relative;
	  padding:0px 5px;
	}
	
	.pop_detail li.slide-in-left 
	{ 
		animation: slideLeft 1s forwards; 
	}
	
	.pop_detail li.slide-in-right 
	{ 
		animation: slideRight 1s forwards; 
	}
	
	.pop_detail > div > ul > li >span
	{
		display:block;
	}
	
	.pop_detail > div > ul > li >span:last-child
	{
		color:red;
	}

	@keyframes slideLeft 
	{
	  from { transform: translateX(-100px); opacity: 0; }
	  to { transform: translateX(0); opacity: 1; }
	}
	
	@keyframes slideRight 
	{
	  from { transform: translateX(100px); opacity: 0; }
	  to { transform: translateX(0); opacity: 1; }
	}

	/* 진행바 */
	.progress_container 
	{
	  position: relative;
	  margin: 20px auto;
	  width: 90%;
	  height: 10px;
	  background: #d9c9a3;
	  border: 2px solid #3a2d1c;
	  border-radius: 5px;
	  overflow: hidden;
	}
	.progress_track {
	  position: absolute;
	  top: 0; left: 0;
	  height: 100%;
	  width: 0;
	  background: linear-gradient(90deg, #5a381e, #d4a45f);
	  transition: width 1s ease;
	}
	.progress_steps {
	  position: absolute;
	  top: 50%;
	  left: 0;
	  width: 100%;
	  display: flex;
	  justify-content: space-between;
	  transform: translateY(-50%);
	}
	.progress_steps span {
	  width: 20px; height: 20px;
	  border-radius: 50%;
	  background: #fff;
	  border: 2px solid #3a2d1c;
	  box-shadow: 0 0 5px rgba(0,0,0,0.3);
	}
	.progress_steps span.active {
	  background: gold;
	  box-shadow: 0 0 10px gold;
	  border-color: #b8860b;
	}

	/* 닫기 버튼 */
	.pop_button {
	  margin: 20px auto;
	  text-align: center;
	  padding: 10px 20px;
	  background: #3a2d1c;
	  color: #fff;
	  width: 80px;
	  border-radius: 10px;
	  cursor: pointer;
	}
	.vanish { animation: vanishAnim 1s forwards; }

	@keyframes vanishAnim {
	  0% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
	  70% { opacity: 0.5; transform: scale(0.8) rotate(10deg); filter: blur(3px); }
	  100% { opacity: 0; transform: scale(0.5) rotate(-15deg); filter: blur(6px); }
	}

/*
	마법학교 리뉴얼 공지
*/


/*
	Msystem loading
*/

#loading
{
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(61,74,45,0.98);
	z-index:999;
	color:#ffffff;
	font-weight:bold;
}

.loading_area
{
	position:absolute;
	width:300px;
	height:300px;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	margin:auto;
	background-image:url('https://www.seedlearn.co.kr/19image/loading_seedlearn.png');
	background-repeat:no-repeat;
	background-position:center;
	text-align:center;
}

.loading_circle
{
	position:relative;
	width:300px;
	height:300px;
	border-radius:150px;
	border:10px solid #b6a49a;
	box-sizing:border-box;
	margin:auto;
	animation:loading_dot 5s linear infinite;
}

.loading_circle > span:first-child
{
	position:absolute;
	display:inline-block;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 40px solid #b6a49a;
	left: 18px;
    top: 18px;
    transform: rotate(45deg);
}

.loading_circle > span:last-child
{
	position:absolute;
	display:inline-block;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 40px solid #b6a49a;
	right: 18px;
    bottom: 18px;
    transform: rotate(45deg);
}


@keyframes loading_dot{
	0%{
		transform:rotate(-360deg);
	}
}


.loading_text
{
	position:relative;
	padding-top:25px;
}

/*
*/
#top_area
{
	position:fixed;
	width:100%;
	height:95px;
	z-index:110;
	background-color:#ffffff;
}

.top_main_tool
{
	position:relative;
	
	font-size:0rem; /*inline-block*/
	display:flex;
	justify-content: center;
}

[class ^="phone"]
{
	display:none;
}



.logo_area
{
	width:280px;
	height:95px;
	box-sizing:border-box;
}

.logo_area > div
{

	padding-top:10px;	
}

.select_part
{
	position:relative;
	z-index:20;
}

.select_part > ul
{
	position:absolute;
	display:flex;
	list-style-type:none;
	width: 100%;
    justify-content: flex-end;
    top: 15px;
	right:30px;
}

.select_part > ul > li
{
	padding:0px 10px;
	color:#b6a49a;
}

.select_part > ul > li div
{
	position:relative;
	display:inline-block;
}

.menu_area 
{

	width:920px;
	height:95px;
	box-sizing:border-box;
	font-size:0.875rem;
}

.menu_area > div
{

	width:920px;
	height:95px;

}

.menu_area > div > ul
{
	display:flex;
	list-style-type:none;
	justify-content: center;
	width:890px;
	margin:0px auto;

}

.menu_area > div > ul > li
{

	vertical-align:top;
	width:200px;
	font-size:1.3rem;
	font-weight:bold;
	text-align:center;
	color:#474747;
	padding-top:50px;	
	cursor: pointer;
}

.menu_area > div > ul > li>span
{
	display:inline-block;
	width:100%;
	height:40px;
	line-height:1.5;
	color:#3c4b2c;
}

.menu_area > div > ul > li > span:hover
{
	color:#9ea596;
}

.sub_menu_block
{
	position:absolute;
	top:95px;
	height:0px;
	width:100%;
	margin:0px auto;
	background-color:#b6a49a;
}

.sub_none
{
	position:absolute;
	display:none;
	width:100%;
	left:0px;
	height:190px;
	top:90px;
	background-color:rgba(182,164,154,0.95);
	box-shadow: 1px 15px 15px #000000;
}


.sub_menu
{
	list-style-type:none;
	display:flex;
	justify-content: center;
	position:absolute;
	left:0px;
	width:100%;	
	padding-top:12px;
}

.sub_menu > li
{
	text-align:center;
	padding:10px 20px;
	box-sizing:border-box;
	font-size:1rem;
	font-weight:bold;
}

.sub_menu_2line
{
	line-height:1.2;
}

.sub_menu > li:hover
{
	 background-color:rgba(60,75,44,0.5);
	 color:#ffd950;
}


.sub_menu > li > a
{
	display:inline-block;
	width:100%;
	height:100%;
}

/* view class*/
#view_class
{
	position:relative;
	top:95px;	
	height:115px;
}

#view_class_course
{
	position:relative;
	height:115px;
}



/*
sss
*/
#select_link
{
	top:95px;	
	position:relative;
	background-color:#212326;
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
	color:#ffffff;
	font-weight:bold;
	font-size:1.33rem;
	height:500px;
}
/*
*/

/*ES*/
#event_apply
{
	position:relative;
	height:550px;
	background-color:#0f1115;
	text-align:center;
	top:95px;
	overflow:hidden;
}


.es_img
{
	position:absolute; 
	left:50%;
	margin-left:-960px;
	margin-top:-260px;
	pointer-events:none;
}

/**/


#roll_area
{
	top:95px;	
	position:relative;
	height:610px;

	margin:0px auto;
	overflow:hidden;
}

.img_view
{
	position:relative;


	height:610px;
	overflow:hidden;
	
	
}


.img_array
{
	position:relative;
	width:300%;
	box-sizing:border-box;
	margin-left:0px;
	font-size:0rem;
}

.img_container
{
    position:relative;
    list-style-type:none;
    text-align:center;
    background-repeat:no-repeat;
    background-position: center;

    height: 610px;
}

.img_container:nth-child(1)
{
	background-image:url('https://www.seedlearn.co.kr/19image/index/main_movie_talk.jpg');
}

.img_container:nth-child(2)
{
	background-image:url('https://www.seedlearn.co.kr/19image/index/main_roll_m.jpg');
}

.img_container:nth-child(3)
{
	background-image:url('https://www.seedlearn.co.kr/19image/index/main_roll_2_2020.jpg');
}

.ne_btn
{
	position:fixed;
	top:490px;
	right:10px;
	height:200px;
	width:80px;
	background-image:url('https://www.seedlearn.co.kr/19image/index/be_nex_btn.png');
	background-repeat:no-repeat;
	font-size:2rem;
	font-weight:bold;
	cursor:pointer;
	line-height:0.5rem;
	display:none;
}

.pr_btn
{
	position:fixed;
	top:490px;
	left:10px;
	height:200px;
	width:80px;
	background-image:url('https://www.seedlearn.co.kr/19image/index/be_pre_btn.png');
	background-repeat:no-repeat;
	font-size:2rem;
	font-weight:bold;
	cursor:pointer;
	line-height:0.5rem;
	display:none;
}

/*
0922
*/

.n_img_array
{
	position:relative;
    font-size:0rem;
    text-align:center;
    background-color:#2c2f34;

}

.img_container > div
{
	display:inline-block;
}

.img_container > a
{
	position: relative;
    display: inline-block;
    width: 2000px;
    height: 610px;
}

.movie_part
{
	position:relative;
	width:650px;
	height:610px;
}

.movie_part > div
{
	position:absolute;
	width:650px;
	height:610px;	
}

.movie_mainview
{
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	margin:auto;
	width:600px;
	height:350px;
	padding:5px;
	background-color:#222326;
	box-shadow:10px 10px 6px #222000;	
	color:#ffffff;
	font-size:0px;
}

.movie_mainview > iframe
{
	box-shadow:10px 10px 6px #222000;
}

.open_class_info
{
	position:relative;
	width:380px;
	height:350px;
	display:inline-block;
}

.open_class_info > div
{
	position:absolute;
	width:380px;
	height:350px;
	font-size:1.125rem;
}

.open_class_info_month
{
	position:relative;
	font-size:2rem;
	font-weight:bold;
	padding-top:20px;
}

.js_text
{
	display:none;
}

.open_class_info_curr
{
	position:relative;
	padding-top:10px;
	line-height:1.5;
}

.open_class_info_curr img
{
	width:28px;
}

.open_date_info
{
	position:relative;
	width:220px;
	height:350px;
	display:inline-block;	
}

.open_date_info > div
{
	position:absolute;
	width:220px;
	height:350px;
	font-size:1.125rem;
	padding:10px 0px;
	line-height:2.1;
}

.open_date_info_day
{
	position: relative;
    border: 1px solid #ffffff;
    background-color: #111111;
    width: 94%;
	padding: 8px 0px;
}

.open_date_info_day>a
{
	display:inline-block;
	width:100%;
	height:100%;
}


.open_date_info_day:hover
{
	background-color:#2c2f34;
}

.open_date_info>div>div>h3
{
	color:#ffd950;
}

.talk_part
{
	width:550px;
	height:610px;
}

.talk_part > div
{
	position:absolute;
	width:550px;
	height:610px;	

}

.talk_mainview
{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 550px;
    height: 380px;
}


.talk_cont
{
	position:relative;
	height:95px;
	width:525	px;
	padding:10px;
	background-color:#222326;
	font-size:1rem;
	border-radius:20px;
	overflow:hidden;
	margin-bottom:10px;
	box-shadow:10px 10px 6px #222000;
	display:flex;
}

.talk_cont > li
{
	display:inline-block;
}

.talk_cont_img > div
{
	position:relative;
	width:90px;
	height:90px;	
	background-color:gray;
	box-sizing:border-box;
	border-radius:20px;
	overflow:hidden;
}

.talk_cont_img img
{
	max-width:100%;
}

.cont_article_contents
{
	font-size:1rem;
	font-weight:bold;
	padding:5px 0px 20px 15px;
	color:#c6c7c7;
	display:inline-block;
	overflow:hidden;
	width:400px;
	
	white-space: nowrap; /*줄바꿈 없앰*/
	text-overflow: ellipsis; /*글자 넘치면 뒤에 ...*/	
}

.cont_article_contents p
{
	display:inline;
}

/*
0922
*/


.img_control
{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
}

.img_button_tool
{
	position:relative;
	width:1200px;
	margin:0px auto;
	height:100%;

}

.img_button
{
	position:absolute;
	top:180px;
	right:20px;
}

.img_button > span
{
	display:block;
	background-color:#ffffff;
	width:12px;
	height:12px;
	border-radius:6px;
	border:1px solid #474747;
	cursor:pointer;
	margin-top:15px;
	margin-left:1px;
}

.img_button>span:nth-child(1)
{
	background-color:#e90000;
}



.img_button>div
{
	margin-top:15px;
	width:18px;
	height:18px;
	display:inline-block;
}









/*
*/

#banner_area
{
	top:95px;		
	position:relative;

	margin:0px auto;
	height:135px;
	background-color:#3c4b2c;
}

.banner_center
{
	position:relative;
	width:1200px;
	margin:0px auto;
	height:135px;
	box-sizing:border-box;
	font-size:0rem;
}

.banner
{
	position:relative;
	box-sizing:border-box;
	display:inline-block;
}



#move_area
{
	top:95px;		
	position:relative;
	width:1200px;
	margin:0px auto;
	padding:15px 0px;
}

.move_link
{
	position:relative;
	width:50%;
	display: flex;
    justify-content: flex-start;
    align-items: center;
}

.move_link > li
{
	font-size:0.875rem;
	font-weight:bold;
	text-align:center;
	color:#535353;
	list-style-type:none;
	display: flex;
    align-items: center;
}

.move_link > li > a
{
	display:flex;
	align-items: center;
}

.move_link > li img
{
	height:30px;
}


.move_link>li::after
{
	content:"|";
	color:#dddddd;
	padding:0px 20px;
}

.move_link>li:last-child::after
{
	content:none;
}

.auto_all_play
{
	position:relative;
	padding-top:50px;
	padding-bottom:20px;
	width:1200px;
	margin:0px auto;
}

.one_n_one_play
{
	position:relative;
	padding-top:30px;
	padding-bottom:20px;
	width:1200px;
	margin:0px auto;
}


/*
*/

#copyright_area
{
	top:95px;		
	position:relative;
	border-top:2px solid #d8d8d8;
	background-color:#b6a49a;
}

.copyright_center
{
	position:relative;
	width:1200px;
	margin:0px auto;
}

.addr
{
	position:relative;
	font-size:0.75rem;
	padding:10px 0px;
	font-weight:bold;
}

.addr > div > span
{
	position:relative;
	padding-right:20px;
}

.addr > div > span::after
{
	content:"|";
	color:#dddddd;
	padding:0px 20px;
}


.addr > div > span::after
{
	content:none;
}


.addr_sns
{
	position:absolute;
	bottom:0px;
	right:0px;
	
}

.addr_sns .move_link
{
	position:relative;
	width:100%;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	z-index:10;
}

.right
{
	position:relative;
	height:25px;
	font-size:0.75rem;
}


/**/

#intro
{	
	position:relative;
	width:1200px;
	text-align:center;
	margin:0px auto;
}

#intro>img
{
	width:100%;
}

#intro_bg
{
	position:relative;
	background-color:#1b1b1b;
	color:#e3e3e3;
	top:95px;
}

#history
{
	position:relative;
	width:1000px;
	margin:0px auto;
	text-align:center;
}

#history img
{
	width:980px;
}

#core_introduce
{
	position:relative;
	width:800px;
	margin:0px auto;
	text-align:center;
	top:50px;
	line-height:2;
}

.core_ment
{
	position:relative;
	
}

.core_ment > ul
{
	position:relative;
	list-style-type:none;
	color:#ffce6c;
}

.core_ment > ul > li
{
	font-weight:bold;
	font-size:1.33rem;
	padding:70px 0px;
	
}

.core_real_img
{
	box-shadow:0 0 17px 9px #ddb97f;
}

.core_ment img
{
	width:80%;
}

.core_curriculum
{
	position:relative;
	padding:70px 0px;
}


#core_introduce hr
{
	box-shadow:10px 10px 6px #222000;
}

#core_introduce h1	
{
	position:relative;
	color:#ffbbc2;
}

#core_introduce h2	
{
	position:relative;
	margin:15px 0px;
	color:#ede040;
}

#core_introduce h3
{
	position:relative;
	border-bottom:1px dashed #ffffff;
}

#core_introduce h4	
{
	position:relative;
	margin:15px 0px;	
	color:#cdffbb;
}

#naver_view
{
	position:relative;
	width:910px;	
	margin:0px auto;
	height:1200px;	
	font-size:0px;
	padding-top:25px;
}

#computer_naver
{
	position:relative;
	width:450px;
	margin:0px auto;
	overflow:hidden;
	height:1200px;	
	display:inline-block;
}

.iframe_div
{
	position:absolute;
	width:450px;
	height:1200px;	
	/*
	margin-top:-76px;
	margin-left:-60px;
	*/
}

.naver_iframe
{
	position:relative;
	width:450px;
	height:1200px;
}

#comemethod
{
	position:relative;
	width:1000px;
	margin:0px auto;
	text-align:left;
}

#comemethod hr
{
	position:relative;
	margin:30px 0px;
}

.google_map
{
	text-align:center;
	position:relative;
	padding-bottom:20px;
}

#quick
{
	display:none;
}

/* 알림장
*/

#seedtalk_all
{
	position:relative;
	width:1200px;
	height:1150px;
	margin:0px auto;
	top:110px;
}

#seedtalk_left, #seedtalk_right
{
	position:relative;
	width:595px;
	display:inline-block;

}

#seedtalk_left > div, #seedtalk_right > div
{
	position:absolute;
	width:595px;
	background-color:#2c2f33;
	border-radius:20px;
	border:1px solid #252525;
	overflow:hidden;
}


/* 2 */
#seedtalk_top
{
	position:relative;
	height:60px;
}

.seedtalk_name
{
	position:relative;
	display:inline-block;
	width:250px;
	height:60px;
}

.seedtalk_name > div
{
	position:absolute;
	width:250px;
	height:60px;
	color:white;
	font-weight:bold;
	font-size:1.25rem;
	padding:20px;
}


.seedtalk_icon
{
	position:relative;
	width:335px;
	height:60px;
	display:inline-block;
}

.seedtalk_icon > div
{
	position:absolute;
	width:335px;
	height:60px;
	text-align:right;
}

.seedtalk_icon li
{
	display:inline-block;
	padding:10px 12px 0px 12px;
}

.seedtalk_icon li img
{
	width:40px;
}

.point_blog
{
    position: absolute;
    display: inline-block;
    color: #ffbc00;
    background-color: #000000;
    font-size:0.7rem;
    right: 20px;
    top: 5px;
    width:95px;
    height: 15px;
    padding: 10px;
    border-radius: 20px;
	font-weight:bold;
}

.talk_point_blog
{
	position: absolute;
    display: inline-block;
    color: #ffffff;
    background-color: #4CAF50;
    font-weight: bold;
    font-size: 1rem;
    right: 55px;
    top: 10px;	
	text-align:center;
    padding: 10px;
    border-radius: 20px;
	font-weight:bold;
}

/* 3*/
#seedtalk_banner
{
	position:relative;
	height:115px;
	padding:15px 10px;
}

#seedtalk_banner>div
{
	position:relative;
	border-radius:20px;
	overflow:hidden;
	text-align:center;
	height:120px;
}

#seedtalk_banner img
{
	position:relative;
	max-width:600px;
	left:-10px;
}

/* 4 */
#seedtalk_list
{
	position:relative;
	height:765px;
	overflow-y:scroll;
}

#seedtalk_list::-webkit-scrollbar  /*스크롤 기능은 살리면서 스크롤 숨기기*/
{ 
	display:none; 
}

.seedtalk_content
{
	position:relative;
	font-size:0rem;
	height:100px;
	padding:25px 15px;
	border-bottom:1px solid #ababab;
}

.content_img
{
	position:relative;
	display:inline-block;
	width:100px;
	height:100px;
	box-sizing:border-box;
	font-size:0.75rem;
}

.content_img > div
{
	position:absolute;
	width:100px;
	height:100px;	
	background-color:gray;
	box-sizing:border-box;
	border-radius:20px;
	overflow:hidden;
}

.content_article
{
	position:relative;
	display:inline-block;
	width:460px;
	height:100px;
	box-sizing:border-box;
}

.content_article > ul
{
	position:absolute;
	width:460px;
	height:100px;	
	box-sizing:border-box;
}

.content_article > ul > li
{
	list-style-type:none;
}

.article_title
{
	padding:10px 0px 5px 15px;
}

.title_letter
{
	font-size:1.125rem;
	font-weight:bold;
	color:#ffffff;
	white-space: nowrap; /*줄바꿈 없앰*/
	overflow: hidden; 
	text-overflow: ellipsis; /*글자 넘치면 뒤에 ...*/
	display:inline-block;
	width:400px;
	


}

.title_date
{
	font-size:1rem;
	color:#808080;
}

.article_contents
{
	font-size:1rem;
	font-weight:bold;
	padding:5px 0px 20px 15px;
	color:#c6c7c7;
	display:inline-block;
	line-height:1.4;
	max-height:1.4rem;
	overflow:hidden;
}


/*5*/
#seedtalk_bottom
{
	position:relative;
	height:100px;
}

#seedtalk_bottom > ul
{
	position:relative;
	margin:0px auto;
}


#seedtalk_bottom > ul li
{
	display:inline-block;
	position:relative;
	width:180px;
	height:60px;
	background-repeat:no-repeat;
	background-position:center;
	cursor:pointer;
}

#seedtalk_bottom > ul > a:nth-child(1) > li
{
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/blog_1.png');	
}

#seedtalk_bottom > ul > a:nth-child(1) > li:hover
{
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/h_blog_1.png');	
}

#seedtalk_bottom > ul > a:nth-child(2) > li
{
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/blog_n.png');	
}

#seedtalk_bottom > ul > a:nth-child(2) > li:hover
{
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/h_blog_n.png');	
}

#seedtalk_bottom > ul > a:nth-child(3) > li
{
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/blog_s.png');	
}

#seedtalk_bottom > ul > a:nth-child(3) > li:hover
{
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/h_blog_s.png');	
}

#seedtalk_bottom > div
{
	position:relative;
	height:40px;
	background-color:white;
	text-align:center;
	font-size:0.625rem;
	padding-top:10px;
}


/*3R*/
#right_content
{
	position:relative;
	height:910px;
	overflow-y:scroll;
}
#right_content::-webkit-scrollbar  /*스크롤 기능은 살리면서 스크롤 숨기기*/
{ 
	display:none; 
}

.seedtalk_content_de
{
	position:relative;
	font-size:0rem;
	padding:20px 15px;
}

.content_img_de
{
	position:relative;
	display:inline-block;
	width:100px;
	box-sizing:border-box;
	font-size:0.75rem;
}

.content_img_de > div
{
	position:absolute;
	width:100px;
	height:100px;	
	background-color:gray;
	box-sizing:border-box;
	border-radius:20px;
	overflow:hidden;
}

.content_article_de
{
	position:relative;
	display:inline-block;
	width:460px;
	box-sizing:border-box;
}

.content_article_de > ul
{
	position:absolute;
	width:455px;
	box-sizing:border-box;
	border-radius:20px;
	overflow:hidden;
	margin-left:10px;
	margin-bottom:20px;
	background-color:#222326;
}

.content_article_de > ul > li
{
	list-style-type:none;
}

.article_title_de
{
	padding:15px 15px 5px 15px;
}

.title_letter_de
{
	font-size:1.125rem;
	font-weight:bold;
	color:#ffffff;
	display:inline-block;
	width:430px;
}

.title_date_de
{
	font-size:1rem;
	color:#808080;
}

.article_contents_de
{
	font-size:1rem;
	font-weight:bold;
	padding:5px 15px 20px 15px;
	color:#c6c7c7;
	line-height:1.6;
	display:inline-block;
}

#seedtalk_feedback
{
	position:relative;
	background-color:#3d4045;
	height:100px;	
}
#seedtalk_feedback > ul
{
	position:relative;
	height:60px;
	text-align:center;
}

#seedtalk_feedback > div
{
	position:relative;
	height:40px;
	background-color:white;
	text-align:center;
	font-size:0.625rem;
	padding-top:10px;
}

#seedtalk_feedback > ul > li
{
	position:relative;
	display:inline-block;
	height:40px;
	background-color:#222326;
	border-radius:20px;
	color:#c6c7c7;
	top:10px;
	padding:0px 20px;
}

#seedtalk_feedback > ul > li > img
{
	height:30px;
	position:absolute;
	top:5px;
}

#seedtalk_feedback > ul > li > span
{
	position:relative;
}

#seedtalk_feedback > ul > li:nth-child(1) > span::before
{
	content:'';
	display:inline-block;
	width:25px;
	height:25px;
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/article_mark.png');
	background-size:cover;
	background-repeat:no-repeat;
	position:relative;
	top:7px;
}

#seedtalk_feedback > ul > li:nth-child(2) > span::before
{
	content:'';
	display:inline-block;
	width:25px;
	height:25px;
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/article_question.png');
	background-size:cover;
	background-repeat:no-repeat;
	position:relative;
	top:7px;	
}

#seedtalk_feedback > ul > li:nth-child(3) > span::before
{
	content:'';
	display:inline-block;
	width:25px;
	height:25px;
	background-image:url('https://www.seedlearn.co.kr/19image/seedlearn_talk/article_hat.png');
	background-size:cover;
	background-repeat:no-repeat;
	position:relative;
	top:7px;	
}

/*
*/

#tui_title
{
	position:relative;
	text-align:center;
	width:1000px;
	margin:0px auto;
	padding:50px 0px;
}

.tui_view>ul
{
	position:relative;
	padding:20px 0px;
	width:1000px;
	margin:20px auto;
	display:flex;
	justify-content: space-between;
    align-items: center;
	background-color:#baa99f;
	color:#ffffff;
	font-weight:bold;
}

.tui_view>ul>li
{
	list-style-type:none;
	padding-left:0px;
}

.tui_view>ul>li:nth-child(1)
{
	width:300px;
	text-align:right;
	
}
.tui_view>ul>li:nth-child(2)
{
	width:680px;
	text-align:left;
}



