@charset "UTF-8";

/* 폰트 - noto sans kr */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap');


body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 100%;
  background-color: rgb(245, 245, 245);
  transition: opacity 0.5s ease-out;
  overflow-x: hidden
  }

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(./images/background.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/*
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, 
form, fieldset, legend, input, textarea, p, blockquote, 
th, td, figure {
  margin: 0;
  padding: 0;
}
*/

button {
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

ul, li {
  list-style: none;
}

img, fieldset {
  border: none;
  vertical-align: top;
}

a, a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

#container {
    width: 70%;
    max-width: 1980px;
    margin-right: auto;
    margin-left: auto;
}


/* 플로팅 액션 버튼 */
.floating a:hover {
  text-decoration: none;
}

.fa-button-group {
  position: fixed;
  display: flex;
  width: 120px;
  bottom: 5%;
  right: 4%;
  z-index: 20;
  text-align: center;
  align-items: center;
  justify-content: flex-end;
}

.fa-button {
  order: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.fa-button.active {
  background-color: #fff;
}

.fa-button-group span {
  order: 1;
  padding-right: 1em;
  text-align: right;
  font-weight: 600;
  color: rgb(255, 255, 255);
  display: inline-block;
  opacity: 0;
}

.fa-button-group span.active {
  opacity: 1;
  animation: spanfloatIn 0.5s ease-out forwards;
}

@keyframes spanfloatIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.float-act {
  position: fixed;
  bottom: 9%;
  right: 4%;
  z-index: 20;
  display: none;
}

.float-act ul {
  padding-inline-start: 0;
}

.float-act li {
  display: flex;
  width: 130px;
  margin-bottom: 8%;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.3s ease-in-out; 
}

.float-act li a {
    order: 2;
}

.float-act li div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.float-act li span {
  order: 1;
  text-align: right;
  padding-right: 1em;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.float-act.active {
  display: block;
  animation: floatIn 0.5s ease-out;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 9;
}


/*슬라이더*/

.cover-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1782 / 324;
  border-radius: 30px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  margin-top: 8%;
  margin-bottom: 5%;
  background-color: rgb(224, 224, 224);

}

.cover-slider ul {
  margin: 0;
  padding: 0;
}

.cover-slider ul li {
  display: table;
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1782 / 324; */
  text-align: center;
  background-position: 50% 50%;
  background-size: cover;

}

.cover-slider .prev,
.cover-slider .next {
  position: absolute;
  top: 0%;
  z-index: 20;
  width: 10%;
  height: 100%;
  background-position: center;
  background-size: cover;
  text-indent: -999em;
}

.cover-slider .prev {
  left: 0%;
}

.cover-slider .next {
  right: 0%;
}

.cover-slider .paging {
  position: absolute;
  left: 0;
  bottom: 5%;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.cover-slider .paging button {
  display: inline-block;
  overflow: hidden;
  width: 25px;
  height: 1px;
  margin: 0 5px;
  background-color: #e9e9e9;
  text-indent: -999em;
  vertical-align: bottom;
}

.cover-slider .paging .current {
  height: 5px;
  margin-top: 0;
  border-radius: 30px;
/*  background-color: blue; */
  box-shadow: 0px 2px 2px rgba(49, 49, 49, 0.5);
}


/* 공지사항 홈커버 */

.cover-list {
  position: relative;
  overflow: hidden;
  margin-right: 0.8%;
  margin-bottom: 2.8%;
  float: left;
  width: 30%;
  height: 396px;
  padding-bottom: 0.5%;
}

.cover-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cover-list ul li {
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 95%;
  margin-bottom: 8%;
  background-color: white;
  border-radius: 25px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  transition: all 0.4s ease-in-out;
	-webkit-animation: fade-in-fwd 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
	        animation: fade-in-fwd 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
}

/* ----------------------------------------------
 * 키프레임 애니메이션 라이센스
 * Generated by Animista on 2024-1-9 15:18:1
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}


.cover-list ul li * {
  transition: all 0.2s ease-in-out;
}

.cover-list ul li a {
  display: flex;
  align-items: center;
  margin-top: 3%;
  margin-left: 4%;
  margin-right: 4%;
  margin-bottom: 3%;
  text-decoration: none;
}

.cover-list ul li a:hover .title,
.cover-list ul li a:focus .title {
  text-decoration: none;
}

.cover-list ul li .list-thum {
  flex: 0 0 100px;
  height: 100px;
  aspect-ratio: 1;
  margin-right: 3%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.cover-list ul li .li-group {
  flex: 1;
}

.cover-list ul li .title {
  display: block;
  overflow: hidden;
  max-width: 98%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.25em;
  font-weight: 900;
  color: #222;
}

.cover-list ul li .date {
  display: block;
  font-weight: 400;
  font-size: 0.75em;
  color: #999;
}

.cover-list ul li .excerpt {
  display: block;
  overflow: hidden;
  max-width: 98%;
  margin-top: 4px;
  text-overflow: ellipsis;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.2rem;
  color: rgb(138, 138, 138);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


/*공지사항 버튼*/
.cover-list .paging2 {
  position: absolute;
  left: 0;
  bottom: 2%;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.cover-list .paging2 button {
  display: inline-block;
  overflow: hidden;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  margin: 0 5px;
  vertical-align: bottom;
}

.cover-list .paging2 .current {
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}


/* 페어정리 리스트 */
.cover-oc {
  position: relative;
  overflow: auto;
  width: 68%;
  height: 380px;
  padding-top: 0.8%;
  padding-left: 0.8%;
  border-radius: 30px 6px 6px 30px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  background-color: rgb(255, 255, 255);
}

.cover-oc ul {
  display: flex;
  justify-content: flex-start;
  list-style-type: none;
  text-align: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.cover-oc ul li {
  box-sizing: border-box;
  width: 30%;
  aspect-ratio: 100 / 100;
  margin: 1.2%;
  border-radius: 20px;
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.cover-oc li:hover {
  transition: transform 0.3s ease;
  transform: scale(1.05);
}

.cover-oc ul li a {
  display: block;
  text-decoration: none;
}

.cover-oc ul li a:hover .title,
.cover-oc ul li a:focus .title {
  text-decoration: none;
}

.cover-oc ul li .oc-title,
.cover-oc ul li .oc-excerpt {
  display: block;
  overflow: hidden;
  text-align: center;
  max-width: 98%;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.cover-oc ul li .oc-title {
  padding-top: 45%;
  padding-bottom: 30%;
  padding-left: 10%;
  padding-right: 10%;
  font-weight: 900;
  color: rgb(255, 255, 255);
  border-radius: 20px;
  opacity: 0%;
}

.cover-oc ul li .oc-excerpt {
  font-weight: 500;
  font-size: 0.7em;
  color: rgb(233, 233, 233);
  opacity: 0%;
}

/*애니메이션*/
.cover-oc ul li:hover * {
  transition: all 0.2s ease-in-out;
}

.cover-oc ul li:hover .oc-title {
  color: rgb(255, 255, 255);
  text-shadow: 0px 2px 4px rgb(19, 19, 19);
  opacity: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 90%);
  }

.cover-oc ul li:hover .oc-excerpt {
  color: rgb(255, 255, 255);
  text-shadow: 0px 2px 4px rgb(19, 19, 19);
  opacity: 100%;
}


/* 카테고리 */
.list-group {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.left-group, .right-group {
  margin: 1.5%;
  margin-top: 6%;
}

.left-group {
  width: 300px;
  height: auto;
}

.right-group {
  width: 100%;
  height: auto;
}

.ct-img1 {
  width: 300px;
  height: 700px;
  margin-bottom: 10%;
  background-color: #e9e9e9;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 20px;
}

.ct-img2 {
  width: 100%;
  max-width: 1000px;
  height: 65%;
  margin-bottom: 2%;
  background-color: #e9e9e9;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 20px;
}

.ct-bgm {
  width: 300px;
  height: 50px;
  background-color: #e9e9e9;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.list-page-group {
  position: relative;
  min-height: 35%;
  max-height: 35%;
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.list-page-group ol {
  margin: 0;
  margin-bottom: 6.5%;
  padding: 0;
  display: flex;
  width: 100%;
  justify-content: space-around;
  list-style-type: none;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 0.8em;
  font-weight: 600;
}

.list-page-group ol li {
  float: left;
  box-sizing: border-box;
  width: 22%;
  aspect-ratio: 100 / 100;
  margin: 0 auto;
  border-radius: 20px;
  background-image: url(./images/noimg.png);
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  transition: all 0.2s ease-in-out;
	-webkit-animation: fade-in-fwd 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
	        animation: fade-in-fwd 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
}

.list-page-group ol li span {
  display: inline-block;
  padding-top: 5%;
  padding-bottom: 80%;
  width: 100%;
  border-radius: 20px;
  color: #999;
  opacity: 0%;
  white-space: nowrap; 
}

.list-page-group ol li:hover * {
  transition: all 0.2s ease-in-out;
}

.list-page-group ol li:hover span {
  color: rgb(255, 255, 255);
  text-shadow: 0px 2px 4px rgb(19, 19, 19);
  opacity: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 90%);
  }

.pagination {
  position: absolute;
  width: 100%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.pagination .prev,
.pagination .next {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
}

.pagination a {
  display: inline-block;
  margin: 0 1%;
  font-size: 0.875em;
  line-height: 1.5rem;
  vertical-align: middle;
  color: #999;
}

.pagination span {
  background-color: #fff;
  border-radius: 10px;
  padding: 4px 8px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.pagination span.selected {
  border-radius: 10px;
  padding: 4px 8px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}


/* 비밀글 */
.pgroup {
  display: flex; 
  margin-top: 20%;
  margin-bottom: 2.5%;
}

.picon,
.ptitlebox {
  height: auto;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.picon {
  display: flex;
  flex: 0 0 9%;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0 0 20px;
  font-size: 20px;
  line-height: 2rem;
  font-weight: 600;  
  text-align: center;
}

.ptitlebox {
  flex: 1; 
  padding: 1%;
  padding-left: 2%;
  padding-right: 2%;
  border-radius: 0 20px 20px 0;
  background-color: white;
}

.entry-content {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding-top: 4%;
  margin-bottom: 4%;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  font-size: 14px;
  line-height: 1.2rem;
  font-weight: 400;  
  text-align: center;
}

.password {
  background-color: rgb(247, 247, 247);
  padding: 2% 8%;
  margin-bottom: 3%;
  border: none;
  border-radius: 50px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25) inset;
  text-align: center;
  font-size: 12px;
}

.pbtn {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 4%;
  padding: 1.5% 3%;
  border-radius: 50px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  font-weight: 600;  
  text-align: center;
  font-family: 'Noto Sans KR'
}


/* 글 제목 */
.pagewrap {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}

.pageboxgroup {
  display: flex; 
  margin-top: 8%;
  margin-bottom: 2.5%;
}

.pagedatebox,
.pagebox {
  height: auto;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.pagedatebox {
  display: flex;
  flex: 0 0 9%;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0 0 20px;
  font-size: 30px;
  line-height: 2rem;
  font-weight: 600;
}

.pagedatebox > span {
  text-align: center;
}

.pagebox {
  flex: 1; 
  padding: 1%;
  padding-left: 2%;
  padding-right: 2%;
  border-radius: 0 20px 20px 0;
  background-color: white;
}

.pagecategory {
  display: block;
  margin-top: 3px;
  padding-left: 1px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1em;
  color: #5a5a5a;
}

.pagetitle {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1em;
}

.pagedate {
  display: block;
  padding-left: 2px;
  font-size: 12px;
  font-weight: 400;
  line-height: 2em;
  color: #999;
}

.admin {
  margin-top: 8px;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
  color: #999;
}

.admin a {
  color: #999
}


/* 글 본문 */
.pagedesc {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 5% 6% 2% 5%;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  font-size: 0.9em;
}

/* 글 본문 구성 디자인 */
/* 인용구 */
blockquote{
  display:block;
  background: #fff;

  margin: 0 0 20px;
  position: relative;
  padding: 15px 20px 15px 25px; 
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: #666;
 
  -moz-box-shadow: 2px 2px 10px #ccc;
  -webkit-box-shadow: 2px 2px 10px #ccc;
  box-shadow: 2px 2px 10px #ccc;
 
  border-left-style: solid;
  border-left-width: 15px;
  border-right-style: solid;
  border-right-width: 2px;
}

 
blockquote a{
  text-decoration: none;
  padding: 0 3px;
}
 
blockquote a:hover{
  color: #666;
}
 

/* 접은글의 더보기 버튼 꾸미기 */
.btn-toggle-moreless, .btn_more, .btn_less {
    z-index: 1;
    position: relative;
    display: inline-block;
    padding: 5px 12px; 
    border-radius: 8px; 
    margin-top: 5px;
    font-size: 14px !important;
    font-weight: 800;
}

div[data-ke-type='moreLess'] {
	position:relative;
}

div[data-ke-type='moreLess']::before {
    content: '';
    position: absolute;
    width: 100%;
    margin-top: 22.5px;
}

.moreless-content {
    padding: 15px 5px;
}

.btn-toggle-moreless:before, .btn_more:before {
    content: '✚';
    margin-right: 5px;
}

.open .btn-toggle-moreless:before, .btn_less:before {
    content: '✖'; 
    margin-right: 5px;
}


/* 글 본문 기본버튼 */
.container_postbtn {
	display:flex;
	justify-content:center;
	align-items:center;
  margin-top: 8%;
}


.postbtn_like:hover {
  transition: all 0.2s ease-in-out;
}

.wrap_btn.wrap_btn_share,
.wrap_btn.wrap_btn_etc {
  display: none;
  }

.container_postbtn .btn_post {
    height: 30px;
    padding: 0 1px !important;
}

span.ico_postbtn.ico_statistics {
  display: none;
}



/* 페이지 */
.banner-group {
  margin-top: 8%;
  width: 100%;
}

.banner-top {
  position: relative;
  padding: 3% 0%;
  margin-bottom: 3%;
  text-align: center;
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: 3em;
  border-radius: 20px;
  line-height: 1;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.banner-desc {
  padding: 1%;
  padding-bottom: 7%;
  text-align: center;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
  font-size: 0.8em;
}

.banner-desc * {
  margin: 0.2em 0.1em !important;
}

.banner-desc .container_postbtn {
	display:none;
}



/* 방명록 */
.gb-group {
  margin-top: 8%;
  width: 100%;
}

.gb-top {
  padding: 3% 0%;
  margin-bottom: 3%;
  text-align: center;
  font-family: 'Kanit', sans-serif;
  font-weight: 900;
  font-size: 3em;
  border-radius: 20px;
  line-height: 1;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3%;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25); 
}

.tt-comment-cont .tt-box-total {
  order: 1;
  width: 100%;
  margin: 0;
  display: none;
}

.tt-comment-cont form {
  order: 3;
  width: 90%;
  padding: 3% 5%;
}

.tt-box-account input {
  border: none;
  outline: none;
  border-radius: 100px !important;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.tt-box-textarea {
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}

.tt-comment-cont .tt-area-reply {
  order: 2;
  width: 100%;
  padding: 0 5%;
}




/* 스크롤바 */

/* Webkit 기반 브라우저 */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  box-shadow: 0px 2px 4px rgba(49, 49, 49, 0.25);
}


/* 스크롤바 트랙 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 6px
}



/* 푸터 - 스킨출처(삭제 적발 시 이후 공개배포 없음) */
#footer {
  margin-top: 3%;
  position : relative;
  left: 0;
  bottom: 0;
  float: left;
  width: 100%;
  text-align: center;
  font-size: 9px;
  color: #b9b9b9;
}



/* 반응형 - 와이드모니터 설정 */
@media screen and (min-width: 2000px) and (max-width: 9000px) {

  .cover-list {
    height: 500px;
  }

  .cover-oc {
    height: 500px;
  }
}


/* 반응형 - tablet 설정 */
@media screen and (min-width: 768px) and (max-width: 1200px) {

    #container {
      width: 95%;
    }

    .float-act {
      bottom: 10%;
    }

    .float-act li {
      width: 140px;
    }
    
    .cover-oc ul li .oc-title,
    .cover-slider,
    .cover-list ul li,
    .cover-oc ul li {
      border-radius: 20px;
    }


    .cover-slider {
      margin-top: 5%;
    }

    .cover-slider .paging button {
      width: 20px;
    }

    .cover-slider .paging .current {
      height: 3px;
    }


    .cover-list {
      width: 100%;
      height: 200px;
      padding-bottom: 4%;
    }

    .cover-list ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      height: 100%;
    }

    .cover-list ul li {
       width: 47%;
       height: auto;
       margin: 1%;
    }

    .cover-list ul li .title {
      font-size: 18px;
    }

    .cover-list ul li .date {
      font-size: 11px;
    }

    .cover-list ul li .excerpt {
      font-size: 13px;
      line-height: 1.2rem;
    }

    .cover-list .paging2 {
      bottom: 2%;
    }


    .cover-oc {
      width: 95%;
      border-radius: 20px 6px 6px 20px;
      margin: 0 auto;
    }


    .list-group {
      margin-left: auto;
      margin-right: auto;
    }

    .ct-img2 {
      height: 30%;
      max-width: 1000px;
      margin-bottom: 4%;
    }

    .list-page-group {
      min-height: 65%;
      max-height: 65%;
      max-width: 1000px;
    }

    .list-page-group ol {
      flex-wrap: wrap;
      font-size: 0.8em;
    }

    .list-page-group ol li {
      width: 48%;
      max-width: 220px;   
      margin-bottom: 4%;
    }

    .pagination {
      bottom: 0;
    }

    .pagewrap {
      width: 95%;
    }

    .pageboxgroup {
      margin-top: 5%;
    }

    .pagecategory {
      font-size: 13px;
    }

    .pagetitle {
      font-size:20px
    }

    .pagedate {
      font-size: 12px;
    }

    .admin {
      font-size: 13px;
    }


    .banner-group {
      margin-top: 5%;
    }


    .gb-group {
      margin-top: 5%;
    }

    .tt-comment-cont form {
      width: 95%;
    }


    #footer {
      margin-top: 5%;
      font-size: 8px;
    }


}

/* 반응형 - mobile 설정 */
@media screen and (max-width: 767px) {

    #container {
      width: 98%;
    }

    .fa-button-group, .float-act {
      right: 7%;
    }

    .fa-button-group {
      bottom: 4%;
    }

    .float-act {
      bottom: 10%;
    }

    .float-act li {
      width: 150px;
    }

    .fa-button, .float-act li div {
      width: 50px;
      height: 50px;
    }

    .cover-oc ul li .oc-title,
    .cover-slider,
    .cover-list ul li,
    .cover-oc ul li {
      border-radius: 10px;
    }


    .cover-slider {
      margin-top: 4%;
      margin-bottom: 2%;
    }

    .cover-slider .paging button {
      width: 10px;
      margin: 0 3px;
    }

    .cover-slider .paging .current {
      height: 3px;
    }


    .cover-list {
      width: 100%;
      height: 300px;
      padding-top: 4%;
      padding-bottom: 13%;
      margin-bottom: 5%;
    }

    .cover-list ul {
      height: 100%;
    }

    .cover-list ul li {
      float: left;
      width: 90%;
      height: auto;
      margin: 2%;
    }

    .cover-list ul li .title {
      font-size: 16px;
    }

    .cover-list ul li .date {
      font-size: 10px;
    }

    .cover-list ul li .excerpt {
      font-size: 12px;
      line-height: 1rem;
    }

    .cover-list .paging2 {
      bottom: 5%;
    }


    .cover-oc {
      width: 95%;
      border-radius: 10px 6px 6px 10px;
      padding-left: 2%;
      margin: 0 auto;
    } 

    .cover-oc ul li {
      width: 45%;
      margin-top: 3%;
    }

    .cover-oc ul li .oc-excerpt {
      margin-top: 5%;
    }



    .list-group {
      display: flex;
      flex-direction: column; 
    }

    .left-group, .right-group {
      margin-left: auto;
      margin-right: auto;
      width: 98%;
    }

    .left-group {
      order: 2;
      display: flex;
      flex-direction: column; 
    }

    .right-group {
      order: 1;
      margin-top: 2%;
    }

    .ct-img1 {
      order: 2;
      width: 100%;
      display: none;
    }

    .ct-img2 {
      width: 100%;
      height: 250px;
      margin-bottom: 6%;
    }

    .ct-bgm {
      order: 1;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 8%;
    }

    .list-page-group {
      min-height: 400px;
      max-width: 1000px;
      margin-top: 2%;
      margin-bottom: 1%;
    }

    .list-page-group ol {
      flex-wrap: wrap;
      font-size: 0.8em;
    }

    .list-page-group ol li {
      width: 45%;
      max-width: 100%;  
      margin-bottom: 4%;
    }

    .pagination {
      bottom: 0;
    }


    .pagewrap {
      width: 100%;
    }

    .pageboxgroup {
      margin-top: 4%;
    }

    .pagedatebox {
      flex: 0 0 15%;
    }

    .pagecategory {
      font-size: 12px;
    }

    .pagetitle {
      font-size: 18px
    }

    .pagedate {
      font-size: 10px;
    }

    .admin {
      font-size: 12px;
    }
    

    .banner-group {
      margin-top: 4%;
    }

    .banner-desc {
      padding-bottom: 13%;
    }

    .gb-group {
      margin-top: 4%;
    }

    .tt-comment-cont form {
      width: 100%;
    }


    #footer {
      margin-top: 2%;
      margin-bottom: 2%;
      font-size: 7px;
    }


}


/* 이미지 리사이징 
img
{
 max-width: 100%;
 height: auto;
}
*/