:root {
  --DM-white: #fff;
  --DM-black: #000;
  --DM-gray: #545454;
  --DM-blue: #2673f0;
  --DM-yellow: rgb(255 217 81);
  --DM-border-color: rgba(0, 0, 0, 0.15);

  --DM-sky-1: #caf0f8;
  --DM-sky-2: #00b4d8;

  --color-primary: #f6aca2;
  --color-secondary: #f49b90;
  --color-tertiary: #f28b7d;
  --color-quaternary: #f07a6a;
  --color-quinary: #ee6352;
}

*,
body ul,
li,
a {
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: 'NanumSquareNeo-Variable';
  word-break: keep-all;
}

a {
  color: var(--DM-black);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cafe24Ssurround';
  padding-bottom: 10px;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

@font-face {
  font-family: 'NanumSquareNeo-Variable';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MaplestoryOTFBold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/MaplestoryOTFBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Cafe24Ssurround';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Cafe24Ssurround.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GangwonEdu_OTFBoldA';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEdu_OTFBoldA.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GyeonggiTitleM';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/GyeonggiTitleM.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cafe24Oneprettynight';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Oneprettynight.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ChosunGu';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@1.0/ChosunGu.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  border: 0;
}
.area_common .container {
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--DM-white);
  width: 100%;
  min-height: calc(100% - 50vh);
}
.image-container img,
#tt-body-page figure.imageblock img, 
figure.imageblock img {
  border-radius: 10px;
}

/* bg video */
.bgbg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: -2;
}
body>video.bg_video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: -1;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 50%;
  height: 50px;
  transform: translate(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--DM-white);
  padding: 0 10px;
  box-sizing: border-box;
  z-index: 10;
}

header>div>i {
  font-size: 1.8rem;
}

header>.logo {
  font-size: 1rem;
  max-width: 300px;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0;
}

header>div>.fa-compact-disc {
  animation: rotate_image 4s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes rotate_image {
  100% {
    transform: rotate(360deg);
  }
}

/* aside */
aside {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 250px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 56%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition-duration: 0.5s
}

@media (width < 1500px) {
  aside {
    left: -250px;
  }

  .aside_bg {
    position: fixed;
    left: -100%;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 0 0 / 50%);
  }
}

.aside_show {
  left: 0;
}

.area_profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  height: 100px;
  box-sizing: border-box;
}

.area_profile .txt_profile {
  padding-top: 5px;
  color: var(--DM-white);
  font-size: 0.8rem;
}

.post {
  display: flex;
  flex-direction: column;
}

.tit_post a {
  font-weight: 600;
  color: var(--DM-white);
  text-decoration: none;
}

.thumb_profile {
  display: block;
  width: 51px;
  height: 51px;
  border-radius: 10px;
  padding-right: 10px;
}

.thumb_profile img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.area_sub_category {
  padding: 40px 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: var(--DM-gray);
  border-bottom: 1px solid var(--DM-border-color);
}

.sub_category_item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.sub_category_item:hover>span,
.sub_category_item:hover>i {
  color: var(--DM-blue);
}

.sub_category_item i {
  font-size: 20px;
}

.sub_category_item span {
  padding-top: 5px;
  font-size: 14px;
  color: var(--DM-black);
}

.sub_category_list {
  display: none;
}

.down_icon:after {
  content: "\2b";
  float: right;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.active.down_icon:after {
  content: "\f068";
  float: right;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.link_sub_item::before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 10px;
}

.area_menu {
  display: flex;
}

.menu {
  box-sizing: border-box;
  position: relative;
  width: 250px;
  height: calc(100vh - 165px);
  overflow: auto;
}

.menu div {
  padding: 10px 20px;
  border-bottom: 1px solid var(--DM-border-color);
  cursor: pointer;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--DM-white);
  font-size: 0.9rem;
}

.menu div.active {
  color: var(--DM-blue)
}

.menu div.active i::before {
  content: '\f00c';
  font-family: "Font Awesome 5 free";
  font-weight: 600;
}

.menu div i {
  position: absolute;
}

.menu_sub {
  overflow: auto;
  height: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 20px;
  box-sizing: border-box;

  border-top: 1px solid var(--DM-border-color);
  border-bottom: 1px solid var(--DM-border-color);
  color: var(--DM-white);
}

.menu_sub>span {

  font-family: 'Cafe24Ssurround';
}

.menu_sub>.active {
  color: var(--DM-yellow);
  font-weight: 600;
}

.menu>div {
  display: none;
}

.area_menu_footer {
  height: 35px;
  border-top: 1px solid var(--DM-border-color);
  width: 100%;
  box-sizing: border-box;
}

.area_menu_footer>.copyright {
  padding: 10px;
  font-size: 0.7rem;
  color: var(--DM-white);
}

.link_tit {
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--color) !important;
  animation: flow 30s ease-in-out infinite;
  background: linear-gradient(-60deg, #904e95, #904e95, #e73c7e, #ee7752);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-family: 'MaplestoryOTFBold';
}

@keyframes flow {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.menu_bookmark li a {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 10px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--DM-white);
}

.menu_bookmark li a:hover {
  font-weight: 600;
  color: var(--DM-yellow) !important;
  background-color: rgb(0 0 0 / 20%) !important;
}

.link_item {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 10px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link_item:hover {
  font-weight: 600;
  color: var(--DM-yellow) !important;
  background-color: rgb(0 0 0 / 20%) !important;
}

.link_item.active {
  font-weight: 600;
  color: var(--DM-yellow) !important;
  background-color: rgb(0 0 0 / 20%) !important;
}

.category_list>.selected>.link_item {
  font-weight: 600;
  color: var(--DM-yellow) !important;
  background-color: rgb(0 0 0 / 20%) !important;
}

.link_sub_item {
  font-size: 0.8rem;
  font-weight: 400;
  padding: 10px;
  border-radius: 8px;
  display: block;
  width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category_list a {
  color: var(--DM-white);
  display: block;
}

.category_list .selected>.link_sub_item {
  color: var(--DM-yellow)
}

/* search */
.search_box {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
}

.search_box__ {
  border-radius: 14px;
  height: 300px;
  width: 600px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  background-color: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgb(0 0 0 / 56%);
  z-index: 10;
  overflow: auto;
}

@media (width < 800px) {
  .search_box__ {
    width: 350px;
    height: calc(100vh - 200px);
  }
}

.search_box .head {
  display: flex;
  border-bottom: 1px solid var(--DM-border-color);
  padding: 15px;
  font-size: 1.2rem;
  color: var(--DM-gray);
  background-color: var(--DM-white);
  border-radius: 14px 14px 0 0;
  z-index: 10;
}

.search_box .head span:nth-child(1) {
  padding-right: 20px;
}

.search_box .head span:nth-child(3) {
  padding-left: 20px;
}

.search_box .head input {
  width: calc(100% - 72px);
  background-color: inherit;
  font-size: 1rem;
  border: 0;
}

.search_box .head input:focus {
  outline: none;
}

.search_box .tag {
  padding: 20px;
  position: relative;
  z-index: 10;
}

.search_box .tag h4>a {
  padding-bottom: 20px;
  display: block;
  float: inherit !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--DM-yellow);;
}

/* calendar */
.calendar_box {
  position: fixed;
  box-sizing: border-box;
  width: 240px;
  right: 10px;
  top: 10px;
  z-index: 10;
  border-radius: 10px;
  background-color: rgb(0 0 0 / 56%);
  padding: 20px;
  transition-duration: 0.5s;
}

@media (width<1500px) {
  .calendar_box {
    display: none;
  }
}

.clock {
  display: flex;
  height: 100%;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 2rem;
  color: var(--DM-white);
}

.date {
  font-size: 1.0rem;
}

.time {
  font-size: 1.8rem;
}

/* music */
.music_box {
  position: fixed;
  width: 240px;
  height: 100px;
  top: 150px;
  right: 10px;
  z-index: 10;
  box-sizing: border-box;
  transition-duration: 0.5s;
}

@media (width<1500px) {
  .music_box {
    display: none;
  }
}

#app-cover {
  position: relative;
  top: 25%;
  right: 0;
  left: 0;
  margin: auto;
}

#player {
  position: relative;
  height: 100%;
  z-index: 3;
}

#player-track {
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  padding: 3px 12px 10px 60px;
  background-color: #fff7f7;
  border-radius: 15px 15px 0 0;
  transition: 0.3s ease top;
  z-index: 1;
}

#player-track.active {
  top: -52px;
}

#player-track .title {
  display: block;
  width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#album-name {
  color: #54576f;
  font-size: 7px;
  font-weight: bold;
}

#track-name {
  color: #acaebd;
  font-size: 5px;
  margin: 2px 0 13px 0;
}

#track-time {
  padding-top: 8px;
  height: 12px;
  margin-bottom: 3px;
  overflow: hidden;
}

#current-time {
  float: left;
}

#track-length {
  float: right;
}

#current-time,
#track-length {
  color: transparent;
  font-size: 11px;
  background-color: #ffe8ee;
  border-radius: 10px;
  transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
  color: #f86d92;
  background-color: transparent;
}

#s-area,
#seek-bar {
  position: relative;
  height: 4px;
  border-radius: 4px;
}

#s-area {
  background-color: #ffe8ee;
  cursor: pointer;
}

#ins-time {
  position: absolute;
  top: -29px;
  color: #fff;
  font-size: 12px;
  white-space: pre;
  padding: 5px 6px;
  border-radius: 4px;
  display: none;
}

#s-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 2;
}

#ins-time,
#s-hover {
  background-color: #3b3d50;
}

#seek-bar {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #fd6d94;
  transition: 0.2s ease width;
  z-index: 1;
}

#player-content {
  position: relative;
  height: 60px;
  background-color: #fff;
  border-radius: 15px;
  z-index: 2;
}

#album-art {
  position: absolute;
  top: 0px;
  width: 40px;
  height: 40px;
  margin-left: 25px;
  transform: rotateZ(0);
  transition: 0.3s ease all;
  box-shadow: 0 0 0 10px #fff;
  border-radius: 50%;
  overflow: hidden;
}

#album-art.active {
  top: -45px;
  box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: -10px auto 0 auto;
  background-color: #d6dee7;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  z-index: 2;
}

#album-art img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

#album-art img.active {
  opacity: 1;
  z-index: 1;
}

#album-art.active img.active {
  z-index: 1;
  animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
  0% {
    transform: rotateZ(0);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

#buffer-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 13px;
  color: #1f1f1f;
  font-size: 13px;
  font-family: Helvetica;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  padding: 6px;
  margin: -12px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.19);
  opacity: 0;
  z-index: 2;
}

#album-art img,
#buffer-box {
  transition: 0.1s linear all;
}

#album-art.buffering img {
  opacity: 0.25;
}

#album-art.buffering img.active {
  opacity: 0.8;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
  opacity: 1;
}

#player-controls {
  width: 150px;
  height: 100%;
  margin: 0 5px 0 141px;
  float: right;
  overflow: hidden;
}

.music_box .control {
  width: 33.333%;
  float: left;
  padding: 7px 0;
  display: flex;
  justify-content: center;
}

.music_box .button {
  width: 26px;
  height: 26px;
  padding: 10px;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.music_box .button i {
  display: block;
  color: #d6dee7;
  font-size: 26px;
  text-align: center;
  line-height: 1;
}

.music_box .button,
.button i {
  transition: 0.2s ease all;
}

.music_box .button:hover {
  background-color: #d6d6de;
}

.music_box .button:hover i {
  color: #fff;
}

/* recentlyAtc */
.recentlyAtc_box {
  position: fixed;
  box-sizing: border-box;
  width: 240px;
  height: calc(100% - 260px);
  right: 10px;
  top: 250px;
  border-radius: 10px;
  background-color: rgb(0 0 0 / 56%);
  padding: 20px;
  z-index: 10;
  color: var(--DM-white);
  transition-duration: 0.5s;
  overflow: auto;
}

@media (width<1500px) {
  .recentlyAtc_box {
    display: none;
  }
}

.recentPost .recentPost_box {
  display: flex;
  padding-bottom: 20px;
}

.recentPost .title {
  width: 130px;
  height: 35px;
  line-height: 1.2rem;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--DM-white);
}

.recentPost .date-n-category,
.recentPost .date-n-category a {
  padding-top: 5px;
  width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--DM-white);
  font-size: 0.8rem;
}

.recentPost img {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  margin-left: 20px;
}

/* main */
.main {
  position: relative;
  left: 50%;
  height: 100vh;
  transform: translate(-50%);
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.555);

  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.benner {
  position: relative;
  height: 50vh;
  padding: 20px;
  box-sizing: border-box;
}

.benner>.text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--DM-white);
}

.benner>.text>.text_animation {
  background: linear-gradient(to right, #3b3b3b 50%, var(--DM-yellow) 40%);
  background-clip: border-box;
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  transition: 4s ease-in-out;
  animation: textanimation reverse infinite 4s;
  transition: 4s cubic-bezier(0, 0.21, 0.18, 0.9);
}

@keyframes textanimation {
  to {
    background-position: 200% center;
  }
}

.main>.des {
  background-color: var(--DM-white);
  width: 100%;
  min-height: calc(100% - 50vh);
}

/* 커버 */
.area_cover {
  padding: 20px;
  box-sizing: border-box;
}

.area_cover .container__ {
  padding-bottom: 50px;
}

/* 메인-커버 */
s_cover:nth-child(2) .container_,
s_cover:nth-child(3) .container_ {
  padding: 50px 0 0 0;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  transition: 1s;
}

/* 메인-커버-슬라이드 */
/* slide-item */

.area_cover .slide {
  width: 100%;
  height: 300px;
  box-sizing: border-box;
  padding-top: 10px;
}

.area_cover .swiper-slide {
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
}

.area_cover .swiper-slide .image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  filter: brightness(100%);
  background-color: var(--DM-border-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.area_cover .swiper-slide .detail {
  padding-top: 10px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  overflow: hidden;
  display: block;
  max-height: 4rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.area_cover .swiper-slide span {
  font-size: 0.9rem;
  line-height: 2rem;
  font-weight: 400;
  overflow: hidden;
  display: block;
  max-height: 3.6rem;
  -webkit-line-clamp: 2;
}

.area_cover .swiper-button-disabled {
  color: #d7d7d7;
}

.area_cover .page-run {
  width: 120px;
  display: flex;
  justify-content: flex-end;
}

.area_cover .header {
  font-family: 'Cafe24Ssurround';
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.area_cover .slide-item .header>.page-run>span>i {
  width: 30px;
  font-size: 30px;
}

/* 메인-커버-그리드 */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 25%);
}

@media (width < 1600px) {
  .grid {
    grid-template-columns: repeat(4, 25%);
  }
}

@media (width < 1200px) {
  .grid {
    grid-template-columns: repeat(3, 33.3%);
  }
}

@media (width < 640px) {
  .grid {
    grid-template-columns: repeat(2, 50%);
  }
}

.item_ {
  padding: 10px;
  border-radius: 10px;
}


.item_:hover {
  background-color: #f7f7f7;
}

.item_ .image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  filter: brightness(100%);
  background-color: var(--DM-border-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item_ .detail {
  padding-top: 10px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.item_ span {
  padding-top: 2px;
  font-size: 0.9rem;
  line-height: 25px;
  font-weight: 400;
  overflow: hidden;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.area_cover .grid-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 20px;
}

.area_cover .best-desription .item_ span {
  display: block;
  line-height: 1.5rem;
  max-height: 3rem;
}

.area_cover .best-desription .item_ {
  margin-bottom: 10px;
}

.area_cover .best-desription .detail-title {
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.area_cover .detail-description {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 25px;
  font-weight: 500;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

/* list */
.s_list .header {
  font-family: 'MaplestoryOTFBold';
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
}

.s_list .list {
  margin-top: 20px;
}

.s_list .container {
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--DM-white);
  width: 100%;
  min-height: calc(100% - 50vh);
}
.s_list .best-desription .item {
  margin-bottom: 10px;
}

.s_list .item .image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  filter: brightness(100%);
}

.s_list .item .detail {
  padding-top: 10px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.s_list .best-desription .detail-title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.s_list .best-desription .item span {
  margin-top: 10px;
  display: block;
  line-height: 1.5rem;
  max-height: 3rem;
}

.s_list .detail-description {
  margin-top: 10px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.btn_register {
  background: var(--DM-blue);
  color: #fff;
  border-radius: 10px;
}

.s_list_benner {
  width: 100%;
  height: 400px;
  background-size: cover;
}
/* area_view */
.area_view .area_article {
  padding: 20px 40px 110px 40px;
  box-sizing: border-box;
  background-color: var(--DM-white);
  width: 100%;
  min-height: calc(100% - 50vh);
}
.area_view .article_view p{
  font-family: 'NanumSquareNeo-Variable';
  line-height: 1.9rem;
}
.area_view h1,
.area_view h2,
.area_view h3,
.area_view h4,
.area_view h5{
  font-family: 'GyeonggiTitleM';
  padding: 40px 0 20px 0;
}
/* area_tag - 상세페이지 태그  */
.area_tag {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.area_tag:after {
  content: '';
  display: block;
  clear: both;
}

.area_tag .title_tag {
  float: left;
  margin: 0;
  padding: 0 40px 0 0;
  font-size: 16px;
  font-weight: 900;
  color: #333;
  text-align: center;
  padding-top: 6px;
}

.area_tag .tag_content {
  overflow: hidden;
}

.area_tag .tag_content a {
  color: #333;
  text-decoration: none;
  margin-left: 5px;
  line-height: normal;
}

.area_tag .tag_content a:hover {
  text-decoration: underline;
}

.area_tag .tag_content a:first-child {
  margin-left: 0
}

/* media query - mobile */
@media screen and (max-width: 1023px) {
  .area_tag {
    padding: 30px 0;
  }

  .area_tag .title_tag {
    font-size: 16px;
    line-height: normal;
  }
}

/* area_related - 상세페이지 관련글 */
.area_related {
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.area_related a {
  text-decoration: none;
}

.area_related button {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  overflow: visible;
}

.area_related .title_related {
  margin: 40px 0 20px 0;
  font-size: 16px;
  font-weight: 900;
}

.area_related .list_related {
  list-style: none;
  margin: 0 -8px;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

.area_related .list_related:after {
  content: '';
  display: block;
  clear: both;
}

.area_related .item_related {
  float: left;
  width: 25%;
  margin-bottom: 40px;
}

.area_related .link_related {
  display: block;
  margin: 0 8px;
}

.area_related .thumnail {
  display: block;
  width: 100%;
  padding-top: 50%;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 10px;
}

.area_related .link_related strong {
  display: block;
  max-height: 45px;
  margin: 12px 0 0;
  line-height: 1.47;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.area_related .info {
  display: inline-block;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.38);
}

/* media query - mobile */
@media screen and (max-width: 1023px) {
  .area_related .title_related {
    margin: 30px 0 0 0;
    font-size: 16px;
    line-height: normal;
  }

  .area_related .item_related {
    float: left;
    width: 50%;
    padding: 16px 0;
    margin-bottom: 0;
  }

  .area_related li:first-child {
    border: none;
    padding-bottom: 16px;
  }

  .area_related .link_related strong {
    margin: 12px 0 2px 0;
  }

  .area_related .item_related:last-child {
    margin-bottom: 30px;
  }
}

/* // area_related */
/* area_reply - 상세페이지 댓글*/
.area_reply {
  width: 100%;
  overflow: hidden;
}

.area_reply ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.area_reply a {
  text-decoration: none;
}

.area_reply .box_reply_info {
  margin: 40px 0 20px 0;
}

.area_reply .reply_events {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

.area_reply .btn_more {
  margin-top: 5px;
  padding: 3px 0 0 15px;
  border: 0;
  background-color: transparent;
  background-size: 10px 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.area_reply .item_reply {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.area_reply li:first-child {
  padding-top: 0;
}

.area_reply li:last-child {
  border: none;
}

.area_reply .thumbnail_reply {
  float: left;
  width: 45px;
  height: 45px;
  margin-right: 16px;
  background: none;
}

.area_reply .thumbnail_reply img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.area_reply .box_reply_content {
  overflow: hidden;
}

.area_reply .item_reply .user a {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.area_reply .item_reply .date {
  display: inline-block;
  padding-top: 10px;
  padding-left: 3px;
}

.area_reply .item_reply .date a {
  font-weight: 300;
  font-size: 14px;
  padding-left: 4px;
}

.area_reply .box_reply_content .txt {
  margin: 10px 0 0 0;
  font-size: 16px;
}

.area_reply .item_reply .modify {
  margin-top: 8px;
  font-size: 15px;
}

.area_reply .modify a {
  color: #9b9b9b;
}

.area_reply .modify .slash {
  color: #e1e1e1;
}

.area_reply .list_reply_comment {
  margin-top: 30px !important;
}

.area_reply .ico_commnent {
  float: left;
  width: 43px;
  margin-right: 10px;
  color: rgba(51, 51, 51, 0.6);
  text-align: right;
}

.area_reply .item_comment {
  padding: 10px;
}

.area_reply .reply_write:after {
  content: '';
  display: block;
  clear: both;
}

.area_reply .form_content {
  padding-bottom: 10px;
}

.area_reply .form_content textarea {
  width: calc(100% - 30px);
  height: 102px;
  padding: 12px 14px;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  vertical-align: top;
  border-radius: 10px;
}

.area_reply .form_guest {
  margin: 0 -4px;
}

.area_reply .form_guest:after {
  content: '';
  display: block;
  clear: both;
}

.area_reply .box_inp {
  float: left;
  width: 100%;
  margin-bottom: 8px;
}

.area_reply .box_inp:nth-child(-n+2) {
  width: 50%;
}

.area_reply .inner_inp {
  margin: 0 4px;
  padding: 9px 14px;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
}

.area_reply .inner_inp input {
  width: 90%;
  border: none;
  font-size: 14px;
  line-height: 1.25;
}

.area_reply .form_reg {
  text-align: right;
}

.area_reply .form_reg label {
  display: inline-block;
  margin-right: 20px;
  padding-top: 7px;
  font-size: 14px;
  color: #9b9b9b;
}

.area_reply .form_reg label input {
  vertical-align: -1px;
}

.area_reply .btn_register {
  width: 115px;
  height: 42px;
  border: none;
  color: #fff;
  cursor: pointer;
}
/* paging */

/* media query - mobile */
@media screen and (max-width: 1023px) {
  .area_reply .box_reply_info {
    margin: 30px 0 10px 0;
  }

  .list_reply_comment .ico_commnent {
    width: 10px;
  }

  .list_reply_comment li:first-child {
    padding-top: 30px;
  }

  .item_comment.reply {
    padding: 15px;
  }

  .list_reply_comment .item_comment {
    background: #fafafa;
  }

  .list_reply .item_reply .user a {
    margin-bottom: 5px;
  }

  .list_reply .item_reply .date {
    display: block;
    padding: 0;
    font-size: 14px;
  }

  .list_reply .item_reply .dot {
    display: none;
  }
}

/* 미디어 로그 티스토리 스타일 수정 */
#mediaLogNest {
  max-width: 1180px;
  height: auto !important;
  margin: 200px auto 0 auto;
  padding: 0 20px;
}

/* 카테고리 다른글 */
.article_view .another_category table,
.article_view .another_category table * {
  border: none;
}

/* media query - only mobile */
@media screen and (max-width: 768px) {
  .area_common {
    margin-top: 36px;
    padding-top: 60px;
  }
}

.item-thumbnail {
  background: #e9e9e9 url(./images/ico_no.svg) no-repeat center;
}

.no-img {
  background: #e9e9e9 url(./images/ico_no.svg) no-repeat center !important;
  background-size: 30px 30px !important;
}

.btn-for-guest {
  display: none;
}

.btn-for-user {
  display: none;
}
/* // area_cover */
/* title_section */
.title_section {
  position: relative;
  width: 100%;
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 900;
  color: #333;
}

/* type_featured - 슬라이드 커버 */
.type_featured {
  position: relative;
  margin-top: 120px;
}

.type_featured:after {
  content: '';
  display: block;
  clear: both;
}

.type_featured .slide_zone {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--vh-offset, 0px));
}

.type_featured .inner_main_slide {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 80px;
}

.type_featured .box_arrow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: -18px;
  padding: 0 65px 0 80px;
  z-index: 10;
  box-sizing: border-box;
}

.type_featured .btn_arrow {
  width: 64px;
  height: 64px;
  padding-top: 4px;
  border-radius: 64px;
  background-color: rgba(0, 0, 0, 0.7);
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  transition: .2s ease-out;
}

.type_featured .btn_arrow:hover {
  color: #fff;
}

.type_featured .btn_prev {
  float: left;
  background-image: url(./images/arr_left.png);
}

.type_featured .btn_next {
  float: right;
  background-image: url(./images/arr_right.png);
}

.type_featured .slide_item {
  z-index: 1;
  overflow: hidden;
}

.type_featured .link_slide {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  height: calc(100vh - var(--vh-offset, 0px));
  ;
  background-size: cover;
  background-position: 50% 50%;
  overflow: hidden;
  z-index: 1;
}

.type_featured .link_slide:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.54);
  transition: background-color .3s ease-in-out;
}

.type_featured .text_slide {
  position: relative;
  display: flex;
  -ms-display: flexbox;
  /* IE 10 */
  display: -webkit-flex;
  /* Safari */
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 76px;
  font-size: 44px;
  color: #fff;
  z-index: 10;
}

.type_featured .text_slide strong {
  display: block;
  max-height: 130px;
  max-width: 1024px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.type_featured .text {
  width: 60%;
  max-height: 85px;
  margin: 20px 0 40px 0;
  font-size: 16px;
  line-height: 28px;
  word-break: keep-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.type_featured .link_detail {
  display: inline-block;
  width: 194px;
  height: 50px;
  line-height: 53px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.type_featured .slide_page {
  position: absolute;
  left: 37px;
  bottom: 60px;
  font-size: 0;
  text-align: center;
  z-index: 10;
}

.type_featured .slide_page li {
  display: inline-block;
}

.type_featured .ico_circle {
  width: 10px;
  height: 10px;
  margin: 0 3px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  outline: none;
}

/* // type_featured */
/* media query - tablet */
@media screen and (max-width: 1406px) {
  .type_featured {
    margin-top: 60px;
  }

  .type_featured .text_slide {
    padding: 0 80px;
    font-size: 40px;
  }

  .type_featured .box_arrow {
    display: none;
  }
}

/* media query - mobile */
@media screen and (max-width: 1023px) {
  .type_featured .text_slide strong {
    max-height: 140px;
    font-size: 30px;
    -webkit-line-clamp: 3;
  }

  .type_featured .text_slide {
    position: absolute;
    bottom: 100px;
    height: auto;
    padding: 0 24px;
    font-size: 32px;
  }

  .type_featured .text_slide .text {
    width: 100%;
    margin: 20px 0 30px 0;
    line-height: 28px;
  }

  .type_featured .slide_page {
    left: 24px;
    bottom: 40px;
    padding: 0;
  }
}

/* media query - only mobile */
@media screen and (max-width: 768px) {
  .type_featured .link_detail {
    padding-top: 2px;
    font-size: 13px;
    line-height: 40px;
    height: 40px;
    width: 120px;
  }

  .type_featured .ico_circle {
    width: 8px;
    height: 8px;
  }
}

/* type_post - 갤러리 커버 */
.type_post {
  max-width: 1180px;
  margin: 120px auto -20px auto;
  overflow: hidden;
}

.type_post:after {
  content: '';
  display: block;
  clear: both;
}

.type_post .list_post,
.category_type_post .list_category {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

.list_post .item_post,
.category_type_post .item_category {
  float: left;
  width: 25%;
  margin-bottom: 20px;
}

.list_post .link_post,
.category_type_post .link_category {
  position: relative;
  display: block;
  margin: 0 10px;
  padding-top: 143%;
  background-size: cover;
  background-position: 50% 50%;
}


.list_post .item_post:hover .link_post:before,
.category_type_post .item_category:hover .link_category:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.list_post .info .date,
.category_type_post .date {
  display: none;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.31;
}

.list_post .link_post:hover .info,
.category_type_post .link_category:hover .info {
  display: flex;
}

.list_post .link_post .info,
.category_type_post .link_category .info {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}

.list_post .link_post .info .name,
.category_type_post .link_category .info .name {
  display: block;
  width: calc(100% - 80px);
  max-height: 65px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.33;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* media query - mobile */
@media screen and (max-width: 1023px) {
  .type_post {
    margin: 60px auto 0 auto;
  }

  .title_section {
    margin: 0 0 20px 0;
    font-size: 16px;
    text-align: left;
  }

  .type_post .title_section {
    text-align: center;
  }

  .list_post,
  .category_type_post {
    margin: 0 -1px;
  }

  .list_post .item_post,
  .category_type_post .item_category {
    margin-bottom: 1px;
  }

  .list_post .link_post,
  .category_type_post .link_category {
    margin: 0 0.5px;
  }

  .item_post .link_post:before,
  .category_type_post .item_category .link_category:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
  }

  .list_post .link_post .info,
  .category_type_post .link_category .info {
    display: flex;
  }

  .list_post .link_post .info .name,
  .category_type_post .link_category .info .name {
    width: calc(100% - 32px);
    font-size: 16px;
  }
}

/* media query - mobile specific */
@media screen and (max-width: 375px) {

  .list_post .link_post .info .name,
  .category_type_post .link_category .info .name {
    width: calc(100% - 32px);
    font-size: 13px;
  }
}

/* // type_post */
/* type_card - 섬네일 커버*/
.type_card {
  max-width: 1180px;
  margin: 120px auto -60px auto;
  overflow: hidden;
}

.type_card:after {
  content: '';
  display: block;
  clear: both;
}

.list_type_card {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
  font-size: 0;
}

.list_type_card .item_card {
  display: inline-block;
  width: 25%;
  margin-bottom: 58px;
  vertical-align: top;
}

.list_type_card .link_card {
  display: block;
  margin: 0 10px;
  color: #333;
  line-height: 1.33;
  transition: all .2s ease-out;
}

.list_type_card .link_card:hover {
  opacity: 0.6;
}

.list_type_card .link_card strong {
  display: block;
  margin: 18px 8px 6px 0;
  font-size: 16px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.list_type_card .link_card .thumnail {
  display: block;
  width: 100%;
  padding-top: 50%;
  background-size: cover;
  background-position: 50% 50%;
}

.list_type_card .link_card .text {
  max-height: 78px;
  margin: 0;
  font-size: 14px;
  color: #777;
  line-height: 1.71;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* media query - mobile */
@media screen and (max-width: 1023px) {
  .type_card {
    margin: 60px auto -30px auto;
    padding: 0 24px;
  }

  .type_card .list_type_card {
    margin: 0 -8px;
  }

  .type_card .item_card {
    width: 50%;
    margin-bottom: 30px;
  }

  .type_card .link_card strong {
    margin: 16px 8px 4px 0;
    -webkit-line-clamp: 1;
  }

  .type_card .link_card {
    margin: 0 8px;
  }

  .type_card .link_card .text {
    -webkit-line-clamp: 2;
    line-height: 1.5;
  }

  .list_type_card .link_card .thumnail {
    padding-top: 65%;
  }
}

/* // type_card */
/* type_banner - 와이드패널 커버 */
.type_banner {
  max-width: 1180px;
  margin: 120px auto 0 auto;
}

.list_type_banner {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list_type_banner .link_banner {
  position: relative;
  display: block;
  height: 280px;
  font-size: 24px;
  color: #333;
  background-size: cover;
  background-position: 50% 50%;
  transition: all .2s ease-out;
}

.list_type_banner li:nth-child(even) .box_content {
  float: right;
  text-align: right;
}

.list_type_banner li:nth-child(even) .btn_go {
  right: 50px;
  left: auto;
}

.list_type_banner .box_content {
  width: 70%;
  padding: 47px 45px 50px 48px;
}

.list_type_banner .link_banner:hover {
  opacity: 0.6;
}

.list_type_banner .link_banner strong {
  display: block;
  max-height: 58px;
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.list_type_banner .link_banner .text {
  max-height: 80px;
  margin: 12px 4px 0 2px;
  font-size: 16px;
  color: #fff;
  line-height: 1.62;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.list_type_banner .link_banner .btn_go {
  position: absolute;
  left: 50px;
  bottom: 48px;
  width: 42px;
  height: 42px;
  background: #000;
  border-radius: 42px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

/* media query - mobile */
@media screen and (max-width: 1023px) {
  .type_banner {
    margin-top: 60px;
    padding: 0 24px;
  }

  .list_type_banner .link_banner {
    height: 100px;
  }

  .list_type_banner .box_content {
    width: 100%;
    padding: 25px;
  }

  .list_type_banner .link_banner strong {
    display: block;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 26px;
    overflow: hidden;
  }

  .list_type_banner .link_banner .btn_go {
    display: none;
  }

  .list_type_banner .link_banner .text {
    display: inline-block;
    width: 100%;
    margin: 2px 0 0 0;
    line-height: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

/* // type_banner */
/* type_notice - 리스트 커버 */
.type_notice {
  max-width: 1180px;
  margin: 120px auto 0 auto;
}

.type_notice:after {
  content: '';
  display: block;
  clear: both;
}

.type_notice .thumnail,
.category_type_notice .thumnail {
  float: left;
  display: block;
  width: 280px;
  height: 160px;
  margin-right: 24px;
  background-size: cover;
  background-position: 50% 50%;
}

.type_notice .info,
.category_type_notice .info {
  padding-top: 8px;
  overflow: hidden;
}

.list_type_notice,
.category_type_notice .list_category {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: solid 2px #333;
}

.list_type_notice:after,
.category_type_notice .list_category:after {
  content: '';
  display: block;
  clear: both;
}

.list_type_notice .item_notice,
.category_type_notice .item_category {
  padding: 30px 0;
  border-bottom: 1px solid #ebebeb;
}

.list_type_notice .item_notice:after,
.category_type_notice .item_category:after {
  content: '';
  display: block;
  clear: both;
}

.list_type_notice .link_notice,
.category_type_notice .link_category {
  display: block;
  color: #333;
  transition: all .2s ease-out;
}

.list_type_notice .link_notice:hover,
.category_type_notice .link_category:hover {
  color: rgba(0, 0, 0, 0.6);
}

.list_type_notice .link_notice strong,
.category_type_notice .link_category strong {
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.list_type_notice .link_notice .text,
.category_type_notice .link_category .text {
  font-size: 14px;
  line-height: 24px;
  margin: 6px 0 12px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #777;
  width: 95%;
}

.list_type_notice .link_notice .date,
.category_type_notice .link_category .date {
  display: block;
  font-size: 13px;
  line-height: 20px;
  opacity: .5;
}

.category_type_notice .item_category:after {
  content: '';
  display: block;
  clear: both;
}

/* media query - mobile */
@media screen and (max-width: 1023px) {

  .type_notice,
  .category_type_notice {
    margin-top: 60px;
    padding: 0 24px;
  }

  .type_notice .thumnail,
  .category_type_notice .thumnail {
    width: 160px;
    height: 160px;
    margin-right: 16px;
  }

  .list_type_notice .item_notice,
  .category_type_notice .item_category {
    padding: 20px 0;
  }
}

/* // type_notice */
/* media query - only mobile */
@media screen and (max-width: 768px) {

  .list_type_notice .link_notice strong,
  .category_type_notice .link_category strong {
    font-size: 16px;
    line-height: normal;
  }

  .list_type_notice .link_notice .text,
  .category_type_notice .link_category .text {
    margin: 4px 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .type_notice .thumnail,
  .category_type_notice .thumnail {
    width: 100px;
    height: 100px;
  }

  .type_notice .info,
  .category_type_notice .info {
    padding-top: 0;
  }
}

/* area_category */
.area_category {
  max-width: 1180px;
  margin: 148px auto 0 auto;
  padding: 120px 24px 0 24px;
}

.area_category a {
  text-decoration: none;
}

.area_category ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

.area_category .title_section span {
  padding-left: 8px;
  font-size: 16px;
  /*  vertical-align: 2px; */
}

.category_type_notice,
.category_type_post {
  margin-bottom: 60px;
}

/* category_type_post - list_category */
.category_type_post .list_category:after {
  content: '';
  display: block;
  clear: both;
}

.category_type_notice .link_category {
  background: none !important;
}

.category_type_post .link_category .text {
  display: none;
}

/* // category_type_post - list_category */
/* media query - mobile */
@media screen and (max-width: 1023px) {
  .area_category {
    margin-top: 70px;
    padding-top: 60px;
  }

  .area_category .title_section {
    text-align: left;
  }
}

/* type_related */
.category_type_related .list_category {
  list-style: none;
  margin: 0 -8px;
  padding: 0;
  border: none;
  box-sizing: border-box;
  font-size: 0;
}

.category_type_related .thumnail {
  display: block;
  width: 100%;
  padding-top: 50%;
  background-size: cover;
  background-position: 50% 50%;
}

.category_type_related .item_category {
  display: inline-block;
  width: 33.3%;
  margin-bottom: 54px;
  vertical-align: top;
}

.category_type_related .link_category {
  display: block;
  padding: 0 8px;
  background: none !important;
  color: #333;
}

.category_type_related .box_content {
  width: 100%;
}

.category_type_related .link_category strong {
  display: block;
  margin: 18px 0 6px 0;
  line-height: 28px;
  font-size: 18px;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category_type_related .link_related .info {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.38);
  line-height: 1.71;
}

.category_type_related .link_category .text {
  max-height: 70px;
  margin: 0 0 13px 0;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  opacity: 0.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  width: 95%;
}

.category_type_related .link_category .date {
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.38);
}

@media screen and (max-width: 1023px) {
  .category_type_related .item_category {
    width: 100%;
    margin-bottom: 30px !important;
  }

  .category_type_related .link_category strong {
    display: block;
    margin: 12px 0 4px 0;
    font-size: 17px;
  }

  .category_type_related .link_category .text {
    margin: 0 0 10px 0;
  }
}

/* // area_category */

/* area_index_category */
.area_index_category a {
  text-decoration: none;
}

.area_index_category .list_category {
  list-style: none;
  border: none;
  box-sizing: border-box;
}

/* // area_index_category */
.area_view .article_header .title_post {
  display: block;
  font-size: 40px;
  line-height: 1.5em;
  font-family: 'MaplestoryOTFBold';
}

.area_view .article_header .info {
  margin: 20px 0 0 0;
  font-size: 14px;
}

.area_view .txt_post {
  height: 160px;
  margin: 40px 0 30px 0;
  -webkit-line-clamp: 6;
}

/* area_view - area_post_btn */
.area_view .article_modify {
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
}

.area_view .article_modify:after {
  content: '';
  display: block;
  clear: both;
}

.area_view .list_share {
  margin: 60px 0 48px 0;
  font-size: 0;
  text-align: center;
}

.area_view .list_share:after {
  content: '';
  display: block;
  clear: both;
}

.area_view .list_share .item_share {
  display: inline-block;
  margin-right: 12px;
  list-style: none;
}

.area_view .list_share .link_share {
  display: flex;
  -ms-display: flexbox;
  /* IE 10 */
  display: -webkit-flex;
  /* Safari */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 48px;
  font-size: 28px;
  color: rgba(0, 0, 0, 0.54);
  text-decoration: none;
  text-align: center;
}

.area_view .article_modify .box_util {
  float: left;
}

.area_view .article_modify button {
  background: none;
  padding: 5px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.area_view .article_modify i {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(http://t1.daumcdn.net/tistory_admin/static/admin/editor/ico_postbtn.png) no-repeat;
  overflow: hidden;
  vertical-align: top;
}

.area_view .article_modify .btn_like {
  padding-right: 10px;
  background: url(images/ico_dot.gif) no-repeat center right;
  line-height: 14px;
}

.area_view .article_modify .btn_share {
  margin-top: 15px;
}

.area_view .article_modify .btn_like .icon {
  background-position: 0 0;
}

.area_view .article_modify .btn_like .icon_like {
  background-position: -20px 0;
}

.area_view .article_modify .btn_share .icon {
  margin-top: 1px;
  background-position: -40px 0;
}

.area_view .article_modify .box_ccl {
  float: right;
  padding-top: 20px;
}

/* area_view - box_ccl */
.area_view .box_ccl .link_ccl {
  display: inline-block;
}

/* media query - mobile */
@media screen and (max-width: 1023px) {

  .area_view .article_header {
    text-align: left;
  }

  .area_view .article_header .inner_header {
    padding: 0 20px;
    box-sizing: border-box;
  }

  .type_article_header_common .inner_header {
    height: 520px;
  }

  .area_view .article_header .info_text {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .area_view .article_header .title_post {
    width: 100%;
    font-size: 28px;
    line-height: 38px;
  }
}

.article_view {
  max-width: 700px;
  margin: 80px auto 0 auto;
}

.article_view p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.88;
  color: #3c3c3c;
}

.article_view h1,
.article_view h2,
.article_view h3,
.article_view h4 {

  font-weight: 900;
  color: rgba(0, 0, 0, 0.87);
}

.article_view h1 {
  font-size: 32px;
  line-height: 1.33;
}

.article_view h2 {
  font-size: 24px;
  line-height: 1.38;
}

.article_view h3 {
  font-size: 20px;
  line-height: 1.4;
}

.article_view h4 {
  font-size: 18px;
  line-height: 1.33;
}

.article_view blockquote {
  margin: 0;
  padding-left: 19px;
  border-left: 1px solid;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.54);
}

.article_view ul,
.article_view ol {
  margin: 0;
  padding: 0 0 0 19px;
}

.article_view ul {
  margin-top: 18px;
}

.article_view ul li {
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.87);
  word-break: break-all;
}

.article_view ol {
  margin-bottom: 32px;
}

.article_view ol li {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.87);
  word-break: break-all;
}

.article_view figure {
  margin: 0;
}

.article_view table {
  border: 1px solid #dadce0;
  border-collapse: collapse;
}

.article_view table thead tr {
  background: rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #000;
}

.article_view table tr th,
.article_view table tr td {
  padding: 7px;
  border-left: 1px solid #dadce0;
}

.article_view table tr {
  border-bottom: 1px solid #dadce0;
}

.article_view pre {
  background: rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: rgba(34, 85, 51, 0.87);
  white-space: pre-wrap;
}

.article_view pre code.hljs {
  padding: 20px;
}

.article_view .cap1 {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
}

.article_view hr {
  margin: 30px 0;
}

.article_view a {
  display: inline-block;
  color: #3d62ce;
}

.article_view a:hover {
  opacity: 0.7;
}

.article_view .moreless_fold span,
.article_view .moreless_top span {
  font-size: 16px;
  line-height: 2.5;
}

.article_view .moreless_top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.article_view .moreless_bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.article_view .moreless_bottom span {
  display: none;
}

.article_view .footnote a {
  text-decoration: none;
}

.article_view .footnotes li {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.38);
}

.article_view .table-overflow {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article_view .table-overflow {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article_view img {
  max-width: 100%;
}

.another_category {
  display: none;
}

.article_view iframe {
  width: 100%;
  height: 500px;
  -ms-height: 30vmax;
}

/* 보호글 비밀번호 입력 */
.protected_form input {
  border: 1px solid #e1e1e1;
  padding: 9px 14px;
  font-size: 14px;
}

/* area_view - 유튜브 사이즈 제어 */
@media screen and (max-width: 743px) {
  .article_view iframe {
    width: 100%;
    height: 56vw;
    -ms-height: 56vmax;
  }
}

/* media query - only mobile */
@media screen and (max-width: 768px) {
  .article_view {
    margin-top: 40px;
  }
}

.container_postbtn {
  padding: 35px 0;
  position: relative;
  clear: both;
}

.container_postbtn .postbtn_like {
  float: left;
  padding: 0 9px;
  border-radius: 16px;
  border: 1px solid #959595;
  border-color: rgba(185, 185, 185, 0.5);
  font-size: 0 !important;
}

.container_postbtn .postbtn_like .wrap_btn {
  float: left;
  position: relative;
}

.container_postbtn .btn_post {
  height: 30px;
  padding: 0 6px;
  font-size: 0 !important;
  line-height: 0 !important;
  color: inherit !important;
}

.container_postbtn .btn_post .ico_like {
  width: 15px;
  margin: 3px 4px 0 0;
  background-position: -100px -20px;
}

.container_postbtn .btn_post .txt_like {
  display: inline-block;
  margin: -1px 0 0;
  font-size: 13px !important;
  line-height: 19px !important;
  color: inherit !important;
  vertical-align: top;
}

.container_postbtn .btn_menu_toolbar {
  width: 80px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(185, 185, 185, .5);
  border-radius: 16px;
  font-size: 0 !important;
  line-height: 30px;
  color: inherit;
  box-sizing: border-box;
}
/* tag */

.menu_tag a, .tag a {
  float: left;
  border: 1px solid var(--DM-white);
  padding: 3px 8px;
  border-radius: 8px;
  margin: 5px;
  color: var(--DM-white);
}
.menu_tag a:hover, .tag a:hover, .tag_zone a:hover {
  border: 1px solid var(--DM-yellow);
  color: var(--DM-yellow);
}
.tag_zone {
  padding: 0 20px;
}
.tag_zone a {
  float: left;
  border: 1px solid var(--DM-white);
  padding: 3px 8px;
  border-radius: 8px;
  margin: 5px;
  color: var(--DM-white);
}
/* guest */
.s_list .best-desription .item {
  margin-bottom: 10px;
}
/* paging */
.area_paging {
  margin-bottom: 50px;
}

.area_paging span {
  margin: 0px 2px;
  background-color: var(--DM-border-color);
  border-radius: 10px;
  color: var(--DM-white);
  display: flex;
  align-items: center;
  height: 30px;
  width: 30px;
  justify-content: center;
}

.area_paging .selected {
  background-color: var(--DM-yellow);
  color: var(--DM-white);
}

.paging_num.thema_apply {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 130%;
  background-color: var(--DM-white);
  padding-bottom: 110px;
  box-sizing: border-box;
}
/* footer dock */
footer .dock {
  display: flex;
  align-items: center;
  position: fixed;
  padding: 0.2rem 0.5rem 0 0.5rem;
  bottom: 3%;
  left: 50%;
  height: 65px;
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.555);
  z-index: 10;
  width: max-content;
}

@media screen and (max-width: 900px) {
  footer .dock {
    border-radius: 20px;
  }
}

footer .dock .point {
  width: 6px;
  height: 6px;
  margin: 0;
  background: #f08080;
  border-radius: 50%;
  display: none;
  animation: top-to-bottom 0.3s;
  transition: 0.3s;
}

footer .dock .column {
  width: 1px;
  height: 45px;
  margin: 0 4px;
  background: var(--color-white-400);
}

footer .dock .icon {
  position: relative;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  outline: none;
  transition: all 0.3s;
  transform: translate3d(0px, 0%, 0px);
  -webkit-tap-highlight-color: transparent;
}

footer .dock .icon::after {
  font-size: 15px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.39);
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 95px;
  height: 25px;
  padding: 4px 3px 15px;
  border-radius: 4px;
  font-family: "lexend", sans-serif;
  font-weight: 700;
  clip-path: polygon(100% 0%,
      100% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%,
      0% 80%,
      43% 80%,
      50% 101%,
      57% 80%,
      100% 80%,
      100% 0%);
}

footer .dock .icon:nth-child(1):hover::after {
  content: "카테고리";
}

footer .dock .icon:nth-child(2):hover::after {
  content: "방명록";
}

footer .dock .icon:nth-child(3):hover::after {
  content: "켈린더";
}

footer .dock .icon:nth-child(4):hover::after {
  content: "음악";
}

footer .dock .icon:nth-child(5):hover::after {
  content: "최근 글";
}

footer .dock .icon:nth-child(6):hover::after {
  content: "검색";
}

footer .dock .icon img {
  width: 3.6rem;
  transition: 0.2s;
  transform: translateY(-2.5px);
}

footer .dock .icon:hover img {
  margin: 0 0 40px 0;
  width: 6.1rem;
}

footer .dock .icon:hover+.icon img {
  width: 4.6rem;
  margin: 0 0 25px 0;
}

footer .dock .icon img:active {
  filter: brightness(0.6) drop-shadow(0 0 10px #2c2c2c);
}

@media screen and (max-width: 900px) {
  footer .dock .hidden {
    display: none;
  }
}

@media screen and (min-width: 1500px) {
  footer .dock .hidden_ {
    display: none;
  }
}

/* 닫는 따옴표 추가 코드 */
#tt-body-page blockquote[data-ke-style='style1']::after {
  content: '';
  display: block;
  background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0;
  padding-top: 34px;
  transform: rotate(180deg);
}