
/*=========================================
* SEARCH
*==========================================*/
.search_wp { width:100%; padding-bottom:10px;}
.search_wp:afeter { content:""; display:block; clear:both; }
.write { float:left; width:110px; height:40px;}
.write input { width:100%; height:100%; text-align:center; color:#fff; background:#999; border-radius:0; transition: all 0.3s ease; }
.write input:hover { background:#5c5c5c; color:#fff; }
.search { width:calc(100% - 110px); float:right; font-size: 0; line-height: 0; text-align: right; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.search input { vertical-align: middle; }
.search input[type="text"] {line-height: 40px; padding: 0 0 0 10px; width: 200px; height: 40px; font-size: 15px; color: #999; border-width: 1px 0 1px 1px; border-style: solid; border-color: #dedede; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.search input[type="text"]:focus { outline:0; width: 280px; -moz-transition: width 0.3s ease; -o-transition: width 0.3s ease; -webkit-transition: width 0.3s ease; transition: width 0.3s ease; }
.search .search-btn { padding: 0 0.5px; width: 60px; height: 40px; color: #5c5c5c; font-weight: 600; line-height: 40px; font-size:15px; letter-spacing: -0.1rem; background-color: #fff; border: 1px solid #5c5c5c; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

@media (max-width:767px){
	.search input[type="text"] { font-size:12px; }
	.search input[type="text"]:focus { width: 200px; }

}

/*===================================
= PAGINATION
=====================================*/
.pagination_wp { 
	text-align:center; 
	margin-top:20px; 
}
.pagination { 
	margin-top: 1.875rem; 
	font-family: 'Nunito', sans-serif; 
	letter-spacing: 0; 
	text-align: center; 
	font-size: 0; 
	line-height: 0; 
}
.pagination span, .pagination a { 
	text-align: center; 
	display: inline-block; 
	vertical-align: top; 
	background: #fff; 
}
.pagination a { 
	line-height: 35px;
	border-width: 1px 0 1px 1px;
	border-style: solid;
	border-color: #dedede;
}
.pagination .pagination-left a, .pagination .pagination-right a { 
	width: 35px; 
	height: 35px;
	font-family: 'Nunito', sans-serif; 
	font-size: 16px;
	font-weight:400;
	background: #f8f8f8;
}
.pagination .pagination-left, .pagination .pagination-right, .pagination .num-ber {
	border-right: 1px solid #dedede;
}
.pagination .num-ber { 
	margin: 0 0.5rem; 
}
.pagination .num-ber a {
	width: 35px;
	height: 35px;
	font-size: 12px;
}
.pagination .num-ber a:hover, .pagination .num-ber a.curr { 
	color: #fff; 
	font-weight: 700; 
	background: #c3af6c; 
}
@media (max-width: 480px) { 
	.pagination a { line-height: 30px; }
	.pagination .pagination-left a, .pagination .pagination-right a { width: 30px; height: 30px; }
	.pagination .num-ber a { width: 30px; height: 30px; } 
}
/*===============================================
* REVIEW
===============================================*/
.rv_con {
	margin-top:60px;
}
.rv_con:after {
	content:"";
	display:block;
	clear:both;
}
.rv_boxWp {
	width:50%;
	float:left;
	padding:0 20px 50px;
}
.rv_box {
	cursor:pointer;
	border:2px solid transparent;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.rv_box:hover {
	border-color:#c3af6c;
}
.rv_box figure {
	height:250px;
	overflow:hidden;
}
.rv_box figure img {
	min-width:100%;
	min-height:100%;
}
.rv_box .rv_text {
	position:relative;
	padding:20px 30px;
	border:1px solid #ddd;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;

}
.rv_box:hover .rv_text {
	border-color:transparent;
}
.rv_box .rv_text h4 {
	width:calc(100% - 100px);
	font-size:22px;
	font-weight:500;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.rv_box .rv_text time {
	display:inline-block;
	margin-top:10px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight:400;
}
.rv_box .rv_text:after {
	content:"VIEW MORE";
	position:absolute;
	width:140px;
	padding:20px 0;
	right:-10px;
	top:0px;
	text-align:center;
	background:#c3af6c;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight:600;
	color:#fff;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	opacity:0;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.rv_box:hover .rv_text:after {
	top:-20px;
	opacity:1;
} 

/* select */
.rv_select {
	position:absolute;
	left:0;
	right:0;
	bottom:15px;
	text-align:center;
}
.rv_select select.form-control  {
	display:inline-block;
	padding: 5px 15px;
    width: 320px;
    height: 53px;
	background:rgba(191,179,130,.7);
    border: 1px solid #c5c5c5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
	-webkit-box-shadow:none;
    box-shadow: none;
	border-color:transparent;
	color:#fff;
	font-size:17px;
	animation: sub_top linear 0.5s forwards ;
	animation-delay: 0.9s;
	opacity:0;
	cursor:pointer;
}
.rv_select select.form-control:focus {
	outline:none;
	background:#fff;
	color:#333;
}
.rv_select .btn01.btn02 {
	padding:15px 30px;
	vertical-align:top;
	border-color:transparent;
	animation: sub_top linear 0.5s forwards ;
	animation-delay: 0.9s;
	opacity:0;
}


/*===============================================
* VIEW
===============================================*/
#view {}
.view_title_wp {
	border-top:2px solid #333;
	border-bottom:1px solid #ddd;
	padding:15px 50px;
	text-align:center;
}
.view_title {
	padding:10px 0;
	font-family: "Nanum Square", "NanumSquare", sans-serif;
	font-weight:400;
	font-size:26px;
	color:#333;
}
.view_title_wp p {}
.view_file_wp {
	text-align:right;
	
}
.view_file {
	display:inline-block;
	margin-top:10px;
	margin-right:10px;
	padding:5px 10px;
	background:#f7f7f7;
	border-radius:10px;
}
.view_file:hover {
	background:#666;
	color:#fff;
}
.view_text_wp {
	padding:50px 50px;
	border-bottom:1px solid #ddd;
}
.view_text {
	color:#333;
}
.viewBtn {
	padding:50px 0;
	text-align:center;
}
.viewBtn a {
	display:inline-block;
	width:80px;
	height:80px;
	border:1px solid #ccc;
	font-size:40px;
	line-height:85px;
	color:#777;
	transition: all 0.3s ease;
}
.viewBtn a:hover {
	border-color:#222;
	background:#fff;
	color:#222;
}


/* -- 답변 --*/
.answer_wp {
	margin-top:60px;
	padding:40px 60px 55px;
	background:#f7f7f7;
	border:1px solid #ddd;
	position:relative;
}
.answer_wp figure {
	background:#fff;
	display:inline-block;
	padding:5px;
	border-radius:50%;
	border:1px solid #ddd;
	position:absolute;
	left:45px;

}
.answer_name {
	margin-top:20px;
	padding-left:85px;
	font-size:20px;
	color:#c3af6c;
	font-weight:600;
}
.answer_name:after {
	content:"";
	display:block;
	clear:both;
}
.answer_name span {
	float:right;
	font-size:15px;
	font-weight:300;
	color:#555;
}
.answer_text {
	margin-top:20px;
	padding-left:85px;
}
.answer_text pre {
	font-family:  'Barlow', 'Notokr', 'NanumSquare', 'Nunito',  "Nanum Gothic",  sans-serif;
	font-size:16px;
	color:#222;
	line-height:1.6;
	padding:0;
	margin:0;
	border:0;
	background:transparent;
	white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-all;
	}
/* 1200px이하 */
@media (max-width:1200px){
	.view_title { font-size:26px; }
}
/* 971px이하 */
@media (max-width:992px) {
	#view .subWp { padding-left: 2rem; padding-right:2rem;}
}
/* 767px이하 */
@media (max-width:767px){
	#view { margin-top:0; }
	#view .subWp { padding:30px 1rem;  }
	.view_title_wp { padding:10px; }
	.view_title { font-size:18px; }
	.view_title_wp p { font-size:13px; }
	.view_text_wp { padding:2rem 1rem; }
	.view_text { font-size:13px; }
	.viewBtn { padding:30px 0; }
}
 



 /*===================================
= TABLE 
=====================================*/
/* BASIC */
.basic {
	margin-top:50px;
	width:100%;
	padding:0 2rem;
}
.basic thead {
	border-top:3px solid #c3af6c;
	border-bottom:1px solid #ccc;
	background:#f3f2ea;
}
.basic thead tr {
	height:60px;
}
.basic thead tr th {
	text-align:center;
	font-size:15px;
	font-weight:500;
	color:#222;
	font-size:17px;


}
.basic tbody tr {
	height:60px;
	border-bottom:1px solid #ccc;
	color:#666;
	cursor:pointer;
}
.basic tbody tr:hover {
	background:#f7f7f7;
}
.basic tbody tr td {

}

 /*===================================
= NOTICE
=====================================*/

#notice .basic thead tr {
	height:80px;
}
#notice .basic thead tr th:nth-child(1) { 
	width:15%;
}
#notice .basic thead tr th:nth-child(2) {
	width:60%;
}
#notice .basic thead tr th:nth-child(3) {
	width:25%;
}
#notice .basic tbody tr {
	height:80px;
}
#notice .basic tbody tr td {
	text-align:center;
	font-size:18px;
}
#notice .basic tbody tr td:nth-child(2) {
	text-align:left;
	padding-left:30px;
	color:#222;
	font-weight:400;
}

 /*===================================
= cs
=====================================*/
.write_btn {
	margin-left:10px;
	padding: 0 20px;
    width: 100px;
    height: 40px;
    color: #fff;
    font-weight: 400;
    line-height: 40px;
    font-size: 15px;
    letter-spacing: ;
    background-color: #444;
    border: 1px solid #444;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	border-radius:0;
}
.write_btn:hover {
	color:#fff;
}
#cs .basic thead tr th:nth-child(1) { 
	width:10%;
}
#cs .basic thead tr th:nth-child(2) {
}
#cs .basic thead tr th:nth-child(3) {
	width:10%;
}
#cs .basic thead tr th:nth-child(4) {
	width:10%;
}
#cs .basic thead tr th:nth-child(5) {
	width:15%;
}
#cs .basic tbody tr {
	height:60px;
}
#cs .basic tbody tr td {
	text-align:center;
	font-size:15px;
}
#cs .basic tbody tr td:nth-child(2) {
	text-align:left;
	padding-left:30px;
	color:#222;
	font-size:18px;
	font-weight:400;
}
#cs .basic tbody tr td:nth-child(5) span {
	display:inline-block;
	border-radius:3px;
	border:1px solid #aaa;
	width:100px;
	padding:7px 0;
	text-align:center;
	font-weight:600;
	font-size:14px;
}
#cs .basic tbody tr td:nth-child(5) span.cs__complete {
	background:#c3af6c;
	color:#fff;
	border-color:#c3af6c;
}

#cs .basic tbody tr td.cs__to i {
	color:#c3af6c;
}
#cs .basic tbody tr td.cs__nameto {
	font-weight:600;
}




 /*===================================
= WRITE
=====================================*/
#write { min-height:250px; }
#write .csFormWp dl { 
	border-bottom:0;
	min-height:auto;
	padding:0;
	margin:10px 0;
}
#write .csFormWp dl dt {
	border:1px solid #aaa;
	border-right:0;
	text-align:center;
	padding:0;
	background:#f7f7f7;
}
#write .csFormWp dl dd {
	padding:0;
	
}
#write .csFormWp dl:nth-child(2){
	width:49%;
	float:left;
}
#write .csFormWp dl:nth-child(3) {
	width:49%;
	float:right;
}
#write .csFormWp dl:nth-child(4){
	width:49%;
	float:left;
}
#write .csFormWp dl:nth-child(5) {
	width:49%;
	float:right;
}

#write input[type="text"], #write [type="password"], #write select{
	height:50px;
	background:#fff;
	border:1px solid #aaa;
}
#write input[type="text"]:focus, #write input[type="password"]:focus {
	border:1px solid #222;
}
#write textarea {
	background:#fff;
	border:1px solid #aaa;
}
#write textarea:focus {
	border:1px solid #222;
}

 /*===================================
= CS VIEW
=====================================*/
.cs_view .view_title_wp {
	padding:0;
}
.cs_view .view_title {
	padding:20px 30px;
	font-size:22px;
	border-bottom:1px solid #333;
}
.cs_view .view_title_sub {
	padding:10px 30px;
	font-size:17px;
	background:#f7f7f7;
}
.cs_view .view_title_sub p {
	display:inline-block;
}
.cs_view .view_title_sub p span {
	margin-left:10px;
	margin-right:50px;
	font-weight:500;

}

 /*===================================
= FAQ
=====================================*/
#faq { min-height:250px; }
#faq .accordion {
	margin-top:50px;
  display: block;
  position: relative;
  width: 100%;
}

.accordion__item {
  display: block;
  width: 100%;
  margin-bottom: 0px;
}
.accordion__item:last-child {
  margin-bottom: 0;
}

.accordion__title {
  display: block;
  position: relative;
  height: 90px;
  line-height: 90px;
  padding: 0px 50px 0 80px;
  overflow: hidden;
  transition: background-color .2s;
  font-size:22px;
  font-weight:600;
  border-bottom:1px solid #aaa;
}
.accordion__title:before {
	content:"Q";
	position:absolute;
	font-size:30px;
	left:20px;
	top:21px;
	font-weight:300;
	font-family:'NanumSquare', sans-serif;
	color:#fff;
	width:50px;
	height:50px;
	background:#c3af6c;
	border-radius:50%;
	text-align:center;
	line-height:50px;
}
.accordion__title:hover {
  color:#c3af6c;
}
.accordion__title:hover .x7 span {
	background-color:#c3af6c;
}
.accordion__title.active {
  color:#c3af6c;
  border-color:transparent;
}
.accordion__title.active .x7 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.accordion__title.active .x7 span {
	background-color:#c3af6c;
}
.accordion__title.active .x7 .btop {
  width: 67%;
  top: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.accordion__title.active .x7 .bmid {
  opacity: 0;
}
.accordion__title.active .x7 .bbot {
  width: 67%;
  bottom: 2px;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.accordion__content {
  display: none;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #c3af6c;
  border-top: none;
  padding:10px 35px 45px 145px;
  background-color: #fff;
  font-size:18px;
  letter-spacing:-0.05rem;
  line-height:1.6;
  color:#222;
}
.accordion__content:before {
	content:"A";
	position:absolute;
	font-size:45px;
	left:85px;
	top:0px;
	font-weight:800;
	font-family:'NanumSquare', sans-serif;
	color:#ddd;
}
.accordion__content strong {
	font-weight:600;
	color:#222;
	font-size:20px;
}
.accordion__content span {
	color:#c3af6c;
}

.bmenu {
  width: 26px;
  height: 16px;
  display: block;
  position: absolute;
  right: 15px;
  top: 37px;
}

.btop, .bmid, .bbot {
  right: 0;
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #333;
  border-radius: 1px;
}

.btop {
  width: 40%;
}

.bmid {
  width: 60%;
}

.bbot {
  width: 80%;
}

.x7 {
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform-origin: 60% 75%;
          transform-origin: 60% 75%;
}
.x7 .btop {
  top: 0;
  transition: width .3s, top .0s, -webkit-transform .3s;
  transition: width .3s, transform .3s, top .0s;
  transition: width .3s, transform .3s, top .0s, -webkit-transform .3s;
  transition-timing-function: ease-out;
}
.x7 .bmid {
  top: calc(50% - 1px);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  transition: opacity .1s;
  transition-timing-function: ease-out;
}
.x7 .bbot {
  bottom: 0;
  transition: width .3s, bottom .0s, -webkit-transform .3s;
  transition: width .3s, transform .3s, bottom .0s;
  transition: width .3s, transform .3s, bottom .0s, -webkit-transform .3s;
  transition-timing-function: ease-out;
}

.accordion__content pre {
	font-family:  'Barlow', 'Notokr', 'NanumSquare', 'Nunito',  "Nanum Gothic",  sans-serif;
	font-size:18px;
	letter-spacing:-0.05rem;
	line-height:1.6;
	color:#222;
	padding:0;
	margin:0;
	border:0;
	background:transparent;
	white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-all;
	}

/* 글보기 비밀번호 */
.write_ck { width:400px; margin:0 auto; padding:60px 0 0 }

/*===================================
= 반응형
=====================================*/
@media (max-width:1200px) {
	
}
@media (max-width:1080px) {
	#faq .accordion { max-width:100%; }
	#faq .accordion { border:0; }
}
@media (max-width:992px) {
	/*수강후기*/
	.rv_con { margin-top:30px; }
	.rv_box .rv_text { padding:20px 20px; }
	.rv_box .rv_text h4 { font-size:18px; }
	.rv_box .rv_text time { margin-top:5px; }
	.rv_box .rv_text:after { content: "\e913"; font-family: xeicon!important; width:60px; right:10px; }
	/*view*/
	#view .wp { padding:0 5rem;  }
	/*공지사항*/
	#notice, #cs, #write { padding:0 5rem; }
	.search_wp { margin-top:30px; }
	/*고객문의*/
	#cs .basic tbody tr td:nth-child(2) { font-size:15px; }
	/*자주묻는질문*/
	#faq .wp { padding:0 5rem;}
}

@media (max-width:767px) {
	/*수강후기*/
	.rv_select select.form-control { width:230px; height:45px; font-size:13px; }
	.rv_select .btn01.btn02 { padding:10px 0px; width:60px;  display:inline-block; margin-top:0;}
	.rv_boxWp { width:100%; max-width:400px; float:none; margin:0 auto 15px; }
	.rv_box figure { height:180px; }
	.rv_box .rv_text h4 { font-size:16px; }
	.rv_box .rv_text:after { top:-20px; opacity:1; }
	/*view*/
	#view .wp { padding:0 2rem;  }
	.view_title { font-size:17px; }
	.view_title_wp p { font-size:11px; }
	.viewBtn a { width:60px; height:60px; font-size:30px; line-height:60px;}
	/*공지사항*/
	#notice, #cs, #write { padding:0 1rem; }
	.search { width:calc(100% - 80px); }
	.search_wp { padding-top:10px; padding-bottom:0; }
	.search input[type="text"] { width:160px; }
	.search .search-btn { width:40px; }
	.basic thead tr th { font-size:15px; }
	#notice .basic thead tr { height:60px; }
	#notice .basic tbody tr { height:50px; }
	#notice .basic thead tr th:nth-child(1) { display:none; }
	#notice .basic tbody tr td:nth-child(1) { display:none; }
	#notice .basic thead tr th:nth-child(2) { width:70%; }
	#notice .basic tbody tr td { font-size:13px; }
	#notice .basic tbody tr td:nth-child(2) { padding-left:0px; }
	.view_file { font-size:12px; }
	/*고객문의*/
	.write_btn { position:absolute; left:0;width:60px; font-size:13px;padding:0;  }
	#cs .basic thead tr th:nth-child(1), #cs .basic thead tr th:nth-child(4) { display:none; }
	#cs .basic tbody tr td:nth-child(1), #cs .basic tbody tr td:nth-child(4) { display:none; }
	#cs .basic thead tr th:nth-child(3),#cs .basic thead tr th:nth-child(5)  { width:15%; }
	#cs .basic tbody tr td { font-size:12px; }
	#cs .basic tbody tr td:nth-child(2) { padding-left:0; font-size:13px;  }
	#cs .basic tbody tr td:nth-child(5) span { font-size:11px; width:50px; }
	.cs_view .view_title { font-size:17px; }
	/* 비밀번호 치기 */
	.write_ck { width:300px; padding:20px 0 0; }
	/*자주묻는질문*/
	#faq .wp { padding:0 1rem;}
	.accordion__title { height:60px; line-height:60px; padding:0 50px 0 50px; font-size:17px; }
	.accordion__title:before { left:0; width:40px; height:40px; font-size:20px; line-height:40px; top:11px;}
	.bmenu { right:5px; top:22px; }
	.accordion__content { padding:10px 30px 30px 50px; }
	.accordion__content:before { left:7px; font-size:40px; }
	.accordion__content pre { font-size:15px; letter-spacing:-0.05rem;}
	
}