@charset "UTF-8";

/*skin start*/

/* font */
 @font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;}


/* CSS Document */
 * {padding: 0; margin: 0; box-sizing: border-box; font-family: 'Pretendard-Regular';
 outline: none; font-size: inherit; line-height: inherit; word-break:break-all;}
 a { text-decoration: none; background: transparent; }
 ul, li, ol {list-style: none; padding:0; margin: 0;}
 input:focus, textarea:focus, ::placeholder { outline: none; border: none;}
 button {padding: 0; border:0; background: transparent;}
 img {vertical-align: bottom;}
 textarea {resize: none;}
 .newpost {vertical-align: middle; width: 12px !important; height: 12px !important;}

 /* loading */
 #loading
 { width: 100%; height: 100%; top: 0; left: 0; background: #ffffff;
 position: fixed; display: flex; z-index: 999; opacity: 0.9;}
 #loading > img { display: flex; width: 70px; height: 70px; margin: auto;}


/* layout */
/* 폰트 사이즈, 줄 간격 수정법 
 아래 #whole안의 font-size(폰트 사이즈) line-height(줄 간격)
 수치(숫자px)를 수정 해주세요.*/
 #whole {position: relative; display: flex; align-items: center; justify-content: center;
 font-size: 11.5px; line-height: 15px;
 height: 100vh;}
 #sidebar1 {margin-right: 10px;}
 #sidebar2 {margin-right: 10px;}
 #container {border-radius: 5px; position: relative;
 background: #fff;  overflow-y: auto;}
 .wrap{width: 100%;}


/* sidebar1 */
 .side-img { width: 100%; height: calc(100% - 40px);
 padding: 5px;
 margin-bottom: 10px; background: #fff;
 border-radius: 5px;}

 .search {width: 100%; height: 30px; padding: 5px;  border-radius: 5px;
 display: flex; justify-content: center; align-items: center;
 background: #fff;}
 .search input {border: none; font-family: 'Pretendard-Regular';
 background: none; width: 90%;}


/* img-slide */
 .img-slide, .img-slide * {box-sizing: border-box;}
 .img-slide { position: relative; width: 100%;  height: 100%;
  overflow: hidden; text-align: center; border-radius: 5px;}
 .img-slide > div {
  position: absolute; width: 100%; top: 0;
  bottom: 0;  animation: m-mar 10s linear infinite, m-up 30s linear infinite;
  animation-delay: -5s; left: 100%;
  background-position: center; background-size: cover;}
 @keyframes m-mar {
  from {left: 100%;}
  to {left: -100%;}
 }
 .img-slide > div:nth-of-type(2) {animation-delay: 0s, 0s;}
 .img-slide > div:nth-of-type(3) {animation-delay: 5s;}
 .img-slide > div:nth-of-type(4) {animation-delay: 10s;}
 .img-slide > div:nth-of-type(5) {animation-delay: 15s;}
 .img-slide > div:nth-of-type(6) {animation-delay: 20s;}
@keyframes m-up {
  0% {z-index: 10;}
  20% {z-index: 10;}
  100% {z-index: 0;}
 }
 .img-slide:hover > div {animation-play-state: paused; }
 .img-slide > div:before {content: ""; position: absolute; top: 15px;
 left: 15px; right: 15px; bottom: 15px;
 border-radius: 5px;}
 .img-slide > div > a { position: absolute;
 left: 0; right: 0; font-weight: bold; letter-spacing: 3px; top: 30px; 
 transition: 0.3s; color: #fff; text-transform: uppercase;}
 .img-slide > div > a:hover { letter-spacing: 4px;}
 .img-slide > div:nth-of-type(even) > a { top: unset; bottom: 30px;}


/* sidebar2 */
 .side2-menu {width: 100%; display: flex; justify-content: space-between;}
 .side2-menu li a {display: flex; width: 35px; height: 35px;
 border-radius: 5px; align-items: center; justify-content: center;
 background: #fff;}

 .side2-menu i {font-size: 13px;}
 .side2-menu li a:hover {color: #fff; transition: all 0.3s ease;}

 .side2-info { display: flex; flex-direction: row;
 margin-top: 10px; width: 100%; height: 150px; border-radius: 5px;
 background: #fff;}
 .side2-cate {width: 100%; height: calc(100% - 309px); margin-top: 10px;
 border-radius: 5px; overflow-y: auto;
 background: #fff;}

 .side2-img {position: relative; width: 50%; overflow: hidden;
 padding: 5px; height: 150px;}
 .side2-img img {width: 100%; height: 100%; border-radius: 5px;}

 .side2-img:hover img { opacity: 1; -webkit-animation: flash 1.5s;
  animation: flash 1.5s;}
 @-webkit-keyframes flash {
  0% {opacity: .4;}
  100% {opacity: 1;}
 }
 @keyframes flash {
  0% {opacity: .4;}
  100% {opacity: 1;}
 }

 .side2-text {width: 50%; padding: 5px 5px 5px 0; height: 100%;
 overflow-y: scroll;}
 .sd_title {font-weight: bold; font-size: 12px;
 margin-bottom: 5px;}
 .sd_blogger {margin-bottom: 10px;}
 .sd_title i, .sd_blogger i {margin-right: 3px;}

 .side2-img2 {display: flex; margin-top: 10px;}
 .side2-img-1, .side2-img-2, .side2-img-3 {width: calc((100% - 10px) / 3);}
 .side2-img-1 img, .side2-img-2 img, .side2-img-3 img {width: 100%; height: 100%;
 border-radius: 5px; object-fit: cover;}
 .side2-img-1, .side2-img-2 {margin-right: 5px;}


/* category */
 .cate-text {font-weight: bold; font-size: 12px; margin: 5px;}
 .cate > ul > li > a {display: none;}
 .cate_li {display: flex; align-items: center;}
 .sub_category_list, .c_cnt {display: none;}
 .sub_item {margin-left: 5px;}
 .tt_category{margin-left: 15px;}
 .link_item {display: block; margin: 3px 0;}
 .link_sub_item {margin-left: 10px;}

 .category_list > li > a:before{content:"-";}
 .sub_category_list > li > a:before{content:"-";}
 .cate_li:before{content:"+"; margin-right: 1px;}


/*paging*/
 #paging {display: flex;flex-direction: column; justify-content: flex-end;
 margin-left: 5px;}
 .p-prev a, .p-next a {display: flex; width: 24px; height: 24px; align-items: center;
 justify-content: center; background: #fff; border-radius: 5px;} 
 .p-prev a {margin-bottom: 5px;}


/* hover */
 .link_item:hover, .paging a:hover,
 .comment-btn:hover, .related-btn:hover, .sub_item:hover,
 .p-prev a:hover, .p-next a:hover {cursor: pointer;}
 .comment-send:hover {cursor: default;}


/* list */ 
 .empty {text-align: center; margin: 10px 0; width: 100%;}
 .list-inner:after{content: ''; display: block; clear: both; margin: 0; padding: 0;}
 .list-wrap a {background: transparent;}
 
 .cate-link2 {display: block;}
 .category-name {display: flex; align-items: center; flex-direction: column;
 justify-content: center; padding: 5px;}
 .cate-info1 {display: flex; flex-direction: row; align-items: center;}
 .cate-info1 i {margin-right: 5px;}
 .cate-count {margin-left: 5px; font-weight: bold;}
 .cate-info2 {margin-top: 5px;}

 .list-inner {height: 100%; overflow-y: auto;}
/* list-basic */
/* 글 목록 개수 변경 후 가운데 라인 수치는 직접 수정해주세요
 #list-basic:before { } 안에 height: 500px; 추가 후 숫자를 조금씩 늘리거나 
 줄이면서 맞춰주시면 됩니다 */
 #list-basic:before {top: 45px; bottom: 5px;
 position: absolute; content: " "; width: 3px;
 left: 50%; margin-left: -1.5px;}
 #list-basic {min-height: 100%;}
 #list-basic .list-inner{padding: 5px;}
 #list-basic .list-wrap {width: calc((100% - 35px) / 2); margin-bottom: 16px;}
 #list-basic .list-wrap a {display: block; border-radius: 5px;}
 #list-basic .list-wrap:nth-of-type(2n) {transform: translateX(calc(100% - -35px)); text-align: right;}
 #list-basic .list-table {display: flex; justify-content: space-between;}
 #list-basic .table-title {width: calc(100% - 90px); text-align: left; padding: 10px;}
 #list-basic .table-date {width: 90px; text-align: left; padding: 10px;}
 #list-basic .list-td{ width: 100%; padding: 3px;}
 #list-basic .list-title {line-height: 20px; text-align: center; height: 22px; overflow: hidden;
 text-overflow: ellipsis; display: flex; -webkit-line-clamp: 2;
 -webkit-box-orient: vertical; justify-content: center;}
 #list-basic .list-lock .list-title::after {content:"\f023"; font-family:"Font Awesome 5 Free"; font-weight:700;
 margin-left: 2px;}
 #list-basic .list-date {width: 100%; text-align: right;} 
 #list-basic .thumbnail {position: absolute; background: #fff;
 transform: translateX(calc(100% - 21px)) translateY(5px);
 z-index: 100; width: 50%; overflow: hidden; }
 #list-basic .list-wrap:nth-of-type(2n) .thumbnail {transform: translateX(calc(100% - 64px)) translateY(5px);
 width: auto;}
 #list-basic .thumbnail img {width: 30px; height: 30px; border-radius: 50%; 	opacity: 1;
 -webkit-transition: .5s ease-in-out; transition: .5s ease-in-out;} 
 #list-basic .list-wrap a:hover img { opacity: .5; }
 #list-basic .summary, #list-basic .thumbnail-info, #list-basic .summary-thumbnail{display: none;}
/* list-gallery */
 #list-gallery .category-name {display: none;}
 #list-gallery .list-wrap a:hover .newpost, #list-summary .list-wrap a:hover .newpost  {-webkit-transform: none; transform: none;}
 #list-gallery .list-inner {display: flex; flex-wrap: wrap;}
 #list-gallery .list-wrap{float: left; width: calc((100% - 0px) / 2); position: relative; box-sizing: border-box;}
 #list-gallery .list-wrap a{display: block; box-sizing: border-box;}
 #list-gallery .list-wrap .thumbnail {width: 100%; overflow: hidden; position: relative;}
 #list-gallery .list-wrap .thumbnail img{width:100%; -webkit-transform: scale(1);
 transform: scale(1);	-webkit-transition: .5s ease-in-out; transition: .5s ease-in-out;}
 #list-gallery .thumbnail-info { padding: 5px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
 -webkit-line-clamp: 2; text-align: center; -webkit-box-orient: vertical;  width: 100%; height: 100%;
 position: absolute; top: 0; left: 0;  opacity: 0; transition: 0.3s;  color: #fff;
 display: flex; align-items: center;  justify-content: center; flex-direction: column;}
 #list-gallery .thumbnail-info span {font-weight: bold;}
 #list-gallery .list-wrap .thumbnail:hover .thumbnail-info, 
 #list-gallery .list-wrap .thumbnail:focus .thumbnail-info{ opacity: 1; transition: all 0.3s ease;}
 #list-gallery .list-wrap a:hover img{	-webkit-transform: scale(1.3); transform: scale(1.3);}
 #list-gallery .list-wrap .thumbnail:after { z-index: 99; width: 0; height: 6px; position: absolute;
  left: 0; top: 0; content: ""; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
 #list-gallery .list-wrap a:hover .thumbnail:before {opacity: 0;}
 #list-gallery .list-wrap a:hover .thumbnail:after { width: 100%;}
 #list-gallery .list-lock .thumbnail-info:before {content:"\f023"; font-family:"Font Awesome 5 Free"; font-weight:700;
 margin-right: 5px;}
 #list-gallery .list-lock .thumbnail:before {content:"\f023"; font-family:"Font Awesome 5 Free"; font-weight:700;
 position: absolute; display: flex; justify-content: center; align-items: center;
 width: 100%; height: 100%; opacity: 1;}
 #list-gallery .summary, #list-gallery .list-table,
 #list-gallery .list-date, #list-gallery .list-td, #list-gallery .summary-thumbnail {display: none;}
/* list-summary */
 #list-summary .category-name {margin: 0; padding: 5px;}
 #list-summary .list-inner {display: flex; flex-wrap: wrap;}
 #list-summary .list-wrap{float: left; width: calc((100% - 0px) / 2); position: relative; box-sizing: border-box;}
 #list-summary .list-wrap:last-child > a {border-bottom: none;}
 #list-summary .list-wrap a{display: flex;}
 #list-summary .list-wrap .thumbnail {width: 150px; overflow: hidden; position: relative;}
 #list-summary .list-wrap .thumbnail img{width:100%; object-fit: cover; -webkit-transform: scale(1.3);
 transform: scale(1.3);	-webkit-transition: .5s ease-in-out; transition: .5s ease-in-out;
 opacity: 1;}
 #list-summary .list-wrap a:hover img{opacity: .5;}
 #list-summary .summary {padding: 5px; width: calc(100% - 120px); display: flex; flex-direction: column;
 justify-content: space-between;}
 #list-summary .summary-desc {overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
 text-overflow: ellipsis;}
 #list-summary .summary-date {text-align: right;}
 #list-summary .list-lock .summary-desc:before {content:"\f023"; font-family:"Font Awesome 5 Free"; font-weight:700;}
 #list-summary .list-lock .summary-thumbnail:before {content:"\f023"; font-family:"Font Awesome 5 Free"; font-weight:700;
 position: absolute; display: flex; justify-content: center; align-items: center;
 width: 100%; height: 100%; opacity: 1;}
 #list-summary .list-td, #list-summary .thumbnail {display: none;}
 #list-summary .summary-thumbnail {width:100%; height: 208px;
 background-size: cover; background-position: center center;
 position: relative; align-items: center; overflow: hidden;} 
 #list-summary .summary-thumbnail img {width: 100%;}
 #list-summary .summary-title {overflow: hidden; display: -webkit-box; 
 -webkit-line-clamp: 1; -webkit-box-orient: vertical;
 text-overflow: ellipsis; font-weight: bold; margin: auto; width: 100%; margin-top: 10px;
 text-align: center; position: absolute; top: 0;  padding: 0.2em 0;
 color: #fff; transition: all 0.3s ease-in-out;}
 #list-summary .summary { position: absolute; bottom: -112px;
 width: 100%; padding: 1em; letter-spacing: 1.2px; line-height: 1.5em; font-family: sans-serif;
 margin: 0; transition: all .3s ease-in-out;}
 #list-summary .summary span { color: gray;}
 #list-summary .summary-date { float: right;}
 #list-summary a:hover .summary { bottom: 0;}


/* article */
 #article {padding: 0;}
 #article .article-td {display: flex; flex-direction: column; padding: 5px;}
 .article-desc {padding: 5px;}
 .article-title {text-align: center;}
 .article-title span {font-weight: bold; font-size: 12px;}
 .article-cate {text-align: left;}
 .article-date {text-align: right; }
 .article-tag {padding: 5px; display: none;}
 .article-tag a::before {content: '#'; margin-right: 3px;}


/* articel-desc */
 .article-desc a {font-weight: bold;}
 .article-desc .fileblock a:before {display: none;}


/* container_postbtn, namecard */
 .container_postbtn {padding: 10px 0 !important;}
 figure[data-ke-type='opengraph'] {display: none !important;}
 .tt_box_namecard {display: none !important;}
 .tistoryProfileLayerTrigger {display:none !important;} 


/* article paging , article-related */
 .article-paging {display: none; justify-content: space-between;  font-weight: bold; margin: 5px 0;} 
 .article-btn {display: flex; flex-direction: row; justify-content: space-between; padding: 5px;}
 .comment-btn, .related-btn {padding: 5px; border-radius: 10px; text-transform: uppercase;}
 
 #article-related { display: none; padding: 5px; border-radius: 5px; margin: 5px;}
 #article-related:after {content: ''; display: block; clear: both; margin: 0; padding: 0;}
 #article-related .rd-inner {font-weight: bold; text-align: right; margin-bottom: 5px;}
 #article-related .rd-wrap { float: left; width: calc((100% - 8px) / 4); margin: 1px; position: relative;}
 #article-related .rd-title {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
 text-align: center;  width: 100%; height: 100%; margin-top: 5px;
 font-size: 12px; font-weight: bold;}
 #article-related .thumb_related img {width: 100%; object-fit: cover; border-radius: 5px;}


/* table */
 .contents_style table td {padding: 5px;}


/* blockquote */
 blockquote[data-ke-style='style1'] span:before{ content: ''; display: block; background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0; padding-top: 25px; transform: rotate(0deg);
 margin-top: 10px; }
 blockquote[data-ke-style='style1'] span:after{ content: ''; display: block; background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0; padding-top: 25px; transform: rotate(180deg); 
 margin-bottom: 10px;}

 blockquote[data-ke-style='style2'] { padding:5px; margin:10px 0;  font-size: 12px; line-height:20px; font-weight: bold;
 text-align: left; background: #fff;}
 blockquote[data-ke-style='style3'] { padding: 5px; margin:10px 0; font-size: 8pt; line-height: 20px; overflow-y: auto;
 border-radius: 5px;}
 blockquote p  {font-size: 13px !important;}
 blockquote, blockquote p {text-align: center;}
 
 .btn-toggle-moreless{padding: 5px; font-family: 'Pretendard-Regular'; font-size: 10.5px !important; font-weight: bold;}
 div[data-ke-type='moreLess'] .btn-toggle-moreless {border-radius: 5px;}
 div[data-ke-type='moreLess'].open .btn-toggle-moreless{border-radius: 5px 5px 0 0;}
 div[data-ke-type='moreLess'] .btn-toggle-moreless:before{content:"\f0d7"; font-family:"Font Awesome 5 Free"; font-weight:700;
 margin-right: 5px;}
 div[data-ke-type='moreLess'].open .btn-toggle-moreless:before{content:"\f0d8"; font-family:"Font Awesome 5 Free"; font-weight:700;
 margin-right: 5px;}
 div[data-ke-type='moreLess'].open .moreless-content{margin:0; padding:5px; overflow: hidden;
 border-radius: 0 5px 5px 5px;}
 figure.fileblock {margin-top: 10px !important; margin-bottom: 10px !important;
 width: 380px !important; border-radius: 5px;}
 figure.imageblock.alignCenter {margin: 10px auto !Important;}
 #article #tt-body-page figure.imageblock img, figure.imageblock img {margin: 5px 0 !important;}
 figure.imagegridblock, #tt-body-page figure.imagegridblock {margin: 10px 0 !important;}
 figure.imagegridblock .image-container {justify-content:  center !important; margin: 5px 0 !important;}
 figure.fileblock a::after {content:"\f019" !important; font-family:"Font Awesome 5 Free" !important; font-weight:700 !important;
 background-image: none !important; width: 40px !important;
 height: 40px !important; right: 0 !important; top: 25px !important; font-size: 25px;}

 figure figcaption::before {content:"\f062"; font-family:"Font Awesome 5 Free"; font-weight:700; margin-right: 5px;}
 figure figcaption {padding: 5px; font-size: 11.5px !important; border-radius: 5px;}

 ul[data-ke-list-type='disc'], ul[data-ke-list-type='circle'], ol[data-ke-list-type='decimal'] {margin-left: 20px;}
 ol[data-ke-list-type='decimal'] li::marker {font-weight: bold;}


/* comment */
 #comment {display: none; padding: 0 5px 5px 5px; }
 .comment-write {margin: 0;}
 .comment-textarea {display: flex; flex-direction: column; border-radius: 5px;}
 .comment-textarea textarea {width: 100%; height: 70px; font-family: 'Pretendard-Regular';
 padding: 5px; background: none; border: none;}
 .comment-textarea textarea:focus {transition-duration: 0.3s;}
 .comment-input { display: flex; justify-content: flex-end; font-family: 'Pretendard-Regular';}
 .comment-secret, .comment-send {padding: 5px;}
 .comment-input input[type=submit] { background: transparent;}
 .comment-input input[type="checkbox"] {display: none;} 
 .comment-input input[type="checkbox"]+label:before{ content: '공개';}
 .comment-input input[type="checkbox"]:checked+label:before{ content: '비밀글';}
 .sguest-input  {display: flex;}
 .sguest-input input[type="text"], .sguest-input input[type="password"] {border:none; background: none;
 padding: 5px; border-radius: 0 !important; width: 50%;}

 .comment-type {border-radius: 5px; margin: 5px 0;}
 #comment, #comment .comment-write {border-radius: 5px;}
 #comment .comment-type:last-child {border-bottom: none;}
 #comment .comment-type:nth-last-child(-n+1):first-child,
 #comment .comment-type:nth-last-child(-n+1):first-child ~ li { border-bottom: none; }
 #comment-list, #reply-list {padding: 5px;} 
 
 .comment-info {display: flex; flex-direction: row; justify-content: flex-start;
 margin-bottom: 5px;}
 .comment-left {display: flex; align-items: center;}
 .comment-img {margin-right: 5px; position: relative; overflow: hidden; width: 30px; height: 30px; border-radius: 50%;}
 .comment-img img {width: 30px; height: 30px; object-fit: cover;
 -webkit-transform: scale(1);	transform: scale(1);
 -webkit-transition: .5s ease-in-out;transition: .5s ease-in-out;} 
 .comment-img:hover img {-webkit-transform: scale(1.3);transform: scale(1.3); object-fit: cover;}
 .comment-name, .comment-date {margin-right: 5px;}
 .comment-name span {font-weight: bold;}
 .comment-edit {display: flex;}
 .comment-edit a {display: flex; align-items: center; justify-content: center;}
 .comment-edit a:first-child {margin-right: 5px;}

 .comment-secret, .comment-send {padding: 5px;}
 .comment-input input[type=submit] { background: transparent;}
 .comment-input input[type="checkbox"] {display: none;} 
 .comment-input input[type="checkbox"]+label:before{ content: '공개'; font-family: 'Pretendard-Regular';}
 .comment-input input[type="checkbox"]:checked+label:before{ content: '비밀글'; font-family: 'Pretendard-Regular';}
 .sguest-input  {display: flex; font-family: 'Pretendard-Regular';}
 .sguest-input input[type="text"], .sguest-input input[type="password"] {border:none; background: none;
 padding: 5px; border-radius: 0 !important; width: 50%;}
 
 #guestbook {padding: 10px;}
 #guestbook .comment-type {border-radius: 5px; margin: 15px 0;}
 #guestbook .comment-type:last-child {margin-bottom: 0;}
 #guestbook .comment-write {margin: 15px 0;}
 #guestbook .comment-textarea textarea {height: 50px;}


/* notice */
 #notice {padding: 5px; margin: 5px; border-radius: 5px;}
 .notice-title {text-align: center; margin-top: 5px;}
 .notice-title span {font-weight: bold; font-size: 13px; text-align: center; padding: 5px;
 margin: 5px;}
 .notice-date {text-align: right; margin-bottom: 5px;}
/* notice 공감버튼 */
 #notice .container_postbtn {display: none;}
/* notice - profile */
 #notice .article-profile {display: flex; margin: 0 15px 0 0; align-items: center;}
 #notice .summary-1,  #notice .summary-dot,  #notice .summary-2 {margin-right: 10px;}
 #notice .summary-1 img {width: 32px; height: 32px; border-radius: 50%;}
 #notice .summary-dot {border-radius: 50%; width: 4px; height: 4px;}


/* protected */ 
 #protected { display: flex; margin: 0 auto; height: 100px; flex-direction: column;
 align-items: center; justify-content: center; padding: 20px;}
 .protected-info {display: flex; width: 100%; flex-direction: column; justify-content: space-between;}
 .protected-cate {text-align: center;}
 .protected-td {text-align: center; display: none;}
 .protected-title span {font-size: 13px; font-weight: bold;}
 .protected-desc {font-size: 13px; font-weight: bold; margin: 5px 0; text-align: center}
 .protected-desc span {font-size: 13px; font-weight: bold;}
 .protected-wrap {display: flex; flex-direction: column;}
 .protected-password {display: flex; justify-content: space-between;}
 .protected-password input[type="password"] {height: 30px;
 border: none; font-family: 'Pretendard-Regular'; background: none;
 border-radius: 3px; width: calc(100% - 30px);}
 .protected-password input[type="button"] {height: 30px; border:none; font-family: 'Pretendard-Regular'; 
 background: none;  border-radius: 3px; padding: 3px;}


/* tag */
 #tag {text-align: left;}
 .tag-desc ul {display: flex; flex-wrap: wrap; flex-direction: row;}
 .tag-desc li a {display: block; padding: 5px;}
 .tag-desc a:before{content: "#"; font-weight:bold; margin-right: 1px; } 


/* cover */
 .cover-inner {margin-right: 0;}
 .cover-inner .inner{margin: 5px; padding: 5px;}
 .c-title {text-align: center; margin-bottom: 5px;}
 .c-title span { font-size: 13px; font-weight: bold; font-style: italic;} 

 .c-notice .c-img {position: relative; width: 100%; margin-bottom: 5px;}
 .c-notice .c-img img {max-width: 100%;  -webkit-transform: scale(1);
 transform: scale(1);	-webkit-transition: .5s ease-in-out; transition: .5s ease-in-out; }
 .c-notice .c-img:hover img { opacity: 1; -webkit-animation: flash 1.5s;
  animation: flash 1.5s;}
 @-webkit-keyframes flash {
  0% {opacity: .4;}
  100% {opacity: 1;}
 }
 @keyframes flash {
  0% {opacity: .4;}
  100% {opacity: 1;}
 }


 .c-gallery.inner::after {content: ''; display: block; clear: both; margin: 0; padding: 0;}
 .c-gallery .c-gwrap { float: left; width: calc((100% - 6px) / 3); margin: 1px; position: relative;}
 .c-gallery .c-thumbnail {width: 100%; overflow: hidden; position: relative;}
 .c-gallery .c-thumbnail img {width:100%; object-fit: cover;  -webkit-transform: scale(1);
 transform: scale(1);	-webkit-transition: .5s ease-in-out; transition: .5s ease-in-out;}
 .c-gallery .c-thumbnail:hover img {-webkit-transform: scale(1.3); transform: scale(1.3);}
 .c-gallery .c-listtitle {text-align: center; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
 overflow: hidden; display: none;}
 .c-gallery .thumbnail-text {display: none;}

 .c-list .clist-wrap a {display: block; margin: 5px 0;} 
 .c-list .c-listtd {display: flex; flex-direction: row; justify-content: space-between;
 align-items: center;}
 .c-list .c-listtext {overflow: hidden;text-overflow: ellipsis;
 display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
 .c-list .c-date  {width: 40%; display: flex; justify-content: flex-end; align-items: center;}
 .c-list .c-listtitle {overflow: hidden; text-align:left; display: -webkit-box;
 -webkit-line-clamp: 1; -webkit-box-orient: vertical;text-overflow: ellipsis; width: 80%;}
 .c-list .c-proimg img {width: 32px; height: 32px; object-fit: cover; border-radius: 50%;}
 .c-list .c-listtitle span {font-weight: bold;}
 .c-list .c-summary { display: none; overflow: hidden; text-overflow: ellipsis;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;}


/* swiper */
 .swiper { width: 100%; margin: 0 !important; }
 .swiper-slide { text-align: center; font-size: 18px; background: #fff;
 /* Center slide text vertically */
 display: -webkit-box; display: -ms-flexbox;
 display: -webkit-flex; display: flex;
 -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center;
 justify-content: center; -webkit-box-align: center; -ms-flex-align: center;
 -webkit-align-items: center; align-items: center; }
 .swiper-slide img { border-radius: 5px; display: block; width: 100%; object-fit: cover; height: 100%;}
 .swiper-pagination-bullet {background: #ffffffb6 !important; opacity: 100 !important;}
 .swiper-pagination-bullet-active {background: #aeaeae !important; opacity: 100 !important;}



/* 반응형 */ 
 @media (max-width:800px){
 #whole{ width: 95% !important; height: auto !important; overflow: hidden;
 margin: 10px auto 30px auto; display: flex; flex-direction: column;}
 #sidebar1 {width: 100% !important; margin-right: 0;}
 #sidebar2 {width: 100% !important; margin-right: 0; height: auto !important; margin-bottom: 5px;}
 #container {width: 100% !important; height: auto !important;} 
 #container, .side-img, .search, .side2-menu li a, .side2-info, .side2-cate, .p-prev a, .p-next a,
 .side2-img-1 img, .side2-img-2 img, .side2-img-3 img
 {box-shadow: none !important;}
 /*레이아웃*/
 .side2-img {height: auto !important;}
 .side2-menu {margin-top: 5px;}
 .side2-info, .side2-cate {height: auto;}
 #list-summary .summary-thumbnail {height: auto !Important;}
 #list-summary .summary {height: 100px; position: relative; bottom: 0;} 
 /*가로배열*/
 .search, .profile, .tag-desc li a, .comment-edit, .article-prev, .article-next
 .comment-date {display: flex; flex-direction: row; align-items: center;}
 .comment-edit a {margin-right: 5px;}
 .menu {margin-top: 0;}
 #paging {display: flex; flex-direction: row; height: auto !important;
 margin-top: 5px;}
 .p-prev a, .p-next a {display: flex; align-items: center; justify-content: center;
 width: 25px; height: 25px;}
 .p-prev a {margin-right: 10px;}
 .h-btn1 i, .h-btn2 i, .h-text a {font-size: 20px;}
 .h-text img {width: 20px; height: 20px;}
 } 


/* scallbar */
 ::-webkit-scrollbar { display: none; width: 5px; }
 ::-webkit-scrollbar-track { background-color: #FFF; }
 ::-webkit-scrollbar-thumb { border-radius: 0;}
 ::-webkit-scrollbar-button { display: none; }


/* copyright */
 #copyright a{ position: fixed;  left: 10px; bottom: 10px; display: flex;
 flex-direction: row; align-items: center;}
 .copyright-1{ position: relative; font-size: 11.5px; font-weight: bold; color: #FF9EB1 !important;
  width: auto; z-index: 999;}
 .copyright-2{ opacity:0; margin-left: 3px; transition: all 1s; color: #FF9EB1 !important;}
 .copyright-1:hover + .copyright-2{ opacity:1; }


/*youtube*/
 .youtube{position:relative; width:100%; padding-bottom:56.25%;}
 .youtube iframe{position:absolute; width:100%; height:100%;}

 
/* 화면전환 */
 body{ animation: fadein 1500ms ease-out;
 -moz-animation: fadein 1500ms ease-out; /* Firefox */
 -webkit-animation: fadein 1500ms ease-out; /* Safari and  Chrome */
 -o-animation: fadein 1500ms ease-out; /* Opera */}
 @keyframes fadein {
    from {opacity:0;}
    to {opacity:1;}
 }
 @-moz-keyframes fadein { /* Firefox */
    from {opacity:0;}
    to {opacity:1;}
 }
 @-webkit-keyframes fadein { /* Safari and Chrome */
    from {opacity:0;}
    to {opacity:1;}
 }
 @-o-keyframes fadein { /* Opera */
    from {opacity:0;}
    to {opacity: 1;}
 }

/* - - - BGM 플레이어 관련 - - - */
.mm-bgm{
  position: fixed;
  bottom: 15px; /* 우측상단 원하면 bottom을 top 으로 변경 */
  right: 15px;
  z-index: 9999; /* 맨위로 */
  border: none;
}
/* - - - BGM 플레이어 끝 - - -*/