/*
webmini life Ver 1.6.2 CSS
https://webmini.tistory.com
email: webmini@webmini.net
*/

@charset "utf-8";

@import url('./images/fonts.css');
@import url('./images/codeblock.css');
@import url('./images/fontawesome.css');

/* animation keyframes */

/* logo ani */
@keyframes rotate-right {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes width-center {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes height-up {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes height-down {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes height-center {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes jelly {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes nod {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0);
  }
}

/* layer alert */
@keyframes bounce-in {
  0% {
    left: -300px;
  }

  40% {
    left: 60px;
  }

  80% {
    left: 0;
  }

  100% {
    left: 20px;
  }
}

@keyframes slide-out {
  0% {
    left: 20px;
  }

  40% {
    left: 0;
  }

  80% {
    left: 60px;
  }

  100% {
    left: -300px;
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes width-left {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes fade-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes alarm-effect {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  25% {
    opacity: 0.1;
    transform: scale(0.1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.5);
  }

  75% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes alarm-effect {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  25% {
    opacity: 0.1;
    transform: scale(0.1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.5);
  }

  75% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes alarm-effect {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  25% {
    opacity: 0.1;
    transform: scale(0.1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.5);
  }

  75% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes show-before {
  from {
    opacity: 1;
    transform: translateY(-10px);
  }

  to {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes show-after {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-45px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes move-up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes slide-down-sky {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bell-ring {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes skeleton {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* value default */
:root {
  --gnb-bg: #39549a;
  --gnb-first: #222;
  --gnb-last: #c04747;
  --gnb-hover: #23448c;
  --gnb-font: #fff;
  --gnb-hover-font: #fff;
  --gnb-first-font: #fff;
  --gnb-last-font: #fff;
  --bg-content: #fff;
  --background-point: #39549a;
  --background: #f2f4f7;
  --background-2: #2e2e36;
  --background-3: #000;
  --background-4: #666;
  --default-text: #222;
  --default-link: #c04747;
  --post-text: #393939;
  --top-bar-background: rgb(255 255 255 / 90%);
  --border-color: #eee;
  --border-color-2: #e5e5e5;
  --border-color-3: #999;
  --border-color-4: #000;
  --border-color-5: #aaa;
  --head-text-color-1: #000;
  --head-text-color-2: #222;
  --head-text-color-3: #393939;
  --text-color-1: #000;
  --text-color-2: #666;
  --text-color-3: #757575;
  --text-color-4: #999;
  --text-side-color-1: #202533;
  --text-side-color-2: #373f57;
  --text-side-color-3: #646a7d;
  --text-color-blue: #39549a;
  --shadow-1: rgb(0 0 0 / 10%);
  --scroll-thumb: #ddd;
  --scroll-thumb-hover: #999;
  --headline-color: #c04747;
  --box-style-1: #f4f6fa;
  --box-style-2: #eef6ff;
  --box-style-3: #fffacd;
  --footer-bottom-text: #000;
}

/* value dark */
:root[data-theme='dark'] {
  --gnb-bg: #344265;
  --gnb-first: #222;
  --gnb-last: #a13a31;
  --gnb-hover: #2f3b5a;
  --gnb-hover-font: #fff;
  --gnb-font: #fff;
  --gnb-first-font: #fff;
  --gnb-last-font: #fff;
  --bg-content: #2c2c34;
  --background-point: #344265;
  --background: #31343c;
  --background-2: #2e2e36;
  --background-3: #000;
  --background-4: #666;
  --default-text: #ddd;
  --default-link: #7b9ecb;
  --post-text: #ddd;
  --top-bar-background: #383c45;
  --border-color: #404040;
  --border-color-2: #454545;
  --border-color-3: #999;
  --border-color-4: #000;
  --border-color-5: #555;
  --head-text-color-1: #fff;
  --head-text-color-2: #eee;
  --head-text-color-3: #9c9c9c;
  --text-color-1: #fff;
  --text-color-2: #ccc;
  --text-color-3: #9c9c9c;
  --text-color-4: #666;
  --text-side-color-1: #ccc;
  --text-side-color-2: #9e9e9e;
  --text-side-color-3: #9c9c9c;
  --text-color-blue: #7b9ecb;
  --shadow-1: rgb(0 0 0 / 10%);
  --scroll-thumb: #111;
  --scroll-thumb-hover: #000;
  --headline-color: #eee;
  --box-style-1: #373d48;
  --box-style-2: #31313b;
  --box-style-3: #3f3f34;
  --footer-bottom-text: #eee;
}

/* Reset */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  height: inherit;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont,
    'Apple SD Gothic Neo', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--default-text);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

body:not(.loaded) {
  overflow: hidden;
}

body:not(.loaded) #wrap {
  overflow: hidden;
  visibility: hidden;
}

body.loaded #wrap {
  position: relative;
  visibility: visible;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  visibility: visible;
  z-index: 9999;
}

#loading .load {
  width: 200px;
  height: 200px;
  max-width: 800px;
}

body.loaded #loading {
  visibility: hidden;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
input,
textarea,
blockquote,
th,
td,
p,
figure,
em,
a,
button {
  margin: 0;
  padding: 0;
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont,
    'Apple SD Gothic Neo', sans-serif !important;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
  display: block;
}

button,
input[type='submit'],
input[type='reset'],
input[type='button'] {
  cursor: pointer;
  overflow: visible;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='submit'],
textarea {
  appearance: none;
}

input,
select,
textarea,
button {
  border-radius: 0;
  font-size: 100%;
}

label,
input,
button,
select {
  line-height: inherit;
  vertical-align: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: visible;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
fieldset {
  border: none;
  vertical-align: top;
}

hr {
  display: none;
}

u {
  text-underline-offset: 4px;
}

/* common */
i.ico-new img {
  width: 12px;
  vertical-align: middle;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* point color */
.bg-point-color-1 {
  background-color: #333;
}

.bg-point-color-2 {
  background-color: #39549a;
}

.bg-point-color-3 {
  background-color: var(--default-link);
}

.font-point-color-1 {
  background-color: #333;
}

.font-point-color-2 {
  background-color: #39549a;
}

.font-point-color-3 {
  background-color: var(--default-link);
}

/* Components */
.tt_box_namecard {
  min-height: auto !important;
  padding-bottom: 40px;
  border-radius: 10px;
}

.tt_box_namecard .tt_cont {
  padding-right: 20px !important;
}

.tt_box_namecard .tt_desc {
  line-height: 1.4;
  color: var(--text-color-2) !important;
}

.tt-wrap-cmt .tt_desc {
  color: var(--text-color-2) !important;
}

figure[data-ke-type='opengraph'] div.og-text p.og-host,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host,
figure[data-ke-type='opengraph'] div.og-text p.og-desc,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
  color: var(--text-color-2) !important;
}

.tt-wrap-cmt .tt_date,
.tt-link-comment .tt_txt_g {
  color: var(--text-color-2) !important;
}

.tt-box-total .tt_txt_g,
.tt-box-total .tt_num_g {
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont,
    'Apple SD Gothic Neo', sans-serif !important;
}

b,
strong {
  font-weight: 700;
}

.btn,
a.btn {
  display: inline-block;
  width: 100px;
  height: 36px;
  padding: 0;
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  color: #fff;
  background-color: #c4c4c4;
  vertical-align: middle;
}

.btn:hover {
  background-color: #676767;
}

/* Text Ellipsis */
.ellipsis {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

/* Outline */
a,
a:focus,
button,
input,
input[type='radio']:focus,
input[type='checkbox']:focus,
input[type='file']:focus,
textarea {
  outline: 0;
}

a,
a:link {
  text-decoration: none;
  color: var(--default-text);
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--default-text);
  text-underline-offset: 4px;
}

a:active {
  text-decoration: none;
}

blockquote {
  border: 0;
}

pre > code {
  padding: 15px 20px !important;
  font-size: 1.6rem;
  line-height: 1.5;
  tab-size: 4; /* 원하는 들여쓰기 크기 (예:4칸) */
}

pre {
  margin: 15px 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px;
}

.hljs {
  color: var(--default-text);
  transition: font-size 0.5s ease-in-out;
}

.expanded .hljs {
  font-size: 1rem;
}

.hljs .code-body {
  margin-top: 22px;
}

.hljs .line {
  line-height: 1.6;
}

.hidden-lg {
  display: none;
}

.position-relative {
  position: relative;
}

.content {
  width: 80%;
  margin: 50px auto 0;
  padding: 100px 0;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 100% \9;
  height: auto;
  max-width: 100%;
}

/* button */
.btn_buy {
  position: relative;
  display: inline-block;
  height: 50px;
  padding: 0 30px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 50px;
  color: #fff !important;
  background-color: #c04747;
  box-shadow: 0 0 5px rgb(0 0 0 / 30%);
  transition: color 0.3s, background-color 0.3s;
  overflow: hidden;
  z-index: 1;
  vertical-align: middle;
}

.btn_buy::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(255 255 255 / 20%) 50%,
    rgb(255 255 255 / 0%) 80%
  );
  animation: skeleton 1.5s infinite;
  content: '';
  transform: rotate(-45deg);
}

.btn_buy::before {
  margin-right: 5px;
  font-family: 'Font Awesome\ 6 Free';
  font-size: 1.4rem;
  font-weight: 900;
  content: '\f019';
}

.btn_buy:hover {
  text-decoration: none;
  background-color: #943737;
}

/* editor box style */
.entry-content .box-style1 {
  padding: 20px !important;
  border-radius: 10px;
  line-height: 1.6;
  background: var(--box-style-1);
  text-indent: 0 !important;
}

.entry-content .box-style2 {
  padding: 20px !important;
  border-radius: 10px;
  line-height: 1.6;
  background: var(--box-style-2);
  text-indent: 0 !important;
}

.entry-content .box-style3 {
  padding: 20px !important;
  border-radius: 10px;
  line-height: 1.6;
  background: var(--box-style-3);
  text-indent: 0 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: transparent !important;
  box-shadow: 0 0 0 0 inset transparent;
  transition: background-color 1000s ease-in-out 0s;
}

/* header */
.alarm-marker {
  position: relative;
}

.alarm-marker .alarm-effect {
  position: absolute;
  top: -13px;
  right: -14px;
  width: 26px;
  height: 26px;
  border: 5px solid #c04747;
  border-radius: 70px !important;
  animation: alarm-effect 1s infinite;
  z-index: 10;
}

.alarm-marker .alarm-point {
  position: absolute;
  top: -3px;
  right: -4px;
  width: 6px;
  height: 6px;
  border-radius: 30px !important;
  background-color: #c04747;
}

#wrap {
  min-width: 360px;
}

/* Accessibility Navigation */
#acc-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1000;
}

#acc-nav a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 1px;
  margin-bottom: -1px;
  margin-left: -1px;
  font-weight: bold;
  text-align: center;
  color: var(--default-text);
  overflow: hidden;
  white-space: nowrap;
}

#acc-nav a:focus,
#acc-nav a:hover,
#acc-nav a:active {
  width: 100%;
  height: auto;
  padding: 10px 0;
  color: #fff;
  background-color: var(--default-text);
  z-index: 1000;
}

.container {
  margin: 0 auto;
  padding: 0;
}

.header-topbar {
  position: relative;
  top: 0;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  text-align: center;
  background-color: var(--top-bar-background);
  z-index: 33;
}

.header-topbar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.header-topbar ul {
  display: flex;
  align-items: center;
  margin: 0;
}

.header-topbar ul li.subscribe {
  position: relative;
  padding-left: 27px !important;
  font-size: 1.3rem;
  color: #c04747;
}

.header-topbar ul li.subscribe em {
  color: var(--default-text);
  font-style: normal;
}

.header-topbar ul li.subscribe .alarm-marker {
  position: absolute;
  top: 19px;
  left: 12px;
}

.header-topbar ul li.subscribe i.fa-check {
  display: none;
}

.header-topbar ul li.subscribe .following .alarm-marker {
  display: none;
}

.header-topbar ul li.subscribe .following i.fa-check {
  display: inline-block;
}

.header-topbar .topbar-left .left-menu {
  position: relative;
  display: flex;
  clear: both;
  margin-left: 0;
}

.header-topbar .topbar-left .left-menu > li {
  position: relative;
  line-height: 38px;
}

.header-topbar .topbar-left .left-menu > li.bookmark {
  background-color: var(--background);
}

.header-topbar .topbar-left .left-menu > li a,
.header-topbar .topbar-left .left-menu > li button {
  display: block;
  height: 40px;
  padding: 0 15px;
  font-size: 1.3rem;
  line-height: 38px;
  color: var(--default-text);
}

.header-topbar .topbar-left .left-menu > li > a:hover,
.header-topbar .topbar-left .left-menu > li > button:hover {
  text-decoration: none;
}

.header-topbar .topbar-left .left-menu > li i {
  color: #b5b5b5;
}

.header-topbar .topbar-left .left-menu > li > a:hover i,
.header-topbar .topbar-left .left-menu > li > button:hover i {
  color: var(--default-text);
}

.header-topbar .topbar-left .left-menu > li > a.active {
  font-weight: bold;
  color: var(--default-link);
  background-color: var(--background);
}

.header-topbar .topbar-left .left-menu > li.dark {
  height: 40px;
  padding: 0 10px;
  font-size: 1.3rem;
  line-height: 38px;
}

.header-topbar .topbar-left .left-menu > li.dark .dark-btn {
  position: relative;
}

.header-topbar .topbar-left .left-menu > li.dark .dark-btn input {
  display: none;
}

.header-topbar .topbar-left .left-menu > li.dark .dark-check {
  position: relative;
  top: 7px;
  display: inline-block;
  width: 50px;
  height: 26px;
  border-radius: 84px;
  background: #dfe2e3;
  cursor: pointer;
}

.header-topbar .topbar-left .left-menu > li.dark .dark-check::before {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 16px;
  height: 16px;
  font-size: 1.3rem;
  color: var(--text-color-2);
  background: url('./images/ico_sun.png') no-repeat 0 0;
  background-size: 100%;
  opacity: 0;
  z-index: 3;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: show-after;
  content: '';
}

.header-topbar .topbar-left .left-menu > li.dark .dark-check::after {
  position: absolute;
  top: 5px;
  right: 6px;
  display: none;
  width: 16px;
  height: 16px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--default-text);
  background: url('./images/ico_moon.png') no-repeat 0 0;
  background-size: 100%;
  opacity: 0;
  z-index: 3;
  content: '';
}

.header-topbar .topbar-left .left-menu > li.dark .dark-check .toggle-handler {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid #aaa;
  border-radius: 50%;
  background: #fff;
  background-size: 0;
  box-shadow: none;
  transition: transform 0.3s ease-in-out, background 0.3s, border-color 0.3s;
  z-index: 2;
  transform: translate3d(-11px, 0, 0) rotate(0);
}

#dark-check:checked + .dark-check .toggle-handler {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-color-3);
  border-radius: 50%;
  background: #aaa;
  background-image: radial-gradient(circle at 60% 10%, #ccc 15%, transparent 0),
    radial-gradient(circle at 30% 50%, #ccc 10%, transparent 0),
    radial-gradient(circle at 60% 70%, #ccc 13%, transparent 0);
  transition: transform 0.3s ease-in-out, background 0.3s, border-color 0.3s;
  transform: translate3d(11px, 0, 0) rotate(0);
}

#dark-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 150px;
  margin-top: -20px;
  margin-left: -75px;
  padding: 20px 0;
  border-radius: 15px;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  background-color: rgb(0 0 0 / 60%);
  box-shadow: 0 0 5px #444;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: fade 2s linear forwards;
  z-index: 99;
  transform: translateY(-50%);
}

[data-theme='light'] #dark-tooltip::before {
  content: '라이트 모드';
}

[data-theme='dark'] #dark-tooltip::before {
  content: '다크 모드';
}

#dark-check:checked + .dark-check::before {
  display: none;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: show-before;
}

#dark-check:checked + .dark-check::after {
  display: inline-block;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: show-after;
}

.header-topbar .topbar-right .mobile-nav-trigger {
  display: none;
}

.header-topbar .topbar-right > .member-menu > li {
  display: inline-block;
  padding: 0 5px;
  line-height: 38px;
  vertical-align: middle;
}

.header-topbar .topbar-right > .member-menu > li .btn_subscription {
  display: flex;
  align-items: center;
}

.header-topbar .topbar-right > .member-menu > li > a {
  font-size: 1.3rem;
  color: var(--default-text);
}

.header-topbar .topbar-right > .member-menu > li > a:hover {
  text-decoration: none;
}

.header-topbar .topbar-right > .member-menu > li > a i {
  color: #b5b5b5;
}

.header-topbar .topbar-right > .member-menu > li > a:hover i {
  color: var(--default-text);
}

/* Layout Selector */
#header {
  position: relative;
}

#header .inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

#header h1 {
  display: flex;
  align-items: center;
  height: 100px;
  box-sizing: border-box;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--default-text);
}

#header h1 a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 5px 0 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text-color-1);
}

#header h1 img {
  width: auto;
  height: 32px;
  max-height: 100px;
}

#header h1 .sub-tit {
  position: relative;
  display: inline-block;
  margin-top: 14px;
  margin-left: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--text-color-2);
}

#header h1 .sub-tit strong {
  font-weight: 600;
  color: var(--text-color-1);
}

#header .ad-head {
  position: absolute;
  top: 25px;
  right: 10px;
  width: 320px;
  height: 50px;
  overflow: hidden;
}

#header .ad-head.ad-480 {
  width: 480px;
  height: 60px;
}

#header .ad-head.ad-728 {
  top: 5px;
  width: 728px;
  height: 90px;
}

#header .util {
  display: none;
}

.header-topbar .admin {
  position: relative;
  padding-left: 0 !important;
}

.header-topbar .admin .btn-admin {
  position: relative;
  top: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  overflow: hidden;
}

.header-topbar .admin .btn-admin img {
  width: 100%;
  height: 100%;
}

.header-topbar .admin > .list {
  position: absolute;
  top: calc(100%);
  right: 0;
  display: none;
  width: 250px;
  padding: 10px 0 0;
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
  z-index: 2;
}

.header-topbar .admin > .list.open {
  display: block;
}

.header-topbar .admin > .list .list-info {
  padding: 20px 10px;
  text-align: center;
}

.header-topbar .admin > .list .login-menu {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
  text-align: center;
  gap: 10px;
}

.header-topbar .admin > .list .login-menu .manage {
  display: block;
  color: var(--default-link);
}

.header-topbar .admin > .list .login-menu .btn-post {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 80px;
  margin: 0 auto;
  padding: 10px 15px;
  border: 0;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #39549a;
  box-shadow: rgb(0 0 0 / 10%) 0 2px 4px 0;
  cursor: pointer;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-topbar .admin > .list .login-menu .btn-post:hover {
  text-decoration: none;
}

.header-topbar .admin > .list .login-menu .btn-post:hover::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(255 255 255 / 20%) 50%,
    rgb(255 255 255 / 0%) 80%
  );
  animation: skeleton 1.5s infinite;
  content: '';
  transform: rotate(-45deg);
}

.header-topbar .admin > .list ul {
  display: block;
}

.header-topbar .admin > .list ul li {
  display: flex;
  border-top: 1px solid var(--border-color);
  flex-direction: column;
  text-align: left;
}

.header-topbar .admin > .list ul li a {
  display: block;
  padding: 15px 20px;
}

.header-topbar .admin > .list ul li a:hover {
  text-decoration: none;
}

.header-topbar .admin > .list ul .manage {
  color: var(--default-link);
}

.header-topbar .admin > .list .blog-img {
  text-align: center;
}

.header-topbar .admin > .list .blog-img img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

.header-topbar .admin > .list .name {
  display: block;
  margin: 15px 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.header-topbar .admin > .list .desc {
  font-size: 1.3rem;
}

/* side search */
#aside .search-area {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  margin-bottom: 30px;
  padding: 3px 3px 3px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}

#aside .search-area::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--default-link);
  content: '';
  transition: all 0.3s ease;
}

#aside .search-area.on::before {
  width: 100%;
  transition: all 0.3s ease;
}

#aside .search-area .input {
  padding-left: 0;
}

#aside .search-area .button {
  right: 0;
  font-size: 1.6rem;
}

.search-area .input {
  width: 100%;
  height: 32px;
  padding: 0 35px 0 8px;
  border: 0;
  box-sizing: border-box;
  font-size: 1.5rem;
  color: var(--default-text);
  background: transparent;
  outline: 0;
}

.search-area .input:focus {
  border: 0 !important;
  outline: 0 !important;
}

.search-area .button {
  position: absolute;
  top: 4px;
  right: 4px;
  height: 28px;
  margin-top: 1px;
  padding: 0 10px;
  border: 0;
  font-size: 1.3rem;
  color: var(--default-text);
  background: none;
}

/* Header Nav */
.header-nav .navbar {
  height: 45px;
  border: none;
  border-radius: 5px;
  background-color: var(--gnb-bg);
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  white-space: nowrap;
}

.header-nav.header-sticky {
  position: relative;
  height: auto;
  z-index: 30;
}

.header-nav.header-fixed-trans {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-name: slide-down;
  animation-timing-function: ease-in-out;
}

.header-nav.header-fixed-trans .navbar {
  box-shadow: 0 5px 5px -5px #999;
}

#header .header-sticky-space.header-fixed-space-trans {
  clear: both;
  margin-bottom: 40px;
}

#gnb::-webkit-scrollbar {
  display: none;
}

#gnb {
  position: relative;
  height: 45px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  border-radius: 5px;
  overflow-x: auto;
  -ms-overflow-style: none;
}

#gnb ul {
  position: relative;
  display: flex;
  justify-content: left;
  transition: transform 0.3s ease;
  overflow: hidden;
}

#gnb ul li {
  position: relative;
}

#gnb ul li a {
  position: relative;
  display: block;
  height: 45px;
  padding: 0 20px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  color: var(--gnb-font);
  overflow: hidden;
  z-index: 1;
}

#gnb ul li a:hover,
#gnb ul li a:focus {
  text-decoration: none;
}

#gnb ul li.current a {
  color: var(--gnb-font);
  background-color: var(--gnb-hover);
}

#gnb ul li.first,
#gnb ul li.first a,
#gnb ul li.first.current a,
#gnb ul li.first a:hover,
#gnb ul li.first a:active {
  color: var(--gnb-first-font);
  background-color: var(--gnb-first);
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

#gnb ul li.last {
  margin-left: auto;
}

#gnb ul li.last,
#gnb ul li.last a,
#gnb ul li.last.current a,
#gnb ul li.last:hover,
#gnb ul li.last:focus,
#gnb ul li.last:active {
  color: var(--gnb-last-font);
  background-color: var(--default-link);
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

#gnb ul li a::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--gnb-hover);
  transition: left 0.3s ease;
  z-index: -1;
  content: '';
}

#gnb ul li a:hover::before,
#gnb ul li a:focus::before {
  left: 0;
}

#gnb ul li.first a::before,
#gnb ul li.first a:hover::before,
#gnb ul li.last a::before,
#gnb ul li.last a:hover::before {
  display: none;
}

#container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

#container .content-wrap {
  display: flex;
  margin: 0 auto;
  margin-top: 15px;
  box-sizing: border-box;
}

#content {
  position: relative;
  width: 770px;
  padding: 25px 25px 40px;
  border-radius: 20px;
  box-sizing: border-box;
  background-color: var(--bg-content);
  box-shadow: 0 0 10px var(--border-color);
  z-index: 2;
}

#content > .inner::after {
  display: block;
  height: 0;
  clear: both;
  content: '';
  visibility: hidden;
}

#aside {
  position: sticky;
  top: 45px;
  right: 0;
  width: 330px;
  padding: 10px 5px 0 25px;
  border-radius: 10px;
  box-sizing: border-box;
  background: transparent;
  align-self: flex-start;
}

#aside .close {
  display: none;
}

/* font size set */
.font-size-set {
  margin: 5px 0 20px;
}

.font-size-set .size-box {
  display: flex;
  align-items: center;
  gap: 3px;
}

.font-size-set .size-box button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  font-size: 1.1rem;
  line-height: 22px;
  text-align: center;
  color: #fff;
  background-color: var(--default-text);
}

.font-size-set .size-box button i,
.font-size-set .size-box button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.font-size-set .max-zoom {
  color: var(--default-link);
}

.font-size-set .min-zoom {
  color: var(--default-link);
}

.font-size-set #reset {
  background-color: var(--background-point);
}

.font-size-set #reset.animate:focus {
  transform: rotate(360deg);
  transition: all 0.8s ease;
  transition-delay: 0.5s;
}

.font-size-set #reset.no-animation {
  transform: rotate(0deg);
  transition: none;
}

.font-size-set #full {
  margin-left: 5px;
  border-radius: 0;
  font-size: 2rem;
  color: var(--default-text);
  background-color: transparent;
}

.font-size-set #txt-info {
  margin: 0 5px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* page */
#tt-body-index .main-slider-area {
  display: block;
  margin: -25px -25px 30px;
}

#tt-body-index #loading {
  display: none;
}

#tt-body-page.post-cover-hide #container {
  padding-top: 0;
}

#tt-body-tag .tags {
  margin-top: 0;
}

.main-slider-area {
  display: none;
}

.main-slider {
  position: relative;
  top: -1px;
  width: 100%;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  z-index: 20;
}

.main-slider ul {
  position: relative;
}

.main-slider ul li {
  display: table;
  width: 100%;
  height: 370px;
  background-position: 50% 50%;
  background-size: cover;
}

.main-slider ul li .inner {
  display: table-cell;
  vertical-align: middle;
}

.main-slider ul li .box {
  display: block;
  max-width: 720px;
  padding: 0 50px 5px;
}

.main-slider ul li .text,
.main-slider ul li .info {
  display: -webkit-box;
  max-width: 65%;
  line-height: 1.25;
  color: #000;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.main-slider ul li .text {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-line-clamp: 3;
  text-shadow: 0 0 3px rgb(255 255 255 / 20%);
}

.main-slider ul li .text b,
.main-slider ul li .text strong {
  font-weight: 700;
}

.main-slider ul li .text em {
  position: relative;
  font-weight: 700;
  z-index: 1;
  font-style: normal;
}

.main-slider ul li .text em::before {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 7px;
  background-color: #f54;
  transition: width 0.3s ease-out;
  z-index: -1;
  content: '';
}

.main-slider ul li:hover .text em::before {
  width: 100%;
  transition: width 0.3s ease-out;
}

.main-slider ul li .info {
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.8;
  -webkit-line-clamp: 2;
}

.main-slider ul li .btn-view {
  position: relative;
  right: 0;
  display: inline-block;
  height: 35px;
  min-width: 118px;
  max-width: 180px;
  margin-top: 32px;
  padding: 0 20px;
  border-radius: 35px;
  box-sizing: border-box;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
  color: #fff;
  background-color: #000;
  box-shadow: 0 0 5px rgb(0 0 0 / 5%);
  transition: background-color 0.5s, border-color 0.5s, opacity 0.3s,
    all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.main-slider ul li .btn-view:hover {
  right: -5px;
  text-decoration: none;
  background-color: #c04747 !important;
  transition: all 0.3s ease;
}

.main-slider .prev,
.main-slider .next {
  display: none;
}

.main-slider .paging {
  position: absolute;
  right: 50px;
  bottom: 23px;
  display: flex;
  z-index: 10;
}

.main-slider .paging button {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  color: #666;
}

.main-slider .paging button.current {
  color: #000;
}

.main-slider .paging button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 40%);
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
  z-index: -1;
  content: '';
  transform: translate(-50%, -50%);
}

.main-slider .paging button.current::before {
  background-color: rgb(255 255 255 / 100%);
}

.main-slider .control-btn {
  position: absolute;
  right: 20px;
  bottom: 26px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 2.2rem;
  color: #000;
  box-shadow: 0 0 3px rgb(0 0 0 / 30%);
  z-index: 10;
}

.main-slider .control-btn i,
.main-slider .control-btn svg {
  position: absolute;
  top: 0;
  left: 0;
}

[class*='cover-thumbnail-'] h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

[class*='cover-thumbnail-'] ul li .excerpt,
.cover-list ul li .excerpt,
.post-item .excerpt {
  position: relative;
  font-size: 1.5rem;
  color: var(--text-color-3);
}

[class*='cover-thumbnail-'] ul li .excerpt::after,
.cover-list ul li .excerpt::after,
.post-item .excerpt::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 24px;
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 0%),
    rgb(255 255 255 / 100%) 95%
  );
  content: '';
}

[class*='cover-thumbnail-'] figure img,
.related-articles figure img {
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

[class*='cover-thumbnail-'] ul li .meta,
[class*='cover-list-'] li .meta,
.post-item .meta {
  display: block;
  font-size: 1.3rem;
  color: var(--text-color-2);
}

[class*='cover-thumbnail-'] ul li .meta .comment,
[class*='cover-list-'] li .meta .comment,
.post-item .meta .comment,
.list-type-thumbnail .post-item .meta .comment {
  color: var(--default-link);
}

.meta i.reply {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 3px;
  background: url('./images/ico_reply.png') no-repeat 0 0;
  background-size: 100%;
  text-indent: -9999px;
  vertical-align: middle;
}

[class*='cover-thumbnail-'] ul li .meta span::before,
[class*='cover-list-'] li .meta span::before,
.post-item .meta span::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 7px 6px 9px 5px;
  background-color: #d2d2d2;
  content: '';
  vertical-align: middle;
}

[class*='cover-thumbnail-'] ul li .meta span:first-child::before,
[class*='cover-list-'] li .meta span:first-child::before,
.post-item .meta span:first-child::before {
  content: none;
}

[class*='cover-thumbnail-'] ul li .date,
[class*='cover-list-'] li .date,
.post-item .meta .date {
  font-size: 1.3rem;
  color: var(--text-color-2);
}

[class*='cover-list-'] {
  margin-bottom: 30px;
}

[class*='cover-list-'] h2 {
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 600;
}

.cover-list-subject > ul > li a {
  display: flex;
  line-height: 2;
}

.cover-list-subject > ul > li a:hover {
  text-decoration: none;
}

.cover-list-subject > ul > li a .meta {
  display: flex;
  margin-left: auto;
}

.cover-list-subject .title {
  display: block;
  width: 100%;
  max-width: 75%;
  font-size: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-list-subject a:hover .title {
  text-decoration: underline;
}

.cover-list-number h2 {
  margin-bottom: 5px;
}

.cover-list-number > ol {
  counter-reset: custom-counter;
  list-style: none;
}

.cover-list-number > ol li {
  position: relative;
  display: flex;
  align-items: center;
  height: 90px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  counter-increment: custom-counter;
  text-decoration: none;
}

.cover-list-number > ol li .list {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  max-width: calc(100% - 100px);
  padding: 0 10px 0 55px;
  line-height: 1.4;
  gap: 5px;
}

.cover-list-number > ol li .list::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 40px;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  color: var(--text-color-4);
  opacity: 0.5;
  content: counter(custom-counter) '';
}

.cover-list-number > ol li .list::after {
  position: absolute;
  top: 0;
  left: 40px;
  font-size: 2.2rem;
  font-weight: 300;
  content: '/';
  opacity: 0.2;
  rotate: 5deg;
}

.cover-list-number .title {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-list-number .category {
  display: block;
  font-size: 1.2rem;
  color: var(--text-color-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-list-number > ol li figure {
  width: 100px;
  height: auto;
  margin-left: auto;
}

.cover-list-number > ol li figure img {
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.cover-thumbnail-1 {
  position: relative;
  margin-bottom: 30px;
}

.cover-thumbnail-1 h2 {
  margin-bottom: 15px;
}

.cover-thumbnail-1 ul {
  display: inline-block;
  width: 103.3%;
  margin-bottom: -30px;
  margin-left: -3.378%;
  vertical-align: top;
}

.cover-thumbnail-1 ul li {
  width: 33.33%;
  margin: 0 0 30px;
  padding-left: 3.267%;
  box-sizing: border-box;
  float: left;
}

.cover-thumbnail-1 ul li a {
  display: block;
  text-decoration: none;
}

.cover-thumbnail-1 ul li a:hover .title,
.cover-thumbnail-1 ul li a:focus .title {
  text-decoration: underline;
}

.cover-thumbnail-1 ul li figure {
  display: block;
  height: 0;
  margin-bottom: 9px;
  padding-bottom: 130%;
  border-radius: 10px;
}

.cover-thumbnail-1 ul li figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.cover-thumbnail-1 ul li .title {
  display: block;
  width: 95%;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-thumbnail-1 .more {
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-color-2);
}

.cover-thumbnail-2 {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.cover-thumbnail-2 h2 {
  position: relative;
  padding-bottom: 15px;
}

.cover-thumbnail-2 ul li {
  margin-top: 20px;
}

.cover-thumbnail-2 ul li:first-child {
  margin-top: 0;
}

.cover-thumbnail-2 ul li a {
  position: relative;
  top: 0;
  display: block;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-decoration: none;
}

.cover-thumbnail-2 ul li a:hover .title,
.cover-thumbnail-2 ul li a:focus .title {
  text-decoration: none;
}

.cover-thumbnail-2 ul li figure {
  display: inline;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

.cover-thumbnail-2 ul li figure img {
  width: 100px;
  height: auto;
  float: right;
  margin-left: 30px;
  transform: translateY(0);
}

.cover-thumbnail-2 ul li .title {
  display: block;
  max-width: 95%;
  margin-bottom: 10px;
  padding-top: 7px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-thumbnail-2 ul li .excerpt {
  display: -webkit-box;
  max-width: 95%;
  margin-bottom: 10px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

.cover-thumbnail-2 .more {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 12px 0 11px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  text-align: center;
  color: var(--text-color-2);
  background: #fafafa;
}

.cover-thumbnail-3 {
  position: relative;
  margin-bottom: 40px;
}

.cover-thumbnail-3 h2 {
  margin-bottom: 15px;
}

.cover-thumbnail-3 ul {
  position: relative;
  display: inline-block;
  width: 103.3%;
  margin-left: -3.378%;
  vertical-align: top;
}

.cover-thumbnail-3 ul li {
  width: 20%;
  padding-left: 3.267%;
  box-sizing: border-box;
  float: left;
}

.cover-thumbnail-3 ul li a {
  display: block;
  text-decoration: none;
}

.cover-thumbnail-3 ul li a:hover .title,
.cover-thumbnail-3 ul li a:focus .title {
  text-decoration: underline;
}

.cover-thumbnail-3 ul li figure {
  display: block;
  width: 100%;
  height: 0;
  margin-bottom: 10px;
  padding-bottom: 129%;
  border-radius: 10px;
}

.cover-thumbnail-3 ul li figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-sizing: border-box;
}

.cover-thumbnail-3 ul li .title {
  display: block;
  width: 95%;
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-thumbnail-3 button {
  position: absolute;
  top: -1px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: url('./images/ico_package.png') no-repeat 0 -50px;
  outline: none;
  text-indent: -999em;
}

.cover-thumbnail-3 .prev {
  right: 30px;
}

.cover-thumbnail-3 .next {
  right: 0;
  background-position-x: -50px;
}

.cover-thumbnail-3 button:focus,
.cover-thumbnail-3 button:hover {
  background-color: #757575;
  background-position-y: -74px;
}

.cover-thumbnail-4 {
  position: relative;
  margin-bottom: 30px;
}

.cover-thumbnail-4 h2 {
  margin-bottom: 15px;
}

.cover-thumbnail-4 ul {
  position: relative;
  display: inline-block;
  width: 103.3%;
  margin-left: -3.378%;
  vertical-align: top;
}

.cover-thumbnail-4 ul li {
  width: 33.33%;
  margin: 0;
  padding-left: 3.267%;
  box-sizing: border-box;
  float: left;
}

.cover-thumbnail-4 ul li a {
  display: block;
  text-decoration: none;
}

.cover-thumbnail-4 ul li a:hover .title,
.cover-thumbnail-4 ul li a:focus .title {
  text-decoration: underline;
}

.cover-thumbnail-4 ul li figure {
  display: block;
  width: 100%;
  height: 0;
  margin-bottom: 5px;
  padding-bottom: 62%;
  border-radius: 10px;
  overflow: hidden;
}

.cover-thumbnail-4 ul li figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.cover-thumbnail-4 ul li .title {
  display: block;
  max-width: 95%;
  margin-bottom: 10px;
  padding-top: 9px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-thumbnail-4 ul li .excerpt {
  display: -webkit-box;
  max-width: 95%;
  margin-bottom: 10px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.cover-thumbnail-4 button {
  position: absolute;
  top: 2px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: url('./images/ico_package.png') no-repeat 0 -50px;
  outline: none;
  text-indent: -999em;
}

.cover-thumbnail-4 .prev {
  right: 30px;
}

.cover-thumbnail-4 .next {
  right: 0;
  background-position-x: -50px;
}

.cover-thumbnail-4 button:focus,
.cover-thumbnail-4 button:hover {
  background-color: #757575;
  background-position-y: -74px;
}

.cover-list {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cover-list h2 {
  margin-bottom: 28px;
  padding-bottom: 15px;
  font-size: 2.2rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.cover-list ul li {
  margin-bottom: 28px;
  overflow: hidden;
}

.cover-list ul li a {
  display: block;
  text-decoration: none;
}

.cover-list ul li a:hover .title,
.cover-list ul li a:focus .title {
  text-decoration: underline;
}

.cover-list ul li .title {
  display: block;
  max-width: 95%;
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-list ul li .excerpt {
  display: -webkit-box;
  max-width: 95%;
  margin-bottom: 10px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

.cover-list ul li .date {
  font-size: 1.3rem;
  color: var(--text-color-2);
}

.cover-list .more {
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-color-2);
}

.cover-event {
  margin-bottom: 10px;
}

.cover-event h2 {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: 600;
}

.cover-event ul {
  display: inline-block;
  width: 102.7%;
  margin-left: -2.702%;
  vertical-align: top;
}

.cover-event ul li {
  width: 50%;
  margin: 0 0 20px;
  padding-left: 2.631%;
  box-sizing: border-box;
  float: left;
}

.cover-event ul li a {
  position: relative;
  display: block;
  padding-bottom: 33.33%;
  border-radius: 10px;
  text-decoration: none;
  color: #555;
  background-color: #757575;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cover-event ul li a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgb(0 0 0 / 15%);
  content: '';
}

.cover-event ul li .title {
  position: absolute;
  top: 15%;
  left: 24px;
  display: -webkit-box;
  max-width: 60%;
  margin-bottom: 7px;
  padding-top: 9px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  text-shadow: 1px 0 4px #000;
}

.cover-event ul li .more {
  position: absolute;
  right: 24px;
  bottom: 10%;
  font-size: 1.4rem;
  text-decoration: underline;
  color: #fff;
  z-index: 10;
}

.cover-event ul li .meta {
  position: absolute;
  bottom: 20.83%;
  left: 24px;
  font-size: 1.3rem;
  color: #fff;
  z-index: 10;
}

.cover-event ul li .meta span::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 7px 8px 9px 5px;
  background-color: #eee;
  content: '';
  vertical-align: middle;
}

.cover-event ul li .meta span:first-child::before {
  content: none;
}

.post-cover {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  z-index: 20;
}

.post-cover .inner {
  position: relative;
  padding: 0 0 20px;
  box-sizing: border-box;
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
}

.post-cover .category {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color-blue);
}

.post-cover h2,
.post-header h2 {
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--default-text);
  overflow: hidden;
}

.post-cover a {
  text-decoration: none;
}

.post-cover .meta {
  display: block;
  margin: 5px auto 0;
  font-size: 1.3rem;
  color: var(--text-color-2);
}

.post-cover .meta a {
  color: var(--text-color-2);
}

.post-cover .meta a::before,
.post-cover .meta span::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 8px 0 4px;
  background-color: #d5d5d5;
  content: '';
  vertical-align: middle;
}

.post-cover .meta span:first-child::before {
  content: none;
}

.post-cover .meta .reply button {
  color: var(--text-color-2);
}

.post-cover .option-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-cover .option-box .font-zoom {
  display: inline-flex;
  align-items: center;
  height: 35px;
  margin-top: 10px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  box-sizing: border-box;
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-side-color-2);
  gap: 5px;
}

.post-cover .option-box .font-zoom button {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  font-size: 1rem;
  color: #444;
  background-color: #e4e7f1;
}

.post-cover .option-box .font-zoom button:hover {
  color: #000;
  background-color: #d5d7e0;
}

.post-cover .option-box .font-zoom .tt {
  display: inline-block;
  margin-right: 3px;
}

.post-header {
  padding-top: 4px;
}

#tt-body-page figure img,
figure {
  border-radius: 8px;
}

#tt-body-archive .post-header span::before {
  content: "'";
}

#tt-body-archive .post-header span::after {
  content: "'에 등록된 글";
}

#tt-body-tag .post-header span::before {
  content: '#';
}

#tt-body-search .post-header span::before {
  content: "'";
}

#tt-body-search .post-header span::after {
  content: "'의 검색결과";
}

.post-header h2 em {
  margin-left: 7px;
  font-size: 2rem;
  color: var(--default-link);
  font-style: normal;
}

.post-item {
  width: 31.08%;
  margin: 0 0 58px 3.378%;
  float: left;
}

.post-item:nth-child(3n + 1) {
  clear: both;
  margin-left: 0;
}

.post-item a {
  display: block;
  text-decoration: none;
}

.post-item a:hover .title,
.post-item a:focus .title {
  text-decoration: underline;
}

.post-item .thum {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  margin-bottom: 5px;
  padding-bottom: 60.86%;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.post-item .thum img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transform: translateY(-25%);
}

.post-item .title {
  display: block;
  max-width: 98%;
  margin-bottom: 4px;
  padding-top: 9px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-item .excerpt {
  display: -webkit-box;
  max-width: 95%;
  margin-bottom: 10px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

.post-item .meta {
  display: block;
  font-size: 1.3rem;
  color: var(--text-color-2);
}

.post-item .meta span::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 8px 0 5px;
  background-color: #d2d2d2;
  content: '';
  vertical-align: middle;
}

.post-item .meta span:first-child::before {
  content: none;
}

.post-item.protected .thum::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 47px;
  margin: -24px 0 0 -17px;
  background: url('./images/ico_package.png') no-repeat 0 -120px;
  background-size: 120px auto;
  content: '';
}

.not-found {
  display: block;
  width: 100%;
  margin-bottom: 35px;
}

.not-found li {
  position: relative;
  padding-left: 10px;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--text-color-2);
}

.not-found li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #999;
  content: '';
}

.not-found .tag,
.not-found .category,
.not-found .archive {
  display: none;
}

#tt-body-tag .not-found ul,
#tt-body-category .not-found ul,
#tt-body-archive .not-found ul {
  display: none;
}

#tt-body-tag .not-found .tag,
#tt-body-category .not-found .category,
#tt-body-archive .not-found .archive {
  display: block;
}

.pagination {
  width: 100%;
  text-align: center;
}

.pagination a,
.pagination span.blank {
  display: inline-block;
  padding: 0 12px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-color-2);
  vertical-align: top;
}

.pagination a .selected {
  font-weight: 600;
  color: var(--text-color-1);
}

.pagination .prev,
.pagination .next {
  width: 22px;
  height: 22px;
  padding: 0 !important;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-sizing: border-box;
  background: url('./images/ico_package.png') no-repeat 0 -50px;
  text-indent: -999em;
}

.pagination .next {
  background-position-x: -50px;
}

.pagination .view-more {
  display: block;
  margin: 0;
  padding: 12px 0 11px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1.6rem;
  text-align: center;
  color: var(--text-color-2);
  background: #eee;
}

.pagination .view-more:hover {
  text-decoration: none;
}

/* calendar */
.calendar {
  margin-bottom: 20px;
}

.calendar .tt-calendar caption {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.calendar .tt-calendar caption a:first-child,
.calendar .tt-calendar caption a:last-child {
  position: relative;
  top: -2px;
  padding: 0 5px;
  font-size: 3rem;
  color: var(--text-side-color-3);
}

.calendar .tt-calendar caption a {
  display: inline-block;
  padding: 5px;
  color: var(--text-side-color-1);
  vertical-align: middle;
}

.calendar .tt-calendar caption a:hover {
  text-decoration: none;
}

.calendar .tt-calendar th,
.calendar .tt-calendar td {
  padding: 5px 0;
  text-align: center;
}

.calendar .tt-calendar th {
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--text-side-color-1);
}

.calendar .tt-calendar td {
  font-size: 1.3rem;
  color: var(--text-side-color-3);
}

.calendar .tt-calendar .cal-week2,
.calendar .tt-calendar .cal-day-sunday {
  color: var(--default-link);
}

.calendar .tt-calendar td a {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  line-height: 22px;
  color: var(--text-color-blue);
}

.calendar .tt-calendar td a:hover {
  text-decoration: none;
}

.calendar .tt-calendar .cal-day4 {
  color: var(--text-color-1);
}

.calendar .tt-calendar .cal-day4 a {
  color: #fff;
  background: #39549a;
}

.tags {
  margin-bottom: 20px;
  font-size: 0;
}

.tags::after {
  display: block;
  height: 0;
  clear: both;
  content: '';
  visibility: hidden;
}

.tags h2 {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 600;
}

#content .tags a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  line-height: 30px;
  color: var(--text-color-2);
  vertical-align: middle;
}

#content .tags a::before {
  content: '#';
}

.article-page {
  margin-bottom: 30px;
}

.article-page h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}

.article-page ul {
  padding: 15px 0;
  border: 1px solid var(--border-color);
  border-width: 1px 0;
  list-style: none;
}

.article-page ul li {
  position: relative;
  margin-bottom: 7px;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.69;
  color: var(--text-color-4);
}

.article-page ul li:nth-child(2) {
  color: var(--text-color-1);
}

.article-page ul li:nth-child(2)::after {
  position: absolute;
  top: 3px;
  left: 45px;
  font-size: 0.9em;
  content: ':';
  opacity: 0.7;
}

.article-page ul li:last-child {
  margin-bottom: 0;
}

.article-page ul li span {
  padding-right: 23px;
}

.article-page ul li a {
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-page ul li a:hover {
  text-decoration: underline;
  color: var(--default-text);
}

.article-page ul li strong {
  font-weight: 400;
}

.page-nav {
  margin: 52px 0 60px;
  padding: 23px 0 20px;
  border-bottom: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}

.page-nav a {
  display: block;
  padding-left: 58px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-nav a:hover,
.page-nav a:focus {
  color: var(--default-text);
}

.page-nav a strong {
  width: 58px;
  margin-left: -58px;
  font-weight: 400;
  color: #999;
  float: left;
}

.page-nav a strong::after {
  display: inline-block;
  width: 1px;
  height: 5px;
  margin: 0 8px;
  background: url('./images/ico_package.png') no-repeat -150px -50px;
  content: '';
  vertical-align: middle;
}

.related-articles {
  margin-bottom: 30px;
}

.related-articles h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}

.related-articles ul {
  display: inline-block;
  width: 101.6%;
  margin-left: -1.621%;
  vertical-align: top;
}

.related-articles ul li {
  width: 25%;
  padding-left: 1.621%;
  box-sizing: border-box;
  float: left;
}

.related-articles ul li:first-child {
  margin-left: 0;
}

.related-articles ul li a {
  color: #555;
}

.related-articles ul li a:hover,
.related-articles ul li a:focus {
  color: var(--default-text);
}

.related-articles ul li figure {
  display: block;
  width: 100%;
  height: 0;
  margin-bottom: 9px;
  padding-bottom: 68.18%;
  background-color: rgb(0 0 0 / 10%);
}

.related-articles ul li figure img {
  width: 100%;
  height: auto;
}

.related-articles ul li .title {
  display: block;
  max-width: 95%;
  font-size: 1.4rem;
  line-height: 1.4;
  overflow: hidden;
}

/* Entry Content */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 25px 0;
  padding: 0;
  font-weight: 600 !important;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--default-text);
}

.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 18px 0;
}

.entry-content h1 {
  font-size: 3rem;
  color: var(--head-text-color-1);
}

.entry-content h2 {
  font-size: 2.4rem;
  color: var(--head-text-color-1);
}

.entry-content h3 {
  font-size: 2.2rem;
  color: var(--head-text-color-1);
}

.entry-content h4 {
  font-size: 2rem;
  color: var(--head-text-color-2);
}

.entry-content h5 {
  font-size: 1.8rem;
  color: var(--head-text-color-3);
}

.entry-content h6 {
  font-size: 1.6rem;
  color: var(--head-text-color-3);
}

.entry-content a {
  color: var(--default-link);
}

.entry-content {
  padding: 20px 0;
}

.entry-content,
.entry-content p {
  margin-bottom: 10px;
  font-size: 1.65rem;
  line-height: 1.7;
  color: var(--default-text);
  transition: font-size 0.3s ease-in-out;
  word-break: break-all;
  font-weight: 350;
}

.entry-content u {
  text-decoration-thickness: 2px;
  text-decoration-color: var(--headline-color, transparent);
  text-decoration-style: solid;
  text-decoration-skip: none;
  text-decoration-skip-ink: none;
}

.entry-content span code,
.entry-content p span code {
  margin: 0;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 1.6rem;
  color: var(--text-color-1);
  background-color: #e9ecef;
}

.entry-content p img {
  height: auto;
  max-width: 100%;
}

.entry-content figure {
  margin-top: 20px !important;
}

.entry-content hr {
  display: block;
  height: 0;
  border: 0;
  border-bottom: 1px solid var(--default-text);
}

.entry-content pre {
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
}

.entry-content ul {
  list-style: disc inside;
  margin-bottom: 22px;
}

.entry-content ul li {
  position: relative;
  list-style: inherit;
  padding-left: 10px;
  text-indent: -10px;
}

.entry-content ol {
  list-style: decimal inside;
  margin-bottom: 22px;
}

.entry-content ol li {
  position: relative;
  list-style: inherit;
  padding-left: 10px;
  text-indent: -10px;
}

.entry-content ol li ul {
  margin: 5px 0 30px;
}

.entry-content img.alignleft {
  margin: 0 22px 22px 0;
  float: left;
}

.entry-content img.aligncenter {
  display: block;
  margin: 0 auto 22px;
}

.entry-content img.alignright {
  margin: 0 0 22px 22px;
  float: right;
}

.entry-content blockquote p {
  font-size: 2rem;
}

.entry-content table {
  width: 100%;
  margin-bottom: 22px;
  border: 1px solid #e6e6e6;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
  color: var(--default-text);
  border-collapse: collapse;
}

.entry-content table caption {
  padding: 10px 0;
}

.entry-content table th {
  padding: 8px;
  font-size: 1.6rem;
  text-align: center;
  color: var(--text-color-1);
  background: #f4f4f4;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
}

.entry-content table td {
  padding: 8px;
  font-size: 1.5rem;
  color: var(--post-text);
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}

.entry-content input {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--text-color-2);
  vertical-align: middle;
}

.entry-content .entry-content .protected-form {
  margin-bottom: 40px;
  padding: 120px 0 200px;
  text-align: center;
  border-bottom: 1px solid #7a583a;
}

.entry-content .entry-content .protected-form input {
  width: 200px;
  margin-bottom: 10px;
  vertical-align: top;
}

.entry-content .cap1 {
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
}

.entry-content .iframe-wrap {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.entry-content .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry-content .protected-form {
  display: block;
  width: 100%;
  padding: 98px 0 120px;
  text-align: center;
}

.entry-content .protected-form h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  color: #555;
}

.entry-content .protected-form p {
  margin-bottom: 34px;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.75;
  color: #999;
}

.entry-content .protected-form input {
  width: 183px;
  padding: 0 23px;
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  line-height: 1.6;
}

.entry-content .protected-form input:focus {
  border-color: #484848;
}

.entry-content .protected-form .btn {
  margin-left: 5px;
}

.entry-footer {
  position: relative;
}

.entry-footer .heart-tooltip {
  position: absolute;
  top: -95px;
  left: 0;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 1.3rem;
  color: #fff;
  background: #c04747;
  box-shadow: 3px 3px 10px rgb(0 0 0 / 10%);
  animation: move-up-down 1s ease-in-out infinite alternate;
}

figure.fileblock,
#tt-body-page figure.fileblock {
  border-radius: 10px;
  background-color: #fafafa;
}

.entry-footer .heart-tooltip::after {
  position: absolute;
  bottom: -6px;
  left: 17px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #c04747;
  content: '';
}

/* file box */
figure.fileblock .name,
#tt-body-page figure.fileblock .name {
  color: var(--text-color-1);
}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
  color: var(--text-color-2);
}

/* more */
div[data-ke-type='moreLess'],
#tt-body-page div[data-ke-type='moreLess'] {
  position: relative;
  z-index: 2;
}

div[data-ke-type='moreLess']::before,
#tt-body-page div[data-ke-type='moreLess']::before {
  position: absolute;
  top: 18px;
  left: 0;
  display: block;
  width: 100%;
  border: 1px dashed var(--border-color);
  z-index: -1;
  content: '';
}

div[data-ke-type='moreLess'] .btn-toggle-moreless,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
  position: relative;
  display: inline-block;
  padding: 5px 20px 5px 15px;
  border-radius: 20px;
  font-size: 1.5rem;
  color: #fff;
  background-color: var(--background-3);
}

div[data-ke-type='moreLess'] .btn-toggle-moreless::before,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless::before {
  display: inline-block;
  margin-right: 5px;
  font-family: 'Font Awesome\ 6 Free';
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.1s linear;
  content: '\f139';
}

div[data-ke-type='moreLess'].open .btn-toggle-moreless::before,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless::before {
  transform: rotate(180deg);
}

div[data-ke-type='moreLess'].open .moreless-content,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--border-color-5);
  border-radius: 10px;
}

/* Comment */
.comments h3 {
  position: relative;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
}

.comments h3 .count {
  margin-left: 4px;
  color: #d33b64;
}

.comments h3 .reply-policy {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.4rem;
  font-weight: normal;
  color: #999;
}

.comment-list {
  border-top: 1px solid var(--border-color);
  margin-bottom: 60px;
}

.comment-list ul li {
  display: inline-block;
  width: 100%;
  padding: 32px 0 28px;
  box-sizing: border-box;
  vertical-align: top;
}

.comment-list .tt-more-preview-comments-wrap {
  padding: 0;
  border: 0;
}

.comment-list .tt-more-preview-comments-text {
  display: block;
  margin: -1px 0 0;
  padding: 12px 0 11px;
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  text-align: center;
  color: #999;
}

.comment-list .tt-more-preview-comments-text:hover {
  text-decoration: underline;
}

.comment-list ul li .author-meta {
  position: relative;
  margin-bottom: 7px;
  padding: 2px 0 0 60px;
  font-size: 1.4rem;
  color: #999;
}

.comment-list ul li .author-meta a {
  color: #999;
}

.comment-list ul li .author-meta a::before,
.comment-list ul li .author-meta span::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 7px 0 5px;
  background-color: #e3e3e3;
  content: '';
  vertical-align: middle;
}

.comment-list ul li .author-meta .nickname {
  font-weight: 700;
  color: #555;
}

.comment-list ul li .author-meta .nickname a {
  color: #555;
}

.comment-list ul li .author-meta .avatar {
  width: 46px;
  height: 46px;
  margin: -2px 0 0 -60px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  float: left;
}

.comment-list ul li .author-meta .control {
  position: absolute;
  top: 0;
  right: -9px;
  border-bottom: 0;
}

.comment-list ul li .author-meta .control button {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('./images/ico_package.png') no-repeat -141px 5px;
  content: '';
  text-indent: -999em;
}

.comment-list ul li .author-meta .control .link {
  position: absolute;
  top: 100%;
  left: -65px;
  display: none;
  width: 70px;
  text-align: center;
}

.comment-list.reply ul li .author-meta .control .link {
  display: block;
}

.comment-list ul li .author-meta .control .link a {
  display: block;
  margin-top: -1px;
  padding: 6px 0;
  border: 1px solid #e0e0e0;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  color: var(--default-text);
  background-color: #fff;
}

.comment-list ul li .author-meta .control .link a:focus,
.comment-list ul li .author-meta .control .link a:hover {
  color: var(--default-text);
  background-color: #fafafa;
}

.comment-list ul li .author-meta .nickname::before,
.comment-list ul li .author-meta .nickname a::before,
.comment-list ul li .author-meta .control::before,
.comment-list ul li .author-meta .control a::before {
  content: none;
}

.comment-list ul li p {
  max-width: 85%;
  padding: 0 0 0 60px;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-color-2);
  word-break: break-all;
}

.comment-list ul li .reply {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.4rem;
  color: #999;
}

.comment-list ul li ul {
  margin: 28px 0 -32px;
  padding: 26px 0 21px;
  background-color: #fafafa;
}

.comment-list ul li ul li {
  padding: 14px 0 15px 60px;
  border-bottom: 0;
}

.comment-list ul li ul li .author-meta {
  margin-bottom: 8px;
}

.comment-list ul li ul li .author-meta .control {
  right: 15px;
}

.comment-list ul li ul li p {
  max-width: 80%;
}

.comment-list ul li ul .tt-more-preview-comments-wrap {
  display: block;
}

.comment-list ul li ul .tt-more-preview-comments-text {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin-bottom: 16px;
}

.comment-list ul li ul .tt-more-preview-comments-text:first-child {
  margin-top: -24px;
  padding: 12px 0 11px;
}

.comment-form {
  position: relative;
  margin-bottom: 30px;
}

.comment-form .field {
  margin-bottom: -1px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.comment-form .field input[type='text'],
.comment-form .field input[type='password'] {
  width: 50%;
  padding: 12px 16px;
  border: 0;
  box-sizing: border-box;
  font-size: 1.4rem;
  color: var(--text-color-2);
  border-left: 1px solid var(--border-color);
  float: left;
}

.comment-form .field input:first-child {
  border-left: 0;
}

.comment-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 16px 100px 16px 16px;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  font-size: 1.4rem;
  color: var(--text-color-2);
  resize: none;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #999;
}

.comment-form .secret {
  position: absolute;
  bottom: 8px;
  left: 0;
}

.comment-form .secret input {
  display: none;
}

.comment-form .secret label {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-color-2);
  cursor: pointer;
  outline: none;
}

.comment-form .secret label::before {
  display: inline-block;
  width: 19px;
  height: 18px;
  margin-right: 12px;
  border: 1px solid #e1e1e1;
  background-color: #fff;
  content: '';
  vertical-align: top;
}

.comment-form .secret input[type='checkbox']:checked + label::before {
  background: url('./images/ico_package.png') no-repeat -47px 4px;
}

.comment-form .submit {
  text-align: right;
}

.comment-form .submit button {
  color: #fff;
  background-color: var(--default-text);
}

.comment-form .submit button:hover,
.comment-form .submit button:focus {
  background-color: #39549a;
}

.tt-wrap-cmt .tt-desc {
  line-height: 1.6 !important;
  color: var(--text-color-2) !important;
}

.tt-wrap-cmt .tt-link-user {
  margin-right: 5px;
}

/* Aside(sidebar) */
.sidebar h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-side-color-1);
}

.sidebar ul li {
  padding: 4px 0 5px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-side-color-2);
}

.sidebar ul li a {
  color: var(--text-side-color-2);
}

.sidebar ul li a:hover {
  color: var(--text-side-color-1);
}

.sidebar .ad-sky-fixed {
  position: absolute;
  top: 0;
}

.layout-aside-left .sidebar .ad-sky-fixed {
  left: -175px;
}

.layout-aside-right .sidebar .ad-sky-fixed {
  right: -175px;
}

.sidebar.aside-fixed .ad-sky-fixed {
  position: fixed;
  top: 45px;
  left: 50%;
}

.layout-aside-left .sidebar.aside-fixed .ad-sky-fixed {
  margin-left: -725px;
}

.layout-aside-right .sidebar.aside-fixed .ad-sky-fixed {
  margin-left: 565px;
}

.sidebar .ad-sky-fixed .subscribe button {
  position: relative;
  display: block;
  width: 160px;
  height: 40px;
  margin-top: 2px;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: var(--default-text);
  opacity: 0;
  overflow: hidden;
  z-index: 1;
}

.sidebar.aside-fixed .ad-sky-fixed .subscribe button {
  animation: slide-down-sky 0.3s ease forwards;
  animation-delay: 3s;
}

.sidebar .ad-sky-fixed .subscribe button em {
  font-style: normal;
}

.sidebar.aside-fixed .ad-sky-fixed .subscribe button i.fa {
  animation: bell-ring 0.3s;
  animation-delay: 5s;
  animation-iteration-count: 5;
  transform-origin: center center;
}

.sidebar.aside-fixed .ad-sky-fixed .subscribe button::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--default-link);
  transition: left 0.3s ease;
  z-index: -1;
  content: '';
}

.sidebar.aside-fixed .ad-sky-fixed .subscribe button:hover::before {
  left: 0;
}

.sidebar.aside-fixed .ad-sky-fixed .subscribe button:hover i.fa {
  animation: bell-ring 0.5s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

.sidebar .revenue-unit-wrap {
  margin: 0 !important;
}

.sidebar .sidebar-2 {
  padding: 20px 0 0;
  border-top: 1px solid var(--border-color);
}

.sidebar .category {
  margin-bottom: 10px;
  padding-top: 10px;
}

.sidebar .category ul li {
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.tt_category img {
  display: none;
}

.tt_category img.new {
  width: 12px;
  vertical-align: middle;
}

.sidebar .category ul li a {
  display: block;
}

.sidebar .category ul li .link_item {
  position: relative;
  height: 38px;
  padding: 0 38px 0 12px;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 8px;
  font-weight: 600;
  line-height: 38px;
  color: var(--text-side-color-2);
  background-color: #e4e7f1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar .category .toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  cursor: pointer;
  z-index: 2;
  border-left: 1px solid rgb(0 0 0 / 6%);
}

.sidebar .category_list > li .toggle::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 38px;
  height: 38px;
  font-family: 'Font Awesome\ 6 Free';
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 38px;
  text-align: center;
  color: var(--text-color-3);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.1s linear;
  z-index: 1;
  content: '\f105';
}

.sidebar .category_list li.selected a.link_item {
  font-weight: 700;
  color: var(--text-color-blue);
}

.sidebar .category_list li .link_item:hover {
  text-decoration: none;
}

.sidebar .category_list > li.selected .toggle::after {
  transform: rotate(90deg);
}

.sidebar .category_list > li.no_sub .toggle::after {
  display: none;
}

.sidebar .category ul li a.link_tit {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1b1f2b;
}

.sidebar .category ul li .c_cnt {
  font-size: 1.3rem;
  font-weight: normal;
  color: var(--text-side-color-3);
}

.sidebar .category ul li .link_item .c_cnt {
  color: var(--text-side-color-2);
}

.sidebar .category ul li ul {
  padding-top: 10px;
}

.sidebar .category ul li ul li {
  position: relative;
  padding: 0 0 5px;
  font-size: 1.3rem;
  font-weight: 400;
}

.sidebar .category ul li ul li ul.sub_category_list {
  display: none;
  padding-bottom: 10px;
}

.sidebar .category ul li ul li ul {
  padding-top: 10px;
  overflow: hidden;
}

.sidebar .category ul li ul li.selected ul.sub_category_list {
  display: block;
}

.sidebar .category ul li ul li ul li {
  position: relative;
  padding: 3px 0 3px 20px;
  font-size: 1.4rem;
}

.sidebar .category ul li ul li ul li.selected a {
  font-weight: 600;
}

.sidebar .category ul li ul li ul li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 7px;
  height: 1px;
  background-color: rgb(0 0 0 / 20%);
  content: '';
}

.sidebar .category ul li ul li ul li.selected::before {
  display: none;
}

.sidebar .category ul li ul li ul li.selected::after {
  position: absolute;
  top: 3px;
  left: 0;
  font-family: 'Font Awesome\ 6 Free';
  font-size: 1.4rem;
  font-weight: 900;
  color: rgb(0 0 0 / 50%);
  content: '\f061';
}

.sidebar .category ul li ul li ul li a {
  color: var(--text-side-color-2);
  background: none;
}

.sidebar .category ul li ul li ul li a:hover {
  text-decoration: underline;
}

.sidebar .notice {
  margin-bottom: 20px;
}

.sidebar .recent-comment {
  margin-bottom: 20px;
}

.sidebar .recent-comment ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar .recent-comment ul li a::before {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 7px 6px 9px 5px;
  background-color: #aaa;
  content: '';
  vertical-align: middle;
}

.sidebar .post-list {
  margin-bottom: 30px;
}

.sidebar .post-list h2 {
  margin-bottom: 12px;
}

.sidebar .post-list ul li {
  position: relative;
  margin-bottom: 18px;
  padding: 0;
  overflow: hidden;
}

.sidebar .post-list ul li img {
  width: 58px;
  height: 58px;
  margin: 2px 0 0 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  float: right;
}

.sidebar .post-list ul li a {
  display: block;
  min-height: 60px;
  padding-left: 35px;
  font-size: 1.3rem;
  text-decoration: none;
  overflow: hidden;
}

.sidebar .post-list #comment ul li {
  margin-bottom: 12px;
}

.sidebar .post-list #comment ul li a {
  min-height: auto;
}

.sidebar .post-list ul li a::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  height: 16px;
  min-width: 10px;
  padding: 0 3px;
  border-radius: 3px;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: #aaa;
  transform: translateZ(0);
}

.sidebar .post-list #recent ul li a::before {
  background: #39549a;
  content: '최근';
}

.sidebar .post-list #popular ul li a::before {
  background: #c04747;
  content: '인기';
}

.sidebar .post-list #comment ul li a::before {
  content: '댓글';
}

.sidebar .post-list ul li a:hover .title {
  text-decoration: underline;
}

.sidebar .post-list ul li .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar .post-list ul li .date {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-color-3);
}

.sidebar .social-list {
  margin-bottom: 46px;
}

.sidebar .social-list h2 {
  margin-bottom: 18px;
}

.sidebar .social-list .tab-list {
  width: 100%;
  overflow: hidden;
}

.sidebar .social-list ul li {
  margin-bottom: 15px;
  padding: 0 0 0 48px;
}

.sidebar .social-list ul li a {
  display: block;
  text-decoration: none;
}

.sidebar .social-list ul li a:hover .text {
  text-decoration: underline;
}

.sidebar .social-list ul li .avatar {
  width: 40px;
  height: 40px;
  margin-left: -48px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
}

.sidebar .social-list ul li .title {
  display: block;
}

.sidebar .social-list ul li .date {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
  color: var(--text-color-2);
}

.sidebar .keyboard-info {
  margin-bottom: 20px;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}

.sidebar .keyboard-info h2 {
  margin: 0;
}

.sidebar .keyboard-info h2 a {
  color: #202533;
}

.sidebar .keyboard-info .btn-key {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sidebar .keyboard-info.on .btn-key {
  color: #0b0b09;
}

.sidebar .keyboard-info .btn-key:hover {
  text-decoration: none;
}

.sidebar .keyboard-info .btn-key i {
  font-size: 1.6rem;
}

.sidebar .keyboard-info .info {
  display: none;
  padding-bottom: 10px;
  color: #3a392e;
}

.sidebar .keyboard-info.on {
  background-color: rgb(255 250 205 / 40%);
}

.sidebar .keyboard-info.on .info {
  display: block;
}

.sidebar .keyboard-info .info .info-tit {
  position: relative;
  display: block;
  margin-top: 10px;
  padding: 5px 0 5px 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.sidebar .keyboard-info .info .info-tit::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: block;
  width: 3px;
  height: 3px;
  background: #ccc;
  content: '';
}

.sidebar .keyboard-info .info em {
  color: var(--text-color-blue);
  font-style: normal;
}

#aside .tags {
  margin: 0 0 40px;
  padding: 0;
  font-size: 1.3rem;
}

#aside .tags .tags-list a {
  display: inline-block;
  margin: 0;
  padding: 5px 8px 5px 0;
  border: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--text-side-color-2);
  float: none;
}

#aside .tags a::after {
  content: ',';
}

#aside .tags a:last-child::after {
  content: none;
}

#aside .tags a:hover,
#aside .tags a:focus {
  color: var(--text-side-color-1);
}

.sidebar .count {
  margin: 20px 0;
}

.sidebar .count p {
  margin-bottom: 6px;
  font-size: 1.3rem;
  color: var(--text-side-color-2);
}

.sidebar .count .stats-gp {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #fff;
}

.sidebar .count .total {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-side-color-2);
}

.sidebar .social-channel ul {
  display: flex;
  margin-bottom: 10px;
  overflow: hidden;
  gap: 2px;
  justify-self: start;
}

.sidebar .social-channel li a {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  text-indent: -999em;
}

.sidebar .social-channel li a:hover {
  text-decoration: none;
  background-color: var(--background);
}

.sidebar .social-channel li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-indent: -999em;
  background: url('./images/ico_sns.png') no-repeat;
  background-size: auto 30px;
}

.sidebar .social-channel li.facebook a::before {
  background-position: 0 0;
}

.sidebar .social-channel li.twitter a::before {
  background-position: -30px 0;
}

.sidebar .social-channel li.instagram a::before {
  background-position: -60px 0;
}

.sidebar .social-channel li.youtube a::before {
  background-position: -90px 0;
}

.sidebar .tab-ui [role='tablist'] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sidebar .tab-ui [role='tablist'] a {
  display: inline-block;
  width: 100%;
  padding: 8px;
  font-size: 1.4rem;
  text-align: center;
  color: var(--text-side-color-3);
  border-bottom: 1px solid #aaa;
}

.sidebar .tab-ui [role='tablist'] a:hover {
  text-decoration: none;
}

.sidebar .tab-ui [role='tablist'] a.current {
  border: 1px solid var(--border-color-5);
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  color: var(--text-side-color-1);
  background: transparent;
  border-bottom-color: transparent;
}

.sidebar .adfit {
  margin-bottom: 30px;
}

/* ETC */
#dimmed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  z-index: 997;
  backdrop-filter: blur(0.8px);
}

.mobile-menu {
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

.slide-wrap {
  overflow: hidden;
}

#content .ad-post {
  padding-bottom: 30px;
  overflow: hidden;
}

/* Overwrite */
#content .another-category {
  margin: 60px 0 57px !important;
  padding: 16px 20px 14px;
}

#content .another-category h4 {
  margin: 0 0 13px !important;
  padding: 0 !important;
  font-size: 1.4rem !important;
  border-bottom: 0 !important;
}

#content .another-category table {
  margin: 0 !important;
  border: 0;
}

#content .another-category th {
  padding: 2px 0 !important;
  font-size: 1.3rem !important;
}

#content .another-category th a.current {
  border: 0 !important;
  font-weight: 400;
  text-decoration: underline !important;
  color: var(--default-text) !important;
}

#content .another-category td {
  padding: 2px 0 !important;
  border: 0;
  font-size: 1.3rem !important;
}

.container_postbtn {
  padding: 60px 0 0 !important;
}

.tt_box_namecard .tt-wrap-thumb .tt-thumb-g {
  border-radius: 15px;
}

.tt_box_namecard .tt_tit_cont {
  font-weight: 500 !important;
  color: var(--default-text);
}

.absent-post::before {
  display: block;
  margin-bottom: 7px;
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1.25;
  color: #555;
  content: '죄송합니다만 \A글을 찾지 못했습니다.';
  white-space: pre;
}

.absent-post {
  padding: 98px 0 !important;
  font-size: 1.3rem !important;
  font-weight: normal !important;
  line-height: 1.75;
  color: #999 !important;
  background: none !important;
}

/* Option */
.layout-aside-left #aside {
  order: -1;
  margin-left: 0;
  padding: 10px 25px 0 5px;
}

.layout-aside-left #aside .sidebar .category {
  padding-left: 5px;
}

.list-type-vertical .post-item {
  margin-bottom: 38px;
}

.list-type-vertical .post-item .thum {
  margin-bottom: 3px;
  padding-bottom: 125%;
}

.list-type-vertical .post-item .thum img {
  transform: translateY(0);
}

.list-type-vertical .post-item .title {
  margin-bottom: 5px;
}

.list-type-vertical .post-item .meta span.date::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 7px 8px 9px 5px;
  background-color: #d2d2d2;
  content: '';
  vertical-align: middle;
}

.list-type-vertical .post-item .meta span:first-child::before {
  content: none;
}

.list-type-thumbnail .post-header {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.list-type-thumbnail .post-header h2 {
  margin-bottom: 0;
}

.list-type-thumbnail .post-item {
  width: 100%;
  margin: 0 0 30px;
  float: none;
  overflow: hidden;
}

.list-type-thumbnail .post-item .thum {
  display: inline;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.list-type-thumbnail .post-item .thum img {
  width: 100px;
  height: auto;
  margin-left: 30px;
  border: 1px solid var(--border-color);
  float: right;
  transform: translateY(0);
}

.list-type-thumbnail .post-item.protected .thum {
  width: 126px;
  height: 166px;
  margin-left: 57px;
  border: 1px solid #f1f1f1;
  background-color: #f8f8f8;
  float: right;
}

.list-type-thumbnail .post-item .title {
  max-width: 95%;
  margin-bottom: 10px;
  padding-top: 7px;
  font-size: 1.6rem;
}

.list-type-thumbnail .post-item span.date::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 7px 8px 9px 5px;
  background-color: #d2d2d2;
  content: '';
  vertical-align: middle;
}

.list-type-thumbnail .post-item .meta span:first-child::before {
  content: none;
}

.list-type-text .post-header {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 38px;
  padding-bottom: 18px;
}

.list-type-text .post-header h2 {
  margin-bottom: 0;
}

.list-type-text .post-item {
  width: 100%;
  margin: 0 0 35px;
  float: none;
  overflow: hidden;
}

.list-type-text .post-item .thum {
  display: none;
}

.list-type-text .post-item .title {
  max-width: 96%;
  margin-bottom: 10px;
  padding-top: 0;
  font-size: 1.6rem;
}

.list-type-text .post-item .excerpt {
  max-width: 96%;
  margin-bottom: 20px;
  line-height: 1.6;
}

.list-type-text .post-item span.date::before {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 7px 8px 9px 5px;
  background-color: #d2d2d2;
  content: '';
  vertical-align: middle;
}

.list-type-text .pagination {
  margin-top: 36px;
}

.ad-main {
  margin-bottom: 20px;
}

.cover-ad h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--default-text);
}

.footer-top {
  position: relative;
  width: 100%;
  padding: 30px 0 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 10%);
}

.footer-top .container {
  padding: 0 10px;
}

.footer-top-content {
  position: relative;
  display: flex;
}

.footer-top-content .footer-top-logo {
  height: auto;
  margin: 5px 30px 0 0;
  font-size: 2rem;
  font-weight: 600;
}

.footer-top-content .footer-top-logo img {
  height: 25px;
}

.footer-top-content .footer-top-info {
  position: relative;
  margin-bottom: 0;
  padding-right: 160px;
  font-size: 1.3rem;
  color: var(--text-color-2);
  word-break: keep-all;
}

.footer-top-content .footer-top-info .info-box {
  font-size: 1.4rem;
}

.footer-top-content .footer-top-info .desc {
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color-2);
}

.footer-top-content .footer-top-info .corp-info {
  margin: 2px 0 10px;
  font-size: 1.3rem;
}

.footer-top-content .footer-top-info strong {
  color: var(--text-color-1);
}

.footer-top-content .footer-top-info span::before {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 7px;
  margin-left: 6px;
  background: #d5d5d5;
  content: '';
}

.footer-top-content .footer-top-info span:first-child::before {
  display: none;
}

.footer-top-content .footer-top-info a,
.footer-top-content .footer-top-info a:hover {
  color: var(--text-color-1);
}

.footer-top-content .footer-top-info .btn-e-xs {
  line-height: 11px;
  text-decoration: none;
  color: #fff;
}

#footer {
  position: relative;
}

#footer .footer-left > ul {
  margin: 0;
}

#footer .footer-left > ul > li {
  padding: 0 10px;
  font-size: 1.3rem;
  line-height: 50px;
  color: var(--default-text);
  border-right: 1px solid rgba(0, 0, 0, 10%);
}

#footer .footer-left > ul > li:last-child {
  box-shadow: none;
  border-right: 0;
}

#footer .footer-left > ul > li:last-child a {
  margin-right: 15px;
  color: var(--footer-bottom-text);
}

#footer .footer-left > ul > li:last-child a:hover {
  text-decoration: underline;
}

#footer .footer-left > ul > li strong {
  font-weight: 600;
}

#footer .footer-left .dropup .footer-info-btn {
  display: inline-block;
  color: var(--footer-bottom-text);
  box-shadow: none;
  cursor: pointer;
}

#footer .footer-left .dropup .footer-info-btn i,
#footer .footer-left .dropup .footer-info-btn svg {
  margin-left: 5px;
  transition: all 0.3s ease;
}

#footer .footer-left .dropup.open .footer-info-btn i,
#footer .footer-left .dropup.open .footer-info-btn svg {
  transform: rotate(-180deg);
  transition: all 0.3s ease;
}

#footer .footer-left .dropup .dropdown-menu > li > a {
  font-size: 1.3rem;
}

#footer .footer-left .dropup.open .dropdown-menu {
  display: block;
  max-width: 250px;
}

#footer .footer-right {
  max-width: 60%;
  margin-bottom: 0;
  padding-right: 0;
  font-size: 1.3rem;
  line-height: 50px;
  text-align: right;
  color: var(--footer-bottom-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 5px;
  display: none;
  min-width: 100px;
  padding: 5px 0 10px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: 15px;
  font-size: 1.4rem;
  text-align: left;
  background-color: #fff;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
  overflow: hidden;
  z-index: 1000;
  background-clip: padding-box;
  list-style: none;
}

.dropdown-menu > li > span {
  display: block;
  padding: 10px 20px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  clear: both;
  white-space: nowrap;
}

.dropdown-menu > li > a {
  display: block;
  padding: 5px 20px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--default-text);
  overflow: hidden;
  clear: both;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover {
  text-decoration: none;
  background-color: var(--background);
}

.dropdown-menu .divider {
  height: 1px;
  background-color: #e5e5e5;
  overflow: hidden;
}

.dropdown-menu .divider + li {
  padding-top: 10px;
}

#footer .footer-link {
  position: relative;
  width: 160px;
  margin: 5px 0 0 auto;
}

#footer .footer-link-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 10px 5px 20px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: 15px;
  box-sizing: border-box;
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-color-2);
  background-color: rgb(255 255 255 / 50%);
  cursor: pointer;
}

#footer .footer-link-btn i,
#footer .footer-link-btn svg {
  color: var(--text-color-3);
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

#footer .footer-link .btn-group.open .footer-link-btn {
  color: var(--text-side-color-1);
  background-color: rgb(255 255 255 / 80%);
}

#footer .footer-link .btn-group.open .footer-link-btn i,
#footer .footer-link .btn-group.open .footer-link-btn svg {
  color: var(--text-side-color-1);
  transform: rotate(0);
}

#footer .footer-link .dropdown-menu {
  bottom: 0;
  left: 0;
  display: none;
  box-shadow: none;
}

#footer .footer-link .dropdown-menu > li > a {
  position: relative;
  padding: 5px 20px 5px 25px;
  color: var(--text-side-color-2);
}

#footer .footer-link .dropdown-menu > li > a:hover {
  background-color: var(--background);
}

#footer .footer-link .dropdown-menu > li:first-child span {
  font-size: 1.3rem;
  color: var(--text-side-color-1);
}

#footer .footer-link .dropdown-menu > li > a::before {
  position: absolute;
  top: 13px;
  left: 15px;
  width: 3px;
  height: 3px;
  background-color: rgb(0 0 0 / 20%);
  content: '';
}

#footer .footer-link .btn-group.open .dropdown-menu {
  bottom: calc(100% + 5px);
  display: block;
  max-height: 300px;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
  overflow: auto;
}

/* scroll */
.dropdown-menu::-webkit-scrollbar-track {
  background-color: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--scroll-thumb);
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-hover);
}

.dropdown-menu {
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.dropdown-menu::-webkit-scrollbar-button {
  width: 6px;
  height: 6px;
  background: transparent;
}

.kakao-ch {
  border-top: 1px solid var(--border-color-2);
  margin-bottom: 20px;
  padding-top: 20px;
}

.kakao-ch a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.kakao-ch img {
  width: 20px;
  border-radius: 50%;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.backtotop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 15%);
  opacity: 0;
  cursor: pointer;
  transition: all 0.2s linear;
  visibility: hidden;
  z-index: 996;
  transform: translateY(15px);
}

.backtotop.active-progress {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.backtotop::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 46px;
  height: 46px;
  font-family: 'Font Awesome\ 6 Free';
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 28px;
  text-align: center;
  color: #757575;
  cursor: pointer;
  transition: all 0.2s linear;
  z-index: 1;
  content: '\f106';
}

.backtotop:hover::after {
  color: var(--default-link);
}

.backtotop svg path {
  fill: none;
}

.backtotop svg.backtotop-progress path {
  box-sizing: border-box;
  stroke: #cc2300;
  stroke-width: 4;
  transition: all 0.2s linear;
}

.backtotop .progress-count {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  display: block;
  font-size: 1.1rem;
  text-align: center;
  color: #a5a5a5;
}

.backtotop {
  box-shadow: inset 0 0 0 2px rgb(0 0 0 / 15%);
}

.backtotop::after {
  color: #2b2b2e;
}

.entry-content .adsbygoogle {
  height: auto !important;
  margin: 20px 0 !important;
  overflow: hidden;
}

#aside .adsbygoogle {
  margin: 0 0 20px !important;
}

.container {
  width: 1100px;
}

#aside #chart-time {
  padding-bottom: 15px;
  color: var(--text-color-2) !important;
}

#container .content-wrap::before {
  left: 71.5%;
}

.revenue-unit-item.adfit,
.revenue-unit-item:not(.responsive) {
  display: block !important;
}

.footer-site-name,
#footer .dropup {
  display: none;
}

#footer .footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
}

#footer .footer-left {
  padding-left: 5px;
}

#footer .footer-right {
  padding-right: 5px;
}

/* 알림팝업 */
.layer-alert {
  display: none;
}

#tt-body-index .layer-alert {
  position: fixed;
  bottom: 0;
  left: -300px;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  width: 250px;
  margin-bottom: 20px;
  padding: 36px 24px 24px;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff;
  background: rgb(255 255 255);
  box-shadow: 0 0 8px rgb(0 0 0 / 20%);
  z-index: 9999;
}

#tt-body-index .layer-alert.show-ani {
  display: flex;
  animation: bounce-in 0.8s forwards;
}

#tt-body-index .layer-alert.hide-ani {
  animation: slide-out 0.8s forwards;
}

#tt-body-index .layer-alert::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 80px;
  height: 80px;
  background: url('./images/icon_alert.png') no-repeat 50% 50%;
  background-size: 80px auto;
  content: '';
  transform: translate(-50%, -50%);
}

#tt-body-index .layer-alert h3 {
  margin-bottom: 5px;
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--text-color-1);
}

#tt-body-index .layer-alert .cont-box {
  width: 100%;
}

#tt-body-index .layer-alert .cont {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-color-2);
}

#tt-body-index .layer-alert figure {
  margin: 0 auto;
  padding: 15px 10px 10px;
  text-align: center;
}

#tt-body-index .layer-alert figure img {
  max-width: 200px;
}

#tt-body-index .layer-alert .today-check {
  display: block;
  width: 100%;
  padding: 15px 0 5px;
  font-size: 1.3rem;
  text-align: center;
  text-decoration: underline;
  color: var(--text-color-3);
}

#tt-body-index .layer-alert .btn-view {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 100px;
  margin: 20px auto 0;
  padding: 10px 15px;
  border: 0;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: rgb(0 193 162);
  box-shadow: rgb(0 0 0 / 10%) 0 2px 4px 0;
  cursor: pointer;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#tt-body-index .layer-alert .btn-view::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(255 255 255 / 0%) 0%,
    rgb(255 255 255 / 20%) 50%,
    rgb(255 255 255 / 0%) 80%
  );
  animation: skeleton 1.5s infinite;
  content: '';
  transform: rotate(-45deg);
}

#tt-body-index .layer-alert .btn-view:hover {
  text-decoration: none;
}

#tt-body-index .layer-alert .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  color: var(--text-color-2);
}

/* 목차 */
.toc {
  height: 60px;
  margin: 10px 0 30px;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 1.4rem;
  background: #f6f6f6;
  box-shadow: 0 0 3px var(--shadow-1);
  user-select: none;
}

.toc.on {
  height: auto;
  padding-bottom: 15px;
}

.toc .toc-header {
  display: flex;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.toc.on .toc-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.toc .toc-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.toc .toc-header .toc-icon {
  margin-right: 6px;
}

.toggle-btn {
  cursor: pointer;
  transition: transform 0.2s;
}

.toc .toc-header .toggle-btn {
  margin-left: auto;
  padding-top: 5px;
  transform: rotate(0deg);
}

.toc.on .toc-header .toggle-btn {
  transform: rotate(180deg);
}

.toc.on .toc-list {
  height: auto;
  margin-bottom: 5px;
  padding-top: 20px;
}

.toc .toc-list {
  height: 0;
  overflow: hidden;
}

.toc-list li {
  list-style: none;
}

.toc .toc-list li {
  position: relative;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  text-indent: 0;
}

.toc-list li[data-tag='0'] a::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: rgb(0 0 0 / 20%);
  content: '';
}

.toc .toc-list li a::before {
  margin-right: 12px;
}

.toc .toc-list li[data-tag='0'] {
  counter-increment: tag0;
  counter-reset: tag1;
}

.toc .toc-list li[data-tag='1'] {
  counter-increment: tag1;
  counter-reset: tag2;
}

.toc .toc-list li[data-tag='0'] a {
  font-weight: 600;
  color: var(--text-color-1);
}

.toc .toc-list li[data-tag='1'] a {
  padding-left: 24px;
  color: var(--text-color-2);
}

.toc .toc-list li[data-tag='1'] a::before {
  position: absolute;
  top: 0;
  left: 10px;
  display: inline-block;
  content: '-';
}

.toc .toc-list li[data-tag='2'] a {
  padding-left: 48px;
}

.toc .toc-list li a {
  position: relative;
  display: block;
  padding: 2px 12px;
  font-size: 1.5rem;
  color: var(--default-text);
}

.toc .toc-list li a:hover {
  background-color: var(--white-gray);
  transition: 0.2s;
}

.toc-scroll {
  position: fixed;
  top: 155px;
  left: -240px;
  width: 240px;
  padding: 15px 8px 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fafafa;
  transition: left 0.2s ease-out;
}

.toc-scroll.on {
  left: calc(50% - 810px);
  transition: left 0.2s ease-out;
}

.layout-aside-left .toc-scroll {
  left: calc(100% + 20px);
}

.layout-aside-left .toc-scroll.on {
  left: calc(50% + 570px);
}

.toc-scroll .toc-list {
  max-height: 600px;
  margin-bottom: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.toc-scroll .toc-list::-webkit-scrollbar-track {
  background-color: transparent;
}

.toc-scroll .toc-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--scroll-thumb);
}

.toc-scroll .toc-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-hover);
}

.toc-scroll .toc-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.toc-scroll .toc-list::-webkit-scrollbar-button {
  width: 6px;
  height: 6px;
  background: transparent;
}

.toc-scroll .toc-list li {
  margin-bottom: 5px;
  line-height: 1.2;
  list-style: none;
}

.toc-scroll .toc-list li a {
  position: relative;
  padding: 0 10px;
  font-size: 1.3rem;
  color: var(--text-color-1);
}

.toc-scroll .toc-list li a::before {
  position: absolute;
  top: 5px;
}

.toc-scroll .toc-list li a:hover,
.toc-scroll .toc-list li a.active {
  color: var(--default-link);
}

.toc-scroll .toc-list li[data-tag='0'] {
  counter-increment: tag0;
  counter-reset: tag1;
}

.toc-scroll .toc-list li[data-tag='0'] a {
  font-size: 1.3rem;
  font-weight: 600;
}

.toc-scroll .toc-list li[data-tag='1'] {
  counter-increment: tag1;
  counter-reset: tag2;
  line-height: 1;
}

.toc-scroll .toc-list li[data-tag='1'] a {
  padding-left: 15px;
}

.toc-scroll .toc-list li[data-tag='1'] a.active,
.toc-scroll .toc-list li[data-tag='1'] a:hover {
  text-decoration: underline;
  color: var(--default-link);
  text-underline-offset: 4px;
}

.toc-scroll .toc-list li[data-tag='1'] a::before {
  position: absolute;
  top: 0;
  left: 14px;
  display: inline-block;
  content: '-';
}

.toc-scroll .toc-list li[data-tag='2'] a {
  padding-left: 20px;
  color: var(--text-color-3);
}

.toc-scroll .toc-header {
  position: absolute;
  top: 0;
  right: -36px;
  display: none;
  width: 36px;
  height: 36px;
  padding-left: 0;
  border: 1px solid #aaa;
  line-height: 0;
  background-color: rgb(255 255 255 / 100%);
  backdrop-filter: blur(5px);
  border-left: 0;
}

.toc-scroll .toggle-btn {
  width: 100%;
  padding-right: 5px;
  font-size: 1rem;
  transition: transform 0.2s;
  transform: rotate(180deg);
}

.toc-scroll.on .toggle-btn {
  padding-left: 5px;
  transform: rotate(360deg);
}

/* dark-mode */
[data-theme='dark'] body {
  color: var(--default-text);
  background-color: var(--background);
}

[data-theme='dark'] body:not(.loaded) #wrap,
[data-theme='dark'] #loading {
  background-color: var(--background);
}

[data-theme='dark'] a,
[data-theme='dark'] a:link,
[data-theme='dark'] a:hover {
  color: var(--default-text);
}

[data-theme='dark'] input:-webkit-autofill,
[data-theme='dark'] input:-webkit-autofill:hover,
[data-theme='dark'] input:-webkit-autofill:focus,
[data-theme='dark'] input:-webkit-autofill:active {
  caret-color: var(--default-text);
  -webkit-text-fill-color: var(--default-text);
}

[data-theme='dark'] .header-topbar {
  color: var(--default-text);
  background-color: var(--top-bar-background);
}

[data-theme='dark'] .header-topbar .topbar-left .left-menu > li > a,
[data-theme='dark'] .header-topbar .topbar-left .left-menu > li > button,
[data-theme='dark'] .header-topbar .topbar-right > .member-menu > li > a i,
[data-theme='dark'] .header-topbar .topbar-left .left-menu > li > a i {
  color: var(--default-text);
}

[data-theme='dark'] .header-topbar .topbar-left .left-menu > li > a.active {
  color: var(--default-link);
  background-color: var(--background);
}

[data-theme='dark'] .header-topbar ul li.subscribe em {
  color: var(--default-text);
}

[data-theme='dark'] .header-topbar .topbar-right > .member-menu > li > a {
  border-color: var(--border-color);
  color: var(--default-text);
}

[data-theme='dark'] .header-topbar .topbar-right > .member-menu > li > a:hover {
  color: var(--default-text);
}

[data-theme='dark'] .header-topbar .admin > .list,
[data-theme='dark'] .header-topbar .admin > .list ul {
  background-color: var(--background-2);
}

[data-theme='dark'] .header-topbar .admin > .list .desc {
  color: var(--text-color-3);
}

[data-theme='dark'] .header-topbar .admin > .list ul #blog-number {
  border-color: var(--border-color);
}

[data-theme='dark'] #header h1 .sub-tit strong {
  color: var(--text-color-2);
}

[data-theme='dark']
  .header-topbar
  .topbar-left
  .left-menu
  > li.dark
  .dark-check {
  background-color: var(--background-3);
}

[data-theme='dark'] .header-nav.header-fixed-trans .navbar {
  box-shadow: 0 5px 5px -5px #333;
}

[data-theme='dark'] .header-nav .navbar {
  background-color: var(--gnb-bg);
}

[data-theme='dark'] #gnb ul li.first,
[data-theme='dark'] #gnb ul li.first a,
[data-theme='dark'] #gnb ul li.first a:hover {
  color: var(--gnb-first-font);
}

[data-theme='dark'] #gnb ul li.last,
[data-theme='dark'] #gnb ul li.last a,
[data-theme='dark'] #gnb ul li.last a:hover {
  color: var(--gnb-last-font);
  background-color: var(--gnb-last);
}

[data-theme='dark'] #gnb ul li a {
  color: var(--gnb-font);
}

[data-theme='dark'] #gnb ul li a:hover,
[data-theme='dark'] #gnb ul li a:focus,
[data-theme='dark'] #gnb ul li.active a,
[data-theme='dark'] #gnb ul li.active a:hover,
[data-theme='dark'] #gnb ul li.active a:focus {
  color: var(--gnb-hover-font);
}

[data-theme='dark'] #gnb ul li a::before,
[data-theme='dark'] #gnb ul li a:hover::before,
[data-theme='dark'] #gnb ul li a:focus::before {
  color: var(--gnb-font);
  background-color: var(--gnb-hover);
}

[data-theme='dark'] #gnb ul li.current a {
  background-color: var(--gnb-hover);
}

[data-theme='dark'] #gnb ul li.last,
[data-theme='dark'] #gnb ul li.last a:hover,
[data-theme='dark'] #gnb ul li.last a:focus,
[data-theme='dark'] #gnb ul li.last.current a {
  color: var(--gnb-last-font);
  background-color: var(--gnb-last);
}

[data-theme='dark'] #gnb ul li.first a,
[data-theme='dark'] #gnb ul li.first a:hover {
  background-color: var(--gnb-first) !important;
}

[data-theme='dark'] #content {
  background-color: var(--bg-content);
  box-shadow: 0 0 5px #333;
}

[data-theme='dark'] .entry-content h1,
[data-theme='dark'] .entry-content h2,
[data-theme='dark'] .entry-content h3,
[data-theme='dark'] .entry-content h4,
[data-theme='dark'] .entry-content h5,
[data-theme='dark'] .entry-content h6 {
  color: var(--text-color-1);
}

[data-theme='dark'] .entry-content a,
[data-theme='dark'] .entry-content a:hover,
[data-theme='dark'] .entry-content p a {
  color: var(--default-link);
}

[data-theme='dark'] .post-cover .meta,
[data-theme='dark'] .post-cover .meta a {
  color: var(--text-color-3);
}

[data-theme='dark'] .post-cover .meta a::before,
[data-theme='dark'] .post-cover .meta span::before {
  background-color: var(--border-color-2);
}

[data-theme='dark'] .entry-content table {
  border-color: var(--border-color);
}

[data-theme='dark'] .entry-content table caption {
  color: var(--text-color-4);
}

[data-theme='dark'] .entry-content table th {
  border-color: var(--border-color);
  color: var(--default-text);
  background-color: rgb(49 52 60 / 60%);
}

[data-theme='dark'] .entry-content table td {
  border-color: var(--border-color);
  color: var(--post-text);
  background-color: var(--background-2);
}

[data-theme='dark'] .post-cover .inner {
  border-color: var(--border-color);
  color: var(--default-text);
}

[data-theme='dark'] .entry-content span code,
[data-theme='dark'] .entry-content p span code {
  color: var(--text-color-2);
  background-color: var(--background-3);
}

[data-theme='dark'] #tt-body-page blockquote {
  color: var(--text-color-1);
}

[data-theme='dark'] .list-type-thumbnail .post-header,
[data-theme='dark'] .list-type-text .post-header {
  border-color: var(--border-color);
}

[data-theme='dark'] .post-header h2 em {
  color: var(--default-link);
}

[data-theme='dark'] .list-type-thumbnail .post-item .thum img {
  border-color: var(--border-color);
}

[data-theme='dark'] .related-articles ul li a,
[data-theme='dark'] .related-articles ul li a:hover,
[data-theme='dark'] .related-articles ul li a:focus {
  color: var(--default-text);
}

[data-theme='dark'] #aside .search-area {
  border-color: var(--border-color-2);
}

[data-theme='dark'] .search-area .input {
  color: var(--default-text);
}

[data-theme='dark'] .search-area .button {
  color: var(--text-color-2);
}

[data-theme='dark'] .sidebar .sidebar-2 {
  border-color: var(--border-color);
}

[data-theme='dark'] #aside .tags a {
  color: var(--text-side-color-2);
}

[data-theme='dark'] #aside .tags h2 a {
  color: var(--text-side-color-1);
}

[data-theme='dark'] #aside h2 a {
  color: var(--text-side-color-1);
}

[data-theme='dark'] .sidebar h2,
[data-theme='dark'] .sidebar .category ul li a.link_tit {
  color: var(--text-side-color-1);
}

[data-theme='dark'] .sidebar .category .toggle {
  border-left: 1px solid rgb(255 255 255 / 3%);
}

[data-theme='dark'] .sidebar .keyboard-info {
  border-color: var(--border-color-2);
}

[data-theme='dark'] .sidebar .keyboard-info.on {
  border-color: var(--border-color-4);
  background-color: rgb(0 0 0 / 20%);
}

[data-theme='dark'] .sidebar .keyboard-info .btn-key {
  color: var(--text-color-2);
}

[data-theme='dark'] .sidebar .keyboard-info .info {
  color: var(--text-color-3);
}

[data-theme='dark'] .sidebar .keyboard-info .info em {
  color: var(--text-color-blue);
}

[data-theme='dark'] .sidebar .category ul li .link_item {
  background-color: #2a2c33;
}

[data-theme='dark'] .sidebar ul li a,
[data-theme='dark'] .sidebar .category ul li ul li ul li a {
  color: var(--text-side-color-2);
}

[data-theme='dark'] .sidebar .category ul li .c_cnt {
  color: var(--text-side-color-3);
}

[data-theme='dark'] .sidebar .category ul li ul li ul li::before {
  background-color: rgb(255 255 255 / 15%);
}

[data-theme='dark'] .sidebar .category ul li ul li ul li.selected::after {
  color: rgb(255 255 255 / 50%);
}

[data-theme='dark'] .calendar .tt-calendar th {
  color: var(--default-text);
}

[data-theme='dark'] .calendar .tt-calendar td {
  color: var(--text-color-3);
}

[data-theme='dark'] .calendar .tt-calendar .cal-day4 {
  color: var(--text-color-1);
}

[data-theme='dark'] .sidebar .category ul li a {
  color: var(--text-side-color-2);
}

[data-theme='dark'] .sidebar .count p {
  color: var(--text-color-3);
}

[data-theme='dark'] .post-cover .category {
  color: var(--text-color-blue);
}

[data-theme='dark'] .sidebar .tab-ui [role='tablist'] a {
  border-color: var(--border-color-5);
}

[data-theme='dark'] .sidebar .tab-ui [role='tablist'] a.current {
  border-color: var(--border-color-5);
  color: var(--text-color-2);
  border-bottom-color: transparent;
}

[data-theme='dark'] .sidebar .post-list ul li a::before {
  background-color: var(--background-4);
}

[data-theme='dark'] .sidebar .post-list ul li img {
  border-color: var(--border-color);
}

[data-theme='dark'] [class*='cover-thumbnail-'] ul li .excerpt,
[data-theme='dark'] .list-type-thumbnail .post-item .excerpt,
[data-theme='dark'] .cover-list ul li .excerpt,
[data-theme='dark'] .post-item .excerpt {
  color: var(--text-color-3);
}

[data-theme='dark'] [class*='cover-thumbnail-'] ul li .excerpt::after,
[data-theme='dark'] .cover-list ul li .excerpt::after,
[data-theme='dark'] .post-item .excerpt::after {
  background: linear-gradient(
    90deg,
    rgb(44 44 52 / 0%),
    rgb(44 44 52 / 100%) 95%
  );
}

[data-theme='dark'] [class*='cover-thumbnail-'] ul li .meta,
[data-theme='dark'] [class*='cover-thumbnail-'] ul li .date,
[data-theme='dark'] .post-item .meta,
[data-theme='dark'] .post-item .meta .date,
[data-theme='dark'] .cover-list ul li .meta {
  color: var(--text-color-2);
}

[data-theme='dark'] .cover-thumbnail-2 h2,
[data-theme='dark'] .cover-list h2 {
  border-color: var(--border-color);
}

[data-theme='dark'] .cover-thumbnail-2 ul li a {
  border-color: var(--border-color);
}

[data-theme='dark'] .cover-thumbnail-3 button {
  border-color: var(--border-color);
  background-image: url('./images/ico_package_white.png');
}

[data-theme='dark'] .cover-thumbnail-4 button {
  border-color: var(--border-color);
  background-image: url('./images/ico_package_white.png');
}

[data-theme='dark'] .sidebar .social-channel li a {
  filter: invert(60%);
}

[data-theme='dark'] .pagination .prev,
[data-theme='dark'] .pagination .next {
  border-color: var(--border-color-2);
}

[data-theme='dark'] .pagination .prev {
  background-position: 0 -75px;
}

[data-theme='dark'] .pagination .next {
  background-position-y: -75px;
}

[data-theme='dark'] figure[data-ke-type='opengraph'] div.og-image {
  border-right: 0 !important;
}

[data-theme='dark'] [class*='cover-thumbnail-'] figure img,
[data-theme='dark'] .related-articles figure img,
[data-theme='dark'] .post-item .thum {
  border-color: var(--border-color);
}

[data-theme='dark'] .comment-list {
  border-color: var(--border-color);
}

[data-theme='dark'] .comment-form .field {
  border-color: var(--border-color);
}

[data-theme='dark'] .comment-form .field input[type='text'],
[data-theme='dark'] .comment-form .field input[type='password'] {
  border-color: var(--border-color);
  background-color: var(--background-2);
}

[data-theme='dark'] .comment-form textarea {
  border-color: var(--border-color);
  color: var(--default-text);
  background-color: var(--background-2);
}

[data-theme='dark'] .comment-list ul li .author-meta .nickname,
[data-theme='dark'] .comment-list ul li .author-meta .nickname a {
  color: var(--default-text);
}

[data-theme='dark'] .comment-list ul li p {
  color: var(--text-color-2);
}

[data-theme='dark'] .comment-form .secret label {
  color: var(--text-color-3);
}

[data-theme='dark'] .comment-form .secret label::before {
  border-color: var(--border-color);
  background-color: var(--background-2);
}

[data-theme='dark'] .comment-list ul li ul {
  background-color: var(--background);
}

[data-theme='dark'] .comment-form .submit button {
  background-color: var(--background);
}

[data-theme='dark'] .comment-form .submit button:hover {
  background-color: var(--background-3);
}

[data-theme='dark'] .comments .tt-box-total,
[data-theme='dark'] .comments .tt-item-reply {
  border-color: var(--border-color);
}

[data-theme='dark'] .comments .tt-wrap-cmt .tt-desc {
  color: var(--default-text);
}

[data-theme='dark'] .comments .tt-list-reply {
  border-color: var(--border-color);
}

[data-theme='dark'] .comments .tt-box-textarea .tt-inner-g,
[data-theme='dark'] .comments .tt-area-write .tt-box-account input {
  border-color: var(--border-color);
  color: var(--default-text);
  background-color: var(--background);
}

[data-theme='dark'] .comments .tt-wrap-cmt .tt-button-modify {
  background-color: var(--background-4);
}

[data-theme='dark'] .comments .tt-box-textarea textarea,
[data-theme='dark'] .comments .tt-box-textarea div {
  color: var(--default-text);
  background-color: var(--background);
}

[data-theme='dark'] .comments .tt-btn_register:disabled,
[data-theme='dark'] .comments .tt-btn_register:disabled:hover {
  border-color: var(--border-color);
  color: var(--text-color-4);
  background-color: var(--background);
}

[data-theme='dark'] .comments .tt-btn_register:focus,
[data-theme='dark'] .comments .tt-btn_register:hover {
  border-color: var(--default-link);
  background-color: var(--default-link);
}

[data-theme='dark'] .comments .tt-wrap-cmt .tt-link-user {
  color: var(--text-color-1);
}

[data-theme='dark'] .comments .tt-item-reply .tt-list-reply-comment {
  border-color: var(--border-color);
}

[data-theme='dark'] .comments .tt-btn-prev-more {
  border-color: var(--background);
  color: var(--text-color-2);
  background-color: var(--background);
}

[data-theme='dark'] .pagination a {
  color: var(--text-color-3);
}

[data-theme='dark'] .pagination a:hover {
  text-decoration: none;
  color: var(--text-color-1);
  background-color: #333;
}

[data-theme='dark'] .pagination a .selected {
  color: var(--default-text);
}

[data-theme='dark'] .toc {
  color: var(--default-text);
  background-color: var(--background);
}

[data-theme='dark'] .toc.on .toc-header {
  border-color: var(--border-color-2);
}

[data-theme='dark'] .toc .toc-list li a {
  color: var(--text-color-1);
}

[data-theme='dark'] .toc-list li[data-tag='0'] a::before {
  background-color: rgb(255 255 255 / 20%);
}

[data-theme='dark'] .toc .toc-list li[data-tag='1'] a {
  color: var(--text-color-2);
}

[data-theme='dark'] .toc-scroll {
  border-color: var(--border-color-4);
  background-color: rgb(0 0 0 / 30%);
}

[data-theme='dark'] .toc-scroll .toc-list li a {
  color: var(--text-color-1);
}

[data-theme='dark'] .toc-scroll .toc-list li[data-tag='1'] a {
  color: var(--text-color-2);
}

[data-theme='dark'] .toc-scroll .toc-list li a.active {
  color: var(--default-link);
}

[data-theme='dark'] .toc-scroll .toc-list li a:hover {
  color: var(--default-link);
}

[data-theme='dark'] .footer-top {
  border-color: var(--border-color);
}

[data-theme='dark'] .footer-top-content .footer-top-info strong {
  color: var(--text-color-3);
}

[data-theme='dark'] .footer-top-content .footer-top-info,
[data-theme='dark'] .footer-top-content .footer-top-info .desc {
  color: var(--text-color-3);
}

[data-theme='dark'] .footer-top-content .footer-top-info span::before {
  background-color: var(--border-color-2);
}

[data-theme='dark'] .footer-top-content .footer-top-info a,
[data-theme='dark'] .footer-top-content .footer-top-info a:hover {
  color: var(--text-color-2);
}

[data-theme='dark'] figure[data-ke-type='opengraph'] div.og-text p.og-title,
[data-theme='dark']
  #tt-body-page
  figure[data-ke-type='opengraph']
  div.og-text
  p.og-title {
  color: var(--text-color-1);
}

[data-theme='dark'] figure[data-ke-type='opengraph'] a,
[data-theme='dark'] #tt-body-page figure[data-ke-type='opengraph'] a {
  border-color: var(--border-color);
  color: var(--default-text);
}

[data-theme='dark'] .entry-content pre {
  background: transparent !important;
}

[data-theme='dark'] .hljs {
  color: var(--default-text);
  background-color: var(--background);
}

[data-theme='dark'] .hljs .copy-btn,
[data-theme='dark'] .hljs .copy-btn:hover {
  color: var(--text-color-2);
}

[data-theme='dark'] .hljs .code-header {
  background: linear-gradient(to bottom, #333, #252525);
}

[data-theme='dark'] .hljs-doctag,
[data-theme='dark'] .hljs-formula,
[data-theme='dark'] .hljs-keyword {
  color: #d4a8d3;
}

[data-theme='dark'] .hljs-built-in,
.hljs-class .hljs-title {
  color: #edd299;
}

[data-theme='dark'] .hljs .line:hover {
  background-color: var(--background-2);
}

[data-theme='dark'] .backtotop {
  background-color: var(--background-3);
}

[data-theme='dark'] .backtotop::after {
  color: var(--text-color-3);
}

[data-theme='dark'] .backtotop .progress-count {
  color: var(--text-color-2) !important;
}

[data-theme='dark'] #chartdiv g {
  fill: #ccc;
}

[data-theme='dark'] .tt_box_namecard {
  background-color: rgb(0 0 0 / 10%);
}

[data-theme='dark'] .tt_box_namecard .tt_tit_cont {
  color: var(--text-color-1);
}

[data-theme='dark'] .tt_box_namecard .tt-btn-subscribe .tt-txt-g {
  border-color: var(--border-color);
  color: var(--text-color-1);
}

[data-theme='dark'] .pagination .view-more {
  border-color: var(--background-4);
  color: #999;
  background-color: var(--default-text);
}

[data-theme='dark'] figure.fileblock,
[data-theme='dark'] #tt-body-page figure.fileblock {
  border-color: var(--border-color-4);
  background-color: var(--background-2);
}

[data-theme='dark'] figure.fileblock .image,
[data-theme='dark']
  #tt-body-page
  figure.fileblock
  .image
  [data-theme='dark']
  figure.fileblock
  a::after,
[data-theme='dark'] #tt-body-page figure.fileblock a::after {
  filter: invert(90%);
}

[data-theme='dark'] .tt-wrap-cmt .tt-desc {
  color: var(--default-text) !important;
}

[data-theme='dark'] .tt-wrap-cmt .tt-list-modify {
  background-color: var(--background-3);
}

[data-theme='dark'] .tt-wrap-cmt .tt-list-modify a {
  color: var(--text-color-2);
}

[data-theme='dark'] .tt-wrap-cmt .tt-list-modify a:hover {
  color: var(--text-color-1);
  background-color: #111;
}

[data-theme='dark'] .tt-wrap-cmt .tt-button-modify:hover {
  background-color: #aaa;
}

[data-theme='dark'] .tt-wrap-cmt .tt-box-modify.tt-box-modify-open {
  background-color: var(--background-2);
}

[data-theme='dark'] .font-size-set .size-box button {
  background-color: #555;
}

[data-theme='dark'] .not-found li {
  color: var(--text-color-3);
}

[data-theme='dark'] .calendar .tt-calendar caption a:first-child,
[data-theme='dark'] .calendar .tt-calendar caption a:last-child {
  color: var(--text-color-3);
}

[data-theme='dark'] .calendar .tt-calendar caption a {
  color: var(--text-color-2);
}

[data-theme='dark'] .dropdown-menu {
  background-color: var(--background-2);
}

[data-theme='dark'] .dropdown-menu > li > a,
[data-theme='dark'] .dropdown-menu > li > span {
  color: var(--default-text);
}

[data-theme='dark'] .dropdown-menu > li > a:hover {
  color: var(--default-link);
}

[data-theme='dark'] .dropdown-menu .divider {
  background-color: var(--border-color);
}

[data-theme='dark'] #footer .footer-link .dropdown-menu > li > a::before {
  background-color: rgb(255 255 255 / 20%);
}

/* scroll */
[data-theme='dark'] .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb);
}

[data-theme='dark'] .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-hover);
}

[data-theme='dark'] #footer .footer-link-btn {
  color: var(--text-color-3);
  background-color: var(--background-2);
}

[data-theme='dark'] #footer .footer-link .btn-group.open .footer-link-btn {
  background-color: var(--background-2);
}

[data-theme='dark'] #tt-body-index .layer-alert .btn-view {
  background-color: #00836e;
}

/* hljs */
[data-ke-type='codeblock'] .hljs-attr,
[data-ke-type='codeblock'] .hljs-number,
[data-ke-type='codeblock'] .hljs-selector-attr,
[data-ke-type='codeblock'] .hljs-selector-class,
[data-ke-type='codeblock'] .hljs-selector-pseudo,
[data-ke-type='codeblock'] .hljs-template-variable,
[data-ke-type='codeblock'] .hljs-type,
[data-ke-type='codeblock'] .hljs-variable {
  color: #f5655b;
}

[data-ke-type='codeblock'] .hljs-addition,
[data-ke-type='codeblock'] .hljs-attribute,
[data-ke-type='codeblock'] .hljs-meta-string,
[data-ke-type='codeblock'] .hljs-regexp,
[data-ke-type='codeblock'] .hljs-string {
  color: #00a67d;
}

/* hljs dark */
[data-theme='dark'] [data-ke-type='codeblock'] .hljs-addition,
[data-theme='dark'] [data-ke-type='codeblock'] .hljs-attribute,
[data-theme='dark'] [data-ke-type='codeblock'] .hljs-meta-string,
[data-theme='dark'] [data-ke-type='codeblock'] .hljs-regexp,
[data-theme='dark'] [data-ke-type='codeblock'] .hljs-string {
  color: #43c645;
}

[data-theme='dark'] .hljs-built-in,
[data-theme='dark'] .hljs-class .hljs-title {
  color: #f6bd3b;
}

/* 단축키 */
[data-theme='dark'] .doc-help {
  background-color: var(--background-3);
}

[data-theme='dark'] .doc-help .title {
  border-bottom-color: var(--border-color);
}

[data-theme='dark'] .doc-help .btn-doc-close {
  border-color: var(--border-color-4);
  color: var(--text-color-2);
  background-color: var(--background);
}

[data-theme='dark'] .doc-help .btn-doc-close:hover {
  background-color: var(--background-4);
}

[data-theme='dark'] #tt-body-index .layer-alert {
  background-color: #212121;
  box-shadow: 0 0 8px rgb(0 0 0 / 30%);
}

[data-theme='dark'] #tt-body-index .layer-alert h3 {
  color: #fff;
}

[data-theme='dark'] #tt-body-index .layer-alert .cont {
  color: var(--text-color-2);
}

[data-theme='dark'] .post-cover .option-box .font-zoom {
  border-color: #666;
  color: #eee;
}

[data-theme='dark'] .post-cover .option-box .font-zoom button {
  color: #fff;
  background-color: #222;
}

[data-theme='dark'] .post-cover .option-box .font-zoom button:hover {
  color: #fff;
  background-color: #000;
}

[data-theme='dark'] .tt-box-cheers {
  border-color: var(--border-color);
  background-color: transparent;
}

[data-theme='dark'] .tt-desc-cheers {
  color: var(--text-color-1);
}

[data-theme='dark'] .tt-btn-guide-cheers .tt-txt-guide-cheers {
  color: var(--text-color-2);
}

[data-theme='dark'] .tt-box-cheers .tt-btn-cheers {
  color: var(--text-color-1);
  background-color: var(--background-4);
}

[data-theme='dark'] .container_postbtn button.tt-btn-support {
  color: var(--text-color-1);
  background-color: var(--background-4);
}

/* media */
@media screen and (width <= 1679px) {
  .toc-scroll {
    top: 200px;
    left: -240px;
    padding-bottom: 15px;
    border-radius: 10px;
    background-color: rgb(255 255 255 / 70%);
    z-index: 99;
    backdrop-filter: blur(5px);
  }

  .toc-scroll.on {
    left: 10px;
  }

  .layout-aside-left .toc-scroll.on {
    left: calc(100% - 252px);
  }

  .toc-scroll .toc-header {
    display: flex;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
  }

  .toc-scroll.on .toc-header {
    position: absolute;
    right: -45px;
    border: 1px solid #aaa;
    border-radius: 8px;
    background-color: rgb(255 255 255 / 70%);
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
    z-index: 3;
    backdrop-filter: blur(5px);
  }

  .layout-aside-left .toc-scroll .toc-header {
    left: calc(100% - 295px);
    transform: rotate(180deg);
  }

  .layout-aside-left .toc-scroll.on .toc-header {
    left: calc(100% - 285px);
  }

  .toc-scroll,
  .toc-scroll .toc-header {
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
  }

  .toc-scroll .toc-list {
    margin-bottom: 0;
  }

  .toc-scroll .toc-list li {
    padding-right: 30px;
    text-align: left;
  }
}

@media screen and (width <= 1400px) {
  .sidebar .ad-sky-fixed {
    display: none;
  }
}

@media screen and (width >= 1100px) {
  #gnb ul {
    width: 100% !important;
  }

  .expanded .header-nav {
    z-index: 999;
  }

  #content {
    transition: flex-grow 0.3s ease, margin-right 0.3s ease;
  }

  .layout-aside-left #content {
    transition: flex-grow 0.3s ease, margin-left 0.3s ease;
  }

  .expanded #content {
    flex-grow: 1;
    margin: 0 -330px 0 0;
    box-shadow: none;
    z-index: 998;
  }

  .layout-aside-left.expanded #content {
    margin: 0 0 0 -330px;
  }

  #aside {
    transition: opacity 0.3s ease;
  }

  .expanded #aside {
    opacity: 0;
  }

  .btn-expand {
    display: inline-flex;
    align-items: center;
    height: 35px;
    margin-top: 10px;
    padding: 0 15px;
    border: 1px solid #e4e7f1;
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-side-color-2);
    background-color: #e4e7f1;
  }

  .expanded .btn-expand {
    border-color: var(--background-point);
  }

  .btn-expand::before {
    margin-right: 5px;
    font-family: 'Font Awesome\ 6 Free';
    font-size: 1.6rem;
    font-weight: 600;
    opacity: 0.5;
    content: '\f058';
  }

  .expanded .btn-expand::before {
    font-weight: 900;
    opacity: 1;
  }

  .footer-expanded {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 50px;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background-color: rgb(0 0 0 / 100%);
    z-index: 999;
    vertical-align: middle;
  }

  .expanded .footer-expanded {
    display: block;
  }

  .expanded .footer-expanded .btn-expand {
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--default-link);
    background-color: transparent;
  }

  .expanded .footer-expanded .btn-expand::before {
    display: none;
  }

  [data-theme='dark'] .btn-expand {
    border-color: #222;
    color: #eee;
    background-color: #222;
  }

  [data-theme='dark'] .expanded .btn-expand {
    border-color: #000;
  }
}

@media screen and (width <= 1099px) {
  #loading .load {
    max-width: 300px;
  }

  .container {
    width: 100%;
  }

  #container .content-wrap {
    display: block;
    height: auto !important;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
  }

  #tt-body-index #content {
    padding: 0 0 30px;
  }

  #tt-body-index .main-slider {
    border-radius: 0;
  }

  #header h1 {
    position: relative;
    height: auto;
    min-height: 70px;
    padding: 0 15px 0 12px;
    font-size: 2.2rem;
    z-index: 10;
  }

  #header h1 a {
    align-items: center;
    padding: 0;
  }

  #header h1 .top-logo {
    display: inline-block;
    line-height: 32px;
  }

  #header h1 .sub-tit {
    display: none;
  }

  #header h1 img {
    height: 25px;
  }

  #header .ad-head {
    display: none;
  }

  #header .util {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    padding: 20px 68px 20px 24px;
    box-sizing: border-box;
  }

  #header .util .menu {
    position: absolute;
    top: 22px;
    right: 15px;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #aaa;
    border-radius: 50%;
    z-index: 29;
    outline: none;
    text-indent: -999em;
  }

  #header .util .menu span,
  #header .util .menu::before,
  #header .util .menu::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    margin: 0 0 0 -8px;
    background-color: #7f7f7f;
    content: '';
    transition: transform 0.5s;
  }

  #header .util .menu::before {
    margin-top: -6px;
  }

  #header .util .menu::after {
    margin-top: 6px;
  }

  .header-nav .navbar {
    border-radius: 0;
  }

  .header-nav > .navbar > .container {
    width: inherit;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .header-topbar .topbar-right {
    margin-right: 10px;
    padding-right: 0;
  }

  .header-topbar .topbar-right .mobile-nav-trigger {
    display: block;
    padding: 2px 5px;
    color: var(--default-text);
  }

  .header-topbar .topbar-right .mobile-nav-trigger a {
    font-size: 2.3rem;
    color: var(--default-text);
  }

  .header-topbar .topbar-left .left-menu {
    border-left: 0;
    margin-left: 0;
  }

  .header-topbar .topbar-left .left-menu > li > a,
  .header-topbar .topbar-left .left-menu > li > button {
    padding: 0 12px;
  }

  .header-topbar .topbar-left .left-menu li.bookmark {
    display: none;
  }

  .header-topbar .topbar-left .left-menu > li.facebook {
    display: none;
  }

  #gnb {
    border-radius: 0;
  }

  .gnb-area {
    width: auto;
  }

  #gnb ul li a {
    padding: 0 15px;
  }

  #gnb ul li a::before,
  #gnb ul li a:hover::before {
    display: none;
  }

  #gnb ul li.first,
  #gnb ul li.first a,
  #gnb ul li.last,
  #gnb ul li.last a {
    border-radius: 0;
  }

  .gnb-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 45px;
    background: linear-gradient(90deg, rgb(0 0 0 / 30%), rgb(0 0 0 / 0%) 100%);
    z-index: 2;
    content: '';
  }

  .gnb-area::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 45px;
    background: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 30%) 100%);
    z-index: 2;
    content: '';
  }

  #container {
    box-shadow: none;
  }

  #container .content-wrap::before {
    content: none;
  }

  #content {
    width: auto;
    padding: 30px 15px;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #e5e5e5;
    float: none;
  }

  #content .ad-cover {
    height: auto;
    padding: 3vw 24px;
  }

  #content .ad-bottom {
    display: none;
  }

  #aside {
    position: fixed !important;
    top: 0 !important;
    right: -298px;
    width: 298px;
    height: 100%;
    padding: 15px 20px 50px;
    box-sizing: border-box;
    background-color: #fff;
    transition: right 0.5s;
    overflow: auto;
    z-index: 999;
  }

  #aside .close {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #222;
    z-index: 300;
    outline: none;
    text-indent: -999px;
  }

  .mobile-menu #aside .close {
    display: inline-block;
  }

  #aside .ad-side {
    display: none;
  }

  #aside .close::before,
  #aside .close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    margin: 0 0 0 -8px;
    background-color: #fff;
    content: '';
  }

  #aside .close::before {
    transform: rotate(-45deg);
  }

  #aside .close::after {
    transform: rotate(45deg);
  }

  .search-area .input {
    font-size: 1.6rem;
  }

  #aside .font-size-set {
    display: none;
  }

  #footer .container {
    padding: 0 15px;
    border-top: 0;
  }

  .footer-top {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 30px;
  }

  .footer-top-content {
    flex-direction: column;
  }

  .footer-top-content .footer-top-logo {
    position: relative;
    top: inherit;
    left: inherit;
  }

  .footer-top-content .footer-top-info {
    margin: 20px 0 0;
    padding-right: 0;
  }

  .footer-top-content .footer-top-info span.privacy {
    display: block;
  }

  .footer-top-content .footer-top-info span.privacy .info-divider,
  .footer-top-content .footer-top-info span.email .info-divider {
    display: none;
  }

  #footer .footer-site-name {
    display: none;
  }

  #footer .footer-left > ul > li {
    min-width: 100px;
  }

  #footer .dropup {
    display: block;
  }

  .footer-expanded {
    display: none;
  }

  .ad-head {
    display: none;
  }

  .backtotop {
    right: 20px;
    bottom: 60px;
  }

  #tt-body-index #content > .inner {
    padding: 0 24px;
  }

  #tt-body-index #content > .inner:first-child {
    padding-top: 40px;
  }

  #tt-body-index.list-type-text #content > .inner:first-child {
    padding-top: 36px;
  }

  #tt-body-index .pagination {
    margin: 0 20px 40px;
  }

  #tt-body-page #content {
    padding-right: 0;
    padding-left: 0;
  }

  #tt-body-tag .tags,
  #tt-body-guestbook #content {
    padding-right: 0;
    padding-left: 0;
  }

  #tt-body-guestbook .post-header {
    margin: 0 0 28px;
  }

  #tt-body-index #content .main-slider-area {
    margin: 0 0 10px;
  }

  .mobile-menu #aside {
    right: 0;
    border: 0;
    border-radius: 0;
  }

  .main-slider ul li {
    height: 300px;
  }

  .main-slider ul li .text {
    max-width: 100%;
    font-size: 2rem;
  }

  .main-slider ul li .info {
    max-width: 100%;
    font-size: 1rem;
  }

  .main-slider ul li .box {
    padding: 0 30px 5px 20px;
  }

  .main-slider ul li .btn {
    margin-top: 15px;
  }

  [class*='cover-list-'] {
    margin-bottom: 20px;
    padding: 20px 15px 0;
  }

  .cover-list-subject .mata,
  .cover-list-number .meta {
    display: block;
    font-size: 1.3rem;
    color: var(--text-color-2);
  }

  .cover-list-subject .meta,
  .cover-list-number .meta a {
    color: var(--text-color-2);
  }

  .cover-list-subject .meta a::before,
  .cover-list-number .meta span::before {
    display: inline-block;
    width: 2px;
    height: 2px;
    margin: 0 8px 0 4px;
    background-color: #d5d5d5;
    content: '';
    vertical-align: middle;
  }

  .cover-list-subject .meta span:first-child::before,
  .cover-list-number .meta span:first-child::before {
    content: none;
  }

  .cover-thumbnail-1 {
    margin-bottom: 20px;
    padding: 20px 15px 7px;
  }

  .cover-thumbnail-1 h2 {
    font-weight: 600;
  }

  .cover-thumbnail-1 .more {
    top: 25px;
    right: 24px;
  }

  .cover-thumbnail-1 ul {
    display: block;
    width: 100%;
    margin-bottom: -39px;
    margin-left: 0;
  }

  .cover-thumbnail-1 ul li {
    width: 100%;
    float: none;
    padding-left: 0;
  }

  .cover-thumbnail-1 ul li .title {
    color: var(--default-text);
  }

  .cover-thumbnail-2 {
    width: auto;
    margin: 0;
    padding: 20px 15px;
  }

  .cover-thumbnail-2 h2 {
    font-weight: 600;
  }

  .cover-thumbnail-2 ul li .title {
    margin-bottom: 7px;
    padding-top: 3px;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .cover-thumbnail-2 ul li a {
    padding: 0 0 15px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
  }

  .cover-thumbnail-2 ul li a:hover {
    border-color: var(--border-color);
    box-shadow: none;
  }

  .cover-thumbnail-2 ul li .excerpt {
    margin-bottom: 9px;
  }

  .cover-thumbnail-3 {
    width: auto;
    margin: 0;
    padding: 20px 15px 10px;
  }

  .cover-thumbnail-3 .prev {
    top: 20px;
    right: 54px;
  }

  .cover-thumbnail-3 .next {
    top: 20px;
    right: 24px;
  }

  .cover-thumbnail-3 ul {
    display: block;
    width: auto;
    margin-left: -16px;
  }

  .cover-thumbnail-3 ul li {
    width: 50%;
    padding-left: 16px;
    box-sizing: border-box;
  }

  .cover-thumbnail-4 {
    width: auto;
    margin: 0;
    padding: 20px 15px 0;
  }

  .cover-thumbnail-4 h2 {
    font-weight: 600;
  }

  .cover-thumbnail-4 .prev {
    top: 22px;
    right: 54px;
  }

  .cover-thumbnail-4 .next {
    top: 22px;
    right: 24px;
  }

  .cover-thumbnail-4 ul {
    width: 100%;
    margin-left: 0;
  }

  .cover-thumbnail-4 ul li {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .cover-thumbnail-4 ul li figure {
    margin-bottom: 7px;
  }

  .cover-thumbnail-4 ul li .title {
    margin-bottom: 8px;
  }

  .cover-thumbnail-4 ul li .excerpt {
    margin-bottom: 12px;
  }

  .cover-list {
    width: auto;
    margin: 0;
    padding: 20px 15px 10px;
  }

  .cover-list h2 {
    margin-bottom: 28px;
    font-weight: 600;
  }

  .cover-list .more {
    top: 20px;
    right: 24px;
  }

  .cover-list ul li {
    margin-bottom: 26px;
  }

  .cover-list ul li .title {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }

  .cover-list ul li .excerpt {
    -webkit-line-clamp: 4;
  }

  .cover-event {
    width: auto;
    margin: 0;
    padding: 20px 15px 10px;
  }

  .cover-event ul {
    display: block;
    width: auto;
    margin-left: 0;
  }

  .cover-event ul li {
    width: auto;
    float: none;
    margin-bottom: 16px;
    padding-left: 0;
  }

  .cover-event ul li a {
    padding-bottom: 43.38%;
  }

  .cover-event ul li .title {
    max-width: 80%;
  }

  .cover-event ul li .more {
    display: none;
  }

  .cover-thumbnail-1:first-child {
    border-top: 0;
  }

  .post-header {
    padding-top: 2px;
  }

  .post-item {
    width: auto;
    float: none;
    margin-bottom: 30px;
    margin-left: 0;
  }

  .post-item .thum {
    margin-bottom: 7px;
  }

  .post-item .title {
    margin-bottom: 12px;
  }

  .post-item .excerpt {
    margin-bottom: 12px;
  }

  .pagination {
    margin-bottom: 0;
  }

  .pagination a {
    margin: 0 5px;
  }

  .list-type-vertical .post-item {
    margin-bottom: 30px;
  }

  .list-type-vertical .post-item .title {
    margin-bottom: 7px;
  }

  .list-type-thumbnail .post-item .title {
    margin-bottom: 9px;
    padding-top: 3px;
    font-size: 1.4rem;
  }

  .list-type-thumbnail .post-item .excerpt {
    margin-bottom: 11px;
  }

  .list-type-thumbnail .post-item.protected .thum {
    width: 96px;
    height: 128px;
    margin-left: 25px;
  }

  .list-type-text .post-header {
    margin-bottom: 28px;
  }

  .list-type-text .post-item {
    margin-bottom: 26px;
  }

  .list-type-text .post-item .title {
    margin-bottom: 10px;
  }

  .list-type-text .post-item .excerpt {
    -webkit-line-clamp: 4;
    margin-bottom: 12px;
  }

  .list-type-text .pagination {
    margin-top: 30px;
  }

  .post-cover {
    padding-right: 15px;
    padding-left: 15px;
  }

  .post-cover .category {
    margin-bottom: 10px;
  }

  .post-cover .meta {
    font-size: 1.3rem;
  }

  .entry-content {
    padding: 20px 15px 0;
    overflow: hidden;
  }

  .entry-content figure {
    margin-top: 6px !important;
  }

  .entry-content .protected-form input {
    width: 163px;
  }

  .container_postbtn {
    margin: 35px 0 20px;
  }

  .entry-footer .heart-tooltip {
    left: 15px;
  }

  .tags {
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .tags h2 {
    margin-bottom: 15px;
  }

  .article-page {
    padding: 0 15px;
  }

  .comments {
    margin: 0;
    padding: 0 15px 15px;
  }

  .page-nav {
    margin: 32px 24px;
    padding: 25px 0;
  }

  .page-nav a {
    line-height: 13px;
  }

  .related-articles {
    padding: 0 15px;
  }

  .related-articles h2 {
    margin-bottom: 15px;
  }

  .related-articles ul {
    width: 103.5%;
    margin-left: -3.571%;
  }

  .related-articles ul li {
    width: 50%;
    margin-bottom: 15px;
    padding-left: 3.448%;
  }

  .related-articles ul li figure {
    margin-bottom: 9px;
  }

  .related-articles ul li .title {
    display: -webkit-box;
    height: 2.8em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
  }

  .comments iframe {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .comments h2 {
    padding: 0 24px;
  }

  #tt-body-guestbook .comments {
    padding-top: 0;
  }

  #tt-body-guestbook .comments h2 {
    padding: 0;
  }

  .comments h2 .reply-policy {
    right: 24px;
  }

  .comment-list {
    margin-bottom: 32px;
    border: 0;
  }

  .comment-list > ul > .tt-more-preview-comments-wrap {
    margin-top: 21px;
    padding: 0 24px;
  }

  .comment-list ul li {
    padding: 34px 0 28px;
  }

  .comment-list ul li .author-meta {
    margin-bottom: 6px;
    padding-right: 35px;
  }

  .comment-list ul li .author-meta .avatar {
    width: 30px;
    height: 30px;
    margin-left: -42px;
  }

  .comment-list ul li .author-meta .nickname {
    font-weight: 400;
  }

  .comment-list ul li .author-meta .control {
    top: -2px;
    right: 13px;
  }

  .comment-list ul li .author-meta,
  .comment-list ul li p {
    max-width: none;
    padding: 0 57px;
  }

  .comment-list ul li ul {
    margin-top: 27px;
    padding: 19px 0 12px;
  }

  .comment-list ul li ul li {
    padding: 15px 0 16px;
  }

  .comment-list ul li ul li p {
    max-width: none;
  }

  .comment-list ul li ul li .author-meta {
    margin-bottom: 6px;
  }

  .comment-list ul li ul li .author-meta .avatar {
    width: 30px;
  }

  .comment-form {
    margin-bottom: 40px;
    padding: 0;
  }

  .comment-form textarea {
    padding-right: 32px;
  }

  #tt-body-index.promotion-mobile-hide .main-slider {
    display: none;
  }

  #content .another-category {
    margin: 40px 0 37px !important;
  }

  #content .another-category th {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  .ad-main {
    margin-bottom: 0;
    padding: 24px;
  }

  #footer .footer-link {
    display: none;
  }

  /* bootstrap */
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }

  .toc-scroll {
    top: 169px;
  }

  .toc-scroll .toc-header {
    top: 0;
  }

  .btn-expand {
    display: none;
  }
}

@media screen and (width <= 550px) {
  div[data-ke-type='moreLess'].open .moreless-content,
  #tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
    padding: 15px;
  }

  #footer .br {
    display: block;
  }

  #footer .br::before {
    display: none;
  }

  #tt-body-index .layer-alert {
    left: 0;
    width: 100%;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  #tt-body-index .layer-alert h3 {
    font-size: 2.2rem;
  }

  #tt-body-index .layer-alert .cont-box {
    max-height: 300px;
    overflow-y: auto;
  }

  #tt-body-index .layer-alert .cont {
    display: -webkit-box;
    font-size: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #tt-body-index .layer-alert .btn-view {
    font-size: 1.8rem;
  }

  #tt-body-index .layer-alert .today-check {
    font-size: 1.3rem;
  }

  #tt-body-index .layer-alert.show-ani {
    animation: bounce-in 0.8s forwards;
  }

  #tt-body-index .layer-alert.hide-ani {
    animation: slide-out 0.8s forwards;
  }

  .cover-list-subject > ul > li a {
    display: block;
  }

  .cover-list-subject .title {
    max-width: 100%;
  }
}

@media screen and (width <= 411px) {
  .footer-top-content .footer-top-info span.email {
    display: block;
    margin-left: 0;
  }

  .cover-list-number > ol li .list {
    max-width: calc(100% - 80px);
  }

  .cover-list-number > ol li figure {
    width: 80px;
  }
}

@media screen and (width <= 380px) {
  .header-topbar .topbar-right > .member-menu > li.subscribe {
    display: none;
  }
}

/* media dark-mode */
@media screen and (width <= 1679px) {
  [data-theme='dark'] .toc-scroll {
    background-color: rgb(0 0 0 / 50%);
  }

  [data-theme='dark'] .toc-scroll .toc-header {
    border-color: var(--border-color-4);
    background-color: rgb(0 0 0 / 50%);
  }

  [data-theme='dark'] .toc-scroll .toc-header svg path {
    fill: #fff !important;
    stroke: #fff;
  }
}

@media screen and (width <= 1099px) {
  [data-theme='dark'] .cover-thumbnail-3 h2 {
    color: var(--default-text);
  }

  [data-theme='dark'] #content {
    border-color: transparent;
  }

  [data-theme='dark'] #aside {
    background-color: var(--background-2);
  }

  [data-theme='dark'] #header .util .menu {
    border-color: var(--border-color-2);
  }

  [data-theme='dark'] #aside .close {
    border-color: var(--border-color-4);
    background-color: var(--background-3);
  }
}
