@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;
}
*/
/* ============================= */
/* 이미지를 모두 선택하세요. CSS */
/* ============================= */


/*
  [폰트]
  - HTML에서 CDN으로 불러온 Pretendard를 사용합니다.

  헤더 색상을 변경하고 싶다면 ctrl + F 후 ★★★ 입력하여 이동하세요.
  박스 색상을 변경하고 싶다면 ctrl + F 후 ★★★★ 입력하여 이동하세요.
*/

.captcha-box,
.captcha-box *,
.desktop-icon,
.desktop-icon * {
  font-family: 'Pretendard', sans-serif;
}
/*
  [공통 숨김 처리]
  - 보이지 않게 숨기고
  - 클릭도 되지 않게 막습니다.
*/
.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/*
  [캡차 창 바깥 박스]
  - 화면 위에 떠 있는 창의 위치를 담당합니다.
*/
.captcha-box {
  width: 300px;
  position: fixed;
  top: 100px;
  left: 50px;
  z-index: 999999;
  will-change: top, left, transform;
}

/* 오답일 때 창 흔들림 */
.captcha-box.captcha-shake {
  animation: shakeWindow 0.34s ease;
}

@keyframes shakeWindow {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-8px); }
  40%  { transform: translateX(8px); }
  60%  { transform: translateX(-6px); }
  80%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

/*
  [캡차 내부 박스]
  -  헤더 아래 박스입니다.
*/
.captcha-inner {
  border: none;
  border-radius: 14px;
  background: #fff; /* ★★★★ 박스 색상 변경 */
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 2px 10px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

/* 창이 숨겨질 때 내부도 살짝 축소 */
.captcha-box.hidden .captcha-inner {
  opacity: 0;
  transform: scale(0.96);
}

/* 사라질 때 페이드 아웃 */
.captcha-inner.captcha-fadeout {
  opacity: 0 !important;
  transform: scale(0.94) !important;
}

/* 나타날 때 팝업 효과 */
.captcha-inner.captcha-popin {
  animation: captchaPopIn 0.28s ease;
}

@keyframes captchaPopIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* [상단 헤더]
★★★ 헤더 색상 변경
  background 에서 색상 변경이 가능합니다.
  background: #000000 <단색
  background: linear-gradient(135deg, #000000, #4a4a4a); <그라데이션
  그라데이션은 ↘ 방향입니다.
  
  */
.captcha-header {
  position: relative;
  background: linear-gradient(135deg, #850909, #c8d1d8);
  padding: 16px 18px 23px;   /* 상하여백조절 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;                  /* 제목-설명 간격*/
}

/* 헤더 제목 글씨 */
.captcha-header span {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  padding-right: 52px;
}

/* 안내 문구 */
.desc {
  font-size: 14.5px;
  line-height: 1.2;
  margin: 0;
  color: #ddd;
  max-width: 260px;
}

/* 드래그 중 텍스트 선택 방지 */
#dragHeader,
#dragHeader * {
  user-select: none;
  -webkit-user-select: none;
}

/*
  [우측 상단 창 버튼]
  - 최소화 / 닫기
*/
.window-buttons {
  position: absolute;
  right: 10px; /* left 고정 대신 right 기준 */
  top: 8px;
  display: flex;
  gap: 2px;
}

.window-buttons button {
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  padding: 0;
}

/*
  [본문 영역]
  - 이미지와 버튼이 들어가는 부분
*/
.captcha-body {
  padding: 12px 12px 6px;   
  position: relative;
  overflow: hidden;
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
}

/* 최소화 상태일 때 본문 숨김 */
.captcha-box.is-minimized .captcha-body {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

/*
  [이미지 그리드]
  - 3칸씩 배치
  - 이미지 개수는 HTML에서 6~9장으로 사용 권장
*/
.captcha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.captcha-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgb(156, 16, 16);
  border-radius: 4px;
  cursor: pointer;
  display: block;
  transition: transform 0.1s ease, filter 0.1s ease, border 0.1s ease;
}

/* 누르는 순간 살짝 작아짐 */
.captcha-grid img:active {
  transform: scale(0.95);
}

/* 선택된 이미지 표시 */
.captcha-grid img.selected {
  border: 3px solid #b5c1cf;
  box-sizing: border-box;
  filter: brightness(0.85);
}

/* 마우스를 올리면 살짝 확대 */
.captcha-grid img:hover {
  transform: scale(1.03);
}

/*
  [하단 버튼 영역]
*/
.captcha-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding: 14.5px 0 12.5px;
  border-top: 1px solid #ddd;
}

.footer-left {
  display: flex;
  gap: 10px;
}

.footer-left button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
}

.footer-confirm {
  background: #a00909;
  color: #fff;
  border: none;
  padding: 5px 25px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.footer-confirm:hover {
  background: #2f2f2f;
}




/*
  [오답 메시지]
  - 잠깐만 보이는 안내 텍스트
*/
.error-text {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 20px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.error-text.show {
  opacity: 1;
}

/*
  [검사 중 오버레이]
  - 확인 중일 때 위를 덮는 화면
*/
.captcha-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 20;
}

.overlay-text {
  margin-top: 8px;
  font-size: 30px;
  color: #222;
}

/* 성공 메시지 색상 */
.success-message {
  color: #4caf50;
  font-weight: bold;
}

/* 확인중... 텍스트 깜빡임 */
.fade-text {
  animation: fadeText 1.2s ease-in-out infinite;
}

@keyframes fadeText {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* 서서히 등장 */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* 로딩 스피너 */
.spinner {
  width: 26px;
  height: 26px;
  border: 3px solid #ccc;
  border-top: 3px solid #444;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*
  [바탕화면 아이콘]
  - 창을 닫았을 때 대신 보이는 요소
*/
.desktop-icon {
  position: fixed;
  top: 384px;
  left: 552px;
  width: 100px;
  cursor: pointer;
  user-select: none;
  z-index: 999998;
  opacity: 0;
  will-change: top, left, opacity, transform;
  transition: transform 0.18s ease, filter 0.18s ease;
}

/* 아이콘 이미지 */
.desktop-icon img {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* 표시 중일 때 보이기 */
.desktop-icon:not(.hidden) {
  opacity: 1;
}

/* 마우스를 올렸을 때 */
.desktop-icon:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* 드래그 중일 때 */
.desktop-icon.dragging {
  transform: scale(1.05);
  transition: transform 0.08s ease;
  cursor: grabbing;
}

/* 아이콘 등장 애니메이션 */
.desktop-icon.icon-fadein {
  animation: iconFadeIn 0.22s ease forwards;
}

/* 아이콘 사라짐 애니메이션 */
.desktop-icon.icon-fadeout {
  animation: iconFadeOut 0.22s ease forwards;
}

@keyframes iconFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes iconFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}



/* ============================= */
/* 이미지를 모두 선택하세요. CSS 끝 */
/* ============================= */