@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Taviraj:300,400,700,300i,400i,700i");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
/* Pretendard 폰트 패밀리 정의 */
@font-face {
  font-family: Pretendard-Bold;
  font-weight: 400;
  src: local("Pretendard-Bold"),
       local("☺"),
       url("/assets/fonts/Pretendard-Bold.woff2") format("woff2"),
       url("/assets/fonts/Pretendard-Bold.woff") format("woff"),
       url("/assets/fonts/Pretendard-Bold.otf") format("opentype");
}

@font-face {
  font-family: Pretendard-Light;
  font-weight: 400;
  src: local("Pretendard-Light"),
       local("☺"),
       url("/assets/fonts/Pretendard-Light.woff2") format("woff2"),
       url("/assets/fonts/Pretendard-Light.woff") format("woff"),
       url("/assets/fonts/Pretendard-Light.otf") format("opentype");
}

@font-face {
  font-family: Pretendard-Regular;
  font-weight: 400;
  src: local("Pretendard-Regular"),
       local("☺"),
       url("/assets/fonts/Pretendard-Regular.woff2") format("woff2"),
       url("/assets/fonts/Pretendard-Regular.woff") format("woff"),
       url("/assets/fonts/Pretendard-Regular.otf") format("opentype");
}

@font-face {
  font-family: Pretendard-Medium;
  font-weight: 400;
  src: local("Pretendard-Medium"),
       local("☺"),
       url("/assets/fonts/Pretendard-Medium.woff2") format("woff2"),
       url("/assets/fonts/Pretendard-Medium.woff") format("woff"),
       url("/assets/fonts/Pretendard-Medium.otf") format("opentype");
}

@font-face {
  font-family: Pretendard-SemiBold;
  font-weight: 400;
  src: local("Pretendard-SemiBold"),
       local("☺"),
       url("/assets/fonts/Pretendard-SemiBold.woff2") format("woff2"),
       url("/assets/fonts/Pretendard-SemiBold.woff") format("woff"),
       url("/assets/fonts/Pretendard-SemiBold.otf") format("opentype");
}

@font-face {
  font-family: Pretendard-Black;
  font-weight: 400;
  src: local("Pretendard-Black"),
       local("☺"),
       url("/assets/fonts/Pretendard-Black.woff2") format("woff2"),
       url("/assets/fonts/Pretendard-Black.woff") format("woff"),
       url("/assets/fonts/Pretendard-Black.otf") format("opentype");
}


	html {
		box-sizing: border-box;
		scroll-behavior: smooth;
	}

	img {
		height: auto;
		max-width: 100%;
		border-radius: 0.365em;
	}

	::selection {
		background-color: #FFD800; /* 선택된 텍스트의 배경 색을 노란색으로 설정 */
		color: #000; /* 선택된 텍스트의 글자 색을 검정색으로 설정 (선택적) */
	}

	.both {
		clear: both;
	}
	.small {
		font-size: 0.8rem !important;
	}

/* 숨김 텍스트 */
	.absolute {
		position: absolute; 
		top: -8000px; 
		left: -8000px;
	}

/* PC에서 보이고, 모바일에서 안보임, BR 전용 */
.hide-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .hide-pc {
    display: none;
  }
}
/* BR 코드가 PC에서는 미적용, 모바일에서 적용, BR 전용 */
.mobile-br {
  display: none;
}
@media (max-width: 767px) {
  .mobile-br {
    display: block;
  }
}

/* PC에서 보이고, 모바일에서 안보임 */
.mobile-hide {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none;
  }
}
/* 텍스트 위치 */
	.align-left {
		text-align: left;
	}
	.align-center {
		text-align: center;
	}
	.align-right {
		text-align: right;
	}

/* 폰트 한글 + 영문 */
	.hangle {
		font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	}
	.hangles {
		font-family: 'Noto Serif KR', sans-serif !important;
	}
	.eng {
		font-family: "Taviraj", serif !important;
	}
	.pr {
		padding-right: 0.2em;
	}

	hr {
		clear: both !important;
		margin-top:3rem !important;
		margin-bottom:3rem !important;
		border:0;
		border-top:1px solid rgba(0,0,0,.1) !important;
	}

/* Content Section Code */
.content_section {
    width: 100%;
    float: left;
}

.content_taital_main {
    width: 100%;
    float: left;
    padding: 0;
}
.content_taital_main h3 {
    border-bottom: 0.2rem solid #303030;
    margin-bottom: 2rem;
}

.content_taital_main p {
    color: #5E5F60;
    font-weight: 400;
    font-size: 1em;
    font-family: 'Noto Serif KR', sans-serif;
    line-height: 180%;
    margin-top: 0;
    margin-bottom: 2rem;
}

.content_taital {
    width: 100%;
    float: left;
    font-size: 2rem;
    color: #f76d37;
    font-weight: 800;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
	.content_taital {
		font-size: 1.55rem;
	}
}
	.content-area p {
		width: 100%;
		float: left;
		font-size: 1rem;
		color: #5E5F60;
	}
@media screen and (max-width: 767px) {
	.content-area p {
		font-size: 0.9rem;
	}
}

	.content_area h1, 
	.content_area h2, 
	.content_area h3, 
	.content_area h4, 
	.content_area h5, 
	.content_area h6 {
		color: #353535;
		font-family: 'Noto Serif KR', sans-serif;
		font-weight: 900;
		line-height: 180%;
}
	.content_area h1 {
		font-size: 1.75rem;
}
	.content_area h2 {
		font-size: 1.55rem;
}
	.content_area h3 {
		font-size: 1.35rem;
}
	.content_area h4 {
		font-size: 1.25rem;
}
	.content_area h5 {
		font-size: 1.15rem;
}
	.content_area h6 {
		font-size: 1.05rem;
}
@media (max-width: 768px) {
	.content_area h1 {
		font-size: 1.55rem;
	}
	.content_area h2 {
		font-size: 1.35rem;
	}
	.content_area h3 {
		font-size: 1.15rem;
	}
	.content_area h4 {
		font-size: 1.05rem;
	}
	.content_area h5 {
		font-size: 0.95rem;
	}
	.content_area h6 {
		font-size: 0.85rem;
	}
}

	.content-area p.styles {
		color: #303030;
		font-size: 1.75em;
		font-weight: 700;
		border-radius: 0.35em;
		background: #FAFBFB url(/images/overlay.png);
		box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.25);
		letter-spacing: 0.075em;
		line-height: 1.75em;
		padding: 1em;
		margin-bottom: 1em;
	}
@media screen and (max-width: 767px) {
	.content-area p.styles {
		font-size: 1.15em;
	}
}

/* 카테고리 사이드 박스 */
/* 자주 묻는 질문 사이드 서브 카테고리 */
/* FAQ */
.categorys-sidebar {
    width: 100%;
}

.categorys-menu {
    font-family: 'Noto Serif KR', sans-serif;
    letter-spacing: 0.02em;
    word-spacing: 0.01em;
    padding: 0 1em 2em 1em;
    border: 0.1em solid #ddd;
    border-radius: 0.3em;
    background-color: #fefefe;
    margin-bottom: 2em;
}

.categorys-menu li {
    padding: 1em 0;
    list-style: none;
    border-bottom: 1px solid #eee;
}

.categorys-menu li a {
  text-decoration: none;
  color: #444;
  font-size: 0.98em;
  transition: all 0.2s ease;
}

.categorys-menu li a:hover {
  color: #238ED4;
  font-weight: 600;
}

.categorys-menu li a.active {
    color: #238ED4;
    font-weight: 600;
    pointer-events: none;
}


.category-sidebar h3 {
    display: block;
    position: relative;
    font-size: 1.55em;
    line-height: 180%;
    font-weight: 700;
    letter-spacing: 0.02em;
    word-spacing: 0.01em;
    background: linear-gradient(to right, #ccc, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding: 0.1em 0;
    margin-bottom: 1em;
}
	.category-sidebar h3::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 0.15em;
		border-radius: 0.23em;
		background: linear-gradient(to right, #ccc, #000);
	}

/* 무료상담 사이드 카테고리 */
.consultation_box {
    width: 100%;
    text-align: center;
    margin: 1.5em 0 0 0;
}
.consultation_box a {
    display: inline-block;
    width: 100%;
    font-size: 0.8em;
    padding: 1em 2em;
    font-family: 'Noto Serif KR', sans-serif;
    letter-spacing: 0.02em;
    word-spacing: 0.01em;
    background-color: #252525;
    color: #fff;
    text-align: center;
    font-weight: 600;
    border-radius: 0.1em;
    text-transform: capitalize;
    transition: all .3s;
}

.consultation_box a:hover {
    color: #fff;
    background-color: #f76d37;
}

/* Image */
/* 기본 스타일 */
.image {
    border-radius: 3px;
    border: 0;
    display: inline-block;
    position: relative;
}

.image img {
    border-radius: 3px;
    display: block;
}

.image.left {
    float: left;
    margin: 0 2em 2em 0;
    top: 0.25em;
}

.image.right {
    float: right;
    margin: 0 0 2em 2em;
    top: 0.25em;
}

.image.left, .image.right {
    max-width: 40%;
}

.image.left img, .image.right img {
    width: 100%;
}

.image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%;
}

.image.fit img {
    width: 100%;
}

.image.minus {
    display: block;
    margin: 0 0 0 0;
    width: 100%;
    border-radius: 3px 3px 0 0 !important;
}

.image.minus img {
    width: 100%;
    border-radius: 3px 3px 0 0 !important;
}


		.image.centered {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.centered img {
				margin: 0 auto;
				width: auto;
			}

		.image.featured {
			display: block;
			width: 100%;
			margin: 0 0 3em 0;
		}

/* 모바일 대응 스타일 */
@media (max-width: 768px) {
    .image.left, .image.right {
        /*float: none;*/ /* 플로트 해제 */
        margin: 0 0 1em 0; /* 상단 여백 설정 */
        max-width: 100%; /* 이미지 너비 전체로 */
    }

    .image.left img, .image.right img {
        width: 100%; /* 이미지 너비 전체로 */
    }
}

	blockquote {
		border-left: solid 0.5em #407DC0;
		padding: 2em 1em 1em 2em;
		font-style: italic;
		font-weight: 500;
		letter-spacing: 0.02em;
		word-spacing: 0.01em;
		text-align: left;
		background-color: #F6F8F9;
	}

	blockquote h4 {
		color:#303030;
		font-size: 1.5rem;
		line-height: 180%;
		font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
		font-weight: 700;
		letter-spacing: 0.02em;
		word-spacing: 0.01em;
	}

/* 베너 */
	.banner-title {
		color:#303030;
		font-size: 1rem;
		font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
		letter-spacing: 0.02em;
		word-spacing: 0.01em;
		font-weight: 700;
		line-height: 180%;
	}
.category-sidebar .banner a {
    display: inline-block;
    font-size: 0.8em;
    font-family: "Taviraj", serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    word-spacing: 0.01em;
    padding: 0.3em 2em;
    background-color: #1F272B;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #1F272B;
    /*margin: 1em 0;*/
}
.category-sidebar .banner a:hover {
    color: #303030;
    background-color: #f5a425;
    border: 1px solid #f5a425;
}

/* 마진 - */
.minus {
    margin-top: -5em;
}
.mr-1 {
    margin-right: 0.3rem;
}


/* 목차(TOC) */
/* 좌측 목차 스타일 */
.sidebar {
    width: 100%;
    padding: 1em;
    background-color: #FBFCFC;
    border-radius: 5px;
    border: 0.1em solid #E5E8EB;
}

#toc {
    list-style-type: none;
    padding-left: 0;
}

#toc li {
    margin-bottom: 1em;
}

#toc a {
    color: #303030;
    text-decoration: none;
}

#toc a:hover {
    color: #2DBBED;
    text-decoration: none;
}

.toc-h3 {
    font-size: 1rem;
    font-weight: 700 !important;
    line-height: 180%;
}

.toc-strong {
    font-size: 0.9rem;
    margin-left: 1.55em;
}

.toc-strong + .toc-h3 {
    border-top: 1px solid #d3d3d3;
    margin-top: 1em;
    padding-top: 1em;
}

/* 목차 박스 */
	.toc_container {
		text-align:left;
	}

	.toc_container h4 {
		display: block;
		position: relative;
		font-size: 1.55em;
		line-height: 180%;
		font-weight: 700;
		letter-spacing: 0.02em;
		word-spacing: 0.01em;
		background: linear-gradient(to right, #ccc, #000);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		color: transparent;
		margin-bottom: 1em;
	}
	@media (max-width: 768px) {
 	   .toc_container h4 {
		font-size: 1.5em;
 	   }
}

	/* 가상 요소로 하단 border 대체 */
	.toc_container h4::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 0.15em;
		border-radius: 0.23em;
		background: linear-gradient(to right, #ccc, #000);
	}

/* 텍스트 중앙 위치 */
.vertical_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* main fontawesome icon css */
	.image_1 {
		font-size: 2.55rem !important;
		color: #fff;
		padding: 1rem 0;
}
	.image_2 {
		font-size: 2.55rem !important;
		color: #F76D37;
		padding: 1rem 0;
}




/* 스크롤 위로 올리기 */
    #back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: none;
      color: #fff;
      background-color: #FF2854;
      border: none;
      border-radius: 0.2rem;
      padding: 5px 7px;
      cursor: pointer;
      /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
      transition: background-color 0.5s ease, transform 0.5s ease;
      z-index: 10000;
    }
    #back-to-top:hover {
      color: #303030;
      background-color: #FC3;
    }
@media (max-width: 768px) {
    #back-to-top {
        padding: 5px 8px;
    }
}


/* latest 목록 CSS */
.latest-board-container {
  max-width: 100%;
  margin: 0 auto;
}

.latest-board-list {
  border-radius: 0em;
  overflow: hidden;
  background: transparent;
}

.latest-board-item {
    display: flex;
    align-items: center;
    padding: 0.88rem 0.1rem;
    border-bottom: 1px solid rgba(229, 232, 237, 0.2);
    transition: background 0.2s ease;
    text-decoration: none;
    color: #ccc;
}

.latest-board-item a {
  color: #303030 !important;
  text-decoration: none;
}

.latest-board-item:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff !important;
  /*border-bottom: 2px solid #fff !important;*/
  text-decoration: none;
}

.latest-board-item:last-child {
  border-bottom: none;
}

.latest-board-item > div {
  /* 내부 간격 조절 시 사용 가능 */
}

.latest-gender {
    width: 5%;
}
.latest-gender img {
    border-radius: 50%;
}

.latest-name {
  width: 10%;
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
}

.latest-region {
  width: 10%;
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
}

.latest-category {
  min-width: 15%;
  font-size: 0.86rem;
  color: #ccc;
  text-align: center;
}

.latest-date {
  min-width: 20%;
  font-size: 0.86rem;
  color: #ccc;
  text-align: center;
}


.latest-title {
  width: 40%;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  letter-spacing: 0.02em;
  word-spacing: 0.01em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.latest-meta {
  margin-left: auto;
  display: flex;
  gap: 0.8rem;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .latest-gender,
  .latest-name,
  .latest-region,
  .latest-date,
  .latest-category {
    display: none;
  }
  .latest-title {
    width: 100%;
    font-size: 1rem;
  }
}

/* Yellow Button */
.btn_yb a {
    font-size: 0.9rem;
    color: #fff;
    background-color: #f5a425;
    padding: 0.8rem 2rem;
    display: inline-block;
    border-radius: 1.55rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: all .3s;
}

.btn_yb a:hover {
    color: #303030;
    background-color: #fff;

}