@charset "UTF-8";

/*skin start*/
/* font */
@import url('https://fastly.jsdelivr.net/npm/galmuri@latest/dist/galmuri.css');

@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; 
  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;
}


/* 폰트사이즈 변경 
  font-size: 숫자px / 
 글자간격 조절 line-height 숫자px 조절
*/
html {
  background: var(--body-color);
  --radius-: 10px;
  --btn-radius-: 5px;
  --font-size: 13px;
  --line-height: 15px;
  --padding1-: 5px;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}  
/* 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(--point2-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: fixed;
  right: 20px;
  top: 20px;
  z-index: 99;
}


/* layout */
#whole {
  font-size: var(--font-size);
  line-height: 1.6; 
  position: relative;
  display: grid;
  height: 100vh; 
  grid-template-areas: "sb2 ct sb1";
  grid-template-columns: 0.7fr 1.3fr 1fr;
  width: 100%;
  justify-content: center;
}
 
#sidebar1 {
  grid-area: sb1;
  background: var(--article-color);
  background-image: linear-gradient(var(--point1-color) 1px, transparent 1px), linear-gradient(90deg, var(--point1-color) 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
  overflow: hidden;
}

#container {
  grid-area: ct;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 10px;
}

.wrap {
  min-height: calc(100% - 33px);
}

#container::-webkit-scrollbar{
  display: block;
}

#sidebar2 {
  grid-area: sb2;  
  background-size: cover;
  background-position: center;
  height: 100%;
  position: relative;  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
}

/* sidebar1 */
/* sidebar1 btn 1 */
.side-item {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: var(--article2-color);
}

.character-btn {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--point1-color);  
} 

.chara-btn.active {
  color: var(--point2-color);
  border: solid 1px var(--point2-color);
}

.character-btn button {
  display: flex;
  align-items: center;
  padding: 10px;  
  background: var(--article-color);
  border: solid 1px var(--point1-color);
  outline: none;
  cursor: pointer;
  color: var(--point1-color);
  transition: 0.3s;
  border-radius: var(--btn-radius-);
  margin-right: 5px;
  box-shadow: var(--box2-color); 
}

.character-btn button:last-child{
  margin-right: 0;
}

.character-btn button:hover {
  color: var(--point2-color);
  border: solid 1px var(--point2-color);
  transition: all 0.3s ease;
}


/* speech-bubble 1 */
.bubble-item {
  position: relative;
  margin-bottom: 20px;
}

.bubble-inner1 {
  position: relative;
  width: 220px;
  right: -55%;
}

.bubble-inner1 #speech-bubble {
	width: 100%;
}

.bubble-inner1 #bub-part-a {
	margin-left: 6px;
	width: calc(100% - 15px);
	height: 2px;
	background: var(--point1-color);
}

.bubble-inner1 #bub-part-b {
	margin-left: 4px;
	width: calc(100% - 12px);
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner1 #bub-part-c {
	margin-left: 2px;
	width: calc(100% - 8px);
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner1 #speech-txt {
	width: calc(100% - 4px);
	padding: 10px;
	font-family: 'Galmuri9', sans-serif;
	font-size: 12px;
	color: var(--point2-color);
	text-align: center;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner1 #speech-arrow {
	margin-top: -2px;
	margin-left: 110px;
}

.bubble-inner1 #arrow-w {
	width: 11px;
	height: 9px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner1 #arrow-x {
	width: 9px;
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner1 #arrow-y {
	margin-left: -2px;
	width: 9px;
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner1 #arrow-z {
	margin-left: -3px;
	width: 7px;
	height: 2px;
	background: var(--point1-color);
}
 
/* speech-bubble 2 */
.bubble-inner2 {
  position: relative;
  width: 200px;
  right: -10%;
  margin-top: -20px;
}

.bubble-inner2 #speech-bubble {
	width: 200px;
}

.bubble-inner2 #bub-part-a {
	margin-left: 6px;
	width: calc(100% - 15px);
	height: 2px;
	background: var(--point1-color);
}

.bubble-inner2 #bub-part-b {
	margin-left: 4px;
	width: calc(100% - 12px);
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner2 #bub-part-c {
	margin-left: 2px;
	width: calc(100% - 8px);
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner2 #speech-txt {
	width: calc(100% - 4px);
	padding: 10px;
	font-family: 'Galmuri9', sans-serif;
	font-size: 12px;
	color: var(--point2-color);
	text-align: center;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner2 #speech-arrow {
	margin-top: -10px;
	margin-right: 110px;
  transform: rotate(180deg);
}

.bubble-inner2 #arrow-w {
	position: relative;
  top: -2px;
  width: 11px;
	height: 9px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner2 #arrow-x {
	position: relative;
  top: -2px;
	width: 9px;
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner2 #arrow-y {
	position: relative;
  top: -2px;
	margin-left: -2px;
	width: 9px;
	height: 2px;
	background: var(--article-color);
	border-left: 2px solid var(--point1-color);
	border-right: 2px solid var(--point1-color);
}

.bubble-inner2 #arrow-z {
	position: relative;
  top: -2px;
	margin-left: -3px;
	width: 7px;
	height: 2px;
	background: var(--point1-color);
}


/* sidebar title */
.chara-title {
  background: var(--point1-color);
  color: #fff;
  padding: 10px;
  margin: -10px 30px 10px 30px;
  border-radius: var(--radius-);
  text-align: center;
  box-shadow: var(--box2-color); 
}

/* chara0 */
#chara0 {
  height: calc(100% - 60px);
  overflow: hidden;
}

#typing {
  position: relative;
  width: calc(100% - 20px);
  height: 40px;
  margin: 0 10px 10px 10px;
  padding: 10px;
  border-radius: var(--radius-);
  background: var(--point1-color);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: var(--box2-color);  
}

.typing:after {
  content: '_';
}

.chara0-img {
  position: relative;
  width: calc(100% - 20px);
  height: 500px;
  overflow: hidden;   
  border-radius: var(--radius-);
  margin: 0 10px 10px 10px; 
  box-shadow: var(--box2-color);  
}

.chara0-img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-item {
  height: 43px;
  overflow: hidden;
}

.menu {
  overflow: hidden;
  height: 100%;
  margin: 0 10px;
  width: calc(100% - 20px);
}

.menu-icon {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.menu-1{
  display: flex;
  width: calc((100% - 20px) / 2);
  justify-content: space-between;
}

.menu-2{
  display: flex;
  width: calc((100% - 20px) / 2);
  justify-content: space-between;
}

.menu-wrap {
  display: flex;
  justify-content: center;
  background: var(--article-color);
  box-shadow: var(--box2-color);
  border-radius: 5px;
  border: solid 1px var(--border-color);
}

.sidenotice-wrap {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--article-color);
  box-shadow: var(--box2-color);  
  border-radius: 5px;
  border: solid 1px var(--border-color);
}

.sidenotice-wrap i{
  margin-right: 5px;
}

.menu-icon a {
  display: block;
}

.menu-icon a {
  padding: 10px;
  cursor: pointer;
  position: relative;
  transition: transform 0.5s ease-in-out;
  margin: 0 0.2rem;
}

.m-icon spam {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  left: 0;
  top: 100%;
  color: var(--point2-color);
  border-bottom: 2px solid var(--point2-color);
}

.menu-icon a:hover {
  transform: translateY(-100%);
}

.menu-icon a:hover {
  transform: translateY(-100%);
}

.chara0-item {
  display: flex; 
  flex-direction: row; 
  height: calc(100% - 610px);
}
 
.side-category {
  height: calc(100% - 20px);
  background: var(--article-color);
  box-shadow: var(--box2-color);
  border-radius: 5px;
  overflow: hidden;
  margin: 10px;
  width: calc((100% - 20px) / 2);
  border: solid 1px var(--border-color);
}

.side-notice {
  height: calc(100% - 20px);
  background: var(--article-color);
  box-shadow: var(--box2-color);
  border-radius: 5px;
  overflow-y: auto;
  margin: 10px;
  width: calc((100% - 20px) / 2);
  border: solid 1px var(--border-color);
  padding: 10px;
}

.side-notice img {
  max-width: 100%;
  border-radius: var(--radius-);
}

.link_tit {
  font-weight: bold;
  margin-bottom: 10px;
}

.tt_category {
  height: 100%;
  overflow-y: auto;
  line-height: 2;
  padding: 10px;
}

.link_item {
  font-weight: bold;
}

.cate_li {
  display: flex;
  align-items: center;
}

.sub_item {
  margin-left: 5px;
  cursor: pointer;
}

.sub_item:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

.c_cnt {
  color: var(--point2-color);
  font-weight: normal;
}

.category a:hover .c_cnt{
  color: var(--point1-color);
  transition: all 0.3s ease;
}

.link_sub_item {
  padding-left: 15px;
}

.sub_category_list {
  display: none;
}

.sub_category_list > li > a:before{
  content:"-";
}


/* chara1 */
#chara1 {
  height: calc(100% - 60px);
}

#chara1 .chara-title {
  font-family: 'Galmuri9', sans-serif;
}

.side-slide {
  position: relative;
  width: 100%;
  display: block;
  height: calc(100% - 160px);
}

.slide-wrap, .slide-inner {
  height: 100%;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.checkbox:checked + label,
.checkbox:not(:checked) + label {
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  margin-right: 6px;
  margin-left: 6px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; 
  animation: border-transform 6s linear infinite alternate forwards;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  animation-play-state: paused;
}

.checkbox:checked + label:hover,
.checkbox:not(:checked) + label:hover {
  border: solid 3px var(--point2-color);
  transition: all 0.3s ease;
}

.checkbox:checked + label {
  box-shadow: 0 8px 25px 0 rgba(16, 39, 112, 0.3);
  transform: scale(1.3);
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  animation-play-state: running;
  border: solid 3px var(--point2-color);
}
@keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

.slider-height-padding {
  text-align: center;
  height: 100%;
}

.slide-box {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 85%;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slide-box li {
  position: absolute;
  height: calc(100% - 10px);
  margin-bottom: 10px;
  top: 0;
  left: 0;
  width: calc(100% - 20px);
  display: block;
  z-index: 100;
  padding: 0;
  margin: 10px;
  list-style: none;
  border: 3px solid var(--border-color);
  background-size: cover;
  background-position: center; 
  border-radius: 50%;
  box-sizing: border-box;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2.7;
  writing-mode: vertical-rl;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  box-shadow: var(--box2-color); 
}

.slide-box li img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.slide-box li span {
  mix-blend-mode: difference;
  color: var(--point1-color);
}

.checkbox.frst:checked ~ ul li:nth-child(1) {
  opacity: 1;
  pointer-events: auto;
  border-radius: var(--radius-);
}
.checkbox.scnd:checked ~ ul li:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
  border-radius: var(--radius-);
}
.checkbox.thrd:checked ~ ul li:nth-child(3) {
  opacity: 1;
  pointer-events: auto;
  border-radius: var(--radius-);
}
.checkbox.foth:checked ~ ul li:nth-child(4) {
  opacity: 1;
  pointer-events: auto;
  border-radius: var(--radius-);
}

.logo {
  position: absolute;
  top: 30px;
  right: 30px;
  display: block;
  z-index: 100;
  transition: all 250ms linear;
}
.logo img {
  height: 26px;
  width: auto;
  display: block;
}


/* sidebar btn 2 */
#chara2, #chara5 {
  height: calc(100% - 60px);
  overflow:hidden;
}

#chara2 .chara2-wrap,
#chara5 .chara2-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#chara2 .chara2-img,
#chara5 .chara2-img {
  position: relative;
  display: flex;
  width: 100%;
  padding: 10px;
}

#chara2 .chara2-item,
#chara5 .chara2-item {
  max-height: 100%;
  overflow-y: auto;
}

#chara2 .chara2-img img:first-child,
#chara5 .chara2-img img:first-child {
  margin-right: 10px;
}

#chara2 .chara2-img img,
#chara5 .chara2-img img {
  width: calc((100% - 10px) / 2);  
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
  box-shadow: var(--box2-color);
}

#chara2 .chara2-info,
#chara5 .chara2-info {
  width: calc(100% - 20px);
  margin: 10px 10px 20px 10px;
  position: relative;
  padding: 10px;
  background: var(--point2op-color);
  border-radius: var(--radius-);
  box-shadow: var(--box2-color);
}

#chara2 .chara2-info:last-child,
#chara5 .chara2-info:last-child {
  margin-bottom: 0;
}

#chara2 .info-title,
#chara5 .info-title {
  padding: 5px 10px;
  background: var(--point1-color);
  color: #fff;
  width: fit-content;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  left: 20px;
}

#chara2 .info-text,
#chara5 .info-text{
  padding: 15px 10px 10px 10px;
  display: flex;
  flex-direction: column;
}

#chara2 .info-item,
#chara5 .info-item{
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

#chara2 .info-item:last-child,
#chara5 .info-item:last-child {
  margin-bottom: 0;
}

#chara2 .text-title,
#chara5 .text-title{
  margin-right: 10px;
  font-weight: bold;
  width: 80px;
}

#chara2 .title-desc,
#chara5 .title-desc
{
  width: calc(100% -90px);
}


/* sidebar btn 3 */
#chara3, 
#chara6 {
  height: calc(100% - 60px);
  overflow: hidden;
}

#chara3 .chara1-info,
#chara6 .chara1-info {
  height: 30px;
  display: flex;
  justify-content: space-between;
}

#chara3 .chara-title,
#chara6 .chara-title {
 margin: 0 0 0 10px;
 background: none;
 color: var(--point1-color);
 border: none;
 border-radius: unset;
 text-align: left;
 display: flex;
 flex-direction: row;
 padding:0;
 font-size: 15px;
 font-weight: bold;
 align-items: center;
}

#chara3 .title-back,
#chara6 .title-back {
  background: var(--point1-color);
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

#chara3 .chara1-item,
#chara6 .chara1-item {
  display: flex;
  padding: 10px;
  height: 500px;
}

#chara3 .chara1-img1,
#chara6 .chara1-img1 {
  display: flex;
  flex-direction: column;
  width: 200px;
  margin-right: 10px;
}

#chara3 .chara1-img1-1,
#chara6 .chara1-img1-1 {
  position: relative;
  width: 100%;
  height: calc((100% - 20px) / 3);
  margin-bottom: 10px;
  border-radius: var(--radius-);
  overflow: hidden;
  border: soild 3px var(--border-color);
  box-shadow: var(--box2-color);
}

#chara3 .chara1-img1-2,
#chara6 .chara1-img1-2 {
  position: relative;
  width: 100%;
  height: calc((100% - 20px) / 3);
  border-radius: var(--radius-);
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: var(--box2-color);
}

#chara3 .chara1-img1-3,
#chara6 .chara1-img1-3 {
  position: relative;
  width: 100%;
  height: calc((100% - 20px) / 3);
  border-radius: var(--radius-);
  overflow: hidden;
  box-shadow: var(--box2-color);
}

#chara3 .chara1-img1-1 img,
#chara6 .chara1-img1-1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
 
#chara3 .chara1-img1-2 img,
#chara6 .chara1-img1-2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#chara3 .chara1-img1-3 img,
#chara6 .chara1-img1-3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#chara3 .chara1-img2,
#chara6 .chara1-img2 {
  position: relative;
  width: calc(100% - 210px);
  border-radius: var(--radius-);
  overflow: hidden;
  box-shadow: var(--box2-color);
}

#chara3 .chara1-img2 img,
#chara6 .chara1-img2 img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

#chara3 .chara1-tag,
#chara6 .chara1-tag {
  height: 40px;
  background: var(--point1-color);
  margin: 0 10px 10px 10px;
  padding: 10px;
  border-radius: var(--radius-);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--box2-color);
}

#chara3 .chara1-color,
#chara6 .chara1-color {
  height: 40px;
  margin: 0 10px 10px 10px;
  overflow: hidden;
}

#chara3 .color-wrap1, 
#chara3 .color-wrap2,
#chara3 .color-wrap3,
#chara6 .color-wrap1, 
#chara6 .color-wrap2,
#chara6 .color-wrap3 {
  width: 50%;
  height: 100%;
}

#chara3 .color-title,
#chara6 .color-title {
  width: 50%;
  height: 100%;
  text-align: center;
  background: var(--article-color);
  color: var(--point2-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

#chara3 .chara-item,
#chara6 .chara-item {
  display: flex;
  align-items: center;
  height: 100%;
}

#chara3 .chara-color,
#chara6 .chara-color {
  display: flex;
  width: calc((100% - 20px) / 3 );
  height: 100%;
  align-items: center;
  margin-right: 10px;
  border-radius: var(--radius-);
  border: solid 1px var(--point1-color);
  overflow: hidden;
  box-shadow: var(--box2-color);
}
 
#chara3 .chara-color:last-child,
#chara6 .chara-color:last-child{
  margin-right: 0;
}

#chara3 .chara1-chibi,
#chara6 .chara2-chibi {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100px;
  z-index: 99;
}
 
#chara3 .chara1-chibi img,
#chara6 .chara2-chibi img {
  width: 100%;
}

#chara3 .chara1-character,
#chara6 .chara1-character {
  margin: 0 10px 10px 10px;
  border-radius: var(--radius-);
  height: calc(100% - 640px);
  overflow-y: auto;
  background: var(--point2-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--box2-color);
}

#chara3 .character-item,
#chara6 .character-item {
  display: flex;
  align-items: center;
  padding: 10px 10px 0 10px;
}

#chara3 .character-icon,
#chara6 .character-icon {
  width: 10px;
  height: 10px;
  background: #fff;
}

#chara3 .character-text,
#chara6 .character-text {
  margin-left: 10px;
  font-weight: bold;
}


/* sidebar btn 4 */
#chara4 {
  height: calc(100% - 60px);
  overflow: hidden;
}

#chara4 #boxholder_1 {
  background: var(--point1-color);
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: var(--radius-);
  text-align: center;
  box-shadow: var(--box2-color);
}

.qna-title {
  font-weight: bold;
  font-size: 15px;
}

#chara4 #boxholder_1 a {
  color: #fff;
}

#chara4 .chara4-item {
  height: 100%;
  width: calc(100% - 20px);
  margin: 10px;
}

#chara4 .col2 {
  width: 100%;
  margin: 20px auto;
  height: calc(100% - 90px);
}

#chara4 .qna {
  height: 100%;
  overflow-y: auto;
}

#chara4 .qna .box.text {
  padding: 20px 50px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  background: var(--point2op-color);
  cursor: pointer;
}

#chara4 .qna .box.text:hover {
  border: 1px solid var(--point1-color);
  background: var(--point2-color);
  cursor: pointer;
  color: var(--point1-color);
  transition: all 0.3s ease;
}

#chara4 .qna .box.text > .chara4-q {
  text-align: center;
  position: relative;
  font-weight: bold;
}

#chara4 .qna .box.text > .chara4-q:after {
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight:700;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(0deg);
  transition: 0.25s;
}

#chara4 .qna .box.text.qna_show > .chara4-q:after {
  transform: rotate(90deg);
}

#chara4 .qna .box.text > .chara4-q:before {
  content: "Q. ";
  font-weight: bold;
}

#chara4 .qna .box.text > .box_content {
  overflow: hidden;
}

#chara4 .qna .box.text > .box_content .chara4-a:first-of-type:before {
  content: "A. ";
  font-weight: bold;
}

#chara4 .chara4-a img {
  max-width: 100%;
}


/* calendar */
#side-item3 .right-section {
  padding: 5px;
}

.calendar {
  font-size: 11.5px;
  margin-bottom: 5px;
}

.calendar .tt-calendar .cal_current_week {
  background: var(--point2-color);
}

.calendar .tt-calendar .cal_week2, .calendar .tt-calendar .cal_day_sunday {
  color:red;
}

.calendar .tt-calendar td a {display:inline-block; 
  border-bottom:solid 1px var(--point1-color); 
  color:var(--point1-color);
  font-weight: bold; 
}

.calendar .tt-calendar th { 
  font-weight:normal;
}

.calendar .tt-calendar .cal_day4 {
  background:var(--point2-color);
  color:#fff;
}

.calendar .tt-calendar th, .calendar .tt-calendar td {
  padding: 3px; 
  text-align:center;
}

.cal_month .PrevMonthBtn::before,
.cal_month .NextMonthBtn::before,
.cal_month .Month {
  font-weight: 600;
  margin: 3px;
}

.cal_month .PrevMonthBtn::before {
  content: '\f0d9';
  font-family: 'Font Awesome 5 Free';
}

.cal_month .NextMonthBtn::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
}

.calendar a:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}

.calendar .tt-calendar td a:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
  border-bottom: solid 1px var(--point2-color);
}

/* d-day */
.d-day {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  padding: 5px;
  background: var(--point1-color);
  border-radius: var(--radius-);
}

.dname {
  margin-right: 5px;
}

.d-day {
  color: #fff;
  text-align: center;
}

.d-title {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 5px;
}
  
.d-desc {
  display: flex;
  justify-content: center;
}

/* keyframes */
.bubble-item, .chara1-info, #typing, .chara2-img, .box.cpbox.text, .card {
  animation: slideFadeIn 0.5s;
  animation-timing-function: ease-in-out;
}

.slide-inner, .chara1-item, .chara1-tag, .chara1-color, .chara0-img, .chara2-info, .qna .box.text{
  animation: slideFadeIn 0.6s;
  animation-timing-function: ease-in-out;
}

.slide-box, .chara1-character, .menu-item, .chara0-item, .chara2-info, .search {
  animation: slideFadeIn 0.8s;
  animation-timing-function: ease-in-out;
}


@keyframes slideFadeIn {
  0% {
  opacity: 0;
  transform: translateY(115px);
  }
  
  100% {
  opacity: 1;
  transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}


/* sidebar 2*/
html[data-theme='dark'] .card{
  color: var(--text-color);
}

.card {
  width: 300px;
  margin-bottom: 20px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background: var(--article2-color);
  display: flex;
  transition: 0.3s;
  flex-direction: column;
  border-radius: var(--radius-);
  box-shadow: var(--box2-color);
}

.card[data-state="#about"] .card-main {
  padding-top: 0;
}

.card[data-state="#banner"], .card[data-state="#contact"],
.card[data-state="#about"]{
  height: auto;
}

.card.is-active .card-header {
  height: 80px;
}
.card.is-active .card-cover {
  height: 100px;
  top: -50px;
}

.card.is-active .card-avatar {
  transform: none;
  left: 20px;
  width: 50px;
  height: 50px;
  bottom: 10px;
}

.card.is-active .card-fullname,
.card.is-active .card-blogger {
  left: 86px;
  transform: none;
}

.card.is-active .card-fullname {
  bottom: 18px;
  font-size: 15px;
}

.card.is-active .card-blogger {
  bottom: 16px;
  letter-spacing: 1px;
  font-size: 10px;
}

.card-header {
  position: relative;
  display: flex;
  height: 200px;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s;
}

.card-header * {
  transition: 0.3s;
}

.card-cover {
  width: 100%;
  position: absolute;
  height: 160px;
  top: -20%;
  left: 0;
  will-change: top;
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  transform: scale(1.2);
  transition: 0.5s;
}

.card-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-64px);
}

.card-fullname {
  position: absolute;
  bottom: 0;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-30px) translateX(-50%);
  left: 50%;
}

.card-blogger {
  position: absolute;
  bottom: 0;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-7px);
}

.card-main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-subtitle {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.card-content {
  padding: 5px;
  background: var(--article2-color);
}

.card-desc {
  line-height: 1.6;
  margin: 0;
}

.card-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  margin: 10px 0;
}

.card-social svg {
  fill: var(--point2-color);
  width: 16px;
  display: block;
  transition: 0.3s;
}

.card-social a {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background: var(--point2-color);
  margin-right: 10px;
}

.card-social a:hover {
  background: var(--point1-color);
}

.card-social a:last-child {
  margin-right: 0;
}

.card-buttons {
  display: flex;
  background-color: #fff;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  left: 0;
}
.card-buttons button {
  flex: 1 1 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: 0;
  font-size: 13px;
  border: 0;
  padding: 15px 5px;
  cursor: pointer;
  color: var(--point1-color);
  transition: 0.3s;
  outline: 0;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  background: var(--article-color);
}

.card-buttons button.is-active, .card-buttons button:hover {
  border-bottom: 3px solid var(--border-color);
  background: var(--point2-color);
}

.card-section {
  display: none;
}
.card-section.is-active {
  display: block;
  -webkit-animation: fadeIn 0.6s both;
          animation: fadeIn 0.6s both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translatey(40px);
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translatey(40px);
  }
  100% {
    opacity: 1;
  }
}

.card-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-item img {
  max-width: 100%;
  margin-bottom: 10px;
}

.card-item:last-child {
  padding-bottom: 5px;
}

.card-item-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.card-item-desc {
  font-size: 13px;
  color: #6f6f7b;
  line-height: 1.5;
  font-family: 'Pretendard-Regular';
}

.card-contact-wrapper {
  margin-top: 20px;
}

.card-link {
  display: flex;
}

.link-img {
  position: relative;
  width: 50%;
}

.link-img img {
  width: 100%;
}



/* list */
.empty {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 10px;
  color: var(--point2-color);
  justify-content: center;
  background: var(--article-color);
  border: solid 1px var(--border-color);
  box-shadow: var(box-shadow);
  border-radius: var(--radius-);
}

.list-inner::first-letter{
  content: '';
  display: block;
  clear: both;
  margin: 0;
  padding: 0;
}

.cate-folder{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-bottom: solid 1px var(--border-color);
}

.list-cate {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-right: 5px;
}

.cate-info{
  font-size: 13px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
}

.cate-desc {
  margin-top: 2px;
  color: var(--point2-color);
}

.cate-conform{
  display: flex;
  align-items: center;
  font-weight: bold;
}

.cate-conform svg{
  margin-right: 5px;
}

.cate-count{
  color: var(--point2-color);
}

.list-inner {
  height: 100%;
}



/* search */
.search {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--article2-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  border: solid 1px var(--border-color);
  padding: 10px;
  justify-content: center;
}

.search-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.search input::placeholder {
  color: var(--point1-color);
}

.search input{
  color: var(--point2-color);
  padding: 0 3px;
  border: none;
  font-family: 'Pretendard-Regular';
  background: none;
  letter-spacing: 1.5px;
  width: calc(100% - 15px);
}

.submit {
  width: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--point1-color);
  cursor: pointer;
}

.submit:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}



/* list-basic */
.cover-container {
 padding: 0;
}

#list-basic {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-basic.inner,
#list-basic {
  padding-bottom: 15px;
  margin-bottom: 10px;
}

#list-basic .thumbnail, #list-basic .summary, #list-basic .memo{
  display: none;
}

.list-basic .cover-wrap,
#list-basic .list-wrap {
  display: block;
}

.list-basic .info, 
#list-basic .info {
  width: 100%; 
  display: flex; 
  flex-direction: row; 
  justify-content: space-between;
  align-items: center;
  position: relative;
}
 
#list-basic .list-title {
  width: calc(100% - 50px); 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.inner:first-child .cover-title{
  border-top: none;
}

.cover-title {
  padding: 10px 10px 0 10px;
  text-align: left;
  color: var(--point1-color);
  font-weight: bold;
}

#list-basic .list-date {
  width: 100px;
  text-align: right;
}

.list-basic .list-title{
  width: calc(100% - 100px); 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}


.list-basic .list-date{
  width: 100px;
  text-align: right;
}

#list-basic .list-lock .list-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

.list-basic .cover-item,
#list-basic .list-item{
  display: block;
  position: relative;
  padding: 10px;
  margin: 10px 10px 10px 10px;
  width: calc(100% - 20px); 
  border-radius: var(--radius-);
  border: solid 1px var(--border-color);
}

.list-basic .cover-item:nth-last-child(1),
#list-basic .list-item:nth-last-child(1){
  margin-bottom: 0;
}

.list-basic .cover-item:hover,
#list-basic .list-item:hover {
  background: var(--point1op-color);
  transition: all 0.3s ease;
}


/* list-memo */
#list-memo .thumbnail, #list-memo .summary, #list-memo .info {
  display: none;
}

.list-memo .cover-inner::after {
  content: ''; display: block; clear: both; margin: 0; padding: 0;
}


#list-memo .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-memo .cover-inner{
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
}

#list-memo .list-inner{
  height: 100%;
  display: flex;
  padding-top: 10px;
  flex-wrap: wrap;
}

.list-memo .cover-wrap,
#list-memo .list-wrap{  
  cursor: pointer;
  float: left; 
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;    
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-memo .cover-item, 
#list-memo .list-item{
  display: block;
  height: 100%;
  position: relative;
}

.list-memo .cover-item:hover, 
#list-memo .list-item:hover{
  background: var(--point1op-color);
  transition: all 0.3s ease; 
}

.list-memo .memo,
#list-memo .memo {
  position: relative;
}

.list-memo .memo-info,
#list-memo .memo-info {
  display: flex;
  align-items: center;
  padding: 5px;
}

#list-memo .thumbnail {
  order: 2;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#list-memo .thumbnail img {
  position: absolute;
  width: 100%;
  
  /* 이미지 위치 */
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
}

.list-memo .memo-item,
#list-memo .memo-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.list-memo .memo-user,
#list-memo .memo-user {
  position: relative;
  width: 30px;
  margin-right: 10px;
}

.list-memo .memo-user img,
#list-memo .memo-user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.list-memo .memo-title,
#list-memo .memo-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.list-memo .memo-date,
#list-memo .memo-date {
  width: 100%;
  color: var(--point2-color);
}

.list-memo .memo-desc,
#list-memo .memo-desc {
  line-height: 1.7;
  padding: 5px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;  
}

#list-memo .list-lock .memo-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

.list-memo .cover-wrap:hover,
#list-memo .list-wrap:hover {
  transition: all 0.3s ease;
  border: solid 1px var(--point2-color);
}

#list-memo .memo-title {
  font-weight: bold;
}

#list-memo .memo-title span {
  color: var(--point2-color);  
  margin-top: 3px;
  font-weight: normal;
}


/* list-gallery */
#list-gallery .memo, #list-gallery .summary, #list-gallery .info {display: none;}

.list-gallery .cover-inner::after {
  content: ''; 
  display: block; 
  clear: both; 
  margin: 0; 
  padding: 0;
}

#list-gallery .list-inner{
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

.list-gallery .cover-inner{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
}

#list-gallery .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-gallery .cover-wrap{
  float: left;
  width: calc((100% - 20px) / 3);
  margin: 0 10px 10px 0;
  position: relative;
}

#list-gallery .list-wrap{
  float: left;
  width: calc((100% - 20px) / 3);
  margin: 0 10px 10px 0;
  position: relative;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-gallery .cover-wrap:nth-child(3n),
#list-gallery .list-wrap:nth-child(3n){
  margin-right: 0;
}

.list-gallery .cover-item,
#list-gllery .list-item{
  display: block;
}

.list-gallery .thumbnail, 
#list-gallery .thumbnail,
#article-related .thumbnail {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-);
}

#list-gallery .list-item {
  position: relative;
}

.list-gallery .thumbnail img,
#list-gallery .thumbnail img,
#article-related .thumbnail img {
  width:100%;
  -webkit-transform: scale(1); 
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background: var(--article-color);
  opacity: 1;
}  

#list-gallery .thumbnail-info,
.list-gallery .thumbnail-info {
  padding: 10px;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  position: absolute; 
  top: 0; 
  left: 0; 
  border-radius: var(--radius-);
  opacity: 0;
  transition: 0.3s; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  color: var(--point1-color);
  font-weight: bold;
  flex-direction: column;
}

#article-related .thumbnail-info{
  padding: 10px;
  overflow: hidden;
  width: 100%; 
  height: 100%;
  position: absolute; 
  top: 0; 
  left: 0; 
  border-radius: var(--radius-);
  opacity: 0;
  transition: 0.3s; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--point1-color);
  font-weight: bold;
  flex-direction: column;
}

.list-gallery .thumbnail-item,
#list-gallery .thumbnail-item {
  color: var(--point1-color);
  text-align: right;
  width: 100%;
  font-weight: normal;
  display: flex;
  justify-content: space-between;  
  align-items: center;
}

.list-gallery .thumbnail-text,
#list-gallery .thumbnail-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.list-gallery .thumbnail-icon,
#list-gallery .thumbnail-icon {
  padding: 5px;
  display: flex;
  align-items: center;
}

.list-gallery .thumbnail-title,
#list-gallery .thumbnail-title{
  text-overflow: ellipsis; 
  display: -webkit-box;
  line-height: 22px;
  -webkit-line-clamp: 3; 
  text-align: center; 
  -webkit-box-orient: vertical;  
  width: 100%;
  overflow: hidden;
  padding: 5px;
  color: var(--point1-color);
}

#article-related .thumbnail-title {
  text-overflow: ellipsis; 
  display: -webkit-box;
  line-height: 22px;
  -webkit-line-clamp: 3; 
  text-align: center; 
  -webkit-box-orient: vertical;  
  width: 100%;
  overflow: hidden;
  padding: 5px;
  color: var(--point2-color);
}

.list-gallery .cover-wrap .thumbnail:hover .thumbnail-info,
.list-gallery .cover-wrap .thumbnail:focus .thumbnail-info,
#list-gallery .list-wrap .thumbnail:hover .thumbnail-info, 
#list-gallery .list-wrap .thumbnail:focus .thumbnail-info,
#article-related .list-wrap .thumbnail:hover .thumbnail-info,
#article-related .list-wrap .thumbnail:focus .thumbnail-info{
  opacity: 1; 
  transition: all 0.3s ease;
}

.list-gallery .cover-item:hover img,
#list-gallery .list-item:hover img,
#article-related .list-item:hover img{
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
  opacity: .5;
}

.list-gallery .cover-item:hover .thumbnail:before, 
#list-gallery .list-item:hover .thumbnail:before,
#article-related .list-item:hover .thumbnail:before {
  opacity: 0;
}

.list-gallery .cover-item:hover .thumbnail:after,
#list-gallery .list-item:hover .thumbnail:after,
#article-related .list-item:hover .thumbnail:after {
  width: 100%;
}
 
#list-gallery .list-lock .thumbnail-info::after {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight: 700;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
  margin-top: -3px;
}


 #list-gallery .list-lock .thumbnail:before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex; 
  justify-content: center; 
  align-items: center;
  width: 10px;
  height: 10px;
  opacity: 1;
  z-index: 1;
  color: var(--point2-color);
  transition: all 0.3s ease;
}


#list-gallery .list-wrap .thumbnail:after,
#article-related .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-title,
#list-gallery .list-title{
  font-weight: bold;
  width: 100%; 
  line-height: 20px; 
  text-align: left;
  overflow-y: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}


.list-gallery .cover-item:hover .thumbnail-title,
.list-gallery .cover-item:hover .thumbnail-item,
#list-gallery .list-item:hover .thumbnail-title{
  color: var(--point2-color);
  transition: all 0.3s ease-in-out; 
}


/* list-summary */
#list-summary .memo, #list-summary .info, #list-summary .thumbnail-info {display: none;}

.list-summary .cover-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px 0 10px;
}

#list-summary .list-inner {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}


#list-summary .cate-folder {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.list-summary .cover-wrap,
#list-summary .list-wrap{
  float: left;
  width: calc((100% - 20px) / 3);
  margin: 0 10px 10px 0;
  position: relative;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
}

.list-summary .cover-wrap:nth-child(3n),
#list-summary .list-wrap:nth-child(3n){
  margin-right: 0;
}

.list-summary .cover-item,
#list-summary .list-item {
  display: flex;
  flex-direction: column;  
  overflow: hidden;
  padding: 5px;
  height: 100%;
}

.list-summary .cover-item .thumbnail,
#list-summary .list-item .thumbnail {
  width: 100%;
  height: 200px;
  order: 1;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-);
}

.list-summary .cover-wrap .thumbnail img,
#list-summary .list-wrap .thumbnail img{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  opacity: 1;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.list-summary .cover-wrap:hover img,
#list-summary .list-wrap:hover img{
	opacity: .5;
}


.list-summary .summary,
#list-summary .summary {
  display: flex;
  width: 100%;
  order: 2;
  height: 130px;
  padding: 5px 5px 0 5px;
  flex-direction: column;
  justify-content: space-between;
}

.list-summary .summary-info,
#list-summary .summary-info{
  order: 1;
  display: flex;
  justify-content: space-between;
}

.list-summary .summary-title,
#list-summary .summary-title {
  width: calc(100% - 70px);
  overflow: hidden;
  display: -webkit-box;
  font-weight: bold;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
}

.list-summary .summary-desc,
#list-summary .summary-desc {
  order: 2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;  
  line-height: 1.5;
}

#list-summary .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}


.list-summary .cover-item:hover,
#list-summary .list-item:hover {
  transition: all 0.3s ease-in-out;
  background: var(--point1op-color);
}


/* list-playlist */
#list-playlist .thumbnail, #list-playlist .memo, #list-playlist .info{
  display: none;
} 

#list-playlist .list-inner {
  background: none;
}

#list-playlist.list-container{
  background:none;
  border: none;
}
 
#list-playlist .cate-folder{
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  margin-bottom: 10px;
}

#list-playlist .list-wrap{
  margin-bottom: 10px;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
}

#list-playlist .list-item {
  width: 100%; 
  display: block;
}

.list-playlist .cover-title, 
.c-swiper .cover-title {
  padding: 10px;
}

.list-playlist .summary{
  width: 100%;
  text-align: center;
  border-top: solid 1px var(--border-color);
  overflow: hidden;
}

#list-playlist .summary
{
  width: 100%;
  text-align: center;
}

.list-playlist .summary-info,
#list-playlist .summary-info{
  padding: 5px;
  width: 100%;
  text-align: center;
}

.list-playlist .summary-title,
#list-playlist .summary-title{
  font-weight: bold;
  width: calc(100% - 70px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
}

.list-playlist .summary-date,
#list-playlist .summary-date{
  text-align: right;
  width: 100%;
}

#list-playlist .summary-date{
  text-align: right;
}

#list-playlist .list-item:hover {
  color: var(--point2-color);
}

#list-playlist .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 3px;
}

#list-playlist .list-lock {
  padding: 10px;
}

/* paging */
#paging{
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.num{
  margin: 0 5px;
}

.p-prev a, .p-next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-);
}

#paging .selected{
  color: var(--point2-color);
  font-weight: bold;
}

.info-prog {
  padding: 10px;
}

.prog-txt{
  float: right;
  text-transform: uppercase;
  color: var(--point2-color);
}

.prog-name{
  text-transform: uppercase;
  color: var(--point1-color);
  font-weight: bold;
}

.prog-bar{
  width: 100%;
  height: 4px;
  margin-top: 2px;
  border-radius: var(--radius-);
  background: var(--point2-color);
}

.bar-line1, .bar-line2, .bar-line3{
  background: var(--point1-color);
  height: 4px;
  border-radius: var(--radius-);
}

.prog:not(:first-child) {margin-top: 10px;}

.favorite-img{
  position: relative;
  width: 100%;
}

.favorite-img img {
  width: 100%;  
}


/* cover - notice */
.cover-container .inner{
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  overflow: hidden;
  margin-bottom: 10px;
} 
 
.cover-container .inner:last-of-type{
  margin-bottom: 0;
}

.notice .cover-inner {
  padding: 0 10px 10px 10px;
  text-align: center;
}

.notice .notice-img {
  position: relative; 
  width: 100%; 
  text-align: center;
}

.notice .notice-img img {
  max-width: 100%;
}

.notice .cover-title:first-child {
  border-top: none;
}

/* swiper */
.c-swiper.inner {
  width: 100%;
}

.swiper {
  width: 100%; height: 100%;
}

.swiper.mySwiper  {
  width: 100%; max-height: 500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.swiper-slide img {
  display: block; 
  width: 100%; 
  object-fit: cover; 
  height: 100%;
}

.swiper-pagination-bullet{
  background: var(--point1-color) !important;
}
 

/* article */
.postbtn_like .wrap_btn_share, .container_postbtn .btn_post .ico_share{
  width: 0 !important;
}

#article {
  color: var(--text-color);
}

#article .btn_menu_toolbar{
  display: none !important;
}

#article .article-wrap {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.article-tag{
  display: none;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  padding: 10px;
  margin-bottom: 5px;
}

.article-tag a::before {
   content: '#'; margin-right: 3px;
}


/* article - desc */
.article-wrap {
  padding: 5px;
}

.article-cate a{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.article-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.article-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--point1-color);
}

.article-date {
  margin-top: 5px;
  color: var(--point2-color);
}

.article-paging {
  margin-top: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.article-paging a:hover {
  font-weight: bold;
  transition: all 0.3s ease-in-out; 
}


/* article - tt */
.footnotes {
  margin: 10px 0;
}

.footnote a {
  color: var(--point1-color) !important;
}

blockquote[data-ke-style='style1']{
  text-align: center;
}

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;
  border-left: solid 7px var(--border-color);
  border-right: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
  border-top: solid 1px var(--border-color);
}

 blockquote[data-ke-style='style3'] {
 padding: 5px; 
 margin:10px 0; 
 font-size: var(--font-size); 
 line-height: 20px; 
 overflow-y: auto;
 border-radius: 5px;
 border: solid 1px var(--border-color);
 }

 blockquote[data-ke-style='style3'] img {
  width: 100%;
}

 blockquote p  {
  font-size: var(--font-size) !important;
}

ul[data-ke-list-type='disc'], ul[data-ke-list-type='circle'],ol[data-ke-list-type='decimal'] {
  padding-left: 20px;
  margin: 10px 0;
}

ul[data-ke-list-type='disc'] li::marker, ul[data-ke-list-type='circle'] li::marker, ol[data-ke-list-type='decimal'] li::marker  {
  color: var(--point1-color);
}

figure.imageslideblock div.mark {
  height: 22px !important;
}

figure.imageslideblock div.mark span {
  margin: 10px 1px !important;
}

figure.imageslideblock figcaption{
  color: var(--point1-color);
  font-weight: bold;
}

.contents_style table td{
  padding: 5px;
}


/* article-btn */
#btn-inner{
  display: flex;
  flex-direction: column;
}

.article-btn {
  display: flex;
  padding: 5px 0;
  justify-content: space-between;
}

.btn-item {
  display: flex;
}

.comment-btn, .related-btn, .tag-btn {
  display: flex;
  align-items: center;
  padding: 5px;
  color: var(--point1-color);
  font-weight: bold;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

.comment-btn, .tag-btn{
  margin-right: 5px;
}

.container_postbtn .postbtn_like{
  padding: 0 !important;
  border: solid 1px var(--border-color) !important;
  background: var(--article-color) !important;
  border-radius: var(--radius-) !important;
  box-shadow: var(--box-color) !important;
  color: var(--point1-color) 
}

.container_postbtn{
  padding: 0 !important;
}

.container_postbtn button:focus, .layer_post button:focus,.layer_tooltip button:focus {
    outline: none !important;
}

.comment-btn:hover, .related-btn:hover, .tag-btn.tag-btn:hover {
  border: solid 1px var(--point2-color);
  transition: all 0.3s ease-in-out; 
  cursor: pointer;
  color: var(--point2-color);
}


/*article-related*/
#article-related {
  display: none;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  margin-bottom: 5px;
}

#article-related .list-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}

#article-related .list-wrap{
  float: left;
  width: calc((100% - 30px) / 4);
  margin: 0 10px 0 0;
  position: relative;
}

#article-related .list-wrap:nth-child(4n){
  margin-right: 0;
}


/* namecard */
[data-tistory-react-app='Namecard']{
  order: 4;
}

.tt_box_namecard{
  margin: 5px 0 0 0 !important;
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-);
  min-height: 120px !important;
  justify-content: center !important;
  align-items: center;
  background: var(--article-color) !important;
}

.tt_box_namecard .tt_cont{
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tt_box_namecard .tt_wrap_thumb {
  margin: 5px !important;
  border-radius: var(--radius-) !important;  
}

#article .tt_txt_g {
  font-size: var(--font-size) !important;
  color: var(--point1-color) !important;
}

.tt_box_namecard .tt_btn_subscribe{
  margin-top: 10px !important;
  margin-bottom: 0px !important;
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-) !important;  
}

.tt_box_namecard .tt_btn_subscribe:hover{
  border: solid 1px var(--point2-color)!important;
  color: var(--point2-color) !important;
  transition: all 0.3s ease-in-out; 
}

#article .tt_box_namecard .tt_btn_subscribe:hover .tt_txt_g{
  color: var(--point2-color) !important;
}

  
/* comment */
#comment {
  display: none;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  padding: 10px 10px 5px 10px;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

#guestbook {
  padding: 10px 5px;
}

#guestbook .tt-box-total,
#guestbook .tt-comment-cont > form,
#guestbook .tt-list-reply > li {
  background: var(--article-color);
}

.tt-wrap-cmt .tt_desc, .tt-wrap-cmt .tt-link-user{
  font-family: 'Pretendard-Regular';
  font-size: var(--font-size) !important;
  color: var(--point1-color) !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt-box-total {
  order: 1;
  padding: 10px;
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
}

.tt-comment-cont > form {
  order: 2;
  padding: 10px;
  border-radius: var(--radius-);
  border: solid 1px var(--border-color) !important;
  margin-bottom: 5px !important; 
}

.tt-txt-mention{
  background: transparent !important;
}

.tt-item-reply > form {
  padding: 10px;
}

.tt_txt_g {
  font-size: 0 !important;
}

.tt-box-total .tt_txt_g::after {
  content:"\f4ad";
  font-family:"Font Awesome 5 Free";
  font-weight:700;
  color: var(--point1-color);
  font-size: 15px;
  margin:0 5px;
}

.tt-box-total {
  display: flex;
  justify-content: flex-end;
  padding: 10px !important;
  margin-bottom: 10px;
  border: solid 1px var(--border-color) !important; 
  border-radius: var(--radius-);
}

.tt-box-total .tt_num_g{
  color: var(--point1-color);
}

.tt-box-textarea .tt-inner-g {
  border: solid 1px var(--point2-color) !important;
  padding: 5px !important; 
  background: var(--article-color);
  border-radius: var(--radius-) !important;
}

.tt-item-reply {
  padding: 0 !important;
  border: none !important;
  margin: 5px 0;
}

.tt-list-reply > li {
  border-radius: var(--radius-);
  border: solid 1px var(--border-color) !important;
}

.tt-list-reply-comment .tt-wrap-cmt{
  border-radius: 0 0 var(--radius-) var(--radius-);
  border-top: none !important;
}

.tt-list-reply-comment .tt-item-reply{
  margin: 0 !important;
}

.tt-list-reply {
  display: flex;
  flex-direction: column-reverse;
}

.tt-item-reply .tt-list-reply-comment{
  border-top: solid 1px var(--border-color) !important;
}

.tt-wrap-cmt {
  padding: 10px;
}


.tt-item-reply .tt-list-reply-comment{
  margin: 0 !important;
}

.tt-box-thumb {
  margin-right: 10px !important;
}

.tt-list-reply{
  border-bottom: none !important;
}

.tt-btn_register:disabled{
  background: var(--point2-color)!important;
  border: solid 1px var(--point2-color)!important;
}

.tt-btn_register{
  background: var(--point1-color)!important;
  border: solid 1px var(--point1-color)!important;
}

.tt-btn_register:hover {
  background: var(--point2-color)!important;
  border: solid 1px var(--point2-color)!important;
  transition: all 0.3s ease-in-out; 
  color: var(--point1-color);
}

.tt-list-modify li {
  border-top: unset !important;
}

.tt-wrap-cmt .tt-list-modify{
  border: solid 1px var(--border-color) !important;
  border-radius: var(--radius-)!important;
  top: 20px !important;
  right: 5px !important;
}

.tt-wrap-cmt .tt-list-modify a {
  color: var(--point1-color) !important;
}

.tt-wrap-cmt .tt-list-modify a:hover{
  background: var(--point2-color)!important;
}

.tt-wrap-cmt .tt_date{
  padding-top: 5px !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea .tt-cmt[contenteditable='true']:empty::before{
  content: 'leave a comment' !important;
  color: var(--point2-color) !important;
}

.tt-box-textarea div {
  color: var(--point1-color) !important;
  font-family: 'Pretendard-Regular';
  font-size: var(--font-size) !important;
}

.tt-wrap-cmt .tt-link-user:hover{
 color: var(--point1-color);
 transition: all 0.3s ease-in-out; 
}

.tt-comment-cont > .tt-area-reply > .tt-list-reply > li.tt-item-reply:has(p.tt_cmt_info) {
  order: 1;
}

.tt-item-reply .tt_cmt_info .tt_txt_g{
  font-size: var(--font-size) !important;
}

.tt-item-reply .tt_cmt_info{
  margin: 10px 10px 0 10px !important;
  font-family: inherit !important;
}

.tt-item-reply .tt_cmt_info .tt_txt_g{
  color: var(--point1-color)!important;
  font-weight: bold;
}

.tt-wrap-cmt .tt-wrap-link-comment{
  padding-top: 5px;
  padding-left: 5px !important;
}

.tt-link-comment .tt_txt_g{
  font-size: var(--font-size) !important;
  padding-top: 0 !important;
}

.tt-link-comment .tt_num_g, .tt-link-comment .tt_txt_g{
  color: var(--point1-color) !important;
  font-weight: bold;
}

.tt-area-write .tt-box-account input {
  border: none !important;
  color: var(--point2-color) !important;
}

.tt-area-write .tt-box-account input::placeholder{
  color: var(--point2-color) !important;
}

.tt-area-write .tt-box-account input {
  background: var(--point1-color) !important;
  border-radius: var(--radius-) !important;
}

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, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
  border: solid 1px var(--border-color); 
  font-size: var(--font-size) !important;
  padding: 5px;
  line-height: 25px !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless  {
  color: var(--point1-color);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless:hover {
  border: solid 1px var(--point2-color); 
  color:  var(--point2-color);
} 

div[data-ke-type='moreLess'].open .moreless-content{
  margin:0; 
  padding:5px; 
  overflow: hidden;
  border-radius: 0 5px 5px 5px;
  border: solid 1px var(--border-color); 
}
 
 
/* notice */
#notice {
  padding: 5px;
  color: var(--text-color);
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
  margin: 5px 0;
}

#notice:first-child{
  margin-top: 0;
}

#notice .container_postbtn{
  margin-top: 10px;
  display: none !important;
}

#notice .article-info {
  margin-bottom: 0;
  padding: 10px;
}

#notice .article-desc{
  padding: 10px;
}


/* protected */
#protected .article-inner {
  padding: 10px;
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

#protected .article-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
  min-height: 500px;
}

.protected-desc {
  color: var(--point1-color);
  font-weight: bold;
}

.protected-password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px var(--border-color);
}

.protected-password input[type="password"] {
  height: 30px; 
  border: none; 
  font-family: 'Pretendard-Regular'; 
  background: none; 
  border-radius: var(--radius-); 
  padding: 3px; 
  width: calc(100% - 30px);
  color: var(--point1-color);
}

.protected-password input[type="password"]::placeholder{
  color: var(--point2-color);
}

.protected-password input[type="button"] {
  height: 30px; 
  border:none; 
  width: auto;
  font-family: 'Pretendard-Regular';
  background: none; 
  border-radius: var(--radius-); 
  padding: 3px; 
  font-weight: bold;
  color: var(--point1-color);
}
 
.protected-password input[type="button"]:hover {
  color: var(--point2-color);
  transition: all 0.3s ease;
}


/* tag */
#tag {
  border: solid 1px var(--border-color);
  background: var(--article-color);
  border-radius: var(--radius-);
  box-shadow: var(--box-color);
}

#tag .article-title {
  padding: 10px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#tag .article-title svg{
  margin-left: 5px;
}

.tag-wrap a:before{
  content: "#"; 
  font-weight:bold; 
  margin-right: 1px;
} 

.tag-wrap{  
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tag-wrap a{  
  padding: 5px;
}

/* postbtn 구독버튼 */
.postbtn a {
  position: relative;
  font-size: 13px;
  margin-left: 3px;
}

.postbtn a:after{
  content:"\f013"; 
  position: absolute;
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  left: 0;
  background: #fff;
  z-index: 9;
}

.btn_menu_toolbar.btn_subscription {
  border-radius: 20px;
  color: var(--point1-color);
  margin-left: 3px;
  font-size: 13px;
}
 
.btn_menu_toolbar.btn_subscription::before {
  float: left;
  color: var(--point1-color);
}

.btn_menu_toolbar.btn_subscription:hover {
  color: var(--point2-color);
  transition: all 0.3s ease-in-out; 
} 

#article .txt_state {
  font-size: 0;
  display: none;
  width: 0;
  height: 0;
  font-style: inherit;
  margin: 0;
  font-weight: bold;
  text-align: center;
} 


/* top-btn */
#top {
  display: flex;
  position: fixed;  
  z-index: 99;
  bottom: 35px; 
  right: 35px; 
  flex-direction: row; 
  justify-content: center; 
}

.top{ 
  border-radius: var(--radius-); 
  margin-right: 10px;
}

.top a {
  display: flex; 
  color: #fff; 
  text-align: center; 
  border-radius: 50%;
  align-items: center; 
  justify-content: center; 
  width: 30px; 
  height: 30px;
  background: var(--point1-color);
}

.top a:hover {
  background:var(--point2-color); 
  color:var(--point1-color); 
  transition: all 0.3s ease; 
  cursor: pointer;
}


/* 반응형 */ 
@media (max-width:800px){
  #darkmode {
    position: relative;
    width: 100%;
    right: unset;
    top: unset;
    padding: 10px;
  }
  button.theme-toggle {
    width: 100%;
    justify-content: flex-end;
  }
  #top {
    bottom: 5px;
    right: 5px;
  }
  #whole {
    width: 100%;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  } 
  #sidebar1 {
    width: 100%;
    height: auto;
  }
  #sidebar2 {
     width: 100%;
     padding: 30px 0;
  }
  .menu {
    width: calc(100% - 20px);
  }
  .menu-1 {
    width: 100%;
  }
  .menu-2 {
    display: none;
  }
  .side-category, .side-notice {
    width: calc(100% - 20px);
    height: auto;
  }
  .side-category{
    order: 2;
    margin: 0 10px 10px 10px;
  } 
  .side-notice {
    order: 1;
  }
  #chara0, #chara1, #chara2, #chara3, #chara4, #chara6
  #chara4 .col2 {
    height: auto;
    overflow: auto;
  }
  .chara0-item {
    display: flex;
    flex-direction: column;
  } 
  .bubble-inner1 {
    right: -35%;
  }
  .side-slide {
    height: 500px;
  }
  .slide-box li {
    width: calc(100% - 20px);
  }
  #chara2 .chara2-info:last-child,
  #chara5 .chara2-info:last-child {
    margin-bottom: 10px;
  }
  #chara2 .chara2-img {
    height: auto;
  }
  #container {
    width: 100%;
    height: auto;
    padding: 5px;
    border: solid 1px var(--border-color);
  }
  .wrap {
    width: 100%;
    margin: 0 auto;
  }
  .swiper.mySwiper {
    max-height: 320px;
  }
  #chara4 .qna .box.text:last-child {
    margin-bottom: 0;
  }
  .list-summary .cover-wrap, #list-summary .list-wrap{
    width: calc((100% - 10px) / 2);
  }
  .list-summary .cover-wrap:nth-child(3n), #list-summary .list-wrap:nth-child(3n)
  {
    margin-right: 10px;
  }
  .list-summary .cover-wrap:nth-child(2n), #list-summary .list-wrap:nth-child(2n)
  {
    margin-right: 0;
  }
  .list-summary .cover-wrap .thumbnail img, #list-summary .list-wrap .thumbnail img {
    height: 100%;
    object-fit: cover;
  }
} 


/* scrollbar & drag */
::-webkit-scrollbar {
  width: 15px;
  height: 15px;
  background-color: transparent;
  display: none;
}

::-webkit-scrollbar-track {
  border-width: 7px;
  border-style: solid;
  border-color: var(--body-color);
}

::-webkit-scrollbar-thumb {
  min-height: 48px;
  min-width: 48px;
  border-width: 7px;
  border-style: solid;
  border-color: var(--body-color);
  background: var(--point1-color);
}

::-webkit-scrollbar-thumb:hover {
  border-width: 6px;
  border-color: var(--body-color);;
  background: var(--point2-color);
}

::-webkit-scrollbar-corner {
  border-color: var(--body-color);
}

::selection{
  color:var(--dragtext-color); 
  background:var(--drag-color);
}

/* copyright 삭제는 옵션 구매 후 해주세요! */
#copyright a{ 
  position: fixed;
  left: 10px; 
  bottom: 10px; 
  display: flex;
  flex-direction: row; 
  align-items: center;
  color: var(--point1-color);
  line-height: 1;
}

 .copyright-1{ 
  display: flex;
  align-items: center;
  position: relative; 
  font-size: 11.5px; 
  font-weight: bold; 
  width: auto; z-index: 999;
}

.copyright-2{
  opacity:0; 
  margin-left: 3px; 
  transition: all 1s;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

 .copyright-1:hover + .copyright-2{
  opacity:1; 
  color: var(--point1-color);
  transition: all 0.3s ease;
}
 

/*youtube*/
.youtube{
  position:relative; 
  width:100%; 
  padding-bottom:56.25%;
}

.youtube iframe{
  position:absolute; 
  width:100%; 
  height:100%;}

.video-container {
  position: relative; 
  width:100%; 
  padding-bottom: 56.25%;
  padding-top: 0; 
  height: 0; 
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
 position: absolute; 
 top: 0; 
 left: 0; 
 width: 100%; 
 height: 100%;
}

/*skin*/

/*마우스커서*/
*{cursor: url(images/mmm.cur), auto; !inportant;}