@charset "UTF-8";

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('./images/GmarketSansMedium.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
  --bg-main: #ffffff;
  --primary-color: #f57b26;
  --color-primary-hover: #d94c4c;
  --color-primary-light: rgb(250, 203, 134);
  --text-main: #333;
  --text-sub: #666;
  --text-sub1: rgba(0,0,0,.84);
  --text-muted: #888;
  --border-light: #ececec;
  --border-dark: #ddd;
  --border-transparent: rgba(0, 0, 0, 0.15);
  --bg-white: #fff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-light-gray: #f4f4f4;
  --box-shadow: rgba(0,0,0,.1);
  --overlay-dim: rgba(0, 0, 0, 0.4);
  --color-primary-gradient: linear-gradient(-225deg, #FF4500 0%, #FF6347 51%, #FF8C00 100%);
  --overlay-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5));
  --border-image: rgba(0, 0, 0, 0.06);

  --font-main: 'GmarketSansMedium', 'Apple SD Gothic Neo', 'Dotum', '돋움', 'Helvetica', 'sans-serif';
  --text-xs: 0.75rem;  /* 12px */ 
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;   /* 20px */
  --text-xl: 1.5rem;   /* 24px */
  --text-xxl: 2rem;    /* 32px */
  --weight-regular: 400;
  --weight-bold: 700;
  --line-normal: 1.6; 
  --line-tight: 1.3;  

  --space-xxs: 0.25rem;   /* 4px 아주 미세한 틈 (예: 아이콘과 글자 사이, 썸네일과 요약글 사이) */
  --space-xs: 0.5rem;    /* 8px 좁은 간격 (예: 버튼 안쪽 여백, 딱 붙어있는 요소들) */
  --space-sm: 0.75rem;   /* 12px 약간 좁은 간격 (8px과 16px 사이의 조미료 역할) */
  --space-md: 1rem;   /* 16px 기본 간격 (예: 모바일 화면 양옆 여백, 문단 사이) */
  --space-lg: 1.5rem;   /* 24px 넓은 간격 (예: 요소 덩어리와 덩어리 사이) */
  --space-xl: 2rem;   /* 32px 아주 넓은 간격 (예: 위아래 섹션을 구분할 때) */
  --space-xxl: 3rem;  /* 48px 거대한 여백 */
  --space-max: 4rem;  /* 64px 페이지 단위의 가장 큰 여백 (예: 푸터 위쪽) */

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
}

body, button, input, select, table, textarea {
  background-color: var(--bg-main);
  font-size: var(--text-base);
  font-family: var(--font-main);
  font-weight: var(--weight-regular);
  line-height: var(--line-normal);
  text-rendering: optimizeLegibility;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
}

button, input {
  border: 0;
  border-radius: 0;
}

fieldset, img {
  border: 0;
}

ol, ul {
  list-style: none;
}

address, em {
  font-style: normal;
}

a {
  text-decoration: none;
  outline: none;
} 

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

iframe {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

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

html, body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  -text-size-adjust: 100%;
}

/* layout */
.header .inner_header {
  padding: 0 var(--space-lg);
}

.sidebar {
  display: none
}

.footer .area_select {
  padding: 0 var(--space-lg);
}

.footer .area_address {
  padding: 0 var(--space-lg);
}

/* common */
.box_svg {
  display: inline-block;
}

.img_svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* header */
.header {
  height: 86px;
  box-shadow: 0 1px var(--box-shadow), 0 -1px var(--box-shadow);
  background-color: var(--bg-white);
  z-index: 9999;
  transition: background-color 0.2s ease;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}

.header:after {
  content: '';
  display: block;
  clear: both
}

.header .logo {
  display: inline-block;
}

.header h1 a, .ly_area .ly_logo a {
  font-size: 2.375rem;
  color: var(--primary-color);
  line-height: 20px;
  font-weight: var(--weight-bold);
}

.header .link_logo {
  display: block;
  width: 100%;
  height: var(--space-xl);
  padding: 40px 0;
}

.header .link_logo .img_logo {
  height: var(--space-xl);
}

.header .btn_box {
  float: right;
  margin-right: -11px;
  padding-top: 20px
}

.header .btn_box:after {
  content: '';
  display: block;
  clear: both
}

.header .btn_box .btn_util {
  float: left;
  width: var(--space-xxl);
  height: var(--space-xxl);
  cursor: pointer;
  background-color: transparent;
}

.header .btn_box .btn_search {
  padding: var(--space-xs);
	margin-right: 10px;
  background: url(./images/ico_search.webp) no-repeat center
}


.header .btn_menu {
  padding: 15px;
  background: url(./images/ico_menu.webp) no-repeat center
}

.header .box_fix_header {
  display: none
}

.header.fix_header .box_header {
  display: none
}

.header.fix_header .box_fix_header {
  position: relative;
  display: block;
  height: 57px
}

.fix_header .link_back {
  position: absolute;
  top: 20px;
  left: calc(-1 * var(--space-md));
  width: var(--space-sm);
  height: var(--space-xl);
  padding: var(--space-xs) 18px;
  opacity: 0.54
}

.fix_header .link_back .img_svg {
  width: 11px;
  height: 27px
}

.fix_header .link_back .svg_bg {
  fill: var(--text-sub1);
}

.fix_header .btn_menu {
  position: absolute;
  top: 29px;
  right: -2px;
  background-color: transparent;
  cursor: pointer
}

.fix_header .box_fix_tit {
  padding: 0 40px
}

.fix_header .box_fix_tit .txt_fix_tit {
  overflow: hidden;
  font-size: var(--text-base);
  line-height: 90px;
  font-weight: var(--weight-bold);
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
	color: var(--text-sub);
}

.fix_header .area_util {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  box-shadow: 0 1px var(--box-shadow), 0 -1px var(--box-shadow);
  background-color: var(--bg-glass);
  z-index: 9999;
  transition: background-color 0.2s ease;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}

.fix_header .inner_area_util {
  padding: 14px var(--space-md) 0
}

.fix_header .inner_area_util:after {
  content: '';
  display: block;
  clear: both
}

.fix_header .area_util .util_like {
  float: left;
  height: var(--space-xl);
  background-color: transparent;
  color: var(--text-sub);
  cursor: pointer
}

.fix_header .area_util .util_like .icon_font {
  font-size: var(--text-lg);
  line-height: 22px;
  color: var(--primary-color);
}

.fix_header .area_util .util_like .txt_count {
  line-height: var(--space-lg);
  vertical-align: top
}

.fix_header .area_util .box_util {
  float: right
}

.fix_header .area_util .util_comment {
  height: var(--space-xl);
  margin-right: 5px;
  background-color: transparent;
  color: var(--text-sub);
  cursor: pointer
}

.fix_header .area_util .util_comment .icon_font {
  font-size: var(--text-lg);
  line-height: 23px
}

.fix_header .area_util .util_comment .txt_count {
  line-height: var(--space-lg);
  vertical-align: top
}

.fix_header .area_util .util_share {
  width: var(--space-xl);
  height: var(--space-xl);
  background-color: transparent;
  color: var(--text-sub);
  cursor: pointer
}

.fix_header .area_util .util_share .icon_font {
  font-size: var(--text-xl);
  line-height: var(--space-lg);
  vertical-align: -1px
}

.fix_header .area_menu .btn_util:hover .img_svg, .fix_header .area_menu .btn_util:focus .img_svg, .fix_header .area_menu .btn_util:active .img_svg {
  fill-opacity: 0.68
}

/* 메뉴, 검색 레이어 공통 */
.ly_area {
  overflow: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 var(--space-lg);
  background-color: var(--bg-white);
  z-index: 1000;
  overscroll-behavior: contain;
}

.ly_area .ly_header:after {
  content: '';
  display: block;
  clear: both
}

.ly_area .ly_logo {
  display: inline-block;
  max-width: 330px;
  height: 56px
}

.ly_area .ly_logo .link_logo {
  display: block;
  width: 100%;
}

.ly_area .ly_logo .link_logo .img_logo {
  height: var(--space-xl);
}

.ly_area .btn_ly_close {
  float: right;
  width: var(--space-xxl);
  height: var(--space-xxl);
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
	background: url(./images/ico_del.webp) no-repeat center
}

.ly_area .btn_ly_close .box_svg {
  width: 28px;
  height: 28px
}

.ly_area .btn_ly_close:hover .img_svg, .ly_area .btn_ly_close:focus .img_svg, .ly_area .btn_ly_close:active .img_svg {
  fill-opacity: 0.68
}

/* 메뉴 */
.nav .link_menu {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
  line-height: var(--space-xl);
  font-weight: var(--weight-regular);
  color: var(--text-sub1);
}

.nav .box_home {
  margin-top: var(--space-lg);
}

.nav .list_category .link_category {
  display: block;
  margin-top: 49px;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--primary-color);
  text-decoration: none
}

.nav .list_sub_category {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

.nav .list_sub_category .link_menu .count {
  font-size: var(--text-sm);
  line-height: 1.3;
  font-weight: var(--weight-regular);
  color: var(--primary-color);
  vertical-align: 1px
}

@media screen and (max-width: 743px) {
  .nav .list_category .link_category {
    font-size: var(--text-sm);
		margin-top: 39px
  }

  .nav .list_sub_category {
    margin-top: 18px;
    padding-top: var(--space-sm);
  }
}

/* 검색 레이어 */
.search_area .box_form {
  position: relative;
  margin-top: var(--space-xl);
  padding: 0 40px var(--space-sm) 0;
  border-bottom: 1px solid var(--border-transparent);
}

.search_area .box_form .inp_search {
  width: 100%;
  font-size: var(--text-xxl);
  font-weight: var(--weight-bold);
  line-height: 40px;
  background-color: transparent;
  letter-spacing: -.02em;
}

.search_area .box_form .inp_search::placeholder {
  color: var(--overlay-dim);
}

.search_area .box_form .inp_search::-moz-placeholder {
  color: var(--overlay-dim);
}

.search_area .box_form .inp_search:-ms-input-placeholder {
  color: var(--overlay-dim);
}

.search_area .box_form .btn_search_del {
  position: absolute;
  top: 5px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 6px;
  background-color: transparent;
  cursor: pointer;
  fill-opacity: 0.3
}

.search_area .box_form.on {
  border-bottom-color: var(--primary-color);
}

.search_area .box_form.on .inp_search {
  color: var(--primary-color);
}

.search_area .box_form.on .btn_search_del {
  fill-opacity: 0.54;
}

/* 컨텐츠 */
/* 메인 */
/* 메인 슬라이드 */
.slide_area_top {
  margin-top: 0 !important;
}

.slide_area .slide_item .link_slide {
  display: block;
  position: relative;
  width: 100%;
  height: 280px;
  background-position: 50% 50%;
  background-size: cover;
  color: var(--bg-white);
  text-decoration: none;
}

.slide_area .slide_item .link_slide:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: var(--overlay-gradient);
}

.slide_area .slide_item .link_slide .slide_txt {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-md);
  max-width: 300px;
  font-weight: var(--weight-bold);
}

.slide_area .slide_item .link_slide .txt_tit {
  overflow: hidden;
  margin-bottom: var(--space-xs);
  font-size: var(--text-md);
  line-height: 36px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 2px var(--overlay-dim);
  word-break: keep-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.slide_area .slide_item .link_slide .txt_cont {
  overflow: hidden;
  max-height: 40px;
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: 1.33;
  text-shadow: 0 0 2px var(--overlay-dim);
  word-break: keep-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.slide_area .slide_item .link_slide .txt_name {
  font-size: var(--text-base);
  line-height: 1.33;
  text-shadow: 0 0 2px var(--overlay-dim);
  word-break: keep-all;
}

.slick-slider .slick-arrow {
  cursor: pointer;
}

.main_slide .slick-arrow {
  display: none !important;
}

.main_slide .slick-dots {
  display: flex;
}

.main_slide .slick-dots>li {
  flex-grow: 1;
  height: 5px;
}

.main_slide .slick-dots .slick-active {
  background-color: var(--primary-color);
}

.main_slide .slick-dots>li button {
  background-color: transparent;
  text-indent: -9999em;
}

/* 카테고리 둘러보기, 이벤트 slick 버튼 */
.category_area .box_arrow .btn_arrow, .event_area .box_arrow .btn_arrow {
  display: none !important;
}

.content .section_area {
  padding: 20px var(--space-lg) 0 var(--space-lg);
}

.content .section_area .tit_section {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.33;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.content .section_area .tit_section .txt_section {
  vertical-align: middle;
}

.content .section_area .tit_section .ico_arrow {
  display: inline-block;
  width: 10px;
  height: var(--space-md);
  margin-top: 1px;
  margin-left: 3px;
  vertical-align: middle;
}

.content .section_area .tit_section .ico_arrow .svg_bg {
  fill: var(--primary-color);
}

.section_area .wrap_scroller {
  position: relative;
  z-index: 1;
  height: 280px;
  width: 100%;
  overflow: hidden;
  -ms-touch-action: none;
}

.section_area .scroller {
  position: absolute;
  z-index: 1;
  white-space: nowrap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  transform: translateZ(0);
  -webkit-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;  
}

.section_area .scroller .item_scroller {
  display: inline-block;
  width: 200px;
  margin-right: var(--space-sm);
}

.section_area .scroller .item_scroller .link_item {
  display: block;
  width: 100%;
  color: var(--text-main);
  text-decoration: none;
}

.section_area .scroller .item_scroller .link_item .box_thumb {
  position: relative;
  width: 100%;
  height: fit-content;
  padding-top: 124.6%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.section_area .scroller .item_scroller .link_item .box_thumb:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-image);
  box-sizing: border-box;
}

.section_area .scroller .item_scroller .link_item .box_thumb.no_img,
.list_post .box_thumb .no_img {
  display: block;
  position: relative;
  background-color: var(--text-muted);
}

.section_area .scroller .item_scroller .link_item .box_thumb .default_img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43px;
  height: 43px;
  margin: -21px 0 0 -21px;
}

.section_area .scroller .item_scroller .link_item .box_thumb .default_img .box_svg {
  width: 43px;
  height: 43px;
}

.section_area .scroller .item_scroller .txt_item {
  padding-top: 10px;
  font-size: var(--text-base);
  overflow:hidden;
  display:block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 743px) {
.section_area .scroller .item_scroller .txt_item {
  padding-top: 6px;
	font-size: var(--text-sm);
}
}

.content .scroll_area {
  padding-right: 0;
}

.content .event_area {
  margin-top: calc(-1 * var(--space-md));
}

.section_area.event_area .scroller .item_scroller .link_item .box_thumb {
  padding-top: 50%;
}

/* 하단 단독 (댓글, 방명록, 미디어로그 등) */
.content .section_btm_area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-lg) 0;
}

.section_btm_area .box_comment {
  padding: var(--space-xl) 0;
  border-top: none;
}

.section_btm_area .box_tag_trail {
  padding: var(--space-xl) 0;
  border-top: none;
}

.list_article .link_thumb {
  display: block;
  text-decoration: none;
}

.list_article .link_thumb:after {
  content: '';
  display: block;
  clear: both;
}

.list_article .link_thumb .box_thumb {
  position: relative;
  padding-top: 70.7%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.list_article .link_thumb .box_thumb:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-image);
  box-sizing: border-box;
}

.list_article .link_thumb .box_thumb.no_img {
  position: relative;
  background-color: var(--text-muted);
}

.list_article .link_thumb .box_thumb .default_img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--space-xxl);
  height: var(--space-xxl);
  margin: calc(-1 * var(--space-lg)) 0 0 calc(-1 * var(--space-lg));
}

.list_article .link_thumb .box_thumb .default_img .box_svg {
  width: var(--space-xxl);
  height: var(--space-xxl);
}

.list_article .list_type1 li {
  width: 50%;
}

#content_cover_group .list_article .link_thumb .cont_thumb .txt_thumb {
  width: calc(100% - var(--space-sm));
}

.list_article .link_thumb .cont_thumb .txt_thumb {
  overflow: hidden;
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--line-normal);
  color: var(--text-main);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
	padding-top: var(--space-xxs);
}

.list_article .link_thumb .thumb_info {
  overflow: hidden;
  font-size: var(--text-xs);
  line-height: var(--space-md);
  color: var(--text-sub1);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_article .link_thumb .thumb_info .date {
  margin-right: var(--space-xxs);
	color: var(--text-muted);
	font-size: var(--text-xs);
}

.list_article .link_thumb .thumb_info .like .box_svg {
  width: 11px;
  height: var(--space-md);
  opacity: 0.54;
  vertical-align: top;
}

.list_article .link_thumb .cont_thumb {
  text-align: left;
}

/* 미디어: PC */
@media screen and (min-width: 1024px) {

  .list_article .link_thumb .box_thumb {
    position: relative;
    padding-top: 44.7%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
}

/* 리스트 썸네일 영역 리스트 링크 호버 시 효과 적용 */
.list_article .box_thumb,
.item_scroller .box_thumb {
  transition: opacity 0.2s ease; 
}

.list_article .txt_thumb,
.item_scroller .txt_item {
  transition: color 0.2s ease; 
}

.list_article .link_thumb:hover .box_thumb,
.item_scroller .link_item:hover .box_thumb {
  opacity: 0.85;
}

.list_article .link_thumb:hover .txt_thumb,
.item_scroller .link_item:hover .txt_item {
  color: var(--overlay-dim);
}

.list_article.list_type1>li:first-child .link_thumb .box_thumb.no_img {
  display: block;
}

/* 리스트 type2 (컬럼) */
.list_article.list_type2 {
  margin: 0 calc(-1 * var(--space-xs));
}

.list_article.list_type2:after {
  content: '';
  display: block;
  clear: both;
}

.list_article.list_type2>li {
  display: block;
  float: left;
  width: 50%;
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.list_article.list_type2 .link_thumb {
  margin: 0 var(--space-xs);
}

.list_article.list_type2 .link_thumb .box_thumb {
  float: none;
  width: 100%;
  /* height:44.8vw; */
  padding-top: 100%;
  height: auto;
  margin-bottom: var(--space-xs);
  /* max-height:240px; */
}

.list_article.list_type2 .link_thumb .cont_thumb .txt_thumb {
  padding-top: 0;
  max-height: 42px;
  -webkit-line-clamp: 2;
}

.list_article.list_type2 .link_thumb .box_thumb.no_img {
  display: block;
}

/* 메인 이벤트 스크롤 */
.section_area.event_area .scroller .item_scroller {
  width: 240px;
}

/* 서브 리스트 */
.sub_content .section_area .tit_section {
  margin-bottom: 20px;
  font-size: var(--text-base);
}

.sub_content .list_sub {
  margin: 0 calc(-1 * var(--space-xs));
}

.sub_content .list_sub:after {
  content: '';
  display: block;
  clear: both;
}

.sub_content .list_sub .link_thumb {
  margin: 0 var(--space-xs);
}

/* 검색 완료 페이지 */
.search_area .box_tit {
  padding-bottom: 40px;
}

.search_area .box_tit .tit_search {
  padding-bottom: var(--space-xxs);
  font-size: var(--text-xxl);
  line-height: 1.25;
  font-weight: var(--weight-bold);
  letter-spacing: -0.6px;
  color: var(--placeholder);
}

.search_area .box_tit .txt_info {
  font-size: var(--text-sm);
  line-height: 1.38;
}

.search_area .box_tit .txt_style {
  color: var(--primary-color);
}

/* 검색 완료 리스트 */
.search_area .list_article>li {
  display: block;
}

/* 서브 상세 */
.container_sub_detail {
	margin-top: 60px;
}

.container_sub_detail .header {
	position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container_sub_detail .fix_header {
  position: fixed;
}

.container_sub_detail .footer .area_address {
  padding-bottom: 72px;
}

/* media */
@media screen and (min-width: 743px) {
  .container_sub_detail {
    margin-top: 15px;
  }
}

/* 서브 상세페이지 - 본문 */
.box_article {
  margin-bottom: var(--space-lg);
  font-weight: var(--weight-regular);
  color: var(--text-sub1);
}

.box_article .article_cont .another_category {
  display: none;
}

.box_article .article_author {
  padding-top: 20px;
  font-size: var(--text-base);
  line-height: var(--space-lg);
}

.box_article .container_postbtn {
  padding-bottom: 0;
  margin-bottom: var(--space-lg);
}

.box_article_tit .txt_sub_tit {
  font-size: 1.6rem;
  line-height: 1.7rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.14rem;
  color: var(--primary-color);
}

.box_article_tit .sub_tit_info {
  padding-top: var(--space-xs);
  font-size: var(--text-sm);
  line-height: 1.38;
}

.box_article_tit .sub_tit_info .name {
  position: relative;
  padding-right: 10px;
  color: var(--text-sub);
}

.box_article_tit .sub_tit_info .date {
  color: var(--text-sub);
}

.box_article_tit .sub_tit_info .name:before,
.box_article_tit .sub_tit_info .name:after {
  position: absolute;
  width: 5px;
  height: 5px;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--text-muted);
}

.box_article_tit .sub_tit_info .name:before {
  top: 0;
  left: 2px;
}

.box_article_tit .sub_tit_info .name:after {
  content: '.';
  top: -1px;
  right: 0;
}

.sub_tit_info .info_meta {
  margin-top: 6px;
}

/* 미디어: PC */
@media screen and (min-width: 1024px) {
  .sub_tit_info .category {
    display: inline-block;
  }

  .sub_tit_info .info_meta {
    display: inline-block;
  }

  .box_article_tit .sub_tit_info .name {
    padding-left: 10px;
  }

  .box_article_tit .sub_tit_info .name:before {
    content: '.';
  }
}

.admin_slash {
  position: relative;
  padding-right: 10px;
}

.admin_slash:after {
  content: '｜';
  position: absolute;
  top: 3px;
  right: 1px;
  width: var(--space-xs);
  height: 5px;
  font-size: var(--text-xs);
  color: var(--bg-light-gray);
}

.box_article_tit .sub_tit_info .txt_style {
  color: var(--text-sub);
}

.box_article_tit .sub_tit_info .txt_style a {
  color: var(--primary-color);
}

.box_article_tit .sub_tit_info .admin {
  padding-top: 10px;
}

.box_article_tit .sub_tit_info .admin a {
  color: var(--text-muted);
}

/* 서브 상세페이지 - 본문 (Typography) */
.article_cont h1,
.article_cont h2,
.article_cont h3,
.article_cont h4 {
   margin: 0.67em 0;
  font-weight: var(--weight-regular);
  color: var(--text-sub1);
}

.article_cont .table-overflow {
  overflow-x: auto;
}

.box_article .article_cont h1 {
  font-size: var(--text-xxl);
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
  margin-top: 2.5em; 
  margin-bottom: 1.2em;
}

.box_article .article_cont h2 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
  margin-bottom: 0.8em;
	padding: 0pt 0pt 0pt 5pt; 
	border-bottom: 1px solid var(--border-dark); 
	border-left: 5px solid var(--primary-color);
}

.box_article .article_cont h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
  margin-top: 1.8em; 
  margin-bottom: 0.6em;
}

.box_article .article_cont h4 {
  font-size: var(--text-md); 
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
  color: var(--text-main); 
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.box_article .article_cont p { 
  font-family: var(--font-main);
  font-size: var(--text-base); 
  font-weight: var(--weight-regular);
  line-height: var(--line-normal); 
  color: var(--text-main);
}

.box_article .article_cont blockquote {
  margin-left: 0px;
  margin-right: 0px;
  padding: 1px var(--space-sm);
  border-left: var(--space-xxs) solid var(--border-transparent);
  background-color: transparent;
  color: var(--overlay-dim);
}

.box_article .article_cont blockquote p {
  margin: 0
}

.box_article .article_cont a {
  text-decoration: underline;
  color: var(--primary-color);
}

.box_article .article_cont a:hover {
  color: var(--color-primary-hover);
}

.footnote a{
	color: var(--primary-color);
}

.box_article .article_cont pre {
  margin: 20px 0px;
  font-size: var(--text-sm);
  white-space: pre-wrap;
}

.box_article .article_cont p code {
  padding: 1px 3px;
  background-color: var(--bg-light-gray);
  font-size: var(--text-sm);
}

.box_article .article_cont pre code.hljs {
  padding: 20px;
  text-align: left;
}

.box_article .article_cont ul {
  margin: var(--space-lg) 0;
  padding-left: 23px;
  list-style: disc;
}

.box_article .article_cont ul li {
  font-size: var(--text-md);
  line-height: var(--space-lg);
}

.box_article .article_cont ol {
  margin: var(--space-lg) 0;
  padding-left: 23px;
  list-style: decimal;
}

.box_article .article_cont ol li {
  font-size: var(--text-md);
  line-height: var(--space-lg);
}

.box_article .article_cont .line {
  width: 100%;
  height: 1px;
  background-color: var(--border-transparent);
}

.box_article .article_cont img {
  max-width: 100%;
  object-fit: contain;
}

.box_article .article_cont .txt_caption {
  display: block;
  margin-top: 6px;
  font-size: var(--text-sm);
  line-height: 18px;
  text-align: center;
}

.box_article .article_cont .cap1 {
  font-size: var(--text-sm);
  color: var(--placeholder);
}

/* 181010 ryu 유투브 모바일 수정 */
@media screen and (max-width: 743px) {
  .box_article .article_cont iframe {
    width: 100%;
    height: 56vw;
    -ms-height: 56vmax;
  }
}

/* 181010 ryu 대표이미지 최상단 강제 노출 제거 */
.box_article .article_cont .article_img.img_type1 {
  display: none;
  margin: 0 calc(-1 * var(--space-md));
  text-align: center;
}

.box_article .article_cont .article_img.img_type1 img {
  width: 100%;
}

.box_article .article_cont .article_img.img_type_ta_c {
  text-align: center;
}

.box_article .article_cont .txt_color {
  color: var(--primary-color);
}

.box_article .article_cont .txt_td_u {
  text-decoration: underline;
}

.box_article .article_cont .article_util {
  padding-top: 1px;
  padding-bottom: 1px;
	margin-bottom: 1px;
	border-bottom: 1px solid var(--border-light);
}

.box_article .article_cont .article_util:after {
  content: '';
  display: block;
  clear: both;
}

.box_article .article_cont .article_util .util_like {
  float: left;
  height: var(--space-xl);
  background-color: transparent;
  color: var(--text-sub);
  cursor: pointer;
}

.box_article .article_cont .article_util .util_like .icon_font {
  font-size: var(--text-lg);
  line-height: 22px;
  color: var(--primary-color);
}

.box_article .article_cont .article_util .util_like .txt_count {
  line-height: var(--space-lg);
  vertical-align: top;
}

.box_article .article_cont .article_util .box_util {
  float: left;
	position: relative;
	margin-left: var(--space-sm);
}

.box_article .article_cont .article_util .util_comment {
  height: var(--space-xl);
  margin-right: 5px;
  background-color: transparent;
  color: var(--text-sub);
  cursor: pointer;
}

.box_article .article_cont .article_util .util_comment .icon_font {
  font-size: var(--text-lg);
  line-height: 22px;
}

.box_article .article_cont .article_util .util_comment .txt_count {
  line-height: var(--space-lg);
  vertical-align: top;
}

.box_article .article_cont .article_util .util_share {
  width: var(--space-xl);
  height: var(--space-xl);
  background-color: transparent;
  color: var(--text-sub);
  cursor: pointer;
}

.box_article .article_cont .article_util .util_share .icon_font {
  font-size: var(--text-lg);
  line-height: var(--space-lg);
  vertical-align: 1px;
}

/* 상세페이지 카테고리 다른글 */
.box_article .another_category th a {
  max-width: calc(100% - 42px);
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
}

.box_article .another_category th span {
  vertical-align: middle;
}

/* 서브 상세 - 본문 하단 (태그, 관련글) */
.tit_box {
  font-size: var(--text-xxl);
  padding-bottom: 18px;
  text-align: center;
}

.detail_area .tit_box {
  padding-bottom: 11px;
  text-align: left;
  font-size: var(--text-base);
}

.detail_area .box_tag_trail .tit_box {
  font-size: var(--text-base);
  text-align: left;
}

/* 서브 - 태그 */
.box_tag_trail {
  padding: 15px 0 15px 0;
  border-top: 1px solid var(--border-light);
}

.box_tag_trail .tag_cont a {
  font-size: var(--text-base);
  line-height: 1.41;
  font-weight: var(--weight-regular);
  color: var(--primary-color);
	margin-left: var(--space-xs);
}

.box_tag_trail .tag_cont a:first-child {
 margin-left: 0;
}

.box_tag_trail .tag_cont a:hover {
  text-decoration: underline;
}

/* 서브 - 관련 글 */
.box_related_article {
  padding: 15px 0 15px 0;
  border-top: 1px solid var(--border-light);
}

.box_related_article .link_related {
  float: right;
  font-size: var(--text-base);
  text-decoration: none;
  color: var(--text-sub);
	font-weight: var(--weight-regular);
}

/* 서브 상세 - 댓글 */
.box_comment {
  padding: 15px 0 15px 0;
  border-top: 1px solid var(--border-light);
}

.box_comment .comment_info {
  padding-bottom: 15px;
}

.box_comment .comment_info:after {
  content: '';
  display: block;
  clear: both;
}

.box_comment .comment_info .txt_style {
  color: var(--primary-color);
}

.box_comment .comment_info .btn_info_comment {
  float: left;
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  background-color: transparent;
  cursor: pointer;
}

.box_comment .comment_info .btn_info_write {
  display: none;
  float: right;
  font-size: var(--text-base);
  line-height: 1.33;
  font-weight: var(--weight-bold);
  background-color: transparent;
  cursor: pointer;
}

.box_comment .comment_area .btn_more {
  position: relative;
  padding-left: 13px;
  font-size: var(--text-md);
  line-height: 1.41;
  font-weight: var(--weight-regular);
  background-color: transparent;
  color: var(--primary-color);
  cursor: pointer;
}

.box_comment .comment_area .btn_more:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 1px;
  background-color: var(--primary-color);
}

.box_comment .comment_area .btn_more:after {
  content: '';
  position: absolute;
  top: 7px;
  left: var(--space-xxs);
  width: 1px;
  height: 9px;
  background-color: var(--primary-color);
}

/* 서브 상세 - 댓글 리스트 */
.comment_item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-transparent);
}

.comment_item:first-child {
  padding-top: 0;
}

.comment_item:last-child {
  border-bottom: 0 none;
}

.comment_item .comment:after {
  content: '';
  display: block;
  clear: both;
}

.comment_item .comment .thumb_author {
  float: left;
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-right: var(--space-md);
  border-radius: 50%;
  background-color: var(--bg-light-gray);
}

.comment_item .comment .thumb_author img {
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
}

.comment_item .comment .comment_body {
  overflow: hidden;
  color: var(--text-main);
  font-size: var(--text-base);
  line-height: 20px;
}

.comment_item .comment .comment_body .author_info {
  margin-bottom: var(--space-xs);
}

.comment_item .comment .comment_body .author_info .author, .comment_item .comment .comment_body .author_info .author a {
  color: var(--text-main);
}

.comment_item .comment .comment_body .author_info .author {
  margin-bottom: var(--space-xxs);
  font-weight: var(--weight-bold);
}

.comment_item .comment .comment_body .author_info .author a:hover {
  color: var(--overlay-dim);
}

.comment_item .comment .comment_body .author_info .details{
  color: var(--overlay-dim);
}

.comment_item .comment .comment_body .author_info .details a {
  color: var(--overlay-dim);
  padding-left: 5px;
}

.comment_item .comment .comment_body .author_info .details .link_notify {
  margin-left: var(--space-xxs);
  color: var(--primary-color);
}

.comment_item .comment .comment_body .author_info .details {
  font-size: var(--text-sm);
  line-height: 1.38;
  color: var(--text-sub);
}

.comment_item .comment .comment_body p {
  font-size: var(--text-sm);
  line-height: 1.33;
  color: var(--text-sub1);
}

.comment_item .comment .comment_body .control {
  margin-top: var(--space-xs);
  font-size: var(--text-sm);
  line-height: 20px;
}

.comment_item .comment .comment_body .control a {
  margin-right: var(--space-xs);
  color: var(--primary-color);
}

/* 서브 상세 - 댓글 리스트 (대댓글) */
.comment_item.reply {
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  border-top: 0 none;
  border-bottom: 1px solid var(--border-image);
}

.comment_item.reply:first-child{
  padding-top: var(--space-lg);
}

.comment_item.reply:last-child{
  border-bottom: 0 none;
}

.comment_item.reply .comment .thumb_author {
  width: 36px;
  height: 36px;
}

/* 댓글 쓰기 */
.box_comment_write {
  position: relative;
}

.box_comment_write:after {
  content: '';
  display: block;
  clear: both;
}

.box_comment_write .form_guest {
  margin: 0 calc(-1 * var(--space-xxs));
}

.box_comment_write .form_guest:after {
  content: '';
  display: block;
  clear: both;
}

.box_comment_write .box_inp {
  float: left;
  width: 100%;
  margin-bottom: var(--space-xs);
}

.box_comment_write .box_inp:nth-child(-n+2) {
  width: 50%;
}

.box_comment_write .box_inp .inner_inp {
  margin: 0 var(--space-xxs);
  padding: 9px 10px;
  border: 1px solid var(--border-dark);
  box-sizing: border-box;
}

.box_comment_write .inp_comment, .box_comment_write .form_secret input, .box_comment_write .register_area textarea {
  display: inline-block;
  font-size: var(--text-base);
  line-height: 1.33;
  color: var(--text-main);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
}

.box_comment_write .inp_comment {
  width: 100%;
}

.box_comment_write .register_area .btn_register {
  float: right;
  width: 105px;
  height: 36px;
  margin-top: var(--space-xs);
  font-size: var(--text-base);
  line-height: 2.1;
  background-color: var(--primary-color);
  color: var(--bg-white);
  cursor: pointer;
}

.box_comment_write .register_area .btn_register:hover {
  background: var(--text-sub);
}

.box_comment_write .form_secret {
  position: absolute;
  left: 0;
  bottom: 6px;
}

.box_comment_write .form_secret input {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 13px;
  height: 13px;
}

.box_comment_write .form_secret .label_secret {
  display: inline-block;
  padding-left: var(--space-lg);
  font-size: var(--text-base);
  line-height: 1;
  vertical-align: top;
}

.box_comment_write .form_secret .label_secret:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--space-md);
  height: 15px;
  border: 1px solid var(--border-dark);
  box-sizing: border-box;
  background-color: var(--bg-white);
}

.box_comment_write .form_secret .icon-check {
  display: none;
  position: absolute;
  top: 0;
  left: 1px;
}

.box_comment_write .form_secret input:checked+label .icon-check {
  display: block;
}

.box_comment_write .register_area textarea {
  width: 100%;
  height: 120px;
  padding: 9px 10px;
  font-size: var(--text-base);
  line-height: 1.33;
  border: 1px solid var(--border-dark);
  box-sizing: border-box;
  vertical-align: top;
}

/* 이전댓글 더보기 스타일 추가 */
.box_comment_list {
  margin-bottom: 42px;
}

.box_comment_list .tt_more_preview_comments_wrap {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  text-align: left !important;
}

.box_comment_list .tt_more_preview_comments_text {
  position: relative;
  padding-left: 13px;
  font-size: var(--text-base);
  line-height: 1.41;
  font-weight: var(--weight-regular);
  background-color: transparent;
  color: var(--primary-color);
  cursor: pointer;
}

.box_comment_list .tt_more_preview_comments_text:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 1px;
  background-color: var(--primary-color);
}

.box_comment_list .tt_more_preview_comments_text:after {
  content: '';
  position: absolute;
  top: 7px;
  left: var(--space-xxs);
  width: 1px;
  height: 9px;
  background-color: var(--primary-color);
}

/* 푸터 */
.footer {
  overflow: hidden;
  margin-top: 116px;
  border-top: 1px solid var(--border-transparent);
}

.footer .area_select {
  padding-top: var(--space-lg);
  margin: 0 -6px var(--space-xs);
}

.footer .area_select:after {
  content: '';
  display: block;
  clear: both;
}

.footer .area_select .box_select {
  float: left;
  width: 50%;
}

.footer .area_select .inner_box {
  position: relative;
  height: 36px;
  margin: 0 6px;
  border: 1px solid var(--border-transparent);
}

.footer .area_select .inner_box:before {
  content: '';
  position: absolute;
  top: 15px;
  right: var(--space-md);
  border: var(--space-xxs) solid var(--text-muted);
  border-top-width: 5px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.footer .area_select .box_select .opt_select {
  width: 100%;
  height: 100%;
  padding-left: var(--space-sm);
  border: 0 none;
  background: var(--bg-white);
  font-size: var(--text-sm);
  color: var(--text-muted);
  cursor: pointer;
}

.footer .area_address {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-lg);
}

.footer .area_address .box_address {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-muted);
	margin: 6px 0 var(--space-xl) 0;
}

.footer .area_address .box_address .footer_logo {
  display: inline-block;
  height: var(--space-lg);
  margin-right: var(--space-xxs);
  vertical-align: middle;
}

.footer .area_address .info_link {
  margin: var(--space-xxs) 0 0 0;
}

.footer .area_address .info_link .link_info {
  margin-left: var(--space-xs);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-muted);
  text-decoration: none;
}

.footer .area_address .info_link .link_info:first-child {
  margin-left: 0;
}

.footer .area_address .area_sns:after {
  content: '';
  display: block;
  clear: both;
}

.footer .area_address .area_sns .link_sns {
  display: inline-block;
  opacity: 0.54;
  vertical-align: middle;
}

.footer .link_facebook {
  margin-right: 10px;
}

.footer .link_twitter {
  margin: 0 10px;
}

.footer .link_instagram {
  margin: 0 10px;
}

.footer .link_youtube {
  margin: 0 10px;
}

.footer .link_email {
  margin-left: 10px;
}

.footer .txt_flogo {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.footer .area_address .area_sns .link_sns:first-child {
    margin-left: 0;
}

.footer .area_address .area_sns .link_sns:last-child {
    margin-right: 0;
}


/* 방명록 */
.skin_visitor .tf_reply {
  width: 98%;
  min-height: 120px;
  padding: 1%;
}

.skin_visitor .writer_btn {
  text-align: center;
}

.skin_visitor .btn_enter {
  width: 70px;
  height: 36px;
  border-radius: var(--space-xxs);
  font-size: var(--text-xs);
  line-height: 38px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: var(--weight-bold);
}

/* 공지사항 리스트, no커버 */
.content_list {
  padding: 0 var(--space-lg);
}

.content_list:first-child {
  padding-top: 20px;
}

.content_list .inner_content {
  padding: 20px 0;
  border-top: 1px solid --box-shadow;
}

.content_list:first-child .inner_content {
  border-top: 0 none;
}

.content_list .link_thumb {
  color: var(--text-sub1);
}

.content_list .link_thumb:after {
  content: '';
  display: block;
  clear: both;
}

.content_list .link_thumb .box_thumb {
  float: right;
  width: 88px;
  height: 88px;
  margin-left: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.content_list .link_thumb .cont_thumb {
  overflow: hidden;
}

.content_list .link_thumb .cont_thumb .txt_title {
  font-size: var(--text-base);
  line-height: 1.4;
  color: var(--text-main);
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_list .link_thumb .cont_thumb .txt_thumb {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-sub);
  margin-top: var(--space-xxs);
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content_list .link_thumb .cont_thumb .thumb_info {
  margin-top: var(--space-xxs);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.content_list .link_thumb .cont_thumb .thumb_info span {
  margin-right: var(--space-xxs);
}

.content_list .link_thumb .cont_thumb .thumb_info .category {
  font-size: var(--text-xs);
  text-decoration: none;
  color: var(--primary-color);
	float: left;
}

.content_list .link_thumb .cont_thumb .thumb_info .date {
	float:left;
}

.content_list .box_thumb {
  transition: opacity 0.2s ease;
}

.content_list .link_thumb:hover .box_thumb {
  opacity: 0.85;
}

.content_list .link_thumb:hover .txt_thumb {
  color: var(--text-sub);
}

#content_permallink_notice .sub_tit_info {
    margin-bottom: 40px;
}

@media screen and (min-width: 1023px){
	#content_permallink_notice .inner_content .section_area{
		padding: 0;
	}
	#content_permallink_page .inner_content .section_area{
		padding: 0;
	}
}

@media screen and (max-width: 743px){
.content_list .link_thumb .cont_thumb .thumb_info .category {
display: none; 
}

#content_notice_rep .category {
	display: inline-block; }
}

/* 미디어: 모바일만 */
@media screen and (max-width: 743px) {

  /* 메인 - 컬럼 리스트 */
  .list_article.list_type2>li:nth-child(2n+1) {
    clear: both;
  }

  /* 페이징 */
  .section_paging .paging .link_num span:not(.selected) {
    display: none;
  }

  .section_paging .paging .link_num:last-child span {
    padding: 0 var(--space-sm);
  }

  .section_paging .paging .link_num span {
    position: relative;
  }

  .section_paging .paging .link_num:last-child span:before {
    content: '';
    position: absolute;
    top: var(--space-xs);
    left: 1px;
    width: 10px;
    height: 10px;
    background: url(./images/ico_slash.webp) no-repeat;
  }

  .section_paging .paging .link_num:last-child span {
    display: inline-block;
  }

  .section_paging .paging .link_num:last-child span.selected:before {
    background: none;
  }

  .section_paging .paging .link_page .txt_page {
    display: none !important;
  }

  .section_paging .paging .link_prev {
    padding-left: 0;
    padding-right: var(--space-xs);
  }

  /* 메인 슬라이드 */
  .main_slide {
    margin-top: var(--space-xxl);
  }
}

/* 미디어: 모바일 가로만 */
@media screen and (min-width: 480px) {

  /* 리스트 type2 (컬럼) - */
  .list_article.list_type2 .link_thumb .box_thumb {
    padding-top: 66.66%;
  }
}

/* 미디어: 태블릿  */
@media screen and (min-width: 743px) {
  .header .inner_header {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .nav .link_menu {
    font-size: var(--text-md);
    margin-bottom: var(--space-sm);
  }

  .content {
    overflow: hidden;
  }

  .content .section_area {
    padding: var(--space-xxl) var(--space-lg) 0;
  }

  .content .scroll_area {
    padding-right: 0;
  }

  .search_area .box_form {
    position: relative;
    margin-top: 120px;
  }

  .footer .area_select {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .footer .area_address {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  /* 메뉴, 검색 레이어 */
  .ly_area {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  /* 메인 슬라이드 */
  .main_slide {
    position: relative;
    margin-top: 87px;
  }

  .slide_area .slide_item .link_slide {
    height: 400px;
  }

  .slide_area .slide_item .link_slide .slide_txt {
    left: var(--space-lg);
    bottom: 40px;
    max-width: 550px;
  }

  .box_arrow .btn_arrow {
    display: block !important;
    position: absolute;
    bottom: 50px;
    right: var(--space-lg);
    width: var(--space-xxl);
    height: var(--space-xxl);
    background-color: var(--placeholder);
    z-index: 100;
    cursor: pointer;
  }

  .box_arrow .btn_arrow .box_svg {
    width: 40px;
    height: 40px;
    opacity: 0.54;
  }

  .main_slide .box_arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .main_slide .box_arrow .inner_box_arrow {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
  }

  .main_slide .box_arrow .btn_prev {
    right: 72px;
  }

  .main_slide .box_arrow .btn_arrow:hover .box_svg, .main_slide .box_arrow .btn_arrow:focus .box_svg {
    opacity: 1;
  }

  /* 리스트 type1 */
  .list_article.list_type1>li .link_thumb .box_thumb {
    width: 100%;
  }

  .list_article.list_type1 .link_thumb .box_thumb.no_img {
    display: block;
  }

  /* 리스트 type2 */
  .list_article.list_type2>li {
    width: 33.33%;
  }

  .list_article.list_type2 .link_thumb {
    margin: 0 var(--space-sm);
  }

  .list_article.list_type2 .link_thumb .box_thumb {
    padding-top: 66.66%;
  }

  .list_article.list_type2 .link_thumb .cont_thumb .txt_thumb {
    font-size: var(--text-md);
    line-height: var(--line-normal);
  }

  /* 서브 상세페이지 */
  .fix_header .inner_area_util {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .box_article_tit .txt_sub_tit {
    font-size: 1.55rem;
    line-height: 36px;
  }

  /* 서브 상세페이지 - 본문 (Typography) */
  .box_article .article_cont .article_img.img_type1 {
    margin: 0 calc(-1 * var(--space-lg));
  }

  /* 페이징 */
  .section_paging .paging .link_page {
    font-size: var(--text-md);
    line-height: 25px;
  }

  .section_paging .paging .link_num {
    min-width: 28px;
    font-size: var(--text-md);
    line-height: 36px;
  }

  .section_paging .paging .paging_num {
    padding: 0 var(--space-md);
  }

  .content_list {
    padding: 0 var(--space-lg);
  }

  .content_list .link_thumb .box_thumb {
    width: 200px;
    height: 150px;
		margin-left: 40px;
  }

  .content_list .link_thumb .cont_thumb .txt_title {
    display: block;
    font-size: var(--text-lg);
    line-height: 34px;
  }

  .content_list .link_thumb .cont_thumb .txt_thumb {
    margin-top: var(--space-xs);
    font-size: var(--text-base);
  }

  .content_list .link_thumb .cont_thumb .thumb_info {
    margin-top: 11px;
  }
}

/* 미디어: PC */
@media screen and (min-width: 1024px) {

  /* Black 테마 */
  /* 레이아웃 (서브 상세, sidebar 영역 적용 레이아웃) */
  .wrap_content {
    display: flex;
  }

  .wrap_content:after {
    content: '';
    display: block;
    clear: both;
  }

  .content {
    flex: 1;
  }

  /* 서브상세 */
  .wrap_content.wrap_detail_content {
    margin: 84px auto 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    max-width: 1100px;
    display: block;
  }

  .content.sub_detail {
    float: left;
    width: calc(100% - 375px);
  }

  .content.sub_detail .section_area {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* 헤더 */
  .header .inner_header {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* 서브 상세페이지 - 고정 메뉴 */
  .fix_header .link_back {
    left: -10px;
  }

  .fix_header .btn_menu {
    right: -2px;
  }

  .fix_header .inner_area_util {
    max-width: 1100px;
    margin: 0 auto;
  }

  .fix_header .box_fix_tit .txt_fix_tit {
    font-size: var(--text-lg);
  }

	.fix_header .area_util {
		display: none;
}

  /* 메뉴, 검색 레이어 */
  .ly_area .inner_ly_area {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* 메인 컨텐츠 */
  .content .section_area {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px var(--space-lg) 0 var(--space-lg);
  }

  .content .wrap_section {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-max) var(--space-lg) 0;
  }

  .content .wrap_section:after {
    content: '';
    display: block;
    clear: both;
  }

  .main_slide .slick-dots {
    max-width: 1100px;
    margin: 0 auto;
  }

  .slide_area .slide_item .link_slide {
    height: 450px;
  }

  .slide_area .slide_item .link_slide .inner_link_slide {
    position: relative;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .slide_area .slide_item .link_slide .slide_txt {
    bottom: 40px;
  }

  .slide_area .slide_item .link_slide .txt_tit {
    font-size: var(--text-xxl);
    line-height: 1.3;
    letter-spacing: -0.8px;
  }

  .slide_area .slide_item .link_slide .txt_cont {
    font-size: var(--text-md);
    max-height: 56px;
    line-height: 1.33;
    letter-spacing: 0;
  }

  .slide_area .slide_item .link_slide .txt_name {
    font-size: var(--text-lg);
    line-height: 1.33;
    letter-spacing: 0;
  }

	/* 페이지 */


  /* 리스트 (공통) */
  .list_article {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
  }

  .list_article:after {
    content: '';
    display: block;
    clear: both;
  }

  .list_article>li {
    margin-top: 0;
    text-align: center;
  }

  .list_article .link_thumb .box_thumb {
    width: 100%;
    margin: 0 auto;
  }

  .list_article .link_thumb .box_thumb.no_img {
    display: block;
  }

  /* 카테고리 둘러보기, 이벤트 영역 (모바일 iscroll, PC slick 적용 ) */
  .section_area .wrap_scroller {
    height: auto;
    background-color: transparent;
    overflow: visible;
  }

  .section_area .scroller {
    position: relative;
    height: auto;
    margin: 0 calc(-1 * var(--space-sm));
    z-index: auto;
    white-space: normal;
    -webkit-tap-highlight-color: transparent;
  }

  .section_area.event_area .wrap_scroller {
    height: auto;
  }

  /* 카테고리 둘러보기, 이벤트 slick 버튼 */
  .section_area .scroller .slick-track {
    margin: 0;
  }

  .section_area .box_arrow .btn_arrow {
    background-color: transparent;
  }

  .section_area .box_arrow .btn_arrow .box_svg {
    fill: var(--text-sub1);
    opacity: 1;
  }

  .section_area .box_arrow .slick-disabled .box_svg {
    opacity: 0.15;
  }

  .category_area .box_arrow .btn_arrow, .event_area .box_arrow .btn_arrow {
    display: block !important;
  }

  .category_area .box_arrow .btn_prev {
    top: 136px;
    bottom: auto;
    right: auto;
    left: -55px;
  }

  .category_area .box_arrow .btn_next {
    top: 136px;
    bottom: auto;
    right: -55px;
  }

  .event_area .box_arrow .btn_prev {
    top: 42px;
    bottom: auto;
    right: auto;
    left: -55px;
  }

  .event_area .box_arrow .btn_next {
    top: 42px;
    bottom: auto;
    right: -55px;
  }

  .section_area .scroller .item_scroller {
    display: inline-block;
    width: 25%;
    margin-right: 0px;
  }

  .section_area .scroller .item_scroller:last-child {
    margin-right: 0px;
  }

  .section_area .scroller .item_scroller .box_item {
    margin: 0 var(--space-sm);
  }

  /* 커버 - 섬네일 리스트 */
  .list_article.list_type_wide>li .link_thumb .cont_thumb .txt_thumb {
    max-height: 58px;
    font-size: var(--text-base);
    line-height: 26px;
  }

  /* 메인 리스트 (width:50%) */
  .wrap_section .section_area {
    float: left;
    width: 50%;
    max-width: none;
    padding: 0;
  }

  .wrap_section .section_area:nth-child(2n+1) .list_type_small {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: 0;
  }

  .wrap_section .section_area:nth-child(2n+2) .list_type_small {
    margin-left: 0;
    margin-right: calc(-1 * var(--space-sm));
  }

  .wrap_section .section_area:nth-child(2n+2) .tit_section {
    padding-left: var(--space-sm);
  }

  /* 메인 리스트 (라이프, 뉴스) */
  .list_article.list_type_small>li {
    display: none;
    float: left;
    width: 50%;
  }

  .list_article.list_type_small>li:nth-child(-n+3) {
    display: block;
  }

  .list_article.list_type_small>li:nth-child(1) {
    width: 100%;
    padding-bottom: 0;
  }

  .list_article.list_type_small>li:nth-child(1) .link_thumb .box_thumb {
    padding-top: 240px;
  }

  .list_article.list_type_small>li .link_thumb .cont_thumb .txt_thumb {
    max-height: var(--space-xxl);
    font-size: var(--text-md);
    -webkit-line-clamp: 2;
  }

  /* 메인 리스트 칼럼 */
  .list_article.list_type2 {
    margin: 0 calc(-1 * var(--space-sm));
  }

  .list_article.list_type2>li {
    width: 16.66%;
  }

  /* 썸네일리스트 */
  .list_article.list_type2>li:nth-child(6n+1) {
    clear: both;
  }

  .list_article.list_type2 .link_thumb .box_thumb {
    padding-top: 100%;
  }

  .list_article.list_type2 .link_thumb .cont_thumb .txt_thumb {
    font-size: var(--text-base);
    line-height: 20px;
    max-height: 42px;
  }

  /* 서브 상세 본문 */
  .box_article {
    margin-bottom: var(--space-xl);
  }

  .box_article .container_postbtn {
    margin-bottom: 40px;
  }

  /* 서브 리스트 */
  .sub_content .section_area {
    padding-top: 0px;
  }

  .sub_content .list_sub {
    margin: 0 calc(-1 * var(--space-sm)) -14px calc(-1 * var(--space-sm));
  }

  .sub_content .list_sub .link_thumb {
    margin: 0 var(--space-sm);
  }

  /* 댓글 쓰기 */
  .box_comment_write .register_area .box_inp {
    width: 188px;
  }

  /* 사이드 바 */
  .sidebar {
    float: left;
    display: block;
    width: 320px;
    margin-left: 55px;
    padding-bottom: 40px;
    position: -webkit-sticky;
    position: sticky;
    top: -60px;
  }

  .sidebar .tit_section {
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    color: var(--primary-color);
  }

  /* 사이드 바 리스트 (인기글, 최신글) */
  .list_article.list_sidebar {
    margin: 0;
  }

  .list_article.list_sidebar>li {
    display: block;
    margin-bottom: var(--space-md);
  }

  .list_article.list_sidebar>li:last-child {
    margin-bottom: 0;
  }

  .list_article.list_sidebar .link_thumb .box_thumb {
    position: relative;
    float: left;
    width: 120px;
    height: 80px;
    margin: 0 var(--space-sm) 0 0;
    padding: 0;
  }

  .list_article.list_sidebar .link_thumb .box_thumb .item_count {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--space-lg);
    height: var(--space-lg);
    font-size: var(--text-base);
    line-height: 23px;
    font-weight: var(--weight-bold);
    background-color: var(--primary-color);
    color: var(--bg-white);
  }

  .list_article.list_sidebar .link_thumb .cont_thumb .txt_thumb {
    font-size: var(--text-sm);
    line-height: 20px;
    max-height: 60px;
		margin-bottom: 6px;
    padding-top: var(--space-xxs);
  }

  .list_recent .item_count {
    display: none;
  }

  /* 사이드 바 광고 */
  .sidebar .section_area {
    margin-bottom: 35px;
  }

  .sidebar .section_ad {
    margin: 40px 0;
  }

  /* 서브 상세페이지 - 본문 (Typography) */
  .box_article .article_cont .article_img.img_type1 {
    margin: 0;
  }

  /* footer */
  .footer {
    padding: 0 var(--space-lg);
  }

  .footer .inner_footer {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer .inner_footer:after {
    content: '';
    display: block;
    clear: both;
  }

  .footer .area_select {
    float: right;
    padding-top: var(--space-xxl);
  }

  .footer .area_select .box_select {
    width: 160px;
  }

  .footer .area_address {
    float: left;
    padding: 41px 0 45px;
  }

  .content_list {
    padding: 0;
  }

  .wrap_detail_content .content_list:first-child {
    margin-top: -45px;
    padding-top: 0;
  }

  .inner_paging {
    max-width: 1100px;
    margin: 0 auto;
		padding: 20px 0 0 0;
  }

  .view_paging {
    width: calc(100% - 407px);
  }
}

/* 미디어: 커버 슬라이드 와이드 */
@media screen and (min-width: 1148px) {

  .slide_area .slide_item .link_slide .slide_txt {
    left: 0;
  }

  .main_slide .box_arrow .btn_prev {
    right: var(--space-xxl);
  }

  .main_slide .box_arrow .btn_next {
    right: 0;
  }
}

/* 페이징 */
.section_paging {
  padding: 20px var(--space-md) 0;
  display: flex;
  justify-content: center;
}

.section_paging .paging {
  display: flex;
}

.section_paging .paging .link_page {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  text-decoration: none;
  color: var(--text-sub1);
}

.section_paging .paging .link_page .img_svg {
  width: 7px;
  height: var(--space-sm);
  vertical-align: 0;
}

.section_paging .paging .link_page .txt_page {
  display: inline-block;
  vertical-align: 0;
}

.section_paging .paging .link_prev {
  padding-left: var(--space-xs);
}

.section_paging .paging .link_prev .txt_page {
  padding-left: var(--space-xxs);
}

.section_paging .paging .link_next {
  padding-right: var(--space-xs);
}

.section_paging .paging .link_next .txt_page {
  padding-right: var(--space-xxs);
}

.section_paging .paging .no-more-prev, .section_paging .paging .no-more-next {
  color: var(--border-transparent);
  fill: var(--border-transparent);
  padding-left: var(--space-xs);
}

.section_paging .paging .paging_num {
  display: flex;
}

.section_paging .paging .link_num {
  display: inline-block;
  font-size: var(--text-base);
  line-height: 1.33;
  font-weight: var(--weight-bold);
  color: var(--placeholder);
  text-align: center;
}

.section_paging .paging .link_num span {
  display: inline-block;
  padding: 0 var(--space-xxs);
  min-width: var(--space-sm);
  line-height: var(--space-lg);
}

.section_paging .paging .link_num:hover span, .section_paging .paging .link_num:focus span {
  color: var(--text-main);
}

.section_paging .paging .selected {
  color: var(--text-main);
}

@media screen and (max-width: 743px) {
/* 모바일 페이징 컬러 1012 */
.section_paging .paging .selected {
  color: var(--primary-color);
}
.section_paging .paging .link_num {
  color: var(--text_sub1);
}
}

/* list_type_wide + add 1107 */
.section_type_wide {
  margin-top: -6px !important;
  margin-bottom: -63px !important;
}

.list_type_wide {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--space-sm));
}

.list_type_wide li {
  width: 50%;
  margin-bottom: 57px;
}

.list_type_wide .link_thumb {
  margin: 0 var(--space-sm);
}

.list_type_wide .cont_thumb {
  margin-top: var(--space-md);
}

.list_type_wide .txt_category {
  font-size: var(--text-xs);
  line-height: var(--space-md);
  font-weight: var(--weight-bold);
  color: var(--primary-color);
}

#content_cover_group .txt_summary {
  max-width: 500px;
  width: calc(100% - var(--space-sm));
}

.list_type_wide .txt_summary {
  font-size: var(--text-sm);
  line-height: var(--space-lg);
  color: var(--text-sub);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.list_type_wide .txt_thumb {
  margin: 6px 0 6px 0;
}

@media screen and (max-width: 743px) {
  .section_type_wide {
    margin-bottom: -33px !important;
  }

  .list_type_wide li {
    width: 100%;
    margin-bottom: 40px;
  }

  .list_type_wide .cont_thumb {
    margin-top: var(--space-sm);
  }

  .list_type_wide .txt_thumb {
    margin: var(--space-xxs) 0 5px 0;
  }
}
/* // list_type_wide */
/* list_post + add 1107 */
.list_post {
  margin: 0 calc(-1 * var(--space-sm)) -27px calc(-1 * var(--space-sm));
  padding: 0;
  list-style: none;
}

.list_post:after {
  content: '';
  display: block;
  clear: both;
}

.list_post .item_post {
  float: left;
  width: 25%;
  margin-bottom: var(--space-lg);
}

@media screen and (max-width: 743px) {
.list_post .item_post {
  width: 50%;
}
}

.list_post .link_post {
  position: relative;
  display: block;
  margin: 0 var(--space-sm);
  padding-top: 91.5%;
  background-image: url(./images/no_img.webp);
  background-size: cover;
  background-position: 50% 50%;
}

.list_post .item_post:hover .link_post:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--overlay-dim);
}

.list_post .link_post:hover .info {
  display: flex;
}

.list_post .link_post .info {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--bg-white);
  text-align: center;
}

.list_post .link_post .info .name {
  display: block;
  width: calc(100% - 80px);
  max-height: 65px;
  margin: 0 auto;
  font-size: var(--text-md);
  font-weight: var(--weight-regular);
  line-height: var(--space-lg);
  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) {
  .list_post {
    margin: 0 -1px;
  }

  .list_post .item_post {
    margin-bottom: 1px;
  }

  .list_post .link_post {
    margin: 0 0.5px;
  }

  .item_post .link_post:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--overlay-dim);
  }

  .list_post .link_post .info {
    display: flex;
  }

  .list_post .link_post .info .name {
    width: calc(100% - var(--space-xl));
    font-size: var(--text-sm);
    line-height: 20px;
  }
	  .wrap_event_scroller {
    height: 150px !important;
  }

}
/* // list_post */
/* list_notice modify 1108 */
.list_notice {
  margin-bottom: -2px;
  border-top: solid 1px var(--border-light);
}

.list_notice:after {
  content: '';
  display: block;
  clear: both;
}

.list_notice .item_notice {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-light);
}

.list_notice .item_notice:after {
  content: '';
  display: block;
  clear: both;
}

.list_notice .link_notice {
  display: block;
  color: var(--text-sub1);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.list_notice .link_notice:hover {
  opacity: .8;
}

.list_notice .thumnail {
  float: left;
  display: block;
  width: 180px;
  height: 122px;
  margin-right: var(--space-lg);
  background-image: url(./images/no_img.webp);
  background-size: cover;
  background-position: 50% 50%;
}

.list_notice .info {
  padding-top: 5px;
  overflow: hidden;
}

.list_notice .tit_notice {
  font-size: var(--text-lg);
  color: var(--text-main);
  overflow:hidden;
  display:block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_notice .text {
  max-height: 45px;
  margin: 5px 0 var(--space-xs) 0;
  font-size: var(--text-sm);
  line-height: var(--space-lg);
  color: var(--text-sub);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#content_cover_group .list_notice .text {
  max-width: 780px;
	line-height: 22px;
  margin: 5px 0 10px 0;
}

.list_notice .txt_category {
  margin-right: var(--space-xxs);
  font-size: var(--text-sm);
  color: var(--primary-color);
}

.list_notice .txt_date {
  margin-right: var(--space-xxs);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media screen and (max-width: 743px) {
  .list_notice .item_notice {
    padding: 20px 0 20px 0;
  }

  .list_notice .thumnail {
    width: 100px;
    height: 100px;
    margin-right: var(--space-sm);
  }

  .list_notice .info {
    padding-top: 0px;
  }

  .list_notice .tit_notice {
    font-size: var(--text-base);
  }

  .list_notice .txt_category,
  .list_notice .txt_date {
    font-size: var(--text-xs);
  }

	#content_cover_group .list_notice .text {
			margin: 5px 0 5px 0;
      }

}
/* // list_notice */

.sub_content .list_sub {
  display: flex;
  flex-wrap: wrap;
}

.sub_content .list_sub li {
  width: 25%;
  margin-bottom: 37px;
}

.sub_content .list_sub .box_thumb {
  padding-top: 66.4%;
}

.sub_content .list_sub .txt_category {
  display: block;
  margin-top: 15px;
}

.sub_content .list_sub .txt_thumb {
  margin: 9px 0;
}

.sub_content .list_sub .name {
  display: none;
}

.list_sub .txt_category {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.list_sub .txt_date {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media screen and (max-width: 743px) {
  .sub_content .list_sub {
    display: block;
  }

  .sub_content .list_sub li {
    width: 100%;
    margin-bottom: 15px;
  }

  .sub_content .list_sub .box_thumb {
    float: left;
    width: 88px;
    height: 88px;
    margin-right: var(--space-sm);
    padding-top: 2px;
  }

  .sub_content .list_sub .cont_thumb {
    overflow: hidden;
  }

  .sub_content .list_sub .txt_category {
    margin-top: 7px;
  }

  .sub_content .list_sub .txt_thumb {
    margin: var(--space-xxs) 0 var(--space-xs) 0;
  }

  .sub_content .list_sub .txt_category,
  .sub_content .list_sub .txt_date {
    font-size: var(--text-xs);
  }
}

/* list_related */
.list_related {
  margin-bottom: -5px !important;
}

.list_related li {
  margin-bottom: 20px !important;
}

.list_related .txt_thumb {
  margin: 0 0 6px 0 !important;
}

/* 서브 상세 페이지 관련글 */
.box_related_article .list_sub.list_related>li {
  width: 50%;
}

.box_related_article .list_sub.list_related>li .box_thumb {
  float: left;
  width: 120px;
  height: 80px;
  margin-right: var(--space-sm);
  margin-bottom: 0;
  padding: 0;
}

@media screen and (max-width: 743px) {
  .box_related_article .list_sub.list_related>li {
    width: 100%;
  }
}

/* list_related */
.ly_header {
  padding-top: 40px;
}

@media screen and (max-width: 743px) {

  .header {
    height: 60px;
    overflow: hidden;
  }

  .header .link_logo {
    padding: 23px 0;
    font-size: var(--text-xxl);
  }

  .header .btn_box {
    padding-top: 6px;
  }

	.header .btn_box .btn_search {
    padding: var(--space-xs);
    margin-right: 0px;
    background: url(./images/ico_search.webp) no-repeat center;
  }

  .header h1 a,
  .ly_area .ly_logo a {
    font-size: var(--text-xl);
  }

  .ly_header {
    padding-top: 14px;
  }

  .ly_area .btn_ly_close .box_svg {
    width: 22px;
  }

  .fix_header .box_fix_tit .txt_fix_tit {
    line-height: 60px;
		text-align: center;
  }

  .fix_header .link_back {
    top: 7px;
  }

  .fix_header .btn_menu {
    top: 15px;
  }

  .search_area .box_form .inp_search {
    font-size: var(--text-xl);
  }

  .slide_area .slide_item .link_slide .txt_tit {
    line-height: var(--space-lg);
  }

  .section_area .wrap_scroller {
    height: 215px;
  }

  .section_area .scroller .item_scroller {
    width: 148px;
  }

  .footer {
    margin-top: 80px;
  }

	.footer .area_address {
    text-align: center;
	}

	.footer .area_select .box_select {
    width: 100%;
	}

.footer .area_address .info_link {
    margin: 20px 0 var(--space-md);
	}

	.footer .area_address .area_sns {
     margin-bottom: 40px;
	}
}

/* 보호글 비밀번호 입력 */
.protected_form input{
   	border: 1px solid var(--border-light);
    padding: 9px 14px;
    font-size: var(--text-sm);
}

.protected_form button{
    font-size: var(--text-sm);
    background: none;
    border: 1px solid var(--border-light);
    padding: 9px 14px;
		margin-left: 10px;
}

.revenue_unit_wrap.position_list{
  max-width: 1148px;
  margin: 30px auto;
}

    /* 반응형 동영상 */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  }

.video-container iframe,.video-container object,.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

#sidebar {
	position: sticky;
	position: -webkit-sticky;
	top: 70px;
}

/* 댓글 로그인 안내 */
#comment-redirecturl {
  text-align: center; 
  border: 1px solid var(--color-primary-light);
  background: var(--bg-light-gray);
  padding: 20px 0; 
  position: relative;
  }
#comment-redirecturl>span {
  margin: auto 3px; 
  display: inline-block;
  }
#comment-redirecturl span a {
  color: var(--primary-color); 
  font-weight: var(--weight-bold); 
  font-size: var(--text-base);
  }

/* 그라데이션 프로그레스바 시작 */
#mybar { 
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: var(--space-xxs);
  z-index: 9999999;
  transition: all .2s ease;
  background-image: var(--color-primary-gradient);
  }
/* 그라데이션 프로그레스바 끝 */

/* 지연 로딩 이미지 부드럽게 나타나기 + 레이아웃 최적화 */
.imageblock img, 
.imagegridblock img {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s; 
    
    /* [개선] 배경색을 스킨 테마와 맞추되 은은하게 */
    background-color: var(--bg-light-gray); 
    
    /* [개선] 너무 작은 이미지는 제외하고 보통 이미지에만 높이 확보 */
    min-height: 150px; 
    width: 100%;
    height: auto;
    
    /* 이미지가 로드되기 전에도 영역을 유지 */
    content-visibility: auto; 
}

/* 로딩 완료 시 스타일 */
.imageblock img.loaded, 
.imagegridblock img.grid-loaded { /* 클래스명은 사용 중인 스크립트에 맞춤 */
    opacity: 1;
    background-color: transparent;
    min-height: 0; /* 로드 후에는 실제 이미지 높이에 맞게 해제 */
}

/* 로딩 실패 시 (스크립트에서 .error 클래스 추가 시) */
.imageblock img.error {
    min-height: 0;
    display: none;
}

figcaption {
  display: block;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: -0.8rem;;
  font-style: italic;
}

/* 괄호 안의 텍스트 연하게 표시 */
.text-parentheses {
  color: var(--text-muted) !important; /* 원래 글씨보다 연한 회색 */
  font-size: var(--text-sm);       /* 메인 텍스트보다 아주 약간 작게 하면 더 정갈합니다 */
  font-weight: var(--weight-regular);    /* 혹시 본문이 굵을 경우를 대비 */
}

/* 🌟 표를 감싸는 스크롤 전용 투명 박스 */
.table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 🌟 표 자체는 데스크탑 원형 그대로 유지! */
.table-scroll-wrapper table {
    min-width: 700px !important; /* 스마트폰에서도 데스크탑처럼 표가 쪼그라들지 않게 넓은 너비 강제 확보 */
    /* 표의 높이나 여백은 티스토리 원본을 그대로 100% 따라갑니다 */
}

/* 애드센스 로딩 시 화면 덜컥임(CLS) 방지 */
.adsbygoogle {
    display: block;
    min-height: 250px; /* 보통 반응형 광고의 최소 높이. 이 공간을 미리 비워둡니다. */
}

/* 본문 내 유튜브 및 모든 iframe 최적화 */
.article_cont iframe {
    display: block;       /* 인라인 요소를 블록 요소로 변경 */
    margin: 0px auto;    /* 위아래 여백을 주고 좌우 'auto'로 가운데 정렬 */
    width: 100% !important; /* 부모 너비(본문 폭)에 100% 맞춤 */
    aspect-ratio: 16 / 9; /* 🌟 핵심: 가로 길이에 맞춰 세로 높이를 16:9로 자동 계산 */
    border: none;         /* 테두리 제거 */
}

/* 만약 지도나 다른 iframe은 비율이 달라야 한다면? */
.article_cont iframe[src*="google.com/maps"] {
    aspect-ratio: 4 / 3;  /* 구글 지도는 4:3 비율로 설정 */
}

/* =========================================
📑 NEOEARLY* 자동 목차(TOC) 전용 CSS
========================================= */

/* 1. 부드러운 스크롤 */
html { scroll-behavior: smooth; }

/* 2. 고정 헤더 점프 위치 보정 */
.article_cont h2, .article_cont h3 {
scroll-margin-top: 100px !important;
}

/* 3. 자동 목차(TOC) 전체 박스 & 🌟 카운터 강제 시작 */
.toc-container {
background-color: #fafafa;
border: 1px solid #e5e5e5;
padding: var(--space-lg);
margin: 10px 0 50px 0;
box-sizing: border-box;
width: 100%;
/* 스킨 설정 무시하고 카운터 무조건 0부터 시작하도록 강제 */
counter-reset: toc-h2-counter 0 toc-h3-counter 0 !important;
}

.toc-title {
font-size: var(--text-md);
font-weight: var(--weight-bold);
color: var(--text-main);
margin-bottom: var(--space-md);
padding-bottom: var(--space-xxs);
border-bottom: 3px solid var(--primary-color);
display: inline-block;
}

.toc-container ul {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}

.toc-container li {
margin-bottom: var(--space-sm);
line-height: 1.6;
}

/* 4. 🌟 스킨 고유 링크(밑줄/색상) 완벽 차단! (방탄 코드) */
.toc-container a,
.toc-container a:link,
.toc-container a:visited,
.toc-container a:active {
color: var(--text-main) !important; /* 평소 검은색 강제 (방문 기록 있는 링크도 포함) */
text-decoration: none !important; /* 기본 밑줄 제거 */
border-bottom: none !important; /* 티스토리가 자주 쓰는 하단 선 제거 */
box-shadow: none !important; /* 그림자 형태 밑줄 제거 */
background: transparent !important;
}

/* 5. 호버 시 오렌지색 변환 */
.toc-container a:hover {
color: var(--primary-color) !important;
text-decoration: underline !important;
border-bottom: none !important;
text-underline-offset: var(--space-xxs);
}

/* 6. 🌟 대제목(h2) 넘버링 복구 */
.toc-container li.toc-h2 {
counter-increment: toc-h2-counter !important; /* 강제 1 증가 */
counter-reset: toc-h3-counter 0 !important;   /* h2 나올때마다 h3는 0으로 초기화 */
}

.toc-container li.toc-h2 > a {
font-weight: var(--weight-regular);
font-size: var(--text-base);
}

/* 글자 바로 앞에 1., 2. 붙이기 */
.toc-container li.toc-h2 > a::before {
content: counter(toc-h2-counter) ". ";
color: var(--primary-color) !important; /* 숫자는 오렌지색으로 유지 */
margin-right: var(--sapce-xxs);
}

/* 7. 🌟 중제목(h3) 넘버링 복구 */
.toc-container li.toc-h3 {
padding-left: var(--space-md);
counter-increment: toc-h3-counter !important; /* 강제 1 증가 */
}

.toc-container li.toc-h3 > a {
font-size: var(--text-sm);
font-weight: var(--weight-regular);
}

/* 글자 바로 앞에 1.1, 1.2 붙이기 */
.toc-container li.toc-h3 > a::before {
content: counter(toc-h2-counter) "." counter(toc-h3-counter) " ";
color: var(--primay-color) !important;
font-weight: var(--weight-regular);
margin-right: var(--space-xs);
}

/* 🌟 본문 내 자동 태그 링크 디자인 */
a.auto-tag-link {
    color: inherit !important; /* 평소엔 주변 글자색(회백색 등)과 똑같이 위장 */
    text-decoration: underline !important;
    text-decoration-color: var(--primary-color) !important; /* 밑줄만 오렌지색으로 은은하게 표시 */
    text-decoration-thickness: 1px !important;
    text-underline-offset: 2px;
    font-weight: 600; /* 살짝 굵게 처리하여 눈에 띄게 */
    transition: all 0.2s ease;
}

/* 마우스를 올리면 완벽한 오렌지색으로 빛남! */
a.auto-tag-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(255, 85, 0, 0.1); /* 배경에 살짝 오렌지빛 형광펜 효과 (선택) */
    border-radius: 4px;
}

/* 🌟 모든 본문 글 왼쪽 정렬 강제 적용 */
.article_cont, 
.article_cont p, 
.article_cont div, 
.article_cont span {
    text-align: left !important;
}
