@charset "UTF-8";

/* ------------------------------------------------- */
/* 웹폰트 */
/* ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
:root {
    /* 한국어 */  
    --font-ko: 'Pretendard Variable';
    /* 영문 */ 
    --font-en: 'Onest';  
    /* 일본어 */ 
    --font-jp: 'M PLUS 1p'; 
    /* def */
    --font-def: var(--font-en), var(--font-ko), var(--font-jp), Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html, body, textarea, button, code {
    font-family: var(--font-def);
}
nav a { 
  font-weight: var(--fw-boldEx);
}
/* ------------------------------------------------ */



/* ------------------------------------------------- */
/* 스타일 관리 */
/* ------------------------------------------------- */
:root {
    /* 색상 */ 
    --color-point: #ff6292;
    --color-pointBd: #ff6292;
    --color-pointBg: #ffecf1;
    --color-pointLight: #ffa5b6;
    --color-sub: #ebc00e;
    --color-subBd: #ffcc00;
    --color-subBg: #fff6e3;
    --color-bg: #fff6e3;
    --color-gr: linear-gradient(180deg, #ffe7ae 0%, #ffc8d9 100%);
    --color-gr-bt: linear-gradient(180deg, #ffc8d9 0%, #ffe7ae 100%);

    --color-thumb-dim: linear-gradient(125deg, #ffe7ae 0%, #ffc8d9 100%);
    --color-thumb-dim2: linear-gradient(225deg, #ffe7ae 0%, #ffc8d9 100%);

    --color-def: #1a1a1a;
    --color-line: #e2e2e2;
    --color-gray: #787878;
    --color-midGray: #a9a9a9;
    --color-bgGray: #fafafa;

    --color-fff: #fff;

    /* 컨테이너 사이즈 */
    --container-size: 1000px;

    /* 전체 스타일 */
    --border-width: 2px;
    --border-radius: 8px;
    --border-radius-min: 6px;
    --border-radius-button: 5px;
    --transition: .25s ease-in-out;

    /* 내부 스타일 */
    --inline-line-width: 1px;

    /* 갤러리 썸네일 */
    --border-radius-gal: 8px;

    /* 
        기본 폰트 사이즈를 조절 원할 시 --fs-def 의 px을 조절하세요.
        본문에서만 폰트 사이즈를 조절 원할 시 --fs-article 의 px을 조절하세요.
        ★웹폰트 변경시 bold 처리가 안 되는 경우가 있습니다. --fw-bold, --fw-boldEx 를 bold 로 변경해 주세요.★
    */
    --fs-xs: 9px;
    --fs-s: 11px;
    --fs-def: 14px; /* 기본 */
    --fs-article: 14.5px; /* 본문 전용 */
    --fs-nav: 11px; /* 카테고리 전용 */
    --fs-m: calc(var(--fs-def) + 2px); 
    --fs-l: calc(var(--fs-def) + 4px); 
    --fs-xl: calc(var(--fs-def) + 6px); 
    --line-height: 1.8; /* 글줄 */
    --font-icon: 'tabler-icons';
    --fw-def: 400;
    --fw-bold: 700;
    --fw-boldEx: 800;
}
/* 본문 글, 이미지 처리 */
.article_content > .contents_style {
  font-size: var(--fs-article);
}
.article_content.keep > .contents_style {
  word-break: keep-all !important;
}
.article_content.justify > .contents_style {
  text-align: justify;
}
.article_content.break > .contents_style {
  word-break: break-all !important;
}
#tt-body-index figure.imageblock
#tt-body-page figure.imageblock,
#tt-body-index figure.imagegridblock,
#tt-body-page figure.imagegridblock { 
	margin: 20px 0 !important;
} 
figure.imageslideblock div.image-container,
figure.imageblock img,
#tt-body-page figure.imageblock img,
figure.imagegridblock img,
#tt-body-page figure.imagegridblock img {
  border-radius: var(--border-radius-img); 
  overflow: hidden;
  vertical-align: top;
}
#tt-body-page figure.imageblock.floatLeft,
#tt-body-index figure.imageblock.floatLeft {
    margin: 0 25px 20px 0 !important;
}
/* 타플랫폼글 업로드시 본문 박스를 넘어가는 현상 방지 */
div[class*='sheet-coc-rol'] {
  max-width: 100%;
}
/* 본문이미지 흑백 전환 */
.article_content.img-filter figure.imageslideblock div.image-container:hover img,
.article_content.img-filter figure.imagegridblock img:hover,
.article_content.img-filter figure.imageblock:hover img {
  -webkit-filter: grayscale(100%);
  filter: gray;
  opacity:0.7;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* 마우스 커서 & 스크롤바 & 드래그 */
/* ------------------------------------------------- */
*, *:focus {
    cursor: url(https://cur.cursors-4u.net/symbols/sym-6/sym596.cur), progress !important;
}

/* - scrollbar - */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-thumb {
  outline: none;
  border-radius: 10px;
  border: 4px solid #fff;
  box-shadow: inset 6px 6px 0 var(--color-point);
  transition: .25s;
}
::-webkit-scrollbar-thumb:hover {
  border: 4px solid #fff;
  box-shadow: inset 6px 6px 0 var(--color-sub);
}
::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #fff;
}
.tt-box-textarea .tt-inner-g::-webkit-scrollbar,
.mobile_container::-webkit-scrollbar,
nav.pc > ul > li > ul > li > ul::-webkit-scrollbar,
.sidebar_container::-webkit-scrollbar {
display:none;
}

/* - drag color - */
::selection {
  color: transparent;
  background: #fff;
  text-shadow: 0 0 2px var(--color-sub);
  transition: all 250ms ease-in;
}
::-moz-selection {
  color: transparent;
  background: #fff;
  text-shadow: 0 0 2px var(--color-sub);
  transition: all 250ms ease-in;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* reset */
/* ------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}
body, button, dd, dl, dt, fieldset, form, 
h1, h2, h3, h4, h5, h6, input, 
legend, li, ol, p, select, table, td, textarea, th, ul {
  margin: 0;
  padding: 0
}
button, textarea, input {
  outline: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  border: 0;
  color: inherit;
  cursor: pointer;
  -webkit-appearance:none; 
  -moz-appearance:none; 
  appearance:none; 
}
input {
  -webkit-appearance:none; 
  -moz-appearance:none; 
  appearance:none; 
}
#tistorytoolbarid {
  display: none;
}
iframe, video, embed, object, img, table {
  max-width: 100%;
}
a, a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
}
a {
  color: var(--color-def);
}
a, img , button, textarea {
  transition: var(--transition);
}
body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul, li {
  list-style: none;
}

.ti {
  font-size: 18px;
}
.ti-s {  
  font-size: 16px;
}
.ti-xs {
  font-size: 12.5px;
}
.ti-l {
  font-size: 36px;
}

.highlight_point {
  background: linear-gradient(to top, var(--color-pointLight) 35%, transparent 35%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.highlight_sub {
  background: linear-gradient(to top, var(--color-subBd) 50%, transparent 50%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* body */
/* ------------------------------------------------- */
body {
    font-size: var(--fs-def);
    color: var(--color-def);
    line-height: var(--line-height);
    word-wrap: break-word;
    font-weight: var(--fw-def);
    overflow-y: scroll;

    /* 배경 */
    background-image:url(./images/ohhedo_bg_pt.png), url(./images/ohhedo_bg_grid.png);
    background-repeat: repeat;
}
body.prevent-scroll {
    overflow: hidden;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- components ---------- */
/* ------------------------------------------------- */
/* - button - */
.iconbtn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: 0;
  box-sizing: border-box;
  color: var(--color-point);
  border: 2px solid transparent; 
  background: transparent; 
  overflow: hidden;
  transition: var(--transition);
}
.iconbtn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
  transition: transform .5s ease-in-out;
}
.iconbtn::after {
  content: '';
  position: absolute;
  top: 2px; 
  left: 2px; 
  right: 2px; 
  bottom: 2px;
  z-index: -1;
  background: #fff;
  border-radius: inherit;
}
.iconbtn:hover {
  color: var(--color-sub);
}
.iconbtn:hover::before {
  transform: rotate(360deg);
}
.iconbtn.active {
    color: var(--color-sub);
}
.iconbtn.active::before {
    transform: rotate(360deg);
}
.iconbtn i {
  line-height: 30px;
}
@media only screen and (max-width: 680px) {
  .iconbtn {
    width: 30px;
    height: 30px;
  }
  .iconbtn i {
    font-size: 12px;
  }
}

/* 배경 애니메이션 */
#loader::before,
#layer_main::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%; 
  height: 100%;
  background-image: url(./images/ohhedo_bg_pt_wh.png);
  background-repeat: repeat;
  -webkit-animation: movebg 5s linear infinite;
  -moz-animation: movebg 5s linear infinite;
  animation: movebg 5s linear infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes movebg {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 654px 677px; } 
}
@-moz-keyframes movebg {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 654px 677px; }
}
@keyframes movebg {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 654px 677px; } 
}

@media only screen and (max-width: 1680px) {
  #loader::before,
  #layer_main::before {
    background-size: 400px 414px;
    animation-duration: 3.5s;
  }
  @-webkit-keyframes movebg {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 400px 414px; } 
  }
  @-moz-keyframes movebg {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 400px 414pxx; } 
  }
  @keyframes movebg {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 400px 414px; } 
  }

  /* 배경이미지 */
  .cover_web::before {
    background-size: 400px 414px;
  }
  body {
    background-size: 400px 414px, auto;
  }
}
@media only screen and (max-width: 1200px) {
  .cover_main::before {
    background-size: 1200px 504px;
  }
}
@media only screen and (max-width: 660px) {
  #loader::before,
  #layer_main::before {
    background-size: 300px 311px;
    animation-duration: 3.5s;
  }
  @-webkit-keyframes movebg {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 300px 311px; } 
  }
  @-moz-keyframes movebg {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 300px 311px; } 
  }
  @keyframes movebg {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 300px 311px; } 
  }

  /* 배경이미지 */
  .cover_web::before {
    background-size: 300px 311px;
  }
  body {
    background-size: 300px 311px, auto;
  }
  .cover_main::before {
    background-size: 900px 378px;
  }
}

/* 포인트 버튼 */
.point_btn {
  background: var(--color-point);
  border: var(--border-width) solid var(--color-pointBd);
  border-radius: var(--border-radius);
  font-size: var(--fs-m);
  color: #fff;
  padding: 5px 20px 8px 20px; 
  margin-left: auto;
  margin-right: auto;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  cursor: pointer; 
  position: relative; 
  top: 0;
  /* 입체감을 위한 그림자 효과 */
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.3), 
              0px 5px 0px #ef5685,
              0px 8px 5px rgba(0, 0, 0, 0.2); 
  transition: top 0.1s ease-out, box-shadow 0.1s ease-out;
}
.point_btn:hover {
  top: 4px; 
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.3),
              0px 1px 0px #ef5685, 
              0px 4px 3px rgba(0, 0, 0, 0.3); 
}
.point_btn:active {
  top: 5px; 
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.3),
              0px 0px 0px #ef5685, 
              0px 2px 2px rgba(0, 0, 0, 0.4);
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* main */
/* ------------------------------------------------- */
#layer_main {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: var(--color-gr);
}
body#tt-body-index #layer_main {
  display: flex;
}
.main_container {
  max-width: 80%;
}

.main_logo {
  padding-left: 27px;
}
.main_logo img {
  max-width: 100%;
}
.main_logo {
  width: 100%;
  padding-bottom: 15px;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* loader */
/* ------------------------------------------------- */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gr);
  z-index: 9999;
  transition: opacity 700ms cubic-bezier(.22,.9,.32,1), transform 700ms cubic-bezier(.22,.9,.32,1);
  opacity: 1;
  transform: scale(1);
  will-change: opacity, transform;
}
#loader.hide {
  opacity: 0; 
  transform: scale(1.25);
}
#page-content {
  display: none;
  opacity: 1;
}
/* 타이핑 애니메이션 */
.loader_text span {
  opacity: 0;
  display: inline-block;
  font-size: var(--fs-def);
  font-weight: var(--fw-bold);
  color: var(--color-point);
  animation: fadeInChar 0.3s forwards;
}
@keyframes fadeInChar {
  to { opacity: 1; }
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- layout ---------- */
/* ------------------------------------------------- */
.wrap {
    position: relative;
    min-height: 100dvh;
}
.dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0; 
    z-index: 9996;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity var(--transition);
    pointer-events: none;
}
.dim.visible {
    opacity: 1;
    pointer-events: auto;
}

/* - header - */
#header {
  width: 100%;
  padding: 0 15px;
  background: var(--color-gr);
  border-bottom: var(--border-width) solid var(--color-pointBd);
  transition: var(--transition);
}
.head_container {
  position: relative;
  width: var(--container-size);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hd_icon {
  position: absolute; 
  top: 10px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.hd_icon a {
  border-radius: 50%;
}

/* - logo - */
.logobox {
  padding-top: 15px;
}
.logobox > a {
    display: block;
}
.logobox img { 
    max-width: 100%;
}
.logobox.mobile {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* - 기본 레이아웃 - */
#container {
  padding-top: 35px;
  padding-bottom: 35px;
  overflow: hidden;
}
body#tt-body-index #container {
  padding-top: 0;
}
/* content */
#content {
    position: relative;
    width: var(--container-size); 
    margin: 0 auto;
} 
.content_inner {
    scroll-behavior: smooth;
}
body#tt-body-index #content {
  width: 100%;
}

/* navigation bar */
nav a {
    text-decoration: none;
    display: block;
    font-size: var(--fs-nav);
    text-align: center;
    color: var(--color-fff); 
}
nav > ul > li > ul {
    display: flex;
}
nav > ul > li > ul > li {
    position: relative;
}
nav > ul > li > ul > li > a {
    position: relative;
}
/* pc */
nav.pc > ul > li > ul {
    justify-content: center;
    align-items: flex-end;
    height: 50px;
}
nav.pc > ul > li > ul > li:last-child {
  display: none;
}
nav.pc {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.pc a {
  color: var(--color-pointLight);
  padding-left: 18px;
  padding-right: 18px;
}
nav.pc > ul > li > ul > li {
  background-color: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0px 0px 3px #fbd0da;
  height: 35px;
  display: flex;
  align-items: center;
}
nav.pc > ul > li > ul > li > a:hover {
  color: var(--color-point);
}
nav.pc > ul > li > ul > li.selected {
  height: 45px;
  background-color: var(--color-point);
}
nav.pc > ul > li > ul > li.selected > a {
  color: #fff;
}
/* mobile */
nav.mobile > ul {
    width: 100%;
    padding-top: 15px;
}
nav.mobile a {
  color: #fff;
  padding: 10px 35px 12px 35px;
}
nav.mobile > ul > li > ul {
    flex-direction: column;
    gap: 10px;
}
nav.mobile > ul > li > ul > li {
    width: 100%;
}
nav.mobile > ul > li > ul > li:nth-child(odd) {
  background: var(--color-point);
  border: var(--border-width) solid var(--color-pointBg);
  border-radius: var(--border-radius);
}
nav.mobile > ul > li > ul > li:nth-child(even) {
  background: var(--color-subBd);
  border: var(--border-width) solid var(--color-subBg);
  border-radius: var(--border-radius);
}
nav.mobile > ul > li > ul > li:last-child {
  display: none;
}
/* reset */
nav > ul > li > ul > li > a,
nav > ul > li > ul > li > ul > li > a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link_tit,
nav > ul > li > ul > li > ul {
    display: none;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- list ---------- */
/* ------------------------------------------------- */
.cate_name {
  display: none;
}
/* - 공통 - */
.list .list_container {
  display: grid;
  padding: 0 15px;
}
.list .list_item .list_title {
  position: relative;
  width: 100%;
}
.list .list_item .list_title > span {
  /* 말줄임 */
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.list .list_item .list_title > span,
.list .list_item .list_title > strong {
  transition: var(--transition);
}
.list_item > a:hover {
  color: var(--fs-def);
}
.list .list_item .list_title img {
  display: none;
}
/* 썸네일 */
.list .list_item .list_thumb {
  transition: var(--transition);
}
.list_item .list_thumb {
  position: relative;
  overflow: hidden;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb {
  isolation: isolate;
  aspect-ratio: 1/1;
}
.list .list_item .list_thumb > figure {
  position: relative;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  margin: 0 !important;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb > figure > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list .list_item .list_thumb > figure > img {
  transition: unset;
}
/* 갤러리형 한 줄에 보여질 개수 */
.list[id*="gal"]:not(#list_gal_3) .list_container {
  grid-template-columns: repeat(3, 1fr);
}
/* 썸네일 감추기 */
.list[id*="playlist"] .list_thumb,
.list[id*="playlist"] .list_thumb img,
.list[id*="board"] .list_thumb,
.list[id*="board"] .list_thumb img {
  display: none;
}
/* 보호글 */
.locked {
  position: relative;
  padding-left: 15px;
}
.locked::before {
  font-size: var(--fs-def);
  font-weight: normal;
  position: absolute;
  left: 0;
  font-family: var(--font-icon) !important;
  content: '\eae2';
  color: var(--color-def);
  transition: var(--transition);
}
.list[id*='gal_2'] .locked::before {
  color: #fff;
}
.list_summary > span {
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-align: justify;
  word-break: break-all;
  /* 숨김 처리 */
  width: 0px;
  height: 0px;
  text-indent: -9999px;
  visibility: hidden;
}
#list_memo .list_thumb:not(:has(.thumb)),
#list_web .list_thumb {
  display: none;
}
:not(.thumb) + .no_thumb {
  display: inline-block !important;
}
.thumb + .no_thumb {
  display: none;
}
.list_thumb img {
  vertical-align: top; 
}
.list:not(.list[id*='gal_2']) .list_item > a:hover .locked::before {
  color: var(--color-point);
}

/* - 갤러리형_1 - */
#list_gal_1 .list_container {
  gap: 35px 15px;
}
#list_gal_1 .list_item .list_info {
  padding: 15px 5px 0 5px;
  justify-content: center;
}
#list_gal_1 .list_item .list_title {
  padding-bottom: 3px;
  -webkit-line-clamp: 3;
  text-align: center;
}

/* - 갤러리형_2 - */
#list_gal_2 .list_container {
  gap: 35px 35px;
}
#list_gal_2 .list_item .list_info {
  bottom: 15px;
}
#list_gal_2 .list_item {
  width: 100%;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: var(--border-radius);
  overflow: hidden;
}
#list_gal_2 .list_item:nth-child(odd) {
  background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
#list_gal_2 .list_item:nth-child(even) {
  background-image: linear-gradient(#fff, #fff), linear-gradient(-45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
#list_gal_2 .list_item .list_title > span,
#list_gal_2 .list_item .list_title > strong {
  color: #fff;
  text-shadow: 0 0 2px rgba(0,0,0, .35);
}
#list_gal_2 .list_item .list_title > strong {
  font-weight: var(--fw-boldEx);
  font-size: var(--fs-m);
}
/* 공통 */
.list[id*='gal_2'] .list_container {
  gap: 15px;
}
.list[id*='gal_2'] .list_item {
  position: relative;
}
.list[id*='gal_2'] .list_item .list_info {
  position: absolute;
  z-index: 3;
  line-height: 1.5;
  visibility: hidden;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.list[id*='gal_2'] .list_item .list_title {
  opacity: 0;
  padding-bottom: 3px;
  -webkit-line-clamp: 3;
  transition: var(--transition);
}
.list[id*='gal_2'] .list_item .list_thumb:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--transition);
} 
.list[id*='gal_2'] .list_item:nth-child(odd) .list_thumb:after {
  background: var(--color-thumb-dim2);
}
.list[id*='gal_2'] .list_item:nth-child(even) .list_thumb:after {
  background: var(--color-thumb-dim);
}
.list[id*='gal_2']  .list_item > a:hover .list_thumb:after {
  opacity: 0.65;
}
.list[id*='gal_2'] .list_item > a:hover .list_info {
  visibility: visible;
}
.list[id*='gal_2'] .list_item > a:hover .list_title {
  opacity: 1;
}
.list[id*='gal_2'] .list_item > a:hover .list_thumb img {
  -webkit-filter: grayscale(100%);
  filter: gray;
  opacity: 0.8;
}

/* - 웹진형 - */
#list_web {
  padding: 0 15px;
}
#list_web .list_container {
  gap: 35px 0;
}
#list_web .list_item {
  width: 100%;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: var(--border-radius);
  overflow: hidden;
}
#list_web .list_item:nth-child(odd) {
  background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
#list_web .list_item:nth-child(even) {
  background-image: linear-gradient(#fff, #fff), linear-gradient(-45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
#list_web .list_item > a { 
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: stretch;
}
#list_web .list_summary {
  width: 100%; 
  grid-row: 2 / 2;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}
#list_web .list_summary > span {
  width: 100%; 
  height: auto;
  text-indent: 0;
  visibility: visible;
  color: var(--color-gray);
  -webkit-line-clamp: 4;
  transition: var(--transition);
} 
#list_web .list_item .list_info {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
#list_web .list_item:nth-child(odd) .list_info {
  background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
#list_web .list_item:nth-child(odd) .list_title {
  background-image: linear-gradient(45deg, var(--color-pointBg) 0%, var(--color-subBg) 100%);
}
#list_web .list_item:nth-child(even) .list_info {
  background-image: linear-gradient(#fff, #fff), linear-gradient(-45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
#list_web .list_item:nth-child(even) .list_title {
  background-image: linear-gradient(-45deg, var(--color-pointBg) 0%, var(--color-subBg) 100%);
}
#list_web .list_item .list_title {
  display: flex;
  gap: 5px;
  padding: 10px 15px;
}
#list_web .list_item .list_title > strong {
  flex: 1;
  font-weight: var(--fw-def);
}
#list_web .list_item .list_title > .author_name {
  font-weight: var(--fw-bold);
  order: -1;
}
#list_web .list_item:nth-child(odd) > a:hover .list_title > .author_name {
  color: var(--color-point);
}
#list_web .list_item:nth-child(even) > a:hover .list_title > .author_name {
  color: var(--color-sub);
}
#list_web .list_item > a:hover .list_summary > span {
  color: var(--color-def);
}
/* more 버튼 */
.list_info {
  position: relative;
}
.list_info > .arrow_more {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 30px;
    top: 12px;
    transition: var(--transition);
    opacity: 0;
}
.list_info > .arrow_more::before,
.list_info > .arrow_more::after {
    content: "";
    position: absolute;
}
.list_info > .arrow_more::before {
    top: 8px;
    left: 0;
    width: 15px;
    height: 2px;
} 
.list_info > .arrow_more::after {
    top: 5px;
    right: 0;
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translate(0);
    -webkit-transform: rotate(45deg) translate(0);
}
#list_web .list_item > a:hover .list_info > .arrow_more {
    opacity: 1;
    right: 20px;
}
#list_web .list_item > a:hover .list_summary_wrap::after {
    opacity: 1;
}
#list_web .list_item:nth-child(even) .list_info > .arrow_more::before {
    background-color: var(--color-pointBd);
}
#list_web .list_item:nth-child(even) .list_info > .arrow_more::after {
    border-top: 2px solid var(--color-pointBd);
    border-right: 2px solid var(--color-pointBd);
}
#list_web .list_item:nth-child(odd) .list_info > .arrow_more::before {
    background-color: var(--color-subBd);
}
#list_web .list_item:nth-child(odd) .list_info > .arrow_more::after {
    border-top: 2px solid var(--color-subBd);
    border-right: 2px solid var(--color-subBd);
}

/* - pagination - */
.pagination {
    width: 100%;
    padding: 25px 25px 15px 25px;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 10px;
}
.pagination .point_btn {
  margin: 0;
  font-size: var(--fs-s);
}
.pagination .point_btn > a {
  display: flex;
    align-items: center;
    color: #fff;
}
.pagination .point_btn:hover > a {
  color: #fff;
}
.pagination .point_btn > a > i {
  font-size: 15px;
}
.pagination > .point_btn[class*='no-more-'] {
    display: none !important;
}

/* - guestbook & comment - */
#tt-body-guestbook .pagination {
  display: none;
}
.comment {
  display: none;
}
/* reset */
/* Reset & Base */
.tt-thumbnail {
  width: 40px;
  height: 40px;
}

.tt-wrap-cmt .tt_desc,
.tt-wrap-cmt .tt-link-user,
.tt-txt-mention,
.tt-wrap-cmt .tt_date,
.tt-link-comment .tt_txt_g,
.tt-link-comment .tt_num_g {
  font-family: var(--font-def) !important;
  line-height: inherit !important;
}

.tt-wrap-cmt .tt_desc {
  font-size: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
}

.tt-wrap-cmt .tt-link-user,
.tt-txt-mention {
  font-size: var(--fs-xs);
}

.tt-wrap-cmt .tt-link-user {
  color: var(--color-def);
  font-weight: var(--fw-boldEx);
}

.tt-txt-mention {
  color: var(--color-point) !important;
  background: none !important;
  font-weight: var(--fw-boldEx);
}

.tt-wrap-cmt .tt_date {
  font-size: var(--fs-xs);
  color: var(--color-gray);
  padding-top: 10px;
}

.tt-wrap-cmt .tt-link-comment {
  color: var(--color-gray);
}

.tt-wrap-cmt .tt-link-comment:hover {
  color: var(--color-point);
}

.tt-wrap-cmt .tt-wrap-link-comment {
  padding-left: 10px;
  transition: var(--transition);
}

/* 댓글 내부 텍스트 스타일 */
.tt-link-comment .tt_txt_g,
.tt-link-comment .tt_num_g {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding-top: 10px;
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
  font-family: var(--font-en), var(--font-ko), sans-serif !important;
  font-size: var(--fs-s) !important;
  color: var(--color-point) !important;
  font-weight: var(--fw-bold);
}

/* 댓글 레이아웃 */
.tt-list-reply > .tt-item-reply {
  padding: 25px 25px 25px 15px;
  border-top: var(--inline-line-width) solid var(--color-line);
}
.tt-list-reply > .tt-item-reply:last-child {
  border-top: 0;
}
.tt-item-reply .tt-list-reply-comment {
  border-top: 0;
}
.tt-list-reply-comment > .tt-item-reply {
  padding: 15px 0;
  border-top: 0;
  border-bottom: var(--inline-line-width) solid var(--line-height);
}
.tt-item-reply .tt-list-reply-comment:before {
  display: none;
}
.tt-item-reply .tt-wrap-cmt > .tt-box-thumb {
  margin-right: 0;
}
.tt-item-reply .tt-box-content {
  width: calc(100% - 50px);
  padding-top: 3px;
}
.tt-item-reply .tt-button-modify {
  opacity: 0.45;
}
.tt-area-reply {
  margin-bottom: 0;
}
.tt-list-reply {
  border: 0;
  display: flex;
  flex-direction: column-reverse;
}
.tt-wrap-info .tt_date + .tt-wrap-link-comment:before {
  display: none !important;
}

/* 댓글 폼 */
.tt-box-textarea {
  background-color: var(--color-bgGray);
  border-radius: var(--border-radius-min);
  padding: 15px;
}
.tt-box-textarea .tt-inner-g {
  border: 0;
  max-height: 110px;
  padding: 0;
}
.tt-area-write {
  padding-bottom: 15px;
}
.tt-area-write .tt-box-account input {
  border: 0;
  background-color: var(--color-bgGray);
  border-radius: var(--border-radius-min);
  font-size: var(--fs-def);
}
.tt-box-textarea .tt_txt_user,
.tt_txt_user {
  display: none;
}

/* 버튼류 */
.tt-btn_register,
.tt-btn-cancel {
  position: relative;
  color: transparent;
  border: 0;
  width: 35px;
  height: 35px;
  background: none;
}
.tt-btn_register:disabled,
.tt-btn_register:hover {
  background: none;
  border: 0;
}
.tt-btn-cancel {
  min-width: 0;
  margin-right: 3px;
}

.tt-btn-cancel::before {
  position: absolute;
  left: 6px;
  font-family: var(--font-icon);
  font-size: 20px;
  content: '\f429';
  color: var(--color-gray);
}
.tt-btn_register::before {
  position: absolute;
  left: 6px;
  font-family: var(--font-icon);
  font-size: 20px;
  content: '\eb1e';
  color: var(--color-point);
}
.tt-btn_register:disabled::before {
  color: var(--color-gray);
}

/* 입력 보조 아이콘 */
.tt-box-write .tt-xe-input-helper {
  width: 35px;
  height: 35px;
  background: none;
  margin-right: 3px;
}
.tt-box-write .tt-xe-input-helper::before {
  position: absolute;
  top: 18px;
  left: 8px;
  font-family: var(--font-icon);
  font-size: 20px;
  content: '\eae1';
  color: var(--color-gray);
}
.tt-box-write input[type='checkbox']:checked + .tt-xe-input-helper::before {
  content: '\eae2';
  color: var(--color-point);
}

/* 이전 댓글 더보기 버튼 */
.tt_btn_prev_more {
  color: var(--color-gray);
  font-weight: var(--fw-bold);
  font-size: var(--fs-s);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid var(--color-line);
  background: var(--color-bgGray);
  border-radius: var(--border-radius-min);
  margin-bottom: 15px;
  transition: var(--transition);
}
.tt_btn_prev_more:hover {
  color: var(--color-point);
  border-color: var(--color-point);
}

/* 숨기기 */
.tt-box-total {
  display: none;
}

/* 아이콘 */
.tt_cmt_info .tt_ico_fixed,
.tt-box-meta .tt_img_area_reply {
  background: none;
  position: relative;
  overflow: visible;
  font-size: var(--fs-def);
}
.tt_img_area_reply::before {
  position: absolute;
  font-family: var(--font-icon);
}
.tt_img_area_reply.tt_ico_lock::before {
  content: '\eae2';
  color: var(--color-gray);
  top: 10px;
  left: 3px;
}
.tt_img_area_reply.tt_ico_fixed::before {
  content: '\f68d';
  color: var(--color-point);
  top: 7px;
  left: 3px;
}
.tt_cmt_info .tt_img_area_reply.tt_ico_fixed::before {
  transform: rotate(-90deg);
}
.tt_cmt_info + .tt-wrap-cmt .tt-box-meta a,
.tt_cmt_info + .tt-wrap-cmt .tt_desc {
  color: var(--color-point) !important;
}
.tt_cmt_info + .tt-wrap-cmt .tt_desc {
  font-weight: var(--fw-bold) !important;
  background-color: var(--color-pointBg);
}
.tt-box-meta .tt_img_area_reply.tt_ico_fixed::before {
  content: '\f68e';
  color: var(--color-gray);
  top: 6px;
  left: 0;
}
.tt_cmt_info + .tt-wrap-cmt .tt-box-meta .tt_img_area_reply.tt_ico_fixed::before {
  color: var(--color-point);
}

/* 대댓글 관련 스타일 */
.tt-comment-cont {
  display: flex;
  flex-direction: column-reverse;
  padding: 25px 15px 0 15px;
}
.tt-item-reply .tt-wrap-cmt {
  justify-content: space-between;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt {
  flex-direction: row-reverse;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt .tt-box-modify {
  right: -25px;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt .tt-box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: wrap;
}
.tt-item-reply .tt-list-reply-comment .tt-box-content .tt-link-user {
  max-width: 100%;
}

/* 말풍선 스타일 */
.tt-wrap-cmt .tt_desc {
  display: inline-block;
  background-color: var(--color-bgGray);
  padding: 12px 18px 14px;
  border-radius: 2px 20px 20px 20px;
}
.tt-list-reply-comment .tt_desc {
  border-radius: 20px 2px 20px 20px;
}

/* 핀고정 댓글 맨 위 */
.tt-item-reply:not(.rp_general) {
  order: 1;
}

/* 수정 모드 */
.tt-box-modify-open .tt-list-modify {
  box-shadow: none;
  border: var(--inline-line-width) solid var(--color-line);
  padding: 0;
  overflow: hidden;
}
.tt-box-modify-open .tt-list-modify > li > a {
  font-size: var(--fs-s);
  padding: 10px 15px;
  line-height: inherit;
  color: var(--color-gray);
}
/* 댓글 */
body :is(.tt-box-textarea textarea, .tt-box-textarea div) {
  background-color: transparent;
}
/* ---------- article ---------- */
article .article_container {
    word-wrap: break-word;
    background-color: #fff;
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--color-subBd) 0%, var(--color-pointBd) 100%);
}
article .article_info {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--color-subBd) 0%, var(--color-pointBd) 100%);
}
article .article_title {
    text-align: center;
    width: 100%;
    position: relative;
    padding-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 25px;
}
article .article_title > p {
  font-weight: var(--fw-boldEx);
  font-size: var(--fs-m);
}
article .admin_btn { 
    background-color: transparent;
    font-size: var(--fs-s);
    color: var(--color-gray);
}
article .article_admin_btn {
    position: absolute;
    z-index: 9;
    top: 12px;
    right: 12px;
    display: inline-flex;
}
article .article_admin_btn > i {
    color: var(--color-midGray);
    transition: var(--transition);
}
article .article_admin_btn.open > i {
    transform: rotate(90deg);
}
article .article_admin_wrap {
    position: relative;
}
article .article_admin_wrap > ul {
    display: none;
    position: absolute;
    overflow: hidden;
    top: 15px;
    right: 0;
    width: 100px;
    background: #fff;
    border-radius: var(--border-radius-min);
    border: var(--inline-line-width) solid var(--color-line);
}
article .article_admin_wrap > ul > li > a {
    display: block;
    padding: 10px 15px;
    font-size: var(--fs-s);
    color: var(--color-gray);
    transition: var(--transition);
}
article .article_admin_wrap > ul > li:hover > a {
    background-color: var(--color-bgGray);
}
article .article_admin_wrap > ul.open {
    display: block;
}
@media only screen and (max-width: 1024px) {
    article .article_admin_btn {
        display: none;
    }
    article .article_title {
    padding-left: 15px;
    padding-right: 15px;
    }
}
article .article_content {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 35px 65px;
    background: #fff;
}
article .article_content .content_style {
    width: 100%;
    padding-bottom: 15px;
}
/* 네임카드 삭제 */
div[data-tistory-react-app="Namecard"] { display: none; }
/* 신고, 공감 버튼 */
body :is(.container_postbtn) {
    width: 100%;
    display: flex;
    padding: 20px 0 0 0;
}
body :is(.container_postbtn)::after {
    content: none;
}
body :is(.container_postbtn .postbtn_like) {
    display: flex;
    align-items: center;
    float: unset;
    padding: unset;
    font-size: inherit !important;
}
body :is(.container_postbtn .postbtn_like .wrap_btn) {
    display: flex;
    align-items: center;
    float: unset;
}
body :is(.container_postbtn .btn_post) {
    height: unset;
    border: unset;
    border-radius: unset;
    padding: unset;
    font-size: inherit !important;
    font-family: var(--font-def) !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post.uoc-icon .uoc-icon) {
    display: flex;
    align-items: center;
}
body :is(.container_postbtn .btn_post .ico_like) {
    display: none;
    max-width: unset;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.container_postbtn .btn_post .txt_like) {
    margin: unset;
    font-size: var(--fs-s) !important;
    font-family: var(--font-def) !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post .ico_share) {
    display: none;
    margin: unset;
    background: none;
    font-size: inherit !important;
    font-family: var(--font-def) !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .layer_post) {
    border: unset;
    box-shadow: unset;
    padding: unset;
    background: unset;
}
body :is(.container_postbtn .layer_post .ico_arrbt) {
    display: none;
}
body :is(.container_postbtn .layer_post .btn_mark) {
    outline: none !important;
    font-size: var(--fs-s) !important;
    font-family: var(--font-def) !important;
    color: inherit;
}
body :is(.container_postbtn .btn_post .ico_statistics) {
    display: none;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.btn_post, .btn_menu_toolbar) {
    outline: none !important;
}
body :is(.btn_post, .btn_menu_toolbar):focus-visible {
    outline: 2px !important;
}
body :is(.container_postbtn .postbtn_ccl) {
    display: none;
}
body :is(.container_postbtn .ico_postbtn.ico_etc) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar) {
    width: -moz-fit-content;
    width: fit-content;
    height: unset;
    margin: unset;
    border: unset;
    border-radius: unset;

    font-size: inherit !important;
    font-family: var(--font-def) !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_menu_toolbar .txt_state) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar.following .ico_check_type1) {
    display: none;
}
body :is(.container_postbtn) {
    gap: 20px;
    order: 3;
    flex-grow: 1;
}
body :is(.container_postbtn .postbtn_like) { 
    gap: 10px;
    border: 0;
    background-color: transparent;
}
/* 좋아요 버튼 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon)::before {
    font-family: var(--font-icon) !important;
    content: "\eabe";
    color: var(--color-gray);
    margin-right: 5px;
}
/* 공감 눌렀을 때 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon.like_on)::before {
    content: "\f67c";
    margin-right: 5px;
    color: #f25858; 
    animation: animateHeart .3s linear forwards;
}
@keyframes animateHeart{
    0%{transform:scale(.2);}
    40%{transform:scale(1.2);}
    100%{transform:scale(1);}
}
/* 카운트 */
body :is(.container_postbtn .btn_post.uoc-icon .uoc-icon) {
    color: var(--color-gray);
}
/* 공유하기 버튼 */
body :is(.container_postbtn .postbtn_like .wrap_btn_share) {
    display: none;
}
body :is(.container_postbtn .btn_post.sns_btn.btn_share)::before {
    font-family: var(--font-icon) !important;
    content: '\eb21';
    color: var(--color-gray);
} 
/* 공유하기/더보기 레이어 */
body :is(.container_postbtn .bundle_post) {
    border: var(--inline-line-width) solid var(--color-line);
    border-radius: var(--border-radius-min);
    overflow: hidden;
}
/* 공유하기/더보기 레이어 아이템 */
body :is(.container_postbtn .layer_post .btn_mark) {
    padding: 10px 15px;
    background-color: #fff;
    color: var(--color-gray);
}
body :is(.container_postbtn .layer_post .btn_mark:hover) {
    background-color: var(--color-bgGray);
}
/* 통계 버튼 */
body :is(.container_postbtn .wrap_btn .btn_post:not(.btn_etc1, .btn_etc2, .sns_btn, .uoc-icon))::before {
    font-family: var(--font-icon) !important;
    content: '\ea59';
    color: var(--color-gray);
} 
/* 더보기 버튼 (관리자) */
body :is(.container_postbtn .btn_post.btn_etc1)::before {
    font-family: var(--font-icon) !important;
    content: '\eb20';
    color: var(--color-gray);
}
/* 더보기 버튼 (방문자) */
body :is(.container_postbtn .btn_post.btn_etc2)::before {
    font-family: var(--font-icon) !important;
    content: '\ea95';
    color: var(--color-gray);
}
/* 구독 버튼 */
body :is(.container_postbtn .btn_menu_toolbar) {
    display: none;
}
/* 본문 하단 */
.article_footer {
    display: flex;
    justify-content: space-between;
    border-top: var(--inline-line-width) solid var(--color-line);
    padding: 10px 15px 0 15px;
    margin-top: 10px;
}
@media only screen and (max-width:660px) {
    .article_footer {
        padding-top: 15px;
    }
}
/* 본문 하단 */
.article_footer {
    display: flex;
    justify-content: space-between;
    border-top: var(--inline-line-width) solid var(--color-line);
    padding: 10px 15px 0 15px;
    margin-top: 10px;
}
@media only screen and (max-width:660px) {
    .article_footer {
        padding-top: 15px;
    }
}
/* 본문 스타일 */
.article_content u span {
    background-color: transparent !important;
}
.article_content u {
    transition: var(--transition);
    text-underline-position : under;
}
.article_content u:hover {
    background-color: var(--color-pointBg);
}
.article_content b {
    font-weight: var(--fw-bold);
}
/* 링크 */
article a[rel="noopener"] {
    font-weight: var(--fw-bold);
    font-style: italic;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}
article a[rel="noopener"]::before {
    font-family: var(--font-icon);
    content: "\eade";
    font-weight: normal;
    font-style: normal;
    font-size: var(--fs-def);
    margin: 3px;
}
article a[rel="noopener"]:hover { 
    color: var(--color-point);
    background-color: var(--color-pointBg);
}
#tt-body-page figure[data-ke-type='opengraph'], 
#tt-body-index figure[data-ke-type='opengraph'] {
    margin-top: 15px;
}
#tt-body-page figure[data-ke-type='opengraph'] a, 
#tt-body-index figure[data-ke-type='opengraph'] a {
    width: 500px;
    max-width: 100%;
    height: 140px;
    border-radius: var(--border-radius-min);
    border: var(--inline-line-width) solid var(--color-line);
    background-color: var(--color-bgGray);
    overflow: hidden;
    transition: var(--transition);
}
figure[data-ke-type='opengraph'] div.og-image {
    width: 140px;
    border: 0;
}
figure[data-ke-type='opengraph'] div.og-text {
    left: 140px;
    padding: 15px 25px;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-index figure[data-ke-type='opengraph'] div.og-text p.og-title {
    font-family: var(--font-def) !important;
    max-width: 100% !important;
    font-size: var(--fs-def);
    transition: var(--transition);
    line-height: var(--line-height) !important;
    margin-bottom: 0 !important;
    font-style: normal;
    font-weight: var(--fw-bold);
}
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc, 
#tt-body-index figure[data-ke-type='opengraph'] div.og-text p.og-desc {
    color: var(--color-gray);
    font-family: var(--font-ko);
    font-size: var(--fs-def);
    line-height: var(--line-height);
}
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host, 
#tt-body-index figure[data-ke-type='opengraph'] div.og-text p.og-host {
    position: static !important;
    font-family: var(--font-def) !important;
    color: var(--color-gray);
    font-size: var(--fs-s);
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis; 
    word-break: break-all;
    font-style: normal;
    font-weight: var(--fw-def);
}
#tt-body-page figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title, 
#tt-body-index figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title {
    color: var(--color-point);
}
@media (max-width: 600px) {
    figure[data-ke-type='opengraph'] div.og-image {
        width: 80px;
    }
    #tt-body-page figure[data-ke-type='opengraph'] div.og-text,
    #tt-body-index figure[data-ke-type='opengraph'] div.og-text {
        left: 80px;
        padding: 15px;
    }
    #tt-body-page figure[data-ke-type='opengraph'] a, 
    #tt-body-index figure[data-ke-type='opengraph'] a {
        height: 80px;
    }
}
/* ul, li, ol */
.article_content ul li::marker,
.article_content ol li::marker,
.article_content ol li,
.article_content ul li {
    transition: var(--transition);
}
.article_content ul li::marker {
    font-size: calc(var(--fs-def) + 3px); 
}
.article_content ul,
.article_content ol {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 15px;
}
.article_content ol li:hover,
.article_content ul li:hover {
    color: var(--color-point);
}
.article_content ol li:hover::marker,
.article_content ul li:hover::marker {
    color: var(--color-point);
}
/* table */
.article_content table img,
.article_content table figure {
    vertical-align: top;
    margin-bottom: 0 !important;
}
/* 접은글 */
div .btn-toggle-moreless:before,
div .btn_more:before {
    font-family: var(--font-icon);
    content: '\ea5f';
    padding-right: 5px;
    color: var(--color-pointBd);
}
div.open .btn-toggle-moreless:before,
div.open .btn_less:before {
    font-family: var(--font-icon);
    content: '\ea62';
    color: #fff;
    padding-right: 5px;
}
.btn-toggle-moreless,
.btn_more,
.btn_less {
    font-size: calc(var(--fs-def) - 1px) !important;
    margin: 0 !important;
    outline: none !important;
    height: auto !important;
}
div .btn-toggle-moreless,
div .btn_more {
    background: #fff;
    border: var(--border-width) solid var(--color-pointBd);
    border-radius: var(--border-radius-min);
    padding: 3px 12px;
    color: var(--color-pointBd) !important;
    font-weight: var(--fw-boldEx);
}
div .btn-toggle-moreless:hover,
div .btn_more:hover {
    background: var(--color-pointBd);
    color: #fff !important;
}
div .btn-toggle-moreless:hover:before,
div .btn_more:hover:before {
    color: #fff !important;
}
div.open .btn-toggle-moreless,
div.open .btn_less {
    background: var(--color-pointBd);
    border-radius: var(--border-radius-min);
    padding: 3px 12px;
    color:#fff !important;
}
div[data-ke-type='moreLess'] .btn-toggle-moreless,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
#tt-body-index div[data-ke-type='moreLess'] .btn-toggle-moreless {
    display: inline-block !important;
    margin: 5px 0 !important;
    font-family: var(--font-def);
    font-weight: var(--fw-boldEx);
}
.moreless-content {
    border-radius: var(--border-radius-min);
    padding: 10px !important;
    background-color: var(--color-bgGray);
    border: var(--border-width) solid var(--color-line);
    margin-bottom: 5px;
    transition: var(--transition);
}
.moreless-content:hover {
    border-color: var(--color-pointBd);
    background-color: var(--color-pointBg);
}
.moreless_content .btn_less {
    margin: 5px 0 !important;
}
.moreless_content .btn_less:last-child {
    display: none;
}
/* 인용구 reset */
blockquote,
blockquote p {
    font-size: inherit !important;
    line-height: unset !important;
    margin: 12px 0 !important;
}
/* 인용구 1 */
#tt-body-page blockquote[data-ke-style='style1'], 
#tt-body-index blockquote[data-ke-style='style1'] {
    position: relative;
    background: none;
    padding: 35px 0 0 0 !important;
    text-align: center;
    font-style: italic;
}
#tt-body-page blockquote[data-ke-style='style1']::before,
#tt-body-index blockquote[data-ke-style='style1']::before {
    content: '"';
    position: absolute;
    font-family: 'Coustard';
    color: var(--color-def);
    font-size: 36px;
    line-height: 0px;
    top: 10px;
    left: calc(50% - 30px);
    transform: rotate(-180deg) translateX(calc(50% - 36px));
    pointer-events: none;
}
#tt-body-page blockquote[data-ke-style='style1'] > span,
#tt-body-index blockquote[data-ke-style='style1'] > span {
    font-family: unset !important;
    color: var(--color-def);
}
/* 인용구 2 */
#tt-body-page blockquote[data-ke-style="style2"],
#tt-body-index blockquote[data-ke-style="style2"] {
    background: var(--color-bgGray) !important;
    border-left: 3px solid var(--color-pointBd) !important;
    padding: 15px 25px !important;
    color: var(--color-def) !important;
}
/* 인용구 3 */
#tt-body-page blockquote[data-ke-style='style3'],
#tt-body-index blockquote[data-ke-style='style3'] {
    background: var(--color-bgGray) !important;
    padding: 15px 25px !important;
    color: var(--color-def) !important;
    border-radius: var(--border-radius-min);
    border: var(--border-width) solid var(--color-line) !important;
    transition: var(--transition);
}
#tt-body-page blockquote[data-ke-style='style3'] > span,
#tt-body-index blockquote[data-ke-style='style3'] > span {
    font-family: unset !important;
}
#tt-body-page blockquote[data-ke-style='style3']:hover,
#tt-body-index blockquote[data-ke-style='style3']:hover {
    border-color: var(--color-pointBd) !important;
    background: var(--color-pointBg) !important;
}
/* 제목용 */
#tt-body-page h2[data-ke-size],
#tt-body-page h3[data-ke-size],
#tt-body-page h4[data-ke-size],
#tt-body-index h2[data-ke-size],
#tt-body-index h3[data-ke-size],
#tt-body-index h4[data-ke-size] {
    font-weight: var(--fw-bold);
}
#tt-body-page h2[data-ke-size],
#tt-body-index h2[data-ke-size] {
    font-size: calc(var(--fs-l) + 2px);
}
#tt-body-page h3[data-ke-size],
#tt-body-index h3[data-ke-size] {
    font-size: var(--fs-l);
}
#tt-body-page h4[data-ke-size],
#tt-body-index h4[data-ke-size] {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 12px 0;
    border-left: 3px solid var(--color-point);
    font-size: var(--fs-m);
    color: var(--color-point);
}
/* 첨부파일 */
figure.fileblock,
#tt-body-page figure.fileblock,
#tt-body-index figure.fileblock {
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
    border: 0;
}
figure.fileblock .image,
#tt-body-page figure.fileblock .image,
#tt-body-index figure.fileblock .image {
    display: none;
}
figure.fileblock .desc,
#tt-body-page figure.fileblock .desc,
#tt-body-index figure.fileblock .desc {
    position: static;
    max-width: 100%;
}
figure.fileblock .name,
#tt-body-page figure.fileblock .name,
#tt-body-index figure.fileblock .name {
    height: auto;
    color: var(--color-point);
    font-weight: var(--fw-boldEx);
    font-size: var(--fs-s);
}
figure.fileblock .filename,
#tt-body-page figure.fileblock .filename,
#tt-body-index figure.fileblock .filename {
    height: auto;
    margin: 0;
}
figure.fileblock .size,
#tt-body-page figure.fileblock .size,
#tt-body-index figure.fileblock .size {
    font-size: var(--fs-xs);
    color: var(--color-gray);
    font-weight: var(--fw-bold);
    margin: 0;
}
figure.fileblock a,
#tt-body-page figure.fileblock a,
#tt-body-index figure.fileblock a {
    display: inline-flex;
    max-width: 100%;
    position: relative;
    height: auto;
    padding: 6px 25px 8px 50px;
    border: var(--border-width) solid var(--color-point);
    border-radius: var(--border-radius-min);
    transition: var(--transition);
}
figure.fileblock a::after,
#tt-body-page figure.fileblock a::after,
#tt-body-index figure.fileblock a::after {
    display: none;
}
#tt-body-page figure.fileblock a::before,
#tt-body-index figure.fileblock a::before {
    font-family: "tabler-icons";
    font-size: 26px;
    color: var(--color-point);
    content: "\f912";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
#tt-body-page figure.fileblock,
#tt-body-index figure.fileblock {
    transition: all 0.15s;
}
#tt-body-page figure.fileblock a:hover,
#tt-body-index figure.fileblock a:hover {
    background: var(--color-pointBg);
}

/* - protected - */
.protected {
  padding: 45px 10px 55px 10px;
}
.protected_title { 
  display: inline-flex;
  align-items: center;
  font-weight: var(--fw-bold);
  padding-bottom: 18px;
}
.protected_title i {
  margin-right: 3px;
  font-size: var(--fs-m);
}
.protected_title a {
  font-size: var(--fs-m);
}
.protected_pw {
  display: flex;
  padding-top: 25px;
}
.protected_pw input[type="password"] {
  border: 0;
  background-color: var(--color-bgGray);
  font-size: var(--fs-s);
  font-weight: var(--fw-bold);
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border-radius: var(--border-radius-min);
}
.protected_pw input[type="submit"] {
  border: var(--border-width) solid var(--color-pointBd);
  background-color: var(--color-pointBg);
  color: var(--color-point);
  height: 40px;
  width: 45px;
  font-size: var(--fs-s);
  font-weight: var(--fw-boldEx);
  border-radius: var(--border-radius-min) !important;
  margin-left: 5px;
  transition: var(--transition);
}
.protected_pw input[type="submit"]:hover {
  background-color: var(--color-point);
  border-color: var(--color-point);
  color: #fff;
}
/* 중앙 정렬 */
.protected {
    text-align: center;
}
.protected_pw {
    justify-content: center;
}

/* - notice - */
#tt-body-index :is(.article_content) {
    border-bottom: 0;
    margin-bottom: 0;
}
#tt-body-index :is(.container_postbtn) {
    display: none;
}
#tt-body-index :is(.content_style) {
    padding-bottom: 0;
}

/* - memberlist - */
#memberlist {
  padding: 85px 0;
}
.member_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member_title {
  text-align: center;
  font-size: var(--fs-m);
  display: inline-block;
  margin: 0 auto;
}
.op_list {
  padding-top: 65px;
  display: flex;
  gap: 65px;
  justify-content: center;
}
.op_list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.op_list > li > span {
  font-size: calc((var(--fs-def) - 1px));
  font-weight: var(--fw-bold);
  transition: var(--transition);
}
/* 폴더아이콘 */
.folder_icon {
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
}
.folder_icon.lg {
  width: 125px;
  height: 100px;
}
.folder_icon.sm {
  width: 71px;
  height: 57px;
}
.folder_icon.lg.novel {
  background-image: url(./images/ohhedo_fd_icon_1.png);
}
.folder_icon.lg.comic {
  background-image: url(./images/ohhedo_fd_icon_3.png);
}
.folder_icon.lg.illust {
  background-image: url(./images/ohhedo_fd_icon_2.png);
}
.folder_icon.sm.novel {
  background-image: url(./images/ohhedo_fd_icon_sm_1.png);
}
.folder_icon.sm.comic {
  background-image: url(./images/ohhedo_fd_icon_sm_3.png);
}
.folder_icon.sm.illust {
  background-image: url(./images/ohhedo_fd_icon_sm_2.png);
}
/* memberbox */
/* 기본 상태 (숨김) */
.memberbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.3), opacity 0.25s ease;
  display: none;
  background: #fff;
  max-width: 90%;
  min-width: 460px;
}
/* 열렸을 때 */
.memberbox.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
} 
/* 닫힐 때 */
.memberbox.is-closing {
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
}
.memberbox .memberbox_top {
  height: 50px;
  background-color: var(--color-bgGray);
  border-bottom: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
}
.memberbox .memberbox_top > h3 {
  font-weight: var(--fw-bold);
  font-size: var(--fs-def);
  flex: 1;
}
.memberbox_close i {
  transition: var(--transition);
  color: var(--color-midGray);
}
.memberbox_close:hover i {
  color: var(--color-point);
}
.circles {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
}
.circles > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.circles > span:nth-child(1) {
  background-color: #f75d52;
}
.circles > span:nth-child(2) {
  background-color: #fcc655;
}
.circles > span:nth-child(3) {
  background-color: #3dbf4b;
}
.memberbox .memberbox_content {
  background-color: #fff;
  padding: 35px 0;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
/* memberlist */
.memberlist {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 0;
}
.memberlist > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  padding: 0 10px;
}
.memberlist > li > strong {
  font-weight: var(--fw-bold);
  font-size: calc(var(--fs-def) - 1px);
}
.memberlist > li > a {
  color: var(--color-gray);
  font-size: var(--fs-s);
}
#opNovel:hover > span,
#layer_novel .memberlist > li > a:hover {
  color: #f38583;
}
#opComic:hover > span,
#layer_comic .memberlist > li > a:hover {
  color: #84c9fa;
}
#opIllust:hover > span,
#layer_illust .memberlist > li > a:hover {
  color: var(--color-sub);
}

/* - tooltip - */
.tooltip {
    display: none;
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);
    font-size: var(--fs-xs);
    background: #fff;
    border: var( --inline-line-width) solid var(--color-line);
    color: var(--color-point);
    border-radius: var(--border-radius-min);
    padding: 3px 10px;
    font-weight: var(--fw-bold);
    z-index: 9999;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- footer  ---------- */
/* ------------------------------------------------- */
#footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100px;
}
#footer > span {
  text-align: center;
  font-size: var(--fs-xs);
}
#footer .copy {
  font-weight: var(--fw-bold);
}
#footer .de {
  color: var(--color-midGray);
}
/* ------------------------------------------------- */




/* ------------------------------------------------- */
/* cover */
/* ------------------------------------------------- */
body:not(#tt-body-index) .cover_main {
  display: none;
}
.cover_main {
  position: relative;
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover_main::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(./images/ohhedo_main_bg_pt.png);
  background-repeat: repeat;
  background-position: center;
}
.main_imgbox {
  position: relative;
  background-color: #fff;
  width: 560px;
  max-width: 80%;
  isolation: isolate;
  aspect-ratio: 1/1.4;
  border: 2px solid var(--color-line);
  border-radius: var(--border-radius);
}
.main_img {
  position: absolute;
  overflow: hidden;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--border-radius);
}
/* obj */
.cover_obj {
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
}
.cover_obj_1 { /* 과자 */
  width: clamp(220px, 17vw, 325px);
  height: auto;
  aspect-ratio: 325 / 327;
  top: clamp(30px, 2.8vw, 55px);
  left: 0;
  background-image: url(./images/ohhedo_main_ob_4.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cover_obj_2 { /* 담배 */
  width: clamp(260px, 21vw, 401px);
  height: auto;
  aspect-ratio: 401 / 311;
  right: 0;
  bottom: clamp(20px, 1.8vw, 35px);
  background-image: url(./images/ohhedo_main_ob_5.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cover_obj_3 { /* 일정표 */
  width: clamp(250px, 19.5vw, 376px);
  height: auto;
  aspect-ratio: 376 / 374;
  left: calc(30vw - 320px);
  bottom: clamp(20px, 1.8vw, 35px);
  background-image: url(./images/ohhedo_main_ob_1.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: float_b 3s linear 1s infinite;
  transform-origin: 50% 50%;
}
.cover_obj_4 { /* 라인업 */
  width: clamp(230px, 18.5vw, 357px);
  height: auto;
  aspect-ratio: 357 / 313;
  right: calc(35vw - 360px);
  top: clamp(50px, 4.4vw, 85px);
  background-image: url(./images/ohhedo_main_ob_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: float_a 3s linear 1s infinite;
  transform-origin: 50% 50%;
}
.cover_obj_5 { /* 포스트잇1 */
  z-index: 9;
  width: clamp(150px, 12.2vw, 235px);
  height: auto;
  aspect-ratio: 235 / 199;
  right: clamp(-100px, -9.3vw, -180px);
  bottom: clamp(15px, 1.3vw, 25px);
  background-image: url(./images/ohhedo_main_ob_3.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cover_obj_6 { /* 포스트잇2 */
  z-index: 9;
  width: clamp(90px, 7vw, 135px);
  height: auto;
  aspect-ratio: 135 / 136;
  left: clamp(-40px, -3.9vw, -75px);
  top: clamp(15px, 1.3vw, 25px);
  background-image: url(./images/ohhedo_main_ob_6.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1680px) {
  .main_imgbox {
    width: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .cover_obj_1,
  .cover_obj_2,
  .cover_obj_3,
  .cover_obj_4 {
    display: none;
  }
  .cover_obj_5 {
    right: -45px;
  }
}

@keyframes float_a {
  0% {
    transform: translateY(0); }
  25% {
    transform: translateY(10px); }
  50% {
    transform: translateY(0); }
  75% {
    transform: translateY(10px); }
  100% {
    transform: translateY(0px); } }
@keyframes float_b {
  0% {
    transform: translateY(0); }
  25% {
    transform: translateY(-10px); }
  50% {
    transform: translateY(0); }
  75% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0px); } }
/* cover_top */
.cover_top {
  display: flex;
  justify-content: center;
  padding: 35px 0;
}
.cover_title {
  position: relative;
  z-index: 9;
  border: var(--border-width) solid #ffb7cc;
  font-size: var(--fs-m);
  display: inline-block;
  border-radius: 50%; 
  padding: 5px 35px;
  background-color: #fff;
  color: var(--color-point);
  box-shadow: 0px 0px 10px rgba(255,255,255, 0.85);
}
/* 슬라이드 */ 
.cover_web {
  position: relative;
  border-top: var(--border-width) solid var(--color-pointBd);
  border-bottom: var(--border-width) solid var(--color-subBd);
  background-image: var(--color-gr-bt);
}
.cover_web::before {
  content: '';
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(./images/ohhedo_bg_pt_wh.png);
}
.cover_web.slide1 .cover_container {
    padding-bottom: 100px;
}
.cover_web.slide1 .cover_content {
  width: var(--container-size);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cover_web.slide1 .navigation {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transition: var(--transition);
    pointer-events: none;
}
.cover_web.slide1 .navigation > span {
    position: relative;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    transition: var(--transition);
    pointer-events: auto;
}
.cover_web.slide1 .navigation > span::before {
    content: "";
    position: absolute;
    border-top: var(--border-width) solid var(--color-point);
    border-right: var(--border-width) solid var(--color-point);
    width: 10px;
    height: 10px;
    top: 12px;
    transition: var(--transition);
}
.cover_web.slide1 .navigation > span.navigation_prev::before {
    transform: rotate(225deg) translate(0);
    left: 15px;
}
.cover_web.slide1 .navigation > span.navigation_next::before {
    transform: rotate(45deg) translate(0);
    right: 15px;
}
.cover_web.slide1 .navigation > span:hover {
    background-color: var(--color-point);
}
.cover_web.slide1 .navigation > span:hover::before {
    border-color: #fff;
}
.cover_web.slide1 .navigation > span.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}
.cover_web.slide1 .cover_content:hover .navigation {
    opacity: 1;
}
.cover_web.slide1 .swiper-pagination {
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.cover_web.slide1 .swiper-pagination > span {
    width: 25px;
    height: 25px;
    line-height: 25px;
    transition: var(--transition);
    opacity: 1;
    background: none;
    border-radius: 0;
}
.cover_web.slide1 .swiper-pagination > span::before {
  content: '\eb2e';
  font-family: var(--font-icon);
  color: var(--color-point);
  font-size: 18px;
}
.cover_web.slide1 .swiper-pagination > span:hover {
    color: var(--color-sub);
}
.cover_web.slide1 .swiper-pagination > span.swiper-pagination-bullet-active::before {
  content: '\f6a6';
}

.cover_item {
  width: 100%;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.cover_item:nth-child(odd) {
  background-image: linear-gradient(#fff, #fff), linear-gradient(125deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
.cover_item:nth-child(even) {
  background-image: linear-gradient(#fff, #fff), linear-gradient(-125deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
.cover_item .cover_item_info {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.cover_item_title { 
  padding: 10px 15px;
  font-weight: var(--fw-bold);
  transition: var(--transition);
}
.cover_item_title > p {
  text-align: justify;
  word-break: break-all;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.cover_item:nth-child(odd) .cover_item_info {
  background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
.cover_item:nth-child(odd) .cover_item_title {
  background-image: linear-gradient(45deg, var(--color-pointBg) 0%, var(--color-subBg) 100%);
}
.cover_item:nth-child(even) .cover_item_info {
  background-image: linear-gradient(#fff, #fff), linear-gradient(-45deg, var(--color-pointBd) 0%, var(--color-subBd) 100%);
}
.cover_item:nth-child(even) .cover_item_title {
  background-image: linear-gradient(-45deg, var(--color-pointBg) 0%, var(--color-subBg) 100%);
}
.cover_item_summary {
  padding: 10px 15px 5px 15px;
}
.cover_item_summary > p {
  text-align: justify;
  word-break: break-all;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 230px;
}
.cover_item:nth-child(odd) > a:hover .cover_item_title {
  color: var(--color-point);
}
.cover_item:nth-child(even) > a:hover .cover_item_title {
  color: var(--color-sub);
}

.cover_more_btn {
  display: flex;
  background: none;
  padding: 5px 15px;
  color: var(--color-midGray);
  font-size: var(--fs-s);
  font-weight: var(--fw-bold);
  align-items: center;
  margin-left: auto;
  margin-bottom: 10px;
}
.cover_item:nth-child(odd) > a:hover .cover_more_btn {
  color: var(--color-point);
}
.cover_item:nth-child(even) > a:hover .cover_more_btn {
  color: var(--color-sub);
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* - 탑버튼 - */
/* ------------------------------------------------- */
#floating { 
  display: none;
  position: fixed;
  right: 0; 
  bottom: 25px;
  z-index: 9995; 
}
#floating .floating_menu > div {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.back_control {
  background: var(--color-point);
  color: #fff;
}
.top_control {
  background: var(--color-subBd);
  color: #fff;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- mobile ---------- */
/* ------------------------------------------------- */
#mobile {
    position: relative;
    display: none;
}
.mobile_container {
  position: fixed;
  z-index: 9997;
  top: 0;
  left: -240px;
  width: 240px;
  height: calc(100vh);
  opacity: 0;
  transition: var(--transition);
  overflow-y: auto;
  overflow-x: hidden;
  /* 배경 */
  background: var(--color-gr);
  border-right: var(--border-width) solid var(--color-pointBd);
}
.mobile_container .inner {
    padding: 15px 0 35px 0;
}
.mobile_content {
    width: 200px;
    margin: 0 auto;
}
/* visible 상태 */
.mobile_container.visible {
    left: 0;
    opacity: 1;
    transition: left 0.3s linear;
}
/* 햄버거메뉴 */
.mobile_btn {
    position: fixed;
    z-index: 9998;
    top: 3px; 
    left: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.scroll-has .mobile_btn.scroll-down {
    opacity: 0;
}
.scroll-has .mobile_btn.scroll-up {
    position: fixed;
    opacity: 1;
}
.mobile_btn .iconbtn {
  width: 35px;
  height: 35px;
}
.mobile_btn .iconbtn i {
  font-size: 16px;
}
.mobile_btn span:nth-child(1) {
    top: 0;
}
.mobile_btn span:nth-child(2) {
    top: 6px;
}
.mobile_btn span:nth-child(3) {
    bottom: 1px;
}
.mobile_btn.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 5px);
}
.mobile_btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile_btn.open span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -5px);
}
/* 모바일배경 */
.mobile_bg {
    display: none;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    z-index: -1; 
}

@media only screen and (max-width:1200px) {
  /* main */
  .main_logo {
    padding-left: 20px;
  }
  .main_logo img {
    width: 360px;
  }
}
@media only screen and (max-width:1024px) {
  /* layout */
  .cover_web.slide1 .cover_content,
  body:not(#tt-body-index) #content {
      width: 760px; 
      max-width: 90%;
  }
  .head_container {
    width: 100%;
  }
  /* cover */
  .cover_top {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cover_web.slide1 .cover_container {
    padding-bottom: 65px;
  }
  /* line up */
  #memberlist {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .folder_icon.lg {
    width: 85px;
    height: 68px;
  }
  .op_list {
    gap: 35px;
    padding-top: 35px;
  }
}
@media only screen and (max-width:680px) {
  :root {
    --fs-m: calc(var(--fs-def) + 1px); 
    --fs-l: calc(var(--fs-def) + 2px); 
    --fs-xl: calc(var(--fs-def) + 4px); 
  }
  .tooltip {
      display: none !important;
  }
  /* line up */
  .memberbox {
    width: 90%;
    min-width: 0;
  }
  .memberbox .memberbox_content {
    max-height: 65dvh;
  }
  .memberbox .memberbox_top > h3 {
    font-size: var(--fs-s);
  }
  .memberlist > li {
    min-width: 100px;
  }
  .memberlist > li > strong {
    font-size: var(--fs-s);
  }
  /* mobile */
  nav:not(.mobile) { 
      display: none; 
  }
  #mobile { 
      display: block; 
  }
  /* main */
  .main_logo {
    padding-left: 12px;
  }
  .main_logo img {
    width: 280px;
  }
  .cover_item_summary > p {
    font-size: calc(var(--fs-def) - 1px);
    -webkit-line-clamp: 4;
    height: unset;
  }
  /* layout */
  .logobox.pc {
    width: 100px;
    padding-top: 10px;
  }
  .hd_icon {
    left: unset;
    right: 0;
  }
  /* article */
  article .article_content {
    padding-left: 30px;
    padding-right: 30px;
  }
  /* list */
  .list .list_container {
      padding-left: 0;
      padding-right: 0;
  }
  .list[id*="gal"]:not(#list_gal_3) .list_container {
      grid-template-columns: repeat(2, 1fr);
  }
  #list_web {
    padding: 0;
  }
  #list_web .list_thumb:has(.thumb) {
    margin-left: 0;
  }
  #list_web .list_item .list_thumb {
    width: 100%;
    height: 50vw;
    grid-row: unset;
    grid-column: 1/1;
  }
  #list_web .list_item .list_info {
    grid-row: 2/2;
  }
  #list_web .list_summary {
    grid-row: 3/3;
  }
  #list_web .list_summary > span {
    font-size: calc(var(--fs-def) - 1px);
  }
  #list_gal_2 .list_container {
    gap: 15px;
  }
  /* 사이드 여백 */
  .tt-comment-cont, .taglog_content {
      padding-left: 5px;
      padding-right: 5px;
  }
  /* 방명록 */
  .tt-area-write {
      flex-direction: column; 
  }
  .tt-box-thumb {
      margin-bottom: 15px;
  }
  body :is(.tt-list-reply > .tt-item-reply) {
      padding-left: 0;
      padding-right: 15px;
  }
  body :is(.tt-list-reply-comment > .tt-item-reply) {
      padding-right: 15px;
  }
  .guestbook .tt-comment-cont {
      padding-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .cover_main {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cover_obj_5 {
    width: 120px;
    height: 96px;
    right: -35px;
    bottom: 25px;
  }
  .cover_obj_6 {
    width: 80px;
    height: 81px;
    left: -35px;
    top: 15px;
  }
  .cover_top {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .list[id*="gal"]:not(#list_gal_3) .list_container {
      padding-left: 30px;
      padding-right: 30px;
      grid-template-columns: repeat(1, 1fr);
  }
}