@charset "utf-8";
@import url('//fonts.googleapis.com/earlyaccess/notosanskr.css');
@import url('//fonts.googleapis.com/css?family=Share+Tech+Mono');
@import url('//fonts.googleapis.com/icon?family=Material+Icons');

@import url('./images/css_color.css');

/* 반드시 들어가야 하는 스타일 시작 */
/* 본문 공통 */
body {
  margin: 0;
  color: rgba(0, 0, 0, .87);
  word-break: break-all;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
}

::selection {
  background: rgba(0, 0, 0, 0.15);
}

a {
  color: inherit;
  text-decoration: none;
  transition: .25s;
  padding: 1ex;
  margin: -1ex;
}

a:link,
a:visited {}

a:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  /* position: relative; */
  z-index: 1;
}

a:active {
  box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.25);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

/* 24 20 16 12 12 */
/* input */
input,
select,
textarea {
  border: 0px solid silver;
  border-radius: 3px;
  background: #eee;
  color: #222;
  padding: .5em 1em;
  margin: 1ex 1ex 1ex 0;
  transition: .25s;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px inset;
}

input:hover,
select:hover,
textarea:hover {
  background: #fafafa;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 11px inset;
}

input:focus,
select:focus,
textarea:focus {
  background: #fafafa;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 11px inset;
}

textarea {
  padding: 1em;
  border-width: 0;
  border-radius: 3px;
  width: calc(100% + -2em);
}

input[type="button"],
button:not(.btn_post):not(.btn_mark),
input[type="submit"],
input[type="reset"],
input[type="checkbox"]+label,
input[type="radio"]+label {
  color: #fff;
  background-color: var(--color-500);
  padding: .5em;
  border: 0px solid gray;
  border-radius: 3px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  transition: .25s;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:not(.btn_post):hover,
input[type="checkbox"]+label:hover,
input[type="radio"]+label:hover {
  background-color: var(--color-700);
}

input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:not(.btn_post):active,
input[type="checkbox"]+label:active,
input[type="radio"]+label:active {
  background-color: var(--color-500);
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.25);
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
  display: inline-block;
  min-height: 1.33em;
  transition-property: box-shadow, background-color;
  margin-right: .5ex;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
  content: "\f1df";
}

input[type="checkbox"]:checked+label:before {
  content: "\f1e0";
}

input[type="radio"]+label:before {
  content: "\f428";
}

input[type="radio"]:checked+label:before {
  content: "\f429";
}

button[type="submit"] {
  background-image: linear-gradient(to right, var(--color-800) 0%, var(--color-800) 100%);
  background-size: 200%;
}

button[type="submit"]:hover {
  background-image: linear-gradient(to right, var(--color-900) 0%, var(--color-900) 100%);
}

/* title attr tooltip with .js code */
#tooltip {
  color: #fff;
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--color-500);
  transition: 0.25s opacity;
  z-index: 2;
  padding: 1ex;
  border-radius: 3px;
  max-width: 400px;
}

#tooltip_before {
  border-color: var(--color-500) transparent transparent transparent;
  border-width: 1ex 1ex 0 1ex;
  border-style: solid;
  content: " ";
  position: absolute;
  left: calc(50% - .5em);
  bottom: -.9ex;
}

#toast {
  position: fixed;
  background-color: #424242;
  color: rgba(255, 255, 255, .9);
  padding: 1em 1.5em 1em .75em;
  min-width: 350px;
  max-width: calc(100% - 2em);
  left: 1em;
  bottom: 1em;
  z-index: 4;
  transition: .5s bottom;
}

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

  100% {
    opacity: 1;
  }
}

#toast.on {
  animation-name: snackbar_on;
  animation-duration: .3s;
}

@keyframes snackbar_off {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#toast.off {
  opacity: 0;
  visibility: none;
  animation-name: snackbar_off;
  animation-duration: .3s;
}

#toast>i {
  margin-right: .5em;
}

.shadow {
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
  border-radius: 3px
}

.material-icons {
  font-size: 20px !important;
  vertical-align: text-bottom;
}

.article a:before,
.comment a:before,
input[type="radio"]+label:before,
input[type="checkbox"]+label:before {
  vertical-align: text-bottom;
  font-family: 'icon';
  font-weight: normal;
  font-style: normal;
  font-size: 1.43em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.article figure.fileblock a:before {
  content: none !important;
}

/* category */
.ib {
  cursor: pointer;
}

/* 카테고리 - 이미지 버튼 */
.branch3 {
  cursor: pointer;
}

/* 카테고리 - 트리 셀 */
.c_cnt {
  color: rgba(0, 0, 0, .25);
  margin-left: .5em;
}

/* 카테고리 - 카테고리 옆 개수 스타일 */
.cal_month {
  padding-bottom: 5px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

/* 달력 월 표시 */
.cal_week1 {}

/* 달력 요일 표시("th 영역") */
.cal_week2 {
  color: var(--color-500);
}

/* 달력 일요일 표시("th 영역") */
.cal_week {}

/* 달력 Week("tr 영역")  */
.cal_current_week {
  background-color: #eee;
}

.cal_day {
  font-size: 10px;
  text-align: center;
}

/* 달력 Day("td 영역") */
.cal_day_sunday,
.cal_day_sunday a {
  color: var(--color-500);
}

/* 달력 Day, 일요일 ("td 영역")  */
.cal_day1 {}

/* 달력 지난 달 날짜 표시("td")   */
.cal_day2 {}

/* 달력 다음 달 날짜 표시("td")   */
.cal_day3 {}

/* 달력 이번 달 날짜 표시("td") */
.cal_day4 {
  color: var(--color-500);
  font-weight: bold;
}

/* 달력 오늘 날짜 표시("td") */
a.cal_click:link,
a.cal_click:visited {
  font-weight: bold;
}

a.cal_click:hover {
  color: var(--color-500);
}

/* 달력 글쓴 날 링크 스타일 */
.rp_general {}

/* 종류별 코멘트 [##_rp_rep_class_##] */
.rp_admin {}

.rp_secret {
  color: var(--color-500);
}

.guest_general {}

/* 종류별 코멘트 [##_guest_rep_class_##] */
.guest_admin {}

.guest_secret {
  color: var(--color-500);
}

.hiddenComment {
  color: var(--color-500);
  font-weight: normal;
}

/* 비밀 댓글 ("로그아웃시 비밀글 표현") */
/* ------------------------------------------------------------------- */
/* blog layout */
/* ------------------------------------------------------------------- */
#container {}

#content {
  max-width: 800px;
  min-height: 600px;
  margin: 144px auto 48px;
  padding: 1em;
  overflow: visible;
  line-height: 1.75;
  /*z-index:1;*/
}

.clear {
  clear: both;
  display: block;
  width: 100%;
  height: 1px;
}

/* ------------------------------------------------------------------- */
/* ***** Header ***** */
/* ------------------------------------------------------------------- */
header {
  height: 144px;
  top: -144px;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 2;
  transition: .5s top, .5s box-shadow;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

header.on {
  top: 0;
}

header.flat {
  box-shadow: none;
  position: relative;
  margin: 144px 0 -288px;
  transition: 0s, .5s box-shadow;
}

header.flat.shadow {
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
}

header #line0 {
  height: calc(100% - 48px);
  display: flex;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .14), 0 3px 3px -2px rgba(0, 0, 0, .12), 0 1px 8px 0 rgba(0, 0, 0, .2);
  background: var(--color-700);
  z-index: 2;
  position: relative;
}

header #line1 {
  background: var(--color-500);
  color: rgba(255, 255, 255, .75);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 48px;
}

.blog_menu {
  margin: 0;
  float: left;
  list-style-type: none;
  padding-left: 1em;
  color: rgba(255, 255, 255, .75);
}

.blog_menu li {
  display: inline-block;
}

.blog_menu li:hover,
#tt-body-page .tab_title,
#tt-body-notice .tab_notice,
#tt-body-tag .tab_taglog,
#tt-body-media .tab_medialog,
#tt-body-location .tab_localog,
#tt-body-guestbook .tab_guestbook {}

.blog_menu li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  margin: 0;
  cursor: pointer;
  transition: .25s;
}

.blog_menu li a i {
  margin-right: .25em;
}

.blog_menu li a .ink_bar {
  transition: .25s;
  position: absolute;
  background: #fff;
  height: 3px;
  bottom: 0;
  left: 50%;
  width: 0;
  margin: auto;
}

.blog_menu li:hover a,
.blog_menu li.on a,
#tt-body-page .tab_title a,
#tt-body-notice .tab_notice a,
#tt-body-tag .tab_taglog a,
#tt-body-media .tab_medialog a,
#tt-body-location .tab_localog a,
#tt-body-guestbook .tab_guestbook a {}

.blog_menu li:hover a .ink_bar,
.blog_menu li.on a .ink_bar,
#tt-body-page .tab_title a .ink_bar,
#tt-body-notice .tab_notice a .ink_bar,
#tt-body-tag .tab_taglog a .ink_bar,
#tt-body-media .tab_medialog a .ink_bar,
#tt-body-location .tab_localog a .ink_bar,
#tt-body-guestbook .tab_guestbook a .ink_bar {
  left: 0;
  width: 100%;
  color: rgba(255, 255, 255, .95);
  box-shadow: none;
}

#float_menu {
  position: fixed;
  top: 1.25em;
  left: 1.25em;
  z-index: 3;
  color: rgba(255, 255, 255, .95);
  transition: .5s;
}

#float_menu>i {
  margin: 0em;
  padding: .5em;
  font-size: 24px !important;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

#flag {
  display: none;
  width: 48px;
  height: 75px;
  background-size: 48px;
}

.memorial_1 {
  background: url('images/icon_memorial_1.png') center center no-repeat;
}

.memorial_2 {
  background: url('images/icon_memorial_2.png') center center no-repeat;
}

#search {
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

#search:hover,
#search:focus {
  box-shadow: none;
  background: transparent;
}

.ad_header {
  clear: both;
  text-align: center;
  border-top: 0 solid #000;
}

.ad_article_top:not(:empty) {
  border: 0px solid silver;
  float: right;
  width: 336px;
  margin: 0 0 1em 1em;
}

.ad_article_top_m {
  display: none;
  text-align: center;
}

.ad_article_middle {
  display: none;
  text-align: center;
  margin: 1.25em 0;
  width: 100%;
  clear: both;
}

table tr .ad_article_middle {
  text-align: center;
  margin: 1em 0 1.25em;
  width: 100%;
  clear: both;
}

.ad_article_middle.desktop {
  display: block;
}

.ad_article_bottom {
  text-align: center;
  margin-top: 30px;
}

.ad_sidebar {
  position: absolute;
  margin-right: 2em;
  right: 100%;
}

/* ------------------------------------------------------------------- */
/* ***** Sidebar ***** */
/* ------------------------------------------------------------------- */
nav {
  position: fixed;
  z-index: 1;
  top: -1280px;
  height: 1024px;
  margin-top: 144px;
  left: 0;
  width: 100%;
  max-width: 1280px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
  transition: .5s;
  overflow: hidden;
}

nav.on {
  top: 0;
}

nav>.items {
  float: left;
  box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.12) inset;
}

nav>.items>.title {
  padding: 1em;
  width: calc(100% - 2em);
  background: #fafafa;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12) inset;
  position: relative;
}

nav ul.tt_category {}

nav a.link_tit {}

nav>div {
  width: 25%;
}

nav h3 {
  margin: 0;
}

nav h3 a {
  display: block;
  cursor: pointer;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  padding-left: 0;
}

nav li {
  list-style: none;
}

nav li a {
  color: rgba(0, 0, 0, 0.54);
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: -.5em 0;
  padding: .75em 1em;
  position: relative;
  transition: 0s;
}

nav li a:hover {
  background: rgba(158, 158, 158, 0.2);
  box-shadow: none;
}

nav>.items>.title>i,
nav li a i {
  margin-right: .5em;
}

nav li a>span {
  position: absolute;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}

nav li a.link_sub_item {
  padding-left: 3.5em;
}

nav .cnt {
  color: var(--color-500);
  margin-left: .5em;
}

nav .title {
  position: static;
  width: calc(70% - 2em);
}

nav .name {
  color: #999;
  right: 4em;
  width: calc(30% - 2em);
}

nav .date {
  color: #999;
  right: 1ex;
}

nav .blogImage img {
  width: 200px;
}

.blogDesc {
  line-height: 150%;
}

.userID {
  font-weight: bold;
}

/* Categories */
#category ul,
#category li {}

#category li a {
  display: block;
}

#category .selected li {}

#category .selected a {}

#category,
#calendar {}

.blogImage {}

#archive,
#link {
  font-size: 11px;
}

/* ------------------------------------------------------------------- */
/* ***** content ***** */
/* ------------------------------------------------------------------- */
#content {}

.searchList ol,
.searchRplist ol {
  list-style: none;
  margin: 0;
  padding: 0px;
}

.searchList li a,
.searchRplist li a {
  line-height: 2;
  display: block;
  height: 2em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.searchList .date,
.searchRplist .date {
  float: right;
  color: #999;
}

.searchList .cnt {
  color: var(--color-500);
}

.searchRplist .name {}

.searchList .tblist {
  margin-bottom: 8px;
}

.searchList .tblist a {
  color: #999;
}

.localog a {
  font-weight: bold;
}

.keylog ul,
.taglog ul {
  margin: 0;
  padding: 0px;
  text-align: center;
}

.keylog li,
.taglog li {
  display: inline-block;
  width: 100px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  margin: 1ex;
}

.taglog li .cloud1 {
  color: #fff;
  background: var(--color-700);
}

.taglog li .cloud2 {
  color: #fff;
  background: var(--color-500);
}

.taglog li .cloud3 {
  color: #fff;
  background: #E57373;
}

.taglog li .cloud4 {
  color: #000;
  background: #FFCDD2;
}

.taglog li .cloud5 {
  color: gray;
}

.taglog li a {
  display: block;
  padding: 1ex;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.taglog li a:hover {
  background: var(--color-500);
  color: white;
  outline-color: var(--color-500);
}

.guestWrite input {
  width: 100px;
  margin-right: 5px;
}

.guestWrite textarea {
  width: calc(100% - 2em);
  padding: 1em;
}

.guestWrite .homepage {
  width: 200px;
}

.guestWrite .submit {
  width: 100%;
  padding: 1em;
  text-transform: uppercase;
}

.guestWrite .checkbox {
  width: auto;
}

.guestList {
  border-top: 1px dashed silver;
}

.guestList ol {
  list-style: none;
  padding: 0
}

.guestList ul {
  list-style: none;
  text-align: right;
}

.guestList li {
  margin: 1em 0;
}

.guestList .name {
  font-weight: bold;
}

.guestList .date,
.guestList .control,
.guestList .control a {
  color: gray;
  display: inline-block;
  line-height: 1;
}

.guestList .control i {
  width: 16px;
  height: 16px;
  margin: 0 -8px;
  transition: .25s;
  color: rgba(0, 0, 0, 0);
}

.guestList div[class*="guest_"]:hover i {
  width: 16px;
  height: 16px;
  margin: 0;
  color: gray;
}

.guestList div[class~="guest_admin"]:hover i {
  color: gray;
}

.guestList ol li ul li p {
  text-align: left;
}

.guestList .tt_more_preview_comments_wrap {
  transition: .5s;
  color: #fff;
  background: var(--color-500);
  padding: 2px 5px;
  border-radius: 3px;
  margin: 2em 3em;
  padding: 1em;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.guestList .tt_more_preview_comments_wrap:hover {
  background: var(--color-700);
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.25);
}

.guestList li div[class*="guest_"] {
  position: relative;
  padding: 0px 1em 1ex;
  margin: .5em 3.5em;
  border: 0px solid silver;
  display: inline-block;
  clear: both;
  border-radius: 3px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.guestList .guest_admin {
  background: #424242;
  color: #fff;
}

.guestList .guest_admin .name a {
  color: #fff;
}

.guestList .guest_admin .name a:hover {
  color: #424242;
}

.guestList .guest_admin .date,
.guestList .guest_admin .control,
.guestList .guest_admin .control a {
  color: gray;
}

.guestList .guest_general,
.guestList .guest_secret {
  background: #eee;
}

.guestList ol div[class*="guest_"]:before {
  position: absolute;
  content: " ";
  bottom: 1em;
  right: 100%;
  border-width: 1ex 1.7ex 1ex 0;
  border-style: solid;
  border-color: transparent #eee transparent transparent;
}

.guestList ol div[class*="guest_"]:after {
  position: absolute;
  content: " ";
  bottom: .5em;
  right: calc(100% + 16px);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(.5turn);
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjMDAwIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #eee;
}

.guestList ol div[class~="guest_admin"]:before {
  border-color: transparent #424242 transparent transparent;
}

.guestList ol div[class~="guest_admin"]:after {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #424242;
}

.guestList ul div[class*="guest_"]:before {
  left: 100%;
  border-width: 1ex 0 1ex 1.7ex;
  border-color: transparent transparent transparent #eee;
}

.guestList ul div[class*="guest_"]:after {
  left: 100%;
  left: calc(100% + 18px);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(0);
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjMDAwIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #eee;
}

.guestList ul div[class~="guest_admin"]:before {
  border-color: transparent transparent transparent #424242;
}

.guestList ul div[class~="guest_admin"]:after {
  content: " ";
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #424242;
}

.guestList ul div[class~="guest_secret"]:after,
.guestList ol div[class~="guest_secret"]:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZjQ0MzM2IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTkiIHI9IjIiLz4KICAgIDxwYXRoIGQ9Ik0xMCAzaDR2MTJoLTR6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+Cjwvc3ZnPg==);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(0);
}

.guestList ol div[class*="guest_"] img {
  position: absolute;
  background: #fff;
  z-index: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  right: calc(100% + 16px);
  top: calc(100% - 39px);
}

.guestList ul div[class*="guest_"] img {
  left: calc(100% + 18px);
}

.guestList ol div[class~="guest_general"] img {
  border: 1px solid #eee;
}

.guestList ol div[class~="guest_admin"] img {
  border: 1px solid #424242;
}

/* ------------------------------------------------------------------- */
/* entry */
/* ------------------------------------------------------------------- */
.entryNotice h1,
.entryProtected h1,
.entry h1 {}

#content .titleWrap {
  display: none;
}

/* js로 옮기기 전에 안보이게 / <header> 로 옮기면 보이겠지? */
.titleWrap {
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  text-align: center;
  transition: .5s top;
}

.titleWrap .category a,
.titleWrap .date,
.titleWrap .admin,
.titleWrap .admin a {
  color: rgba(255, 255, 255, .95);
  display: inline-block;
}

.titleWrap span {
  position: relative;
  opacity: 0;
  top: -1em;
  transition: .5s;
}

.titleWrap h1 {
  color: rgba(255, 255, 255, .95);
  font-size: 24px;
  margin: 27px auto 4px;
}

.titleWrap h1 a {
  color: rgba(255, 255, 255, .95);
  margin-bottom: .25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: .25em .5em;
  margin: -.25em -.5em;
}

.titleWrap span a {
  padding: .5em .5em;
  margin: -.5em -.5em;
}

.titleWrap h1 a:hover,
.titleWrap a:hover {
  color: #212121;
}

/* 신고 버튼을 없에 봅시다 */
.titleWrap .date a,
.comment .date a,
.daum_like_wrapper+div,
.article a[href^="/toolbar/popup/abuseReport/"] {
  display: none;
}

.warning {
  margin-bottom: 10px;
  padding-left: 45px;
}

.article {
  text-align: justify;
  position: relative;
}

.article a:link,
.article a:visited,
.article a:active {
  color: var(--color-500);
}

.article a:hover {}

.article a:before {
  /*font-size: 1.43em!important;*/
}

.article a[href^="#"]:before {
  content: "\f293";
}

.article a:not([href*="blog.jinh.kr"]):not([href*="jinh.tistory.com"]):not([href^="#"]):not([href^="/"]):before,
.comment a:not([href*="blog.jinh.kr"]):not([href*="jinh.tistory.com"]):not([href^="#"]):not([href^="/"]):before,
.article a:not([href*="blog.jinh.kr"]):not([href^="#"]):not([href^="/"]):before,
.comment a:not([href*="blog.jinh.kr"]):not([href^="#"]):not([href^="/"]):before {
  content: "\f35b";
}

.article hr {
  border: none;
  overflow: visible;
}

.article h2:not(:first-child):not(:first-of-type),
.article hr {
  margin-top: 3.5em;
  padding-top: 3em;
  border-top: 2px dashed rgba(0, 0, 0, .4);
  position: relative;
  clear: both;
}

.article h2:not(:first-child):not(:first-of-type):before,
.article hr:before {
  content: '( 절 취 선 )';
  position: absolute;
  top: -.9em;
  font-size: 14px;
  color: rgba(0, 0, 0, .4);
  background: #fff;
  left: calc(50% - 24px);
  transition: .25s;
  font-weight: normal;
}

.article h2:not(:first-child):not(:first-of-type):after,
.article hr:after {
  content: '\f226';
  position: absolute;
  top: calc(-.9em + 7px);
  font: 20px 'icon';
  color: rgba(0, 0, 0, .4);
  left: calc(50% - 46px);
  background: #fff;
  transition: 1s;
}

.article h2:not(:first-child):not(:first-of-type):active,
.article hr:active {}

.article h2:not(:first-child):not(:first-of-type):active:before,
.article hr:active:before {
  opacity: 0;
}

.article h2:not(:first-child):not(:first-of-type):active:after,
.article hr:active:after {
  left: calc(50% + 40px);
  color: #9E9E9E;
}

.article h3:not(:first-child) {
  margin-top: 3.5em;
}

.article blockquote {
  margin: 1em 3.5em;
  padding: 0 1em;
  display: inline-block;
  clear: both;
  position: relative;
  margin-top: 1em;
  border-radius: 3px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.article blockquote>.q_arrow {
  position: absolute;
  content: " ";
  bottom: 17px;
  right: 100%;
  border-color: transparent;
  border-style: solid;
}

.article blockquote>.q_contact {
  position: absolute;
  border-radius: 50%;
  bottom: 9px;
  padding: 1px 0 0 1px;
}

.article blockquote>.q_contact i {
  font-size: 30px !important;
}

.article blockquote:not(.otherquote) {
  background: #eee;
  float: left;
}

.article blockquote:not(.otherquote)>.q_arrow {
  right: 100%;
  border-right-color: #eee;
  border-width: 1ex 1.7ex 1ex 0;
}

.article blockquote:not(.otherquote)>.q_contact {
  right: calc(100% + 18px);
  background-color: #eee;
  box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(.5turn)
}

.article blockquote[class~="otherquote"] {
  background: var(--color-500);
  float: right;
  color: rgba(255, 255, 255, .9) !important;
}

.article blockquote[class~="otherquote"]>.q_arrow {
  left: 100%;
  border-left-color: var(--color-500);
  border-width: 1ex 0 1ex 1.7ex;
}

.article blockquote[class~="otherquote"]>.q_contact {
  left: calc(100% + 18px);
  background-color: var(--color-500);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.article blockquote[class~="otherquote"] a {
  color: rgba(255, 255, 255, 1) !important;
}

.article blockquote[class~="otherquote"] a:hover {
  color: #424242 !important;
  text-decoration: none;
}

.article blockquote.green,
.article blockquote.green>.q_contact {
  background: #8BC34A;
  color: #000;
}

.article blockquote.green>.q_arrow {
  border-color: #fff #8BC34A #fff;
}

.article blockquote.blue,
.article blockquote.blue>.q_contactr {
  background: #03A9F4;
  color: #000;
}

.article blockquote.blue>.q_arrow {
  border-color: #fff #03A9F4 #fff;
}

.article blockquote.amber,
.article blockquote.amber>.q_contact {
  background: #FFC107;
  color: #000;
}

.article blockquote.amber>.q_arrow {
  border-color: #fff #FFC107 #fff;
}

.article blockquote.red,
.article blockquote.red>.q_contact {
  background: #FF5722;
  color: #fff;
}

.article blockquote.red>.q_arrow {
  border-color: #fff #FF5722 #fff;
  color: #fff;
}

.article blockquote .imageblock {
  max-width: 674px !important;
}

/* ------------------------------------------------------------------- */
/* article img */
/* ------------------------------------------------------------------- */
.article .imageblock img {
  transition: .25s;
  border-radius: 3px;
  max-width: 100%;
}

.article .imageblock {
  display: block !important;
  margin: auto;
  padding: 0;
  border: none;
  vertical-align: top;
}

/* 그림 */
.article table.img {
  justify-content: center;
  border-spacing: 0;
  width: 100%;
  /* for IE */
}

/* 2, 3장의 사진을 넣었을 때 */
.article table.img td {
  padding: 0 .5em;
  display: block;
  text-align: center;
}

.article table.img td:first-child {
  padding-left: 0;
  text-align: right;
}

.article table.img td:last-child {
  padding-right: 0;
  text-align: left;
}

.article table.img td>.imageblock {
  width: inherit !important;
}

.article .flat .imageblock img,
.article .flat .imageblock img:hover {
  box-shadow: none;
}

/* ------------------------------------------------------------------- */
/* code prettyprint */
/* ------------------------------------------------------------------- */
code,
.prettyprint {
  font-family: 'Share Tech Mono', monospace;
}

/* ------------------------------------------------------------------- */
/* censored 삐---- */
/* ------------------------------------------------------------------- */
.article .censored {
  position: relative;
  white-space: nowrap;
}

.article .censored:before {
  content: attr(data-censored);
  background-color: #FF4;
  border: 1px solid #CC0;
  border-image: initial;
  color: #882;
  padding: 1ex;
  margin: -1ex;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  transition: .25s;
  transform: rotate(-.0075turn);
  position: absolute;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  min-height: 1em;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.article .censored:hover:before {
  border-color: rgba(204, 204, 0, .25);
  background-color: rgba(255, 255, 68, .25);
  box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.25);
  color: rgba(136, 136, 34, 0.25);
}

.article iframe {
  max-width: 100%;
}

/* spoiler */
.article .spoiler {
  color: transparent !important;
  background: #000;
  cursor: not-allowed;
}

/*.article .spoiler::selection	{ color:transparent; background:var(--color-500);}*/
/* title */
.article [data-title] {
  border-bottom: 1px dashed #808080;
}

.article [data-title]:hover {
  border-bottom-color: transparent;
}

.article a[data-title] {
  border: none;
}

/* more & less */
.moreless_fold,
div[data-ke-type="moreLess"] a {
  color: rgba(255, 255, 255, 0.75);
}

.moreless_top {
  color: rgba(255, 255, 255, 0.75);
}

.moreless_body {}

.moreless_bottom {
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

.moreless_fold span,
.moreless_top span,
.moreless_bottom span {
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
  padding: 1ex;
  border-radius: 3px;
  transition: .25s;
  background: #9E9E9E;
}

.moreless_fold span:hover,
.moreless_top span:hover,
.moreless_bottom span:hover {
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 11px rgba(0, 0, 0, .25);
  background: #E0E0E0;
}

.moreless_fold span:before,
div[data-ke-type="moreLess"] a:before {
  font-family: 'icon';
  content: "\f4dd" !important;
}

.moreless_top span:before {
  font-family: 'icon';
  content: "\f4dc";
}

.moreless_bottom span:after,
div[data-ke-type="moreLess"].open a:before {
  font-family: 'icon';
  content: "\f4dc" !important;
}

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

  100% {
    opacity: 1;
  }
}

.moreless_top+.moreless_content {
  animation-name: moreless_show;
  animation-duration: .5s;
}

.tagTrail {
  clear: both;
  margin-top: 0px;
  padding: 0px 5px 0px 0px;
}

.tagText {
  font-weight: bold;
}

.tagText a {
  display: inline-block;
}

.tagTrail>[rel]:before {
  content: '#';
}

.actionTrail {
  clear: both;
}

.actionTrail .cnt {
  color: var(--color-500);
  font-weight: bold;
}

.trackback {
  border-top: 1px dashed silver;
  overflow: hidden;
}

.trackback a {}

.trackback h3,
.trackback h4 {}

.trackback ol {
  padding: 0
}

.trackback li {}

.trackback .date {
  color: gray;
  font-size: 11px;
}

.trackback p {
  color: gray;
}

.trackback .delete {
  color: gray;
  font-size: 11px;
}

.trackback .delete:hover {
  color: #f00;
}

.comment {
  border-top: 1px dashed silver;
}

.comment ol {
  list-style: none;
  padding: 0
}

.comment ul {
  list-style: none;
  text-align: right;
  padding: 0;
}

.comment li {
  margin: 1em 0;
}

.comment .name {
  font-weight: bold;
}

.comment .date,
.comment .control,
.comment .control a {
  color: gray;
  display: inline-block;
}

.comment .control i {
  margin: 0 -12px;
  transition: .25s;
  color: rgba(0, 0, 0, 0);
}

.comment div[class*="rp_"]:hover i {
  margin: 0;
  color: gray;
}

.comment div[class~="rp_admin"]:hover i {
  color: gray;
}

.comment ol li ul li p {
  text-align: left;
}

.comment .tt_more_preview_comments_wrap {
  transition: .5s;
  color: #fff;
  background: var(--color-500);
  padding: 2px 5px;
  border-radius: 3px;
  margin: 2em 3em;
  padding: 1em;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.comment .tt_more_preview_comments_wrap:hover {
  background: var(--color-700);
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.25);
}

.comment li div[class*="rp_"] {
  position: relative;
  padding: 0px 1em 1ex;
  border: 0px solid silver;
  display: inline-block;
  clear: both;
  margin: .5em 3.5em;
  border-radius: 3px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.comment .rp_admin {
  background: #424242;
  color: rgba(255, 255, 255, 0.95);
}

.comment .rp_admin .name a {
  color: #fff;
}

.comment .rp_admin .name a:hover {
  color: #212121;
}

.comment .rp_admin .date,
.comment .rp_admin .control,
.comment .rp_admin .control a {
  color: rgba(255, 255, 255, 0.75);
}

.comment .rp_general,
.comment .rp_secret {
  background: #eee;
}

.comment ol div[class*="rp_"]:before {
  position: absolute;
  content: " ";
  bottom: 1em;
  right: 100%;
  border-width: 1ex 1.7ex 1ex 0;
  border-style: solid;
  border-color: transparent #eee transparent transparent;
}

.comment ol div[class*="rp_"]:after {
  position: absolute;
  content: " ";
  bottom: .5em;
  right: calc(100% + 18px);
  width: 32px;
  height: 32px;
  border-radius: 15px;
  box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(.5turn);
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjMDAwIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #eee;
}

.comment ol div[class~="rp_admin"]:before {
  border-color: transparent #424242 transparent transparent;
}

.comment ol div[class~="rp_admin"]:after {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #424242;
}

.comment ul div[class*="rp_"]:before {
  left: 100%;
  border-width: 1ex 0 1ex 1.7ex;
  border-color: transparent transparent transparent #eee;
}

.comment ul div[class*="rp_"]:after {
  left: 100%;
  left: calc(100% + 18px);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(0);
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjMDAwIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #eee;
}

.comment ul div[class~="rp_admin"]:before {
  border-color: transparent transparent transparent #424242;
}

.comment ul div[class~="rp_admin"]:after {
  content: " ";
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNNiAxN2gzbDItNHYtNmgtNnY2aDN6bTggMGgzbDItNHYtNmgtNnY2aDN6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0aC0yNHoiIGZpbGw9Im5vbmUiLz4KPC9zdmc+Cg==) center center no-repeat;
  background-color: #424242;
}

.comment ul div[class~="rp_secret"]:after,
.comment ol div[class~="rp_secret"]:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZjQ0MzM2IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTkiIHI9IjIiLz4KICAgIDxwYXRoIGQ9Ik0xMCAzaDR2MTJoLTR6Ii8+CiAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+Cjwvc3ZnPg==);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(0);
}

.comment ol div[class*="rp_"] img {
  position: absolute;
  background: #fff;
  z-index: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  right: calc(100% + 18px);
  top: calc(100% - 39px);
}

.comment ul div[class*="rp_"] img {
  left: calc(100% + 18px);
}

.comment ol div[class~="rp_general"] img {
  border: 1px solid #eee;
}

.comment ol div[class~="rp_admin"] img {
  border: 1px solid #424242;
}

.commentWrite>p:first-child {}

.commentWrite input {
  width: 7em;
  margin: 1ex 1ex 1ex 0;
}

.commentWrite textarea {
  width: calc(100% + -2em);
}

.commentWrite .homepage {
  width: 13em;
}

.commentWrite .submit {
  width: 100%;
  padding: 1em;
  text-transform: uppercase;
}

.commentWrite .checkbox {
  width: auto;
  position: absolute;
  margin-top: 2ex;
}

.comment .tistoryProfileLayerTrigger {
  display: none;
}

/* ------------------------------------------------------------------- */
/* ***** context-menu ***** */
/* ------------------------------------------------------------------- */
#contextmenu,
.contextmenu {
  z-index: 1000;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  cursor: default;
  width: 300px;
  color: rgba(0, 0, 0, .5);
  background-color: #fff;
  border: 1px solid #bbb;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
  transition: .25s;
  transition-property: opacity, transform, margin, visibility;
  top: 50%;
}

#contextmenu {
  font-size: 12px;
  font-family: none;
  top: 2em;
  left: -302px;
  transform: perspective(500px) rotateX(15deg);
  margin-top: -2em;
}

#contextmenu.on {
  transform: none;
  transform-origin: 50% 100%;
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}

.contextmenu {
  position: absolute;
  width: 300px;
  white-space: nowrap;
  top: -7px;
  left: calc(100% - .5em);
}

#contextmenu>div,
.contextmenu>div {
  padding: .5em 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#contextmenu>div:last-child,
.contextmenu>div:last-child {
  border-bottom: none;
}

#contextmenu>div>*,
.contextmenu>div>* {
  padding: .5em 2em .5em 3em;
  margin: 0;
  text-decoration: none;
}

#contextmenu>div>*:not(.context_disable),
.contextmenu>div>*:not(.context_disable) {
  color: #000;
  position: relative;
}

#contextmenu>div>*:not(.context_disable):hover,
.contextmenu>div>*:not(.context_disable):hover {
  background: rgba(158, 158, 158, 0.2);
}

#contextmenu>div>*:not(.context_disable):hover>.contextmenu,
.contextmenu:hover {
  opacity: 1;
  visibility: visible;
}

#contextmenu>div>*:not(.context_disable):not(.context_able):after {
  position: absolute;
  font: 16px 'icon';
  content: "\f383";
  right: 1em;
}

#contextmenu svg,
#contextmenu [class^='icon'] {
  position: absolute;
  margin: 0;
  font-size: 16px;
  left: .7em;
  color: rgba(0, 0, 0, .5);
  fill: rgba(0, 0, 0, .5);
}

#contextmenu>div>*:not(.context_disable):hover>svg,
.contextmenu>div>*:not(.context_disable):hover>svg {}

#contextmenu [data-context]:after,
#contextmenu .context_disable[data-context]:hover:after {
  content: attr(data-context);
  color: rgba(0, 0, 0, .5);
  float: right;
}

#contextmenu [data-context]:hover:after {
  color: #fff;
}

.context_ddabong {
  border: none;
  margin-top: -2px;
  overflow: hidden;
  width: 90px;
  height: 20px;
  position: absolute;
  right: 1em;
}

/* ------------------------------------------------------------------- */
/* ***** footer ***** */
/* ------------------------------------------------------------------- */
footer {
  width: 100%;
  background: #212121;
  color: rgba(255, 255, 255, .75);
  position: fixed;
  bottom: -48px;
  height: 48px;
  transition: .5s bottom, .5s box-shadow;
  box-shadow: 0px -2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  cursor: default;
  z-index: 2;
  line-height: 1;
  background: var(--color-500);
}

footer.on {
  bottom: 0;
}

footer.flat {
  box-shadow: none;
  position: inherit;
  margin-top: -48px;
}

.paging {
  float: left;
  margin-left: 2em;
  height: 48px;
  overflow: hidden;
}

.paging .numbox {
  display: flex;
  height: 48px;
}

.paging a,
.paging .interword {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, .75);
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paging a:hover {
  background: none;
  box-shadow: none;
  color: rgba(255, 255, 255, .95);
}

.paging .interword,
.paging a:not(.num) {
  width: inherit;
}

.paging a.num {
  width: 48px;
}

.paging a.no-more-prev,
.paging a.no-more-next {
  display: none;
}

.paging a.num span {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paging a.num span.selected {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) inset;
  border-radius: 50%;
  color: #212121;
  background: #fff;
}

.copyright {
  float: right;
  text-align: right;
  margin: 16px 20px;
  line-height: 1;
}

.copyright a {
  color: #fff;
}

/* ------------------------------------------------------------------- */
/* ***** coverpage ***** */
/* ------------------------------------------------------------------- */
#ttMenubarInnerWrap {
  display: none;
}

.coverpage .img_preview {
  float: right;
}

.coverpage .img_preview img {
  width: 40px;
  height: 40px;
  margin: 0 0 5px 5px;
  border-top: 2px solid #000;
}

.coverpage .content_box h2 {
  padding: 5px 0 0 0;
  border-top: 2px solid #000;
}

.coverpage .post_info {
  margin-bottom: 15px;
  color: #999;
  font-size: 10px;
}

.coverpage .post_info .category a {
  color: #999;
  font-size: 10px;
}

.coverpage .post_tags {
  clear: both;
  margin: 10px 0 30px 0;
  color: #999;
  font-size: 12px;
}

.coverpage .post_tags a {
  color: #999;
  font-size: 12px;
}

.another_category {
  display: none;
  box-shadow: 0 -3px 4px 0 rgba(0, 0, 0, .14), 0 -3px 3px -2px rgba(0, 0, 0, .12), 0 -1px 8px 0 rgba(0, 0, 0, .2)
}

/* ------------------------------------------------------------------- */
/* ***** mobile ***** */
/* ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  #side_menu li span {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .blog_menu li:not(:last-child) span:nth-child(2) {
    display: none;
  }
}

/* ------------------------------------------------------------------- */
/* ***** mobile ***** */
/* ------------------------------------------------------------------- */
/*mobile css*/
@media handheld,
only screen and (max-device-width: 480px),
only screen and (max-device-width: 320px),
screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }

  header {
    height: 96px;
  }

  header.flat {
    margin: 144px 0px -240px;
  }

  header #line0 {
    height: 48px;
  }

  /*header #line1 { display: none; }*/
  .titleWrap {
    overflow: hidden;
    height: 48px;
  }

  .titleWrap>h1 {
    margin: 14px 0;
    font-size: 20px;
    line-height: 1;
    width: calc(100% - 3.5em);
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 2.5em;
  }

  .article {}

  .blog_menu .tab_notice,
  .blog_menu .tab_taglog,
  .blog_menu .tab_rss,
  .copyright {
    display: none;
  }

  header #float_menu {
    position: absolute;
    top: 0;
    left: 0;
  }

  nav {
    margin-top: 96px;
  }

  nav #recentComment,
  nav #recentTrackback {
    display: none;
  }

  nav>div.items {
    width: 50%;
  }

  .material-icons {
    font-size: 24px !important;
  }

  #contextmenu {
    top: 0 !important;
    left: -302px !important;
    height: 100%;
    overflow-y: auto;
    line-height: 2;
    transform: none;
    visibility: visible;
    opacity: 1;
    transition-property: left;
    font-size: 16px;
    font-family: 'Noto Sans KR', sans-serif;
    box-shadow: none;
    margin-top: 0;
  }

  #contextmenu.on {
    left: 0 !important;
    top: 0 !important;
    max-width: calc(100% - 5em);
    box-shadow: 2px 0 5px rgba(0, 0, 0, .25);
  }

  .contextmenu {
    position: relative !important;
    width: calc(100% + 5em) !important;
    white-space: nowrap;
    top: 0 !important;
    left: -3em !important;
    height: 0 !important;
    border: none;
    background-color: rgba(0, 0, 0, .05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25) inset;
  }

  .contextmenu.on {
    visibility: visible;
    opacity: 1;
    height: inherit !important;
    margin-top: 1em;
    max-width: calc(100% + 5em);
  }

  #contextmenu>button {
    display: block !important;
    float: right;
    margin: 1em;
    padding: 1ex 2em;
  }

  #contextmenu svg,
  #contextmenu [class^='icon'] {
    line-height: 1.5;
    font-size: 24px;
    left: .5em;
  }

  #contextmenu svg {
    top: .5em;
    width: 22px !important;
    height: 24px !important;
  }

  #contextmenu>div>*:not(.context_disable):hover {
    background-color: #fff;
    color: #000 !important;
  }

  #contextmenu>div>*:not(.context_disable):hover>i {
    background-color: #fff;
    color: rgba(0, 0, 0, .5) !important;
  }

  #contextmenu>div>*:not(.context_disable):hover>.contextmenu {
    opacity: 0;
    visibility: hidden;
  }

  #contextmenu>div>*:not(.context_disable):hover>.contextmenu.on {
    opacity: 1;
    visibility: visible;
  }

  #contextmenu>div>*:not(.context_disable):not(.context_able):after {
    content: "\f1ed";
    top: 1em;
    transition: .25s;
  }

  #contextmenu [data-context]:hover:after {
    color: rgba(0, 0, 0, .5);
  }

  #contextmenu>div:first-child {
    background: #eee;
  }

  .context_ddabong {
    margin-top: .2em;
  }

  #contextmenu::-webkit-scrollbar {
    display: none
  }

  #context_bg {
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: block;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0)
  }

  #context_bg.on {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, .25);
  }

  #contextmenu #search {
    font-size: 14px;
  }

  .ad_article_top {
    float: none;
    width: 100%;
    text-align: right;
    margin: 0;
    display: none;
  }

  .ad_article_top_m {
    display: block;
  }

  .ad_article_middle.desktop {
    display: none;
  }

  .ad_article_middle.mobile {
    display: block;
  }

  #content {
    margin: 96px auto 0;
  }

  .article blockquote {
    margin: 1em 0;
  }

  .article blockquote>.q_contact {
    display: none;
  }

  .article .imageblock {
    width: initial !important;
  }

  .article .imageblock img {
    width: 100% !important;
    height: initial !important;
  }

  .article .imageblock [class*="cap"] {
    width: initial !important;
  }

  .guestList li div[class*="guest_"],
  .comment li div[class*="rp_"] {
    margin: .5em 0;
  }

  .guestList ol div:after,
  .comment ol div:after {
    display: none;
  }

  .guestList ol div[class*="guest_"] img,
  .comment ol div[class*="rp_"] img {
    display: none;
  }

  #sns_padding {
    position: fixed;
    right: 1em;
    bottom: 1em;
  }

  .rss {
    display: none;
  }

  footer {
    position: static;
  }

  footer.flat {
    margin-top: 0;
  }

  footer .paging {
    margin-left: .5em;
  }

  footer .paging .numbox {
    width: 100%;
  }

  footer .paging .numbox>a:nth-child(1),
  .numbox>a:nth-last-child(14),
  .numbox>span:nth-last-child(13),
  .numbox>a:nth-last-child(12),
  footer .paging .numbox>a:nth-last-child(1),
  .numbox>a:nth-last-child(2),
  .numbox>span:nth-last-child(3),
  .numbox>span:nth-last-child(4) {
    display: none;
  }

  .another_category {
    color: #ccc;
    display: block;
    background: var(--color-700);
    margin: 0 !important;
    border: 0 !important;
    padding: 1em !important;
    overflow: hidden;
  }

  .another_category table,
  .another_category tbody,
  .another_category tr,
  .another_category th {
    display: block;
  }

  .another_category table {
    margin: .5em 0;
  }

  .another_category th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    line-height: 2;
  }

  .another_category td {
    display: none;
  }

  .another_category h4 {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    margin: 0;
  }

  .another_category h4 a {
    color: rgba(255, 255, 255, .95) !important;
  }

  .another_category tr th a {
    color: rgba(255, 255, 255, .95) !important;
    font-size: 16px;
    padding: .5em 0;
    margin: 0;
  }

  .another_category tr th a:hover {
    background: none;
    box-shadow: none;
  }

  .another_category tr th a.current {
    border: none;
    text-decoration: underline;
  }

  .another_category tr th a.current:before {
    content: '\f1eb';
    font-family: 'icon';
  }

  .another_category tr th span {
    color: rgba(255, 255, 255, .75);
  }

  .mobile_menu {
    color: rgba(255, 255, 255, .75);
    text-align: center;
    width: 100%;
    display: block;
    font-weight: bold;
    background: var(--color-500);
    padding: 1em 0;
    margin: 0 auto;
  }

  #toast {
    padding: 1em 1.5em 1em .75em;
    min-width: calc(100% - 2.25em);
    max-width: calc(100% - 2.25em);
    bottom: 0 !important;
    left: 0 !important;
    z-index: 4;
    border-radius: 0;
  }

  @keyframes snackbar_on {
    0% {
      bottom: -48px;
    }

    100% {
      bottom: 0;
    }
  }

  @keyframes snackbar_off {
    0% {
      bottom: 0;
    }

    100% {
      bottom: -48px;
    }
  }

  #toast.on {
    animation-name: snackbar_on;
    animation-duration: .3s;
  }

  #toast.off {
    bottom: -48px !important;
    animation-name: snackbar_off;
    animation-duration: .3s;
  }
}

/* 티스토리에서 강제 적용되는 스타일을 덮어씌우는 코드 2019-03-14 */
blockquote,
blockquote p {
  font-size: 1em;
  line-height: 1.5;
  color: inherit;
  letter-spacing: inherit;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}