@charset "UTF-8";
/*skin start*/
/* font */ 
@import url('https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&display=swap');

/* CSS Document */
* {
  padding: 0;
  margin: 0; 
  box-sizing: border-box; 
  font-family: 'Pretendard', sans-serif;
  outline: none; 
  font-size: inherit; 
  line-height: inherit; 
  word-break:break-all;
}

a { 
  text-decoration: none; 
  background: transparent; 
  color: var(--point1-color); 
}

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;
}

* a:hover {
  color: var(--point2-color); 
  transition: all 0.3s ease;
}

body {
  color: var(--point1-color);
  overflow-x: hidden;
}


/* loading */
 #loading { 
 width: 100%; 
 height: 100%; 
 top: 0; 
 left: 0; 
 background: #ffffff;
 position: fixed; 
 display: none; 
 z-index: 999; 
 opacity: 0.9;
}

#loading > img { 
  display: none; 
  width: 70px; 
  height: 70px; 
  margin: auto;
}


/* html */
html {
  background: var(--body-color);
  --border-radius-: var(--border-radius-);
  --btn-radius-: 5px;
  --font1-size: var(--font1-size);
  --font2-size: var(--font2-size);
  --line-height: var(--line-height);
  --padding1-: .5rem;
  --padding2-: 1rem;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --width-: var(--width-);
  --height-: var(--height-);
  --transition-: all 0.3s ease;
  --grid-: var(--grid-);
}  

/* dark-mode toggle */
html[data-theme='light'] {
  --transform-mode: translateX(0px);
  --active-blob: calc(translateY(100%));
  --light-on: flex;
  --light-off: none;
  --tc-filter: invert(100%) hue-rotate(180deg);
  --side-img-light: flex;
  --side-img-dark: none;
}

html[data-theme='dark'] {
  --transform-mode: translateX(14px);
  --active-blob: calc(translateY(50%));
  --tc-filter: invert(0%);
  --side-img-light: none;
  --side-img-dark: flex;
}

button.theme-toggle {
  display: flex;
  cursor:pointer;
}

span.toggle {
  background: var(--point1-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  display: inline-block;
  position: relative;
  width: 32px;
  height: 18px;
}

span.toggle::after {
  background: var(--article-color);
  border-radius: 50%;
  content: '';
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: all ease-in-out 0.2s!important;
  width: 12px;
  height: 12px;
  transform: var(--transform-mode);
}

span.toggle:active::after {
  transition: all ease-in-out 0.2s;
  width: calc(100% - 4px);
  border-radius: 12px;
  transform: var(--active-blob);
} 

/* dark-mode */
#darkmode {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
}

#darkmode svg {
  color: var(--point1-color);
}

html[data-theme='light'] .profile-img-light {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

html[data-theme='dark'] .profile-img-dark {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.profile-img-light,
.profile-img-dark {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}


/* layout */
#wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--padding2-);
}

#whole {
  position: relative;
  font-size: var(--font1-size);
  line-height: var(--line-height);
  width: var(--width-);
  height: var(--height-);
  display: flex;
  flex-direction: row;
  border: solid 1px var(--border-color);
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  overflow: hidden;
}

#side-nav {
  width: 50px;
  flex: 0 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--article-color);
  gap: var(--padding1-);
  border-right: solid 1px var(--border-color);
}

#sidebar {
  flex: 2;
  min-width: 0;
  background: var(--article-color);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#side-bg {
  flex: 3;
  min-width: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container {
  flex: 5;
  position: relative;
  overflow: hidden;
  height: 100%;
  overflow-y: auto;
  min-width: 0;
  background: var(--article-color);
}

.wrap {
  min-height: 100%;
}

.wrap.hide-content {
  display: none !important;
}


/* title */
#blog-title {
  width: var(--width-);
  display: flex;
  flex-direction: column;
  align-items: center;
} 

#blog-title img {
  max-width: 400px;
}

.title-text {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}


/* side-nav */
.nav-menu {
  position: relative;
  font-size: var(--font1-size);
}

.nav-menu li {
 transform: translate(0) rotate(180deg);
  writing-mode: vertical-rl;
  margin: var(--padding1-) 0;
}

.nav-menu li a {
  font-family: "Ubuntu Sans Mono", monospace;
}

.nav-menu li a:hover {
  color: var(--point2-color);
  transition: var(--transition-);
}

.nav-line {
  position: relative;
  min-height: 250px;
  width: 1px;
  opacity: 60%;
  background: var(--point1-color);
}

.nav-img {
  position: relative;
  text-align: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  padding: 2px;
  border-radius: 50%;
  border: solid 1px var(--border-color);
}

.nav-img img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  border-radius: 50%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.nav-img:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.nav-img img:hover{
  cursor: -webkit-zoom-in;
}


/* profile img popup */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background:var(--article2-color);
}

.modalBox {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 260px;
  min-height: 120px;
  transform: translate(-50%,-50%);
  background: var(--article-color);
  border-radius: var(--border-radius-);
  box-shadow: var(--box-color);
  padding: var(--padding1-);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

.modal .close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  font-size: var(--font1-size);
  color: var(--text-color);
  cursor: pointer;
  opacity: 0.8;
  z-index: 200;
  transition: opacity 0.18s;
}

.modal .close:hover {
  opacity: 1;
  color: var(--point2-color);
  transition: var(--transition-);
}

.modalBox img {
  display: none;
  max-width: 500px;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: var(--border-radius-);
  background: var(--article-color);
  margin: 0 auto;
}

html[data-theme='light'] #profileModalImgLight { display: block; }
html[data-theme='dark'] #profileModalImgDark { display: block; }


/* sidebar */
.side-info {
  flex: 5 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: solid 1px var(--border-color);
}

.info-bg {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.info-img {
  position: relative;
}

.info-img img {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 2px;
  background: var(--article-color);
  top: -40px;
  left: 15px;
}


.info-text{
  padding: var(--padding1-);
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;  
}

.info-title {
  font-weight: 700;
  font-family: "Ubuntu Sans Mono", monospace;
}

.info-blogger {
  font-size: 90%;
  font-family: "Ubuntu Sans Mono", monospace !important;
}

.info-desc {
  font-size: 90%;
  font-family: "Ubuntu Sans Mono", monospace !important;
  max-height: 60px;
  overflow-y: auto;
}

.info-link{
  display: flex;
  align-items: center;
  gap: var(--padding1-);
  justify-content: flex-end;
}

#openBannerList {
  color: var(--point1-color);
}

#openBannerList:hover {
  color: var(--point2-color);
  transition: var(--transition-);
  cursor: pointer;
}


/* search */
.search {
  width: 100%; 
  height: 25px;
  padding: 5px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  border-top: solid 1px var(--border-color);
}

.search i {
  margin-right: 5px;
}

.search input {
  border: none; 
  font-family: 'Pretendard-Regular'; 
  background: none;
  color: var(--point1-color);
}

.search input::placeholder {
  color: var(--point1-color);
}


/* category */
.sub_category_list,
.link_item img,
.link_tit {
  display: none;
}

.category_list > li {
  display: block;
  font-weight: 700;
}

.side-cate {
  flex: 5 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;
  padding: var(--padding1-);
  overflow-y: auto;
  line-height: 1.5;
  text-align: right;
}

.side-cate .tt_category {
  overflow-y: auto;
  scrollbar-width: none; 
  -ms-overflow-style: none;
  line-height: 2;
}

.side-cate .tt_category::-webkit-scrollbar {
  display: none;
}

.side-cate a:hover {
  cursor: pointer;
}

.side-cate .category_list > li > a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--point2-color);
  background: transparent;
  transition: background 0.22s, border 0.18s;
}

.side-cate .category_list > li > a:hover::after,
.side-cate .category_list > li > a:focus::after {
  background: var(--point2-color);
  border-color: var(--point2-color);
}

.side-cate .category_list > li.selected > a::after {
  background: var(--point2-color);
  border-color: var(--point2-color);
}

.link_sub_item {
  margin-right: 22px;
}

.c_cnt {
  color: var(--point2-color);
  font-weight: normal;
}


/* banner list */
#bannerListPanel {
  display: none;
}

.banner-list-panel {
  display: none;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: var(--article-color);
  box-shadow: var(--box-color);
  z-index: 50;
  overflow-y: auto;
  padding: var(--padding1-);
}

.banner-list-panel .banner-close {
  position: absolute;
  right: 10px; 
  top: 10px;
  background: none;
  border: none;
  font-size: var(--font1-size);
  color: var(--point1-color);
  cursor: pointer;
}

.banner-title {
  font-size: var(--font2-size);
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
}

.banner-list-panel li a {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}


/* list */
.category-name {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.cate-info {
  padding: var(--padding1-);
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--border-color);
}

.cate-desc,
.summary-title img {
  display: none;
}


.empty {
  padding: var(--padding2-);
  display: flex;
  justify-content: center;
  align-items: center;
}


/* list - basic */
#list-basic .thumbnail,
#list-basic .summary{
  display: none;
}

#list-basic .list-lock .list-title::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 5px;
}

#list-basic .list-inner,
.cover-basic .list-inner {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
}

#list-basic .list-item,
.cover-basic .list-item {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
  margin: var(--padding1-);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-);
}

#list-basic .list-item:hover,
.cover-basic .list-item:hover {
  border: 1px solid var(--point1-color);
  transition: var(--transition-);
}

#list-basic .list-item:hover .list-title,
.cover-basic .list-item:hover .list-title {
  color: var(--point1-color);
  transition: var(--transition-);
}

#list-basic .list-td,
.cover-basic .list-td {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 5px;
}

#list-basic .list-date,
.cover-basic .list-date {
  max-width: 70px;
  color: var(--point2-color);
  font-size: 80%;
  white-space: nowrap;
  opacity: 0.7;
  text-align: left;
}

#list-basic .list-title,
.cover-basic .list-title {
  flex: 1 1 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text-color);
}

.cover-basic .c-title{
  font-weight: 700;
  padding: var(--padding1-);
}


/* list - gallery */
#list-gallery .list-td,
#list-gallery .summary,
#list-gallery .list-category {
  display: none;
}


#list-gallery .list-lock .thumbnail::before {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: var(--text-color);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--font2-size);
  z-index: 5;
  display: block;
  pointer-events: none;
}

#list-gallery .list-item,
#list-gallery .thumbnail,
.cover-gallery .list-item,
.cover-gallery .thumbnail {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
}

#list-gallery .list-inner,
.cover-gallery .list-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-, 3), 1fr);
  gap: 0;
  width: 100%;
  height: 100%;
}

#list-gallery .list-item,
.cover-gallery .list-item {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: none;
  display: block;
  cursor: pointer;
}

#list-gallery .thumbnail,
.cover-gallery .thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

#list-gallery .thumbnail img,
.cover-gallery .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: 50% 50%;
  transform: scale(1.01);
  transition: .5s ease-in-out;
}

#list-gallery .list-item:hover .thumbnail img,
.cover-gallery .list-item:hover .thumbnail img {
  transform: scale(1.1);
}

#list-gallery .thumbnail-info,
#list-gallery .thumbnail-date,
.cover-gallery .thumbnail-info,
.cover-gallery .thumbnail-date,
.cover-gallery .thumbnail-cate {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.23s cubic-bezier(0.4,0,0.2,1);
}

#list-gallery .thumbnail-info,
.cover-gallery .thumbnail-info {
  top: 0;
  padding: var(--padding1-);
  color: var(--article-color);
  font-weight: 700;
  font-size: var(--font1-size);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-gallery .thumbnail-date,
.cover-gallery .thumbnail-date {
  bottom: 0;
  padding: var(--padding1-);
  color: var(--article-color);
  font-size: 80%;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cover-gallery .thumbnail-cate {
  bottom: 0;
  padding: var(--padding1-);
  color: var(--article-color);
  font-size: 80%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-gallery .list-item:hover .thumbnail-info,
#list-gallery .list-item:hover .thumbnail-date,
.cover-gallery .list-item:hover .thumbnail-info,
.cover-gallery .list-item:hover .thumbnail-date,
.cover-gallery .list-item:hover .thumbnail-cate {
  opacity: 1;
  pointer-events: auto;
}

.cover-gallery .c-title{
  font-weight: 700;
  padding: var(--padding1-);
}


/* list - memo */
#list-memo .list-td,
#list-memo .summary-title,
#list-memo .summary-date {
  display: none;
}

#list-memo .list-lock .summary-desc::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 5px;
}

#list-memo .list-item,
.cover-memo .list-item {
  display: block;
  margin: var(--padding1-);
  border: solid 1px var(--border-color);
  border-radius: var(--border-radius-);
  overflow: hidden;
}

#list-memo .thumbnail,
.cover-memo .thumbnail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--padding1-);
  padding: var(--padding1-);
  border-bottom: solid 1px var(--border-color);
  width: 100%;
  overflow: hidden;
}

#list-memo .thumbnail img,
.cover-memo .thumbnail img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: var(--border-radius-);
  display: block;
  margin: 0;
  transform: scale(1.01);
  transition: .5s ease-in-out;
}

#list-memo .thumbnail img:hover,
.cover-memo .thumbnail img:hover {
  cursor: zoom-in;
}

#list-memo .list-item:hover .thumbnail img,
.cover-memo .list-item:hover .thumbnail img {
  transform: scale(1.08);
}


#list-memo .thumbnail-info,
#list-memo .thumbnail-date,
.cover-memo .thumbnail-info,
.cover-memo .thumbnail-date {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-memo .thumbnail-info,
.cover-memo .thumbnail-info {
  font-weight: 700;
  font-size: var(--font1-size);
  color: var(--text-color);
}

#list-memo .thumbnail-date,
.cover-memo .thumbnail-date {
  font-size: 80%;
  color: var(--point2-color);
  opacity: 0.8;
}

#list-memo .summary,
.cover-memo .summary {
  width: 100%;
  padding: var(--padding1-);
}

#list-memo .summary-desc,
.cover-memo .summary-desc {
  font-size: var(--font1-size);
  color: var(--text-color);
  opacity: 0.96;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cover-memo .c-title{
  font-weight: 700;
  padding: var(--padding1-);
}


/* list - momo thumbnail */
.memo-img-modal {
  position: fixed;
  left: 0; top: 0; 
  width: 100vw; 
  height: 100vh;
  background: var(--article2-color);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.memo-img-modal-img {
  max-width: 92vw;
  max-height: 92vh;
  box-shadow: var(--box-color);
  border-radius: var(--border-radius-);
  background: var(--article-color);
}

.memo-img-modal-bg {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 1;
}

.memo-img-modal-img {
  z-index: 2;
  position: relative;
}

/* list - summary */
#list-summary .thumbnail-info,
#list-summary .thumbnail-date,
#list-summary .list-date,
#list-summary .list-td {
  display: none;
}

#list-summary  .list-lock .summary-desc:before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 5px;
}

#list-summary .list-inner,
.cover-summary .list-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

#list-summary .list-item,
.cover-summary .list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: var(--padding2-);
}

.cover-summary .list-item:last-child{
  border-bottom: none;
}

#list-summary .thumbnail,
.cover-summary .thumbnail {
  flex: 0 0 30%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-width: 0;
  transform-origin: 50% 50%;
  transform: scale(1.01);
  transition: .5s ease-in-out;
}

#list-summary .thumbnail img,
.cover-summary .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  min-width: 100%;
  min-height: 100%;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

#list-summary .list-item:hover .thumbnail img,
.cover-summary .list-item:hover .thumbnail img {
  transform: scale(1.1);
}

#list-summary .list-item:hover .summary-title,
#list-summary .list-item:hover .summary-date,
#list-summary .list-item:hover .summary-desc,
.cover-summary .list-item:hover .summary-title,
.cover-summary .list-item:hover .summary-date,
.cover-summary .list-item:hover .summary-desc,
.cover-summary .list-item:hover .thumbnail-cate {
  color: var(--point1-color);
  transition: var(--transition-);
}

#list-summary .summary-info,
.cover-summary .summary-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
  min-width: 0;
}

#list-summary .summary-title,
.cover-summary .summary-title {
  font-weight: 700;
  font-size: var(--font1-size);
  color: var(--text-color);
  margin-bottom: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#list-summary .summary-date,
.cover-summary .summary-date,
.cover-summary .thumbnail-cate {
  font-size: 80%;
  color: var(--point2-color);
  opacity: 0.72;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-summary .summary-desc,
.cover-summary .summary-desc {
  font-size: var(--font1-size);
  color: var(--text-color);
  opacity: 0.98;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.cover-summary .summary-dc {
  display: flex;
  justify-content: space-between;
}

.cover-summary .c-title{
  font-weight: 700;
  padding: var(--padding1-);
}


/* list - dday */
#list-dday .list-td,
#list-dday .summary-title,
#list-dday .summary-date {
  display: none;
}

#list-dday .list-lock .summary-desc::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 5px;
}

#list-dday .list-inner {
  padding: var(--padding1-);
}

#list-dday .list-inner,
.cover-dday .list-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-, 3), 1fr);
  gap: var(--padding1-);
  width: 100%;
}

#list-dday .list-item,
.cover-dday .list-item {
  display: block;
  border: solid 1px var(--border-color);
  border-radius: var(--border-radius-);
  overflow: hidden;
  background: var(--article-color);
}

#list-dday .thumbnail,
.cover-dday .thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--padding1-);
  padding: var(--padding1-);
  border-bottom: solid 1px var(--border-color);
  width: 100%;
  overflow: hidden;
}

#list-dday .thumbnail img,
.cover-dday .thumbnail img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--border-radius-);
  display: block;
  margin: 0;
  transform: scale(1.01);
  transition: .5s ease-in-out;
}

#list-dday .thumbnail img:hover,
.cover-dday .thumbnail img:hover {
  cursor: zoom-in;
}

#list-dday .list-item:hover .thumbnail img,
.cover-dday .list-item:hover .thumbnail img {
  transform: scale(1.08);
}

#list-dday .thumbnail-info,
#list-dday .thumbnail-date,
.cover-dday .thumbnail-info,
.cover-dday .thumbnail-date {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#list-dday .thumbnail-info,
.cover-dday .thumbnail-info {
  color: var(--text-color);
}

#list-dday .thumbnail-date,
.cover-dday .thumbnail-date {
  font-size: var(--font1-size);
  font-weight: 700;
  color: var(--point2-color);
  opacity: 0.8;
}

#list-dday .summary,
.cover-dday .summary {
  width: 100%;
  padding: var(--padding1-);
}

#list-dday .summary-desc,
.cover-dday .summary-desc {
  font-size: var(--font1-size);
  color: var(--text-color);
  opacity: 0.96;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cover-dday .c-title{
  font-weight: 700;
  padding: var(--padding1-);
}

.cover-dday.inner {
  padding: var(--padding1-);
}


/* cover */
.cover-inner > .inner { border-bottom: solid 1px var(--border-color);}

/* cover - notice */
.cover-notice.inner {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.cover-notice .c-title {
  padding: var(--padding1-);
  font-size: var(--font2-size);
  font-weight: 700;
  color: var(--point1-color);
  text-align: center;
}

.cover-notice .notice-list {
  display: block;
  background: var(--article-color);
}

.cover-notice .notice-link {
  display: block;
  padding: var(--padding1-);
  color: var(--text-color);
  box-sizing: border-box;
}

.cover-notice .notice-thumbnail {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-notice .notice-thumbnail img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-);
  display: block;
}

.cover-notice .notice-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.cover-notice .notice-title {
  font-size: var(--font2-size);
  font-weight: 700;
  color: var(--point1-color);
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
  white-space: nowrap;
}

.cover-notice .notice-desc {
  font-size: var(--font2-size);
  color: var(--text-color);
}

.cover-notice .notice-link:hover .notice-title,
.cover-notice .notice-link:hover .notice-desc {
  color: var(--point2-color);
  transition: var(--transition-);
}




/* cover swiper */
.swiper {
  width:calc(100% - var(--padding1-)) !important; 
  margin: 0 !important; 
}

.cover-swiper .c-title {
  padding: var(--padding1-);
  background: var(--point1-color);
  font-size: var(--font2-size);
  font-weight: 700;
  color: var(--article-color);
  text-align: center;
}

.swiper.mySwiper  {
  margin: var(--padding1-) !important ;
  padding-right: var(--padding1-);
  width: 100%;
}

.swiper-slide {
  text-align: center; 
  font-size: 18px; 
  background: var(--article-color);
/* 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 {
  display: block; 
  width: 100%; 
  object-fit: cover;  
  height: 500px;
  border-radius: var(--border-radius-);
}

.swiper-pagination-bullet {
  background: var(--point1-color) !important; 
  opacity: 100 !important;
}

.swiper-pagination-bullet-active {
   background: var(--point2-color) !important; 
  opacity: 100 !important;
}


/* article */
#article {
  font-size: var(--font2-size);
  color: var(--text-color);
}

#article .article-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px var(--border-color);
  gap: var(--padding1-);
  padding: var(--padding1-);
}

#article .article-title {
  font-weight: 700 ;
  font-size: 15px; 
}

#article .article-date {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 80%;
  color: var(--point2-color);
}

#article .article-cate a {
  display: flex;
  align-items: center;
  font-size: var(--font2-size);
}

#article .article-desc {
  padding: var(--padding2-);
  border-bottom: solid 1px var(--border-color); 
}

blockquote[data-ke-style="style1"] {
  text-align: center;
}

blockquote[data-ke-style='style1'] span:before { 
  content: '❝';  
  display: block; 
  font-size: 2.2em;
  color: var(--point1-color);
  text-align: left;
  margin-top: 10px; 
}

blockquote[data-ke-style='style1'] span:after { 
  content: '❞';
  display: block; 
  font-size: 2.2em;
  color: var(--point1-color);
  text-align: right;
  margin-bottom: 10px;
}


blockquote[data-ke-style='style2'] {
  padding:5px; 
  margin:10px 0;  
  font-size: var(--font2-size); 
  line-height:20px; 
  font-weight: bold;
  text-align: left;
  background: var(--article-color);
  border-left: solid 3px var(--border-color); 
}

blockquote[data-ke-style='style3'] { 
  padding: 5px; 
  margin:10px 0; 
  font-size: var(--font2-size); 
  line-height: 20px; 
  overflow-y: auto;
}

.contents_style table td {
  padding: var(--padding1-);
  border: solid 1px var(--border-color);
}


ul[data-ke-list-type='disc'] > li {
  list-style: none !important;
}

#article .article-desc ul[data-ke-list-type='disc'] > li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
}

#article .article-desc ul[data-ke-list-type='disc'] > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--point1-color);
  border-radius: 50%;
}

#article .article-desc ul[data-ke-list-type='disc'] > li:hover::before {
  background: var(--point2-color);
  transition: var(--transition-);
}


ul[data-ke-list-type='circle'] > li {
  list-style: none !important;
}

#article .article-desc ul[data-ke-list-type='circle'] > li {
  position: relative;
  padding-left: 1.05em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
}

#article .article-desc ul[data-ke-list-type='circle'] > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5.5px; 
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--point1-color);
  background: transparent;
  box-sizing: border-box;
  transition: border-color 0.18s;
}

#article .article-desc ul[data-ke-list-type='circle'] > li:hover::before {
  border-color: var(--point2-color);
}

ol[data-ke-list-type='decimal'] > li {
  list-style: none !important;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
  counter-increment: custom-ol;
}

#article .article-desc ol[data-ke-list-type='decimal'] {
  counter-reset: custom-ol;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li::before {
  content: counter(custom-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--point1-color);
  font-weight: 700;
  font-size: 1em;
  transition: color 0.18s;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li:hover::before {
  color: var(--point2-color);
}

figure[data-ke-type='opengraph'] div.og-text {
  font-size: var(--font1-size) !important;
  padding: var(--padding2-) !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  font-size: var(--font2-size) !important;
}

[data-ke-type="moreLess"] .btn-toggle-moreless::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0d7"; /* ▼ */
  margin-right: 6px;
  font-size: 1em;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), color 0.18s;
  vertical-align: middle;
  transform: rotate(0deg);
}

[data-ke-type="moreLess"].open .btn-toggle-moreless::before {
  /* 같은 content지만, 180도 회전 */
  transform: rotate(180deg);
}

div[data-ke-type='moreLess'].open .moreless-content {
  border: solid 1px var(--border-color);
  background: #eee;
  padding: var(--padding2-);
  border-radius: var(--border-radius-);
  line-height: 2px;
}

[data-ke-type="moreLess"] .btn-toggle-moreless:hover::before,
[data-ke-type="moreLess"].open .btn-toggle-moreless::before {
  transform: rotate(180deg);
  color: var(--point2-color);
  transition: var(--transition-);
}

#article .container_postbtn .btn_menu_toolbar {
  border: none !important;
  line-height: inherit !important;
  height: 37px !important;
  margin-left: 0 !important;
  border-left: solid 1px var(--border-color) !important;
  border-radius: 0 !important;
}

#article .container_postbtn {
  padding: 0 !important;
}

#article .container_postbtn .postbtn_like {
  float: unset;
  padding: 0 !important;
  border: none !important;
  border-radius: unset !important;
}

#article .container_postbtn .btn_post{
  background: var(--article-color);
  border-left: solid 1px var(--border-color);
  height: 37px;
  padding: var(--padding1-);
  display: flex;
}

#article .container_postbtn .btn_post .ico_postbtn {
  margin: 0 !important;
  max-width: unset !important;
}

#article .uoc-icon {
  display: flex;
  align-items: center;
}

#article .txt_like.uoc-count {
  display: inline-block;
  min-width: 1.2em;
  text-align: center;
  color: var(--point1-color);
  font-weight: 700;
  margin-left: 3px;
  transition: color 0.18s;
}

#article .uoc-count {
  color: var(--point1-color) !important;
  font-weight: 700;
  margin-left: 3px;
}

#article .uoc-icon.like_on .txt_like.uoc-count {
  color: var(--point2-color) !important;
  font-weight: 700;
}

#article .btn_post.uoc-icon {
  overflow: visible;
}

#article .btn_post .ico_like {
  width: 18px;
  height: 18px;
  margin: 3px 4px 0 0;
  background: none !important;
  position: relative;
  display: inline-block;
  text-indent: 0 !important;
  overflow: visible !important;
  color: var(--point2-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0;
  line-height: 18px;
  vertical-align: middle;
}

#article .btn_post .ico_like::before {
  content: "\f08a";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease;
}

#article .btn_post .ico_like::after {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--point2-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

#article .btn_post .uoc-icon.like_on .ico_like::before {
  opacity: 0;
}

#article .btn_post .uoc-icon.like_on .ico_like::after {
  opacity: 1;
}

#article .btn_post.uoc-icon:focus,
#article .btn_post.uoc-icon:active,
#article .btn_post.sns_btn.btn_share:focus,
#article .btn_post.sns_btn.btn_share:active,
#article .container_postbtn .btn_post:focus,
#article .container_postbtn .btn_post:active {
  outline: none !important;
  box-shadow: var(--box-color) !important;
}

#article .container_postbtn .btn_post .ico_share {
  width: 18px !important; 
  height: 18px !important;
  margin: 0;
  background: none !important;
  position: relative;
  filter: none;
  color: var(--text-color);
  text-indent: 0 !important; 
  overflow: visible !important;
}

#article .container_postbtn .btn_post .ico_share::before {
  content: "\f1e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-size: 16px;
  color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background: none !important;
  text-indent: 0;
  user-select: none;
  pointer-events: none;
}

.comment-btn:hover, 
.tag-btn:hover, 
.related-btn:hover,
#article .btn_post .ico_like:hover::before,
#article .container_postbtn .btn_post .ico_share:hover::before,
#article .container_postbtn .btn_post .ico_etc:hover::before,
.btn_menu_toolbar:hover .txt_state  {
  color: var(--point2-color);
  cursor: pointer;
  transition: var(--transition-);
}

#article .container_postbtn .btn_post .ico_etc {
  background: none !important;
  text-indent: 0 !important;
  overflow: visible !important;  
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0;
  color: var(--text-color);
  display: inline-block;
  line-height: 1;
}

#article .container_postbtn .btn_post .ico_etc::before {
  content: "\f141";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: inherit;
}

#article .footnotes {
  margin: var(--padding2-) 0;
}


/* container_postbtn */
.wrap_btn > button[data-tiara-action-name="글통계_클릭"] {
  display: none !important;
}


/* article btn */
#article .article-paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px var(--border-color);
}

#article .article-prev a,
#article .article-next a {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
}

#article .article-btn {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--border-color);
}

#article .article-btn1 {
  display: flex;
  justify-content: flex-start;
}

#article .comment-btn,
#article .tag-btn,
#article .related-btn {
  padding: var(--padding1-);
  border-right: solid 1px var(--border-color);
  width: 37px;
  height: 37px;
}



/* article btn inner */
.article-btn-inner {
  display: flex;
  flex-direction: column;
}

.article-tag {
  display: none;
  border-bottom: solid 1px var(--border-color);
  padding: var(--padding1-);
}

/* article related */
#article-related {
  display: none;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  padding-bottom: var(--padding1-);
} 

#article-related .rd-text a {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
  font-size: var(--font2-size);
  font-weight: 700;
}

#article-related .rd-text a svg {
  margin-right: 5px;
}

#article-related .rd-text a:hover,
#article-related a:hover .summary-title {
  color: var(--point2-color);
  transition: var(--transition-);
}

#article-related .rd-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

#article-related .rd-inner .c-gwrap {
  box-sizing: border-box;
}

#article-related .c-gwrap {
  position: relative;
}

#article-related .rd-inner .thumbnail{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

#article-related .rd-inner .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

#article-related .summary-title {
  text-align: center;
  font-size: var(--font2-size);
  color: var(--text-color);
  font-weight: 700;
}

#article-related .thumbnail-info {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  padding: 5px 6px;
  transform: translate(-50%, -50%);
  color: var(--article-color);
  font-size: var(--font2-size);
  font-weight: 700;
  text-align: center;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}

#article-related .rd-inner .list-item:hover .thumbnail img {
  transform: scale(1.09);
}

#article-related .rd-inner .list-item:hover .thumbnail-info {
  opacity: 0;
}

/* namecard */
[data-tistory-react-app="Namecard"] {
  order: 4;
}

#article .tt_box_namecard {
  background: var(--article-color) !important;
  color: var(--text-color) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: var(--padding1-) !important;
  min-height: 150px !important;
  align-items: center;
  flex-direction: column-reverse !important;
  justify-content: center !important; 
  gap: 5px;
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g, .tt_txt_g {
  font-size: var(--font2-size) !important;
}

#article .tt_box_namecard .tt_wrap_thumb {
  margin:  0 !important;
}

#article .tt_box_namecard .tt_cont {
  padding: 0 !important;
}

#article .tt_box_namecard .tt_cont a {
  font-size: var(--font2-size);
  font-weight: 700;
}

#article .tt_box_namecard .tt_desc {
  text-align: center;
  padding-top: 0 !Important;
  font-size: var(--font2-size);
}

.tt_box_namecard .tt_btn_subscribe {
  margin-bottom: 0 !important;
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g {
  font-size: var(--font1-size) !important;
}

/* comment */
#comment {
  font-family: 'Pretendard', sans-serif !important;
  display: none;
}

#guestbook .tt-list-reply {
  border-bottom: none !important;
}

.tt-list-reply {
  border-bottom: solid 1px var(--border-color) !important;
}

.tt-comment-cont > .tt-area-reply > .tt-list-reply > li.tt-item-reply:has(p.tt_cmt_info){
  background: var(--article-color);
  border-top: solid 1px var(--border-color) !important;
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed{
  margin-right: 0;
  margin-bottom: 0;
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
  font-size: var(--font1-size) !important;
  font-weight: bold;
}

.tt-item-reply .tt_cmt_info {
  margin: 0;
  padding: var(--padding2-) var(--padding2-) 0 var(--padding2-);
  font-family: inherit !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt-box-total {
  order: 1;
  padding: var(--padding1-);
  background: var(--article-color) !important;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  border-bottom: solid 1px var(--border-color);
  align-items: center;
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
}

.tt-comment-cont > form {
  order: 2;
  padding: var(--padding1-);
  background: var(--article-color);
}

ul.tt-list-reply-comment > li.tt-item-reply > form {
  padding: var(--padding1-);
}

.tt-box-total .tt_txt_g::after {
  content:"\f0e0";
  font-family:"Font Awesome 5 Free";
  font-weight: 400;
  color: var(--point1-color);
  font-size: 18px;
}

.tt_txt_g,
.tt_txt_g {
  font-size: 0 !important;
}

.tt-box-total .tt_num_g{
  color: var(--point1-color);
}

.tt-box-textarea .tt-inner-g {
  border-radius: var(--border-radius-) !important;
}

.tt-box-textarea .tt_txt_user {
  display: none;
}

.tt-cmt[data-placeholder]:empty:before {
  content: 'leave a comment..' !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea.tt-input-textarea .tt-inner-g {
  color: var(--point1-color) !important;
  font-size: var(--font2-size) !important;
  border-color: var(--border-color) !important;
}

.tt-thumbnail {
  border-radius: var(--border-radius-) !important;
}

.tt-btn_register:disabled {
  background: var(--article-color) !important;
  border: solid 1px var(--border-color) !important;
  color: var(--point2-color);
}

.tt-btn_register {
  padding: var(--padding1-) !important;
  width: unset !important;
  height:  unset !important;
  border-radius: var(--border-radius-) !important;
  background: var(--point1-color) !important;
  border: solid 1px var(--border-color);
}

.tt-btn_register:hover,
.tt-btn_register:focus {
  background: var(--point2-color) !important;
  border: 1px solid var(--point2-color) !important;
  transition: var(--transition-);
}

.tt-wrap-cmt {
  padding: var(--padding2-);
}

.tt-list-reply-comment > li > .tt-wrap-cmt {
  padding-left: 30px;
}

.rp_general .tt-list-reply-comment > li:first-child > .tt-wrap-cmt {
  padding-top: 0;
}

.tt-wrap-cmt .tt-link-user,
.tt-wrap-cmt .tt_desc {
  font-size: var(--font1-size) !important;
}

.rp_general {
  background: var(--article-color);
  margin: 10px 0 !important;
  border-bottom: solid 1px var(--border-color);
  padding: 0 !important;
}

.tt-item-reply {
  padding: 0 !important;
}

.tt-list-reply li:first-child {
  border-top: none !important;
}

.rp_general {
  border: none;
}

.tt-item-reply .tt-list-reply-comment {
  border-top: none !important;
  margin: 0;
}

.tt-list-reply-comment > .tt-item-reply {
  border-top: none !important;
}

.tt-box-thumb {
  margin-right: 5px;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

.tt-link-comment .tt_num_g, .tt-link-comment .tt_txt_g{
  color: var(--point1-color) !important;
  font-weight: bold;
}

.tt-wrap-cmt .tt-wrap-link-comment {
  padding-left: 5px;
}

li.tt-item-reply.rp_general > .tt-wrap-cmt {
  border-top: solid 1px var(--border-color);
}

.tt-link-comment .tt_txt_g {
  font-size: var(--font1-size) !important;
  padding-top: var(--padding1-);
}

.tt-wrap-cmt .tt_date {
  font-size: var(--font1-size);
  padding-top: var(--padding1-) !important;
  color: var(--point2-color);
}

.tt-area-write .tt-box-account input {
  border-radius: var(--border-radius-) !important;
}


/* protected */
#protected {
  font-size: var(--font2-size);  
}

#protected .article-inner {
  background: var(--article-color);
  padding: var(--padding2-);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#protected .article-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

#protected .article-date {
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  flex-direction: row-reverse;
  display: none;
}

#protected .article-title {
  font-weight: 700;

}

#protected .article-cate a{
  display: flex;
  align-items: center;
}

#protected .article-desc {
  text-align: center;
}

.lock-text {
  margin-bottom: 10px;
}

.lock-desc input[type="password"] {
  border: none; 
  font-family: 'Pretendard-Regular'; 
  background: none; 
  border-radius: var(--border-radius-); 
  padding: var(--padding1-);
  color: var(--point1-color);
}

.lock-desc {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
}

.lock-desc input[type="password"]::placeholder{
  color: var(--point2-color);
}

.lock-desc input[type="button"] {
  width: auto;
  font-family: 'Pretendard-Regular';
  background: none; 
  border-radius: var(--border-radius-); 
  padding: var(--padding1-); 
  font-weight: bold;
  color: var(--point1-color);
  border: solid 1px var(--border-color);
}
 
.lock-desc input[type="button"]:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
  background: var(--border-color);
  cursor: pointer;
}


/* tag */
#tag {
  font-size: var(--font2-size);
}

#tag .article-title {
  margin-bottom: 10px;
}

#tag .article-title,
#tag .article-desc {
  padding: var(--padding2-);
  background: var(--article-color);
  border-bottom: solid 1px var(--border-color);
}

#tag .article-desc {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

#tag .article-desc a:before {
  content: "#";
  font-weight: 700;
  margin-right: 1px;
}


/* notice */
#notice .container_postbtn {
  display: none;
}

#notice {
  border-bottom: solid 1px var(--border-color);
  padding: var(--padding1-);
  font-size: var(--font2-size);
  color: var(--text-color);
}

#notice:last-child{
  border-bottom: none;  
}

#notice .article-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--padding1-);
  margin-bottom: var(--padding1-);
}

#notice .article-title {
  font-weight: 700;
}


/* paging */
#paging {
  width: var(--width-);
  display: flex; 
  align-items: center; 
  justify-content: flex-end;
  gap: 5px;
}

.p-prev a, .p-next a {
  display: flex; 
  align-items: center;
  justify-content: center; 
  padding: var(--padding1-);
  background: var(--article-color);
  border: solid 1px var(--border-color);
  border-radius: var(--border-radius-);
}

.p-prev a:hover, .p-next a:hover {
  color: var(--point2-color);
  cursor: pointer;
  transition: var(--transition-);
  border: solid 1px var(--point2-color);
}

#paging .page-info {
  font-size: var(--font1-size);
  padding: var(--padding1-);
  background: var(--article-color);
  border: solid 1px var(--border-color);
  border-radius: var(--border-radius-);
}


/* 반응형 */ 
@media (max-width:800px){
  #darkmode {
    width: 100%;
    right: unset;
    top: unset;
    padding: var(--padding1-);
    position: relative;
    justify-content: flex-end;
  }
  #wrapper{ 
    width: 96%;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--padding2-);
    flex-direction: column;
    margin: 10px auto;
  }
  #blog-title {
    width: 100%;
    gap: 5px;
  }
  #blog-title img {
    max-width: 100%;
  }
  #whole {
    width: 100%;
    height: auto !important;
    flex-direction: column;
  }
 #side-nav {
   width: 100% !important; 
   height: auto !important;
   flex: unset;
   padding: var(--padding1-);
  }
 .nav-line {
   display: none;
  }
 .nav-menu {
   display: flex; 
   width: 100%; 
   justify-content: space-around; 
   flex-wrap: wrap;
  }
 .nav-menu li {
   margin: 10px 0;
   transform: unset;
   writing-mode: unset; 
 }
 .modalBox {
   width: 90%;
   min-width: unset;
   overflow: hidden;
 }
 .modalBox img {
   width: 100%;
 }
 #sidebar {
   flex: unset;
   width: 100%;
   height: auto;
 } 
 .side-info {
   flex: unset;
   width: 100%;
   height: auto;
 }
 .info-bg {
   flex: unset;
   min-height: unset;
   height: 200px;
 }
 .side-cate {
   flex: unset;
   max-height: 400px;
   overflow-y: auto;
 }
 #paging {
   width: 100%;
   justify-content: center;
 }
 .side-cate .tt_category {
   max-height: 300px;
 }
  #list-gallery .list-inner,
  .cover-gallery .list-inner,
  #list-dday .list-inner,
  .cover-dday .list-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--padding1-, 12px);
    padding: var(--padding2-, 12px);
  }
  #article {
    border-top: solid 1px var(--border-color);
  }
  .swiper-slide img {
    height: 300px;
  }
  #bannerListPanel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    z-index: 9999;
    display: none;
    background: var(--article-color);
    padding: var(--padding2-);
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: var(--border-radius-);
    border: solid 1px var(--border-color);
  }
  .banner-content {
    background: var(--article-color);
    border-radius: var(--border-radius-);
    width: 90%;
    max-width: 100%;
    max-height: 100%;
    overflow-y: auto;    
    box-sizing: border-box;
  }
} 


/* scrollbar & drag */
::-webkit-scrollbar {
  display: none;
  width: 5px; 
}

::-webkit-scrollbar-track {
  background-color: var(--scrollbg-color); 
}

::-webkit-scrollbar-thumb {
  border-radius: 0; 
  background-color: var(--scroll-color);
}

::-webkit-scrollbar-button {
  display: none; 
}

::selection{
  color: var(--dragtext-color); 
  background:var(--drag-color);
}


/* copyright 삭제는 옵션 구매 후 해주세요!
링크 삭제 금지 */
#copyright a{ 
  position: fixed;
  right: 10px; 
  bottom: 10px; 
  display: flex;
  flex-direction: row-reverse; 
  align-items: center;
  color: var(--point1-color);
  line-height: 1;
}

#copyright .planet-icon-wrap {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 800px;
}

#copyright .planet-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url('https://blog.kakaocdn.net/dn/Fhfej/btsOdIpDkjd/5fCNO20nJxRvnfEQv2yvVK/img.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  image-rendering: auto;
  background-position: center;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

#copyright .planet-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 10px;
  background: radial-gradient(ellipse at center, var(--point1-color) 0%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  animation: ringSpin 8s linear infinite;
  transform-origin: center;
  transform: translate(-50%, -50%) rotateX(75deg);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

@keyframes ringSpin {
  0% {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg);
  }
}

#copyright .copyright-1{ 
  display: flex;
  align-items: center;
  position: relative; 
  font-size: 11.5px; 
  font-weight: bold; 
  width: auto; 
  z-index: 999;
}

#copyright .copyright-2 {
  opacity: 0;
  transition: all 1s;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

#copyright a:hover .copyright-2 {
  opacity: 1;
  color: var(--point1-color);
  transition: all 1s;
}
/* copyright 삭제는 옵션 구매 후 해주세요!
링크 삭제 금지 */


/*youtube*/
.youtube{
  position:relative; 
  width:100%; 
  padding-bottom:56.25%;
}
.youtube iframe{
  position:absolute; 
  width:100%; 
  height:100%;}

/*skin*/

/* bgm */
#btn-items {
 position: fixed;
 height: 50px;
 right: var(--padding1-);
 top: 0;
 z-index: 99;
 display: flex;
 align-items: center;
 color: var(--point1-color);
 justify-content: space-between;
 gap: var(--padding1-);
}
/* bgm btn */
#bgm  {
  color: var(--point1-color);
}

#bgm-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-);
  background: var(--article-color);
}

#bgm-btn:hover {
  color: var(--point2-color);
  cursor: pointer;
  transition: var(--transition-);
}

#bgm-btn.bgm-playing {
  animation: bgmjelly-bounce 1.6s cubic-bezier(.7,0,.35,1) infinite,
             bgmjelly-color 1.6s steps(2, jump-none) infinite;
}

@keyframes bgmjelly-bounce {
  0%   { transform: translateY(0);   }
  10%  { transform: translateY(-3px);}
  25%  { transform: translateY(-4px);}
  40%  { transform: translateY(-2px);}
  55%  { transform: translateY(2px); }
  70%  { transform: translateY(-1px);}
  85%  { transform: translateY(1.5px);}
  100% { transform: translateY(0);   }
}


@keyframes bgmjelly-color {
  0%, 50%   { color: var(--point1-color);}
  50.1%,100%{ color: var(--point2-color);}
}

/* BGM root */
:root {
  --bgm-panel-width: 260px;
  --bgm-panel-padding: 5px;
  --bgm-progress-height: 4px;
  --bgm-title-size: 11px;
  --bgm-volume-width: 50px;
  --bgm-status-size: 11px;
}

/* bgm panel */
#bgm-audio {
  display: none;
}

#music-panel {
  position: absolute;


  right: 0;
  top: calc(100% + var(--padding1-));
  width: var(--bgm-panel-width);
  padding: var(--bgm-panel-padding);
  background: var(--article-color);
  border-radius: 10px;
  border: solid 1px var(--border-color);
  box-shadow: var(--box-color);
  flex-direction: column;
  align-items: stretch;
  gap: var(--bgm-panel-padding);
  font-size: 12px;
  display: none;
  transform: translateY(8px) scale(0.98);
  pointer-events: auto;
  transition: opacity .25s, transform .2s;
}

#music-panel.show {
  display: flex;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  z-index: 999;
}


.bgm-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bgm-panel-padding);
  margin-bottom: 2px;
}

.bgm-title {
  font-size: var(--bgm-title-size);
  font-weight: 700;
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--point2-color);
  position: relative;
}

.bgm-title.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.bgm-title.marquee span {
  display: inline-block;
  min-width: 100%;
  animation: marquee-left 12s linear infinite;
  will-change: transform;
}

@keyframes marquee-left {
  0%   { transform: translateX(100%);}
  100% { transform: translateX(-100%);}
}
.bgm-volume-inner {
  display: flex;
  align-items: center;
  gap: var(--bgm-panel-padding);
}

#bgm-volume {
  -webkit-appearance: none;
  width: var(--bgm-volume-width);
  height: var(--bgm-progress-height);
  background: var(--point2-color);
  border-radius: 2px;
  outline: none;
}


#bgm-volume::-webkit-slider-runnable-track {
  height: var(--bgm-progress-height);
  border-radius: 2px;
  background: linear-gradient(
    to right,
    var(--point1-color) 0%,
    var(--point1-color) var(--_pct),
    var(--point2-color) var(--_pct),
    var(--point2-color) 100%
  );
}

#bgm-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--point2-color);
  border: none;
  border-radius: 50%;
  margin-top: calc((var(--bgm-progress-height) - 12px) / 2);
  cursor: pointer;
}

#bgm-volume::-moz-range-track {
  background: var(--point2-color);
  height: var(--bgm-progress-height);
  border-radius: 2px;
}

#bgm-volume::-moz-range-progress {
  background: var(--point1-color);
  height: var(--bgm-progress-height);
  border-radius: 2px;
}

#bgm-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--point2-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#bgm-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 2px;
}

#bgm-nav button {
  background: none;
  border: none;
  color: var(--point1-color);
  font-size: 16px;
  width: 24px;
  padding: 4px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bgm-nav button:hover {
  background: var(--point2-color);
  color: var(--article-color);
}

#bgm-nav svg {
  display: block;
  pointer-events: none;
}

#bgm-progress {
  width: 100%;
  height: var(--bgm-progress-height);
  accent-color: var(--point2-color);
  background: var(--point1-color);
  border-radius: 8px;
  margin-bottom: 2px;
  appearance: none;
}

#bgm-progress::-webkit-slider-runnable-track {
  height: var(--bgm-progress-height);
  background: linear-gradient(
    to right,
    var(--point2-color) 0%, 
    var(--point2-color) var(--_pct),
    var(--point1-color) var(--_pct),
    var(--point1-color) 100%
  );
  border-radius: 8px;
}

#bgm-progress::-moz-range-track {
  height: var(--bgm-progress-height);
  background: linear-gradient(
    to right,
    var(--point2-color) 0%,
    var(--point2-color) var(--_pct),
    var(--point1op-color) var(--_pct),
    var(--point1op-color) 100%
  );
  border-radius: 8px;
}

#bgm-progress::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--point2-color);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -4px;
}

#bgm-progress:focus {
  outline: none;
}

#bgm-progress::-ms-fill-lower,
#bgm-progress::-ms-fill-upper {
  background: var(--point1-color);
}

#bgm-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--point2-color);
  border: none;
}

#bgm-progress::-ms-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--point2-color);
  border: none;
}

#bgm-status {
  font-size: var(--bgm-status-size);
  color: var(--point1-color);
  text-align: center;
  padding: 0 3px 2px 3px;
  min-height: 16px;
  letter-spacing: 0.2px;
  font-family: inherit;
  margin-bottom: 2px;
}


