@charset "utf-8";

#wrap {
    width: 100%;
    min-width: 1920px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}


.inner {
    width: 1520px;
    margin: 0 auto;
}

.ptb160 {
    padding-top: 160px;
    padding-bottom: 160px;
}

.bg_gra_brown {
    background-image: linear-gradient(to bottom, #fff, #F3EDE7);
}

.bg_gra_brown_up {
    background-image: linear-gradient(to top, #fff, #F3EDE7);
}

.bg_brown {
    background-color: #F7F3EF;
}

.txt_box .main_sec_tit_en {
    font-size: 18px;
    color: #CFC6C0;
    font-weight: 300;
}

.txt_box .main_sec_tit {
    font-size: 43px;
    margin-top: 15px;
    font-weight: 500;
}


.txt_box .main_sec_desc {
    font-size: 25px;
    margin-top: 25px;
    margin-left: 5px;
}

strong {
    color: #AA815F;
    font-weight: 600;
}

/* 흘러가는 글자 */
.marquee_wr {
	width: 100%;
	height: 7vw;
    min-height: 80px;
	margin: auto;
	overflow: hidden;
	position: relative;
    z-index: 1;
}

.marquee {
	width: 200%;
	font-size: 120px;
	font-weight: 300;
	color: #EEEEEE;
	opacity: 0.5;
	position: absolute;
	top: 0;
	white-space: nowrap;
	text-transform: uppercase;
	animation: marquee 40s linear infinite;
    font-family: 'Pretendard';
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}
/* 흘러가는 글자 */

/* ################# header  ################# */

#hd {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	transition: all 0.3s;
}

#hd.fix {
    background-color: #fff; /* 불투명도 적용 */
    /* backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); */
}

#hd:has(#gnb:hover)::after {
    content: '';
    position: absolute;
    top: 5vh; /* 헤더 높이만큼 내려서 시작 */
    left: 0;
    width: 100%;
    height: 30rem;
    opacity: 0;
    background-color:#fff; /* 서브메뉴 전체 배경색 */
    /* backdrop-filter: blur(5px); */
    transition: all 0.3s ease-in-out;
    z-index: -1; /* 메뉴 글자보다 뒤에 위치 */
}

#hd:has(#gnb:hover)::after  {
    opacity: 1; /* 서브메뉴가 들어갈 충분한 높이 */
}

#hd:has(#gnb:hover) .depth02 {
    max-height: 36rem;
    opacity: 1;
    pointer-events: auto;
    padding-top: 20px;
    padding-bottom: 30px;
}

#hd .hd_wr {
    width: 100%;
	height: 10vh;
	margin: 0px auto;
	background-color: transparent;
    backdrop-filter: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
    position: relative;
}


#hd .logo {
	flex: 0 0 auto;
	height: 40px;
    margin-left: 40px;
}

#hd .logo a {
	display: block;
	width: 300px;
	height: 40px;
	font-size: 0;
	background: url('../img/common/logo_color.png') no-repeat;
	transition: .5s;
}
#gnb {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s;
    margin-left: 116px;
    position: sticky;
}

#gnb>ul {
	display: flex;
}

#gnb > ul > li {
    position: static; 
}

#gnb>ul>li {
	min-width: 14rem;
	transition: all 0.22s linear;
	position: relative;
}


#gnb>ul>li>a {
	display: flex;
	width: 100%;
	font-size: 18px;
	font-weight: 500 ;
	text-align: center;
	align-items: center;
	justify-content: center;
	position: relative;
	color: #222;
    transition: color 0.3s;
}

#gnb>ul:nth-of-type(3)>li>a{
    margin-left: 0rem;
}

#gnb .depth01:hover .depth02 {
    height: auto;          /* 높이를 자동으로 확장 */
    opacity: 1;           /* 불투명하게 변경 */
    pointer-events: auto;
}

#gnb .depth02 {
	position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0; /* 평소엔 숨김 */
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 0;
    pointer-events: none;
    display: block; /* 가로 배열을 원하면 flex로 변경 가능 */
}

#gnb .depth02 li {
	padding: 0.8rem 0;
	text-align: center;
	font-size: 1.6rem;
}
#hd #gnb .depth02 a {
	position: relative;
	transition: .2s;
    color: #585858;
    margin-left: 0rem;
}

#hd #gnb .depth02 a:hover{
    color: #AA815F;
}

#gnb>ul>li:nth-of-type(1)>a::before {
    display: block;
}


#gnb>ul>li>a.gnb_dot::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #AA815F;
    position: relative;
    top: -9px;
    left: -3px;
    display: block;
}

#gnb>ul>li>a.gnb_dot::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #AA815F;
    position: relative;
    top: -9px;
    left: -3px;
    display: block;
}

#gnb>ul>li>a.gnb_dot {
    color: #AA815F !important;
}

#hd .member_btn{
    margin: 1vw;
    width: 1.6vw;
    margin-left: 11vw;
}


/* 햄버거 버튼 */
.hd_right {
    margin-right: 3vw;
    padding: 24px 0;
}

.hamBtn {
    width: 2rem;
    height: 3rem;
    /* display: flex;
	flex-direction: column;
	justify-content: center; */
}

.hamBtn .line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 0.2rem;
    background-color: #bbb;
    transition: all 0.8s ease-in-out;
}

.hamBtn .line+.line {
    margin-top: 9px;
}

/* active */
.hamBtn.act {
    position: relative;
    z-index: 100000;
}

.hamBtn.act .line {
    background-color: #BBBBBB;
}

.hamBtn.act .line:nth-child(2),
.hamBtn.act .line:nth-child(4) {
    opacity: 0;
}

.hamBtn.act .line:nth-child(1) {
    transform: translateY(1.2rem) rotate(45deg);
}

.hamBtn.act .line:nth-child(3) {
    width: 100%;
    transform: translateY(-1rem) rotate(-45deg);
}

/* sitemap */
/* sitemap open */

.sitemap {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: -1;
	opacity: 0;
	filter: Alpha(opacity=0);
	visibility: hidden;
}

.sitemap.open {
	opacity: 1.0;
	filter: Alpha(opacity=100);
	visibility: visible;
	z-index: 1001;
}

#hd.sitemap_open {
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.sitemap.open:before {
	opacity: 0.5
}

.sitemap .sitemap_bg {
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 0%;
	top: 0px;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	transition: all 0.6s ease;
}

.sitemap.open .sitemap_bg {
	height: 100%;
}

.sitemap.open .st_wr {
	opacity: 1.0;
	transition-delay: 0.4s
}

.sitemap.open .st_list_wr>ul>li {
	opacity: 1;
	transform: translateY(0);
}

.stm_contt {
	position: absolute;
	display: table;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.sitemap .st_wr {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	padding: 5em 0;
	opacity: 0;
	transition: opacity 0.5s ease 0s
}

.sitemap::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(15px);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.st_ctt {
	max-width: 1600px;
	margin: 0 auto;
}

.st_con {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.st_con h1 {
	position: relative;
	font-size: 3em;
	padding-bottom: 0;
	font-weight: 700;
	letter-spacing: -0.004em;
	color: #fff;
	text-align: left;
}

.st_list_wr {
	margin-top: 3.75em;
}

.st_list_wr>ul {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.st_list_wr>ul>li {
	padding: 0 1%;
	display: table-cell;
	vertical-align: top;
	text-align: left;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-in-out;
	;
}

.sitemap.open .st_list_wr>ul>li:nth-child(2) {
	transition-delay: 0.1s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(3) {
	transition-delay: 0.2s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(4) {
	transition-delay: 0.3s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(5) {
	transition-delay: 0.4s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(6) {
	transition-delay: 0.5s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(7) {
	transition-delay: 0.6s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(8) {
	transition-delay: 0.7s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(9) {
	transition-delay: 0.8s;
}

.sitemap.open .st_list_wr>ul>li:nth-child(10) {
	transition-delay: 0.9s;
}


.st_list_wr>ul>li:before {
	position: absolute;
	top: -4.16rem;
	left: 12%;
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	background-color: var(--main-color);
	border-radius: 100%;
	opacity: 0;
	transform: translateY(-30px);
	transition: all 0.4s ease-in-out;
}

.st_list_wr>ul>li:hover::before {
	opacity: 1;
	transform: translateY(0);
}

.st_list_wr>ul>li>h2 {
	display: inline-block;
	position: relative;
	margin-bottom: 1.6rem;
	font-size: 2.2rem;
	min-height: 7.8rem;
	line-height: 1.3;
	font-weight: 600;
	color: #fff;
	background-color: transparent;
}

.st_list_wr>ul>li>h2>a {
	position: relative;
	color: #fff;
	pointer-events: none;
}

@media (hover: hover) {
	.st_list_wr > ul > li .depth02:hover a {
		opacity: 0.4
	}

	.st_list_wr > ul > li .depth02 a:hover {
		opacity: 1.0;
		color: #fff;
	}
}

.st_list_wr > ul > li .depth02 a {
	display: block;
	overflow: hidden;
	padding: 0.85rem 0;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 300;
	line-height: 1.3;
	-webkit-transition: all 0.2s;
	transition: all 0.3s;
}

.sitemap.open ~ #hd .member_btn, 
body:has(.sitemap.open) .member_btn {
    display: none;
}

#hd.sitemap_open .logo a {
    background: url('../img/common/logo_gray.png') no-repeat !important;
    background-size: contain; /* 이미지 크기 유지 */
}


body.stop-scroll {
    overflow: hidden !important;
    touch-action: none; /* 모바일 터치 스크롤 방지 */
}

/* 비주얼 */

.vis_slide_wr {
    z-index: 1;
    height: 800px;
    overflow: hidden;
    transition: border-radius 1s ease-in-out 0.2s;
    border-radius: 0;
    margin: 96px auto 0;
    position: relative;
}

.vis_slide_wr.active {
    width: calc(100% - 50px);
    border-radius: 30px;
}

.vis_slide .inner {
    max-width: 1520px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 30;
    margin: 0 auto;
}

.vis_slide .l_g_img {
    margin-bottom: 2.9rem;
}

.vis_slide .txtbox {
    width: 100%;
}


.vis_slide .txtbox h2 {
    font-size: 55px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -2px;
    color: #fff;
}

.vis_slide .txtbox h2 strong {
    font-weight: 600;
    color: #fff;
}

.vis_slide .txtbox .disc {
    color: #fff;
    font-size: 25px;
    margin-top: 1.9rem;
    font-weight: 200;
}

.vis_slide .swiper-slide.swiper-slide-active .txtbox>* {
    opacity: 0;
    transform: translateY(5rem);
    animation: txtUp 1s 0.5s forwards;
}

.vis_slide .swiper-slide.swiper-slide-active .txtbox .tit {
    animation-delay: 1s;
}

.vis_slide .swiper-slide.swiper-slide-active .txtbox .disc {
    animation-delay: 1.5s;
}

@keyframes txtUp {
    0% {
        opacity: 0;
        transform: translateY(5rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.vis_slide .slide_bg {
    border-radius: 30px;
    width: 97%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 30px;
    transition: transform 5s linear;
    transform: scale(1);
    background: no-repeat center center/cover;
}

.vis_slide .swiper-slide.swiper-slide-active .slide_bg {
    transform: scale(1.2);
}

.vis_slide .slide_bg.bg01 {
    background-image: url("/img/main/visual01.jpg");
}

.vis_slide .slide_bg.bg02 {
    background-image: url("/img/main/visual02.jpg");
}

.vis_slide .slide_bg.bg03 {
    background-image: url("/img/main/visual03.jpg");
}

.scroll {
    position: absolute;
    top: 650px;
    left: 920px;
    z-index: 10000;
}

.scroll figure {
    margin: 34px;
    animation: scroll_efc 2s ease-in-out infinite;
}

.scroll .scroll_txt {
    text-align: center;
    font-size: 18px;
    color: #fff;
}

@keyframes scroll_efc {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



/* 메인 비주얼 swiper css */

.vis_slide .swiper-slide.swiper-slide-active .slide_bg {
    transform: scale(1);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    left: -720px;
    top: 533px;
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

/* 메인 비주얼 swiper css */


/* 콘텐츠 */

/* main_sec01 */

.txt_box,
.special_wr {
    position: relative;
}

.txt_box .desc_circle {
    padding-left: 30px;
    position: relative;
    font-weight: 300;
}

.txt_box .desc_circle::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #AA815F;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.special_con {
    margin-top: 100px;
    position: relative;
}

.special_con .line {
    height: 100%;
    position: absolute;
    top: 50px;
    left: 50%;
    width: 2px;
    --grad-opacity-mid: 0.5;
    --grad-opacity-end: 1;
    background: linear-gradient(180deg, rgba(170, 129, 94, 0) 0%,
            rgba(167, 111, 88, var(--grad-opacity-mid)) 50%,
            rgba(167, 111, 88, var(--grad-opacity-end)) 100%);
}

.special_con .line .dot {
    position: absolute;
    width: 2.5rem;
    bottom: -1em;
    left: 50%;
    transform: translateX(-50%);
}

.special_con .line .dot svg {
    display: block;
    width: 100%;
    fill: none;
    background: transparent;
}

.special_con .spec_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4rem 0;
    row-gap: 20rem;
}

.special_con .spec_list li {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.special_con .spec_list .spec_txt_box {
    position: absolute;
    top: 250px;
    left: 60px;
    z-index: 1;
}

.spec_list .spec_txt_box .spec_point {
    width: 110px;
    height: 25px;
    background-color: rgba(225, 225, 225, 0.3);
    border-radius: 360px;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    color: #fff;
}

.spec_list .spec_txt_box .spec_txt {
    color: #fff;
    font-size: 40px;
    margin-top: 12px;
    margin-bottom: 15px;
}

.spec_list .spec_txt_box .spec_desc {
    font-size: 25px;
    line-height: 35px;
    color: #fff;
}

.special_con .spec_list .spec_bg {
    position: relative;
    width: 580px;
    height: 460px;
}

.special_con .spec_list .box:nth-child(even) {
    top: 10rem;
}

/* main_sec01 */


/* main_sec02 */

.sec02 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.s_2bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/img/main/main_sec02_img.jpg') no-repeat center center/cover;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease-in-out;
}

.s_2bg.on {
    opacity: 1;
}

.sec02 .top_ttl_box {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.top_ttl_box .tit_row {
    font-size: 50px;
    background-image: linear-gradient(to right, #fff, #ffebcc, #fff );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.scroll_con {
    position: relative;
    /* height: calc(var(--vh, 1vh) * 100); */
    height: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.scroll_con .scroll_line {
    height: 0%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.scroll_con .scroll_dot {
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 14px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.sec02 .scroll_bot {
    position: relative;
    height: auto;
    /* height: calc(var(--vh, 1vh) * 100); */
    height: 500px;
    padding: 0 20px;
    overflow: hidden;
    margin-top: calc(-1 * calc(var(--vh, 1vh) * 30));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll_bot .scroll_desc {
    font-size: 42px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.scroll_bot .scroll_desc span {
    display: inline-block;
    color: rgba(255, 255, 255, .2);
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.1s linear;
}

.scroll_bot .scroll_desc strong {
    color: #E4D3B9;
    font-weight: 400;
}


/* main_sec02 */

/* main_new_sec : 3major */

.major_con .line_gra {
    position: relative;
    width: 100%;
    height: 400px; /* 선이 늘어날 최대 길이를 px로 지정하세요 */
    margin-bottom: 20px; /* major_site와의 간격 */
}

.major_con .line_gra .sc_line {
    height: 0; /* JS가 실행되기 전 초기 상태 */
    --grad-opacity-mid: 0.5;
    --grad-opacity-end: 1;
    background: linear-gradient(180deg, rgba(170, 129, 94, 0) 0%,
            rgba(167, 111, 88, var(--grad-opacity-mid)) 50%,
            rgba(167, 111, 88, var(--grad-opacity-end)) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    z-index: 10;
}


.major_con .line_gra .sc_line .dot {
    position: absolute;
    width: 2.5rem;
    bottom: -1em;
    left: 50%;
    transform: translateX(-50%);
}

.major_con .line_gra .sc_line .dot svg {
    display: block;
    width: 100%;
    fill: none;
    background: transparent;
}


.major_tit_box{
    margin-top: 50px;
    letter-spacing: -5%;
    text-align: center;
}

.major_tit_box .major_site{
    font-size: 42px;
    color: #222;
    margin-bottom: 2px;
}

.major_tit_box .major_tit{
    font-size: 50px;
    color: #AA815F;
    font-weight: 600;
}

.major_tit_box .major_desc{
    font-size: 25px;
    font-weight: 300;
    color: #222;
    margin-top: 15px;
}

.major_list_box{
    margin-top: 80px;
    display: flex;
    gap:20px;
    width: 100%;
    height: 550px;
    align-items: flex-start;
}

.major_list_box > div[class^="major_main"] {
    position: relative;
    height: 550px;
    border-radius: 50px;
    overflow: hidden;
    flex: 1; /* 기본적으로 좁은 상태 (sum 노출용) */
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.major_list_box > div[class^="major_main"].active {
    flex: 2.8; /* 넓어지는 비율 */
}

/* 이미지 박스 공통 */
.major_sum_img, .major_desc_img {
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

.major_list_box .major_main01,
.major_list_box .major_main02,
.major_list_box .major_main03{
    position: relative;
}

.major_desc_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}


/* .major_list_box .major_desc_img{
    width: 880px;
    height: 550px;
    border-radius: 50px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
} */

.active .major_desc_img {
    opacity: 1;
    visibility: visible;
}
.active .major_sum_img {
    opacity: 0;
}


.major_list_box .major_desc_img img{
    width: 100%;
}

.major_list_box .major_list_desc {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 208px;
    margin-left: 75px;
}


.major_list_desc, .major_list_sum {
    pointer-events: none;
    white-space: nowrap;
}

.major_list_box .major_list_desc .num{
    font-size: 100px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 10px;
}

.major_list_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.major_list_box .major_list_desc .subject{
    font-size: 43px;
    color: #fff;
    margin-bottom: 14px;
}

.major_list_box .major_list_desc .subject span{
    font-size: 45px;
    color: #fff;
    font-weight: 600;
}

.major_list_box .major_list_desc .desc{
    font-size: 25px;
    font-weight: 200;
    line-height: 1.5;
    color: #fff;
}

.major_list_box .major_sum_img{
    width: 300px;
    height: 550px;
    border-radius: 50px;
    overflow: hidden;
}

.major_list_box .major_sum_img img{
    width: 100%;
}

.major_list_box .major_list_sum{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 366px;
    left: 50%;
    transform: translateX(-50%);
}

.major_list_box .major_list_sum .num{
    font-size: 120px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 10px;
}

.major_list_box .major_list_sum .subject{
    font-size: 35px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.major_list_box .major_list_sum .subject span{
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}


/* main_new_sec : 3major */

/* main_sec03 */

.sec03 {
    height: 122vh;
}


.sec03 .txt_box .main_sec_desc {
    font-size: 25px;
    font-weight: 300;
    margin-left: 0px;
    line-height: 1.5;
    margin-top: 90px;
}

.sec03 .txt_box .main_sec_desc span {
    display: block;
    height: 20px;
    font-family: 'GyeongbokgungSumunjangTitle';
    font-size: 99px;
    color: #AA815F;
    opacity: 0.3;
}

.sec03 .txt_box .main_sec_desc strong{
    font-weight: 500;
}

.sec03 .txt_box .intro_line {
    border: 1px solid #5F4C3F;
    opacity: 0.3;
    margin: 30px 0px;
}

.int_row {
    position: relative;
}

.int_row .weak {
    width: 50%;
}

.int_row .weak .weak_sub_tit {
    font-size: 22px;
    color: #5F4C3F;
    opacity: 0.5;
    margin-top: 70px;
}

.int_row .weak .weak_tit {
    font-size: 50px;
    margin-top: 15px;
    font-weight: 600;
}

.int_row .weak .weak_tit span {
    font-size: 30px;
    font-weight: 400;
}

.int_row .weak ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 40px;
    margin-left: 22px;
}

.int_row .weak li {
    font-size: 20px;
    width: 50%;
    list-style: disc;
    color: #555;
}

.int_row .weak li::marker {
    color: #AA815F;
}

.int_row .weak_img {
    position: absolute;
    top: -70px;
    left: 820px;
}

.int_row .weak_img figure {
    width: 700px;
    height: 850px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 8px 8px 10px  rgba(0,0,0,0.05);
}

.int_row .weak_img figure img {
    width: 100%;
}

/* 이미지 호버시 버튼 */

.view_button{
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background-color: rgba(98, 63, 33, 0.3);
    font-size: 20px;
    position: fixed; /* 부모 요소를 기준으로 배치 */
    top: 0; 
    left: 0;
    pointer-events: none;
    transform: translate(50%, 50%) scale(0);
    opacity: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease-out;
    user-select: none;
}

.view_button figure {
    margin-left: 38px;
    margin-bottom: 5px;
}

.view_button .view_desc {
    margin-top: 15px;
}

.view_button span,
.view_button .view_desc {
    color: #fff;
    text-align: center;
}

/* 이미지 호버시 버튼 */

/* main_sec03 */


/* main_sec04 */

.click_box {
    display: flex;
}

.click_box .click_img_box {
    width: 700px;
    height: 793px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 8px 8px 10px rgba(0,0,0,0.05);
}

.click_box .click_img_box > div{
    display: none;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.click_img_box .click_img01 {
    background: url('/img/main/main_sec04_img01.jpg') no-repeat;
    display: block;
}

.click_img_box .click_img02 {
    background: url('/img/main/main_sec04_img02.jpg') no-repeat;
}

.click_img_box .click_img03 {
    background: url('/img/main/main_sec04_img03.jpg') no-repeat;
}

.click_img_box .click_img04 {
    background: url('/img/main/main_sec04_img04.jpg') no-repeat;
}

.click_con {
    margin-left: 150px;

}

.click_box .click_list ul {
    display: flex;
    gap: 20px;
    margin-top: 140px;
}

.click_box .click_list li {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #AA815F;
    font-size: 22px;
    color: #AA815F;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.click_box .click_text_box .click_tit {
    font-size: 43px;
    font-weight: 500;
    margin-top: 100px;
}

.click_box .click_text_box .click_dsec {
    font-size: 25px;
    color: #333;
    margin-top: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.click_box .click_circle_box ul {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.click_box .click_circle_box li {
    width: 180px;
    height: 180px;
    background-color: #f6f6f6;
    border-radius: 180px;
}

.click_box .click_circle_box li span {
    width: 30px;
    height: 30px;
    border: 1px solid #d2d2d2;
    border-radius: 30px;
    color: #AA815F;
    font-size: 30px;
    text-align: center;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
}

.click_box .click_circle_box li .circle_desc {
    font-size: 22px;
    text-align: center;
    color: #222;
    margin-top: 20px;
}

.click_con .click_list .active {
    background-color: #AA815F;
    color: #fff;
}

.click_con .click_ch_box02,
.click_con .click_ch_box03,
.click_con .click_ch_box04 {
    display: none;
    position: absolute;
    top: 24%;
    right: 6%;
    background: #fff;
}

/* main_sec04 */


/* main_sec05 */



.review_list {
    width: 350px;
    height: 430px;
    background-color: #fff;
    border-radius: 30px;
    margin-top: 80px;
    position: relative;
}

.review_list .review_img{
    width: 350px;
    height: 200px;
    overflow: hidden;
    border-radius: 30px 30px 0px 0px;
    position: relative;
}

.review_list.logout .review_img img{
    filter: blur(4px);
}

.review_list .review_img::before{
    content: "";
    display: block;
    width: 70px;
    height: 71px;
    background: url('../img/common/logo_small.png') no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1; /* 숨김 */
    transition: opacity 0.3s ease; /* 부드럽게 전환 */
}

.review_list .review_img::after{
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.25);
}

.review_list:hover .review_img::before {
    opacity: 0;
}

.review_list:hover .review_img::after{
    background: rgba(0,0,0,0.5);
}

.review_list .more_button {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
}

.review_list .more_button figure {
    width: 45px;
    height: 45px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.review_list .more_button .view_desc {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.review_list:hover .more_button{
    opacity: 1;
}

.review_list .review_text {
    margin-top: 45px;
    margin-left: 40px;
}

.review_list .review_text .review_sub_tit {
    font-size: 22px;
    color: #AA815F;
    font-weight: 500;
}

.review_list .review_text .review_tit {
    font-size: 25px;
    margin-top: 10px;
    font-weight: 500;
    margin-bottom: 10px;
}

.review_list .review_text .review_desc {
    font-size: 22px;
    color: #444;
}

.review_list .review_text .review_date {
    font-size: 18px;
    color: #ccc;
    margin-top: 20px;
}

.review_slide{
    height: 32vw;
}

.review_slide .review-swiper-scrollbar{
    position: relative; /* 혹은 absolute (부모인 review_slide 하단에 위치) */
    width: 100%;
    height: 3px; /* 높이 설정 */
    background: rgba(0,0,0,0.1); /* 레일 배경색 (연한 회색) */
    margin-top: 40px; /* 슬라이드와의 간격 */
    border-radius: 10px;
    overflow: hidden;
    bottom: 92px;
}

.review-swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #AA815F !important;
}


/* main_sec05 */

/* main_sec06 */

.sec06 {
    background: linear-gradient(to bottom, #fff, #f6f6f6);
}

.around_slide_wr{
    margin-top: 80px;
}

.around_slide .swiper-slide {
    width: 700px;
    transform-origin: left bottom;
    transform: scale(0.71);
    transition: transform 0.5s ease-in-out;
}

.around_slide .swiper-slide .item{
    border-radius: 50px;
    overflow: hidden;
}

.around_slide .swiper-slide .item img{
    width: 100%;
    display: block;
    filter: brightness(0.8);
    transition: filter 0.5s ease-in-out;
}

/* swiper 슬라이드 이미지 네이티브 드래그 방지 (이미지 끌림으로 스와이프 막히는 현상 해결)
   - 둘러보기/치료후기/소식 캐러셀 공통 적용
   - pointer-events:none 으로 이미지는 드래그 타깃이 되지 않으나, 클릭/링크는 부모 <a>가 처리하므로 정상 동작 */
.review_slide .swiper-slide img,
.around_slide .swiper-slide img,
.news_slide .swiper-slide img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.around_slide .swiper-slide-active {
    transform: scale(1);
}

.around_slide .swiper-slide-active .item img{
    filter: brightness(1);
}

.around_slide .swiper-slide.swiper-slide-prev{
    transform: translateX(29%) scale(0.71)
}

.around_slide .swiper-slide.swiper-slide-next+.swiper-slide {
    transform: translateX(-29%) scale(0.71)
}

.around_slide .a_p_wr{
    max-width: 100%;
}

.around_slide .around_pag {
  position: relative;
  margin-top: 40px;
}

.around_slide .around_pag.swiper-pagination-progressbar {
    width: 100%;
    height: 2px;
    background-color: #D3D3D3;
}

.around_slide .around_pag .swiper-pagination-progressbar-fill {
    height: 4px;
    margin-top: -1px;
    background-color: #A9815E;
}

/* 드래그 커서 */

.drag_cursor {
	position: fixed;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	transform: scale(0);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	/* width: 9.9rem; */
	width: 99px;
	transition: transform .5s cubic-bezier(.75, 1.27, .3, 1.35) .2s, opacity .2s cubic-bezier(.75, -.27, .3, 1.33);
}

.drag_cursor.act {
	opacity: 1;
	transform: scale(1)
}

.drag_cursor>img {
	width: 100%
}

/* 드래그 커서 */

/* main_sec06 */


/* main_sec07 */

.notice_list {
    width: 350px;
    margin-top: 80px;
}

.notice_list .notice_img {
    position: relative;
    width: 350px;
    height: 300px;
    overflow: hidden;
    border-radius: 30px;
}

.review_img_bg02 {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0,0.4);
    width: 100%;
    height: 100%;
    opacity: 0; /* 숨김 */
    transition: opacity 0.3s ease; /* 부드럽게 전환 */
}

.notice_list:hover .review_img_bg02 {
    opacity: 1;
}

.notice_list:hover .notice_img .review_img_bg img {
    filter: blur(2px) brightness(0.6);
}

.notice_list .more_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
}

.notice_list .more_button figure {
    width: 45px;
    height: 45px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.notice_list .more_button .view_desc {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.notice_list:hover .more_button{
    opacity: 1;
}


.notice_list:hover .notice_text .notcie_menu {
    background: #AA815F;
    color: #fff;
}


.notice_list .notice_img img {
    width: 100%;
}


.notice_list .notice_text {
    width: 100%;
    text-align: center;
}

.notice_list .notice_text .notcie_menu {
    width: 150px;
    height: 30px;
    border-radius: 360px;
    border: 1px solid #AA815F;
    text-align: center;
    font-size: 22px;
    color: #AA815F;
    line-height: 30px;
    margin: 25px auto;
}

.notice_list .notice_text .notice_tit {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 300;
}

.notice_list .notice_text .notice_date {
    font-size: 18px;
    color: #ccc;
}

.news_slide .news-swiper-scrollbar{
    position: relative; /* 혹은 absolute (부모인 review_slide 하단에 위치) */
    width: 100%;
    height: 3px; /* 높이 설정 */
    background: rgba(0,0,0,0.1); /* 레일 배경색 (연한 회색) */
    margin-top: 40px; /* 슬라이드와의 간격 */
    border-radius: 10px;
    overflow: hidden;
}

.news-swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #AA815F !important;
}

/* main_sec07 */

/* main_sec08 */

.map {
    position: relative;
}

.map_add .map_tit {
    width: 85px;
    height: 27px;
    font-size: 18px;
    border-radius: 13.5px;
    background-color: #AA815F;
    color: #fff;
    text-align: center;
    line-height: 27px;
    margin-top: 40px;
    margin-bottom: 14px;
}

.map_add .map_add_desc {
    font-size: 25px;
    line-height: 38px;
}

.map_add .map_add_desc strong {
    color: #AA815F;
    font-weight: 500;
}

.map_park .map_tit {
    width: 85px;
    height: 27px;
    font-size: 18px;
    border-radius: 13.5px;
    background-color: #825835;
    color: #fff;
    text-align: center;
    line-height: 27px;
    margin-top: 25px;
    margin-bottom: 14px;
}

.map_park .map_park_desc p span{
    font-size: 25px;
    color: #222;
    font-weight: 500;
    letter-spacing: -5%;
}

.map_park .map_park_desc p{
    font-size: 23px;
    letter-spacing: -5%;
    color: #666;
    line-height: 1.5;
}

.map_park .map_park_desc::after {
    content: "";
    display: block;
    border: 1px solid #e6e6e6;
    margin: 40px 0px;
}


.map_list {
    display: flex;
    gap: 0px;
}

.map_list ul {
    width: 25%;
}

.map_list ul li {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;

}

.map_list ul .map_tit {
    color: #CFC6C0;
    margin-bottom: 25px;
    font-size: 25px;
}

.map_list li {
    font-size: 40px;
    font-weight: 800;
}

.map_list li .map_date {
    font-size: 22px;
    font-weight: 400;
    width: 30%;
}

.map_list li .map_time {
    font-size: 22px;
    font-weight: 400;
    width: 60%;
}

.map_list li .map_rest {
    font-size: 18px;
    color: #888;
    font-weight: 400;
}

.map_box {
    width: 700px;
    height: 760px;
    overflow: hidden;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 4px 4px 10px 0px #dbdbdb;
}


/* main_sec08 */

/* footer */

.ctt_us {
    padding: 12rem 0;
    background: url('/img/common/ctt_bg.jpg') no-repeat center center/cover;
}

.ctt_us .inner {
    display: flex;
    justify-content: space-between;
}

.ctt_us .map_sec {
    width: 73rem;
}

#sb_map .root_daum_roughmap .wrap_controllers {
    display: none;
}

#sb_map .root_daum_roughmap .cont .section_address {
    display: none;
}

.ctt_ttl_row {
    font-family: 'Paperlogy';
    color: #fff;
    margin-bottom: 0.8rem;
}

.ctt_ttl_row .tag {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.ctt_ttl_row h2 {
    font-size: 5rem;
    font-weight: 600;
}

.ctt_us .sb_info {
    width: 69.5rem;
}

.sb_info .sb_list>li {
    display: flex;
    padding: 3rem 0;
    color: #fff;
}

.sb_info .sb_list>li:nth-child(2) {
    padding-bottom: 4.9rem;
}

.sb_list>li+li {
    border-top: solid 1px rgba(255, 255, 255, 0.14);
}

.sb_list .ttl {
    width: 12.5rem;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Paperlogy';
}

.sb_list .info {
    width: calc(100% - 12.5rem);
}

.sb_list .info .subject {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
}

.sb_list .info .desc {
    font-size: 1.6rem;
    line-height: 1.6;
}

.sb_list .info .map_list {
    display: flex;
    gap: 1rem;
    margin-top: 1.4rem;
}

.sb_list .info .map_list a {
    display: block;
    padding: 0.9rem 1.5rem;
    background: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    color: #444;
    border-radius: 1.8rem;
}

.sb_list .info .map_list a span {
    display: inline-block;
    padding-left: 2.3rem;
    background: no-repeat left center/1.8rem;
}

.sb_list .info .map_list .kko span {
    background-image: url('/img/common/map_ico01.png');
}

.sb_list .info .map_list .nav span {
    background-image: url('/img/common/map_ico02.png');
}

.sb_list .info .map_list .copy_btn {
    width: 3.5rem;
    height: 3.5rem;
    display: block;
    font-size: 0;
    background: url('/img/common/copy_btn.png') no-repeat center center/cover;
}

.sb_list .info .numb {
    display: flex;
    font-size: 4rem;
    font-weight: 600;
    font-family: 'Paperlogy';
    color: #6BBEBB;
}

.sb_list .info .numb span {
    color: #F38200;
    display: inline-block;
    position: relative;
}

.sb_list .info .numb span::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Paperlogy';
    color: #F38200;
}

.sb_list .info .numb .e8::before {
    content: '바';
}

.sb_list .info .numb .f5::before {
    content: '로';
}

.sb_list .info .numb .s7::before {
    content: '치';
}

.sb_list .info .numb .r5::before {
    content: '료';
}

.sb_list .info dl {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.4rem;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.sb_list .info dl dt {
    width: 5.8rem;
    display: flex;
    justify-content: space-between;
}

.sb_list .info dl dt span {
    display: inline-block;
    font-weight: 600;
}

.sb_list .info dl dd {
    width: calc(100% - 10.2rem);
    color: #C7C7C7;
}

.sb_list .info .dl_desc {
    font-size: 1.7rem;
    line-height: 1.4;
}

#ft {
    padding: 6.4rem 0;
    /* background-color: #f6f6f6; */
}

#ft .top {
    display: flex;
    justify-content: space-between;
}


#fnb {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#fnb li a {
    display: block;
    font-size: 1.6rem;
}

#ft .sns_list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

#ft .sns_list a {
    display: block;
    width: 2.7rem;
    height: 2.7rem;
    background: no-repeat center center/cover;
}

#ft .sns_list .instagram {
    background-image: url('/img/common/instagram_ico.png');
    background-size: 24px 24px;
    background-position: 25px;
    width: 160px;
    height: 55px;
    border-radius: 360px;
    background-color: #ececec;
}

#ft .sns_list .naverblog {
    background-image: url('/img/common/naver_blog_ico.png');
    background-size: 24px 24px;
    background-position: 25px;
    width: 160px;
    height: 55px;
    border-radius: 360px;
    background-color: #ececec;
}

#ft .sns_list .kakaomap {
    background-image: url('/img/common/kakao_map_ico.png');
    background-size: 24px 24px;
    background-position: 25px;
    width: 160px;
    height: 55px;
    border-radius: 360px;
    background-color: #ececec;
}



/* #ft .sns_list .kakaotalk {
    background-image: url('/img/common/kakaotalk_ico.png');
    background-size: 24px 24px;
    background-position: 25px;
    width: 150px;
    height: 55px;
    border-radius: 360px;
    background-color: #ececec;
} */

#ft .sns_list p {
    font-size: 16px;
    color: #666;
    line-height: 55px;
    margin-left: 60px;
}

#ft .bot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0 3rem;
}

#ft .bot ul {
    display: flex;
}

#ft .bot ul li {
    display: flex;
}

#ft address dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#ft address dl dt {
    position: relative;
}

#ft address dl dd {
    position: relative;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

#ft address dl dd::before {
    content: ':';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0.4rem;
    line-height: 1.5;
}

#ft address dl dd+dt {
    padding-left: 2.5rem;
}

#ft address dl dd+dt::before {
    content: '|';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0.6rem;
    font-weight: 300;
    line-height: 1.5;
    color: #DDDDDD;
}

#ft .copy {
    margin-top: 2rem;
}

#ft address * {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.5;
}

#ft .ft_logo {
    display: block;
    width: 37.8rem;
    height: 5rem;
    background: url('/img/common/logo_gray.png') no-repeat center center/cover;
    margin-top: 90px;
}

/* footer */

/* 퀵메뉴 */
.quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: 4rem;
    bottom: 9rem;
    z-index: 100;
}

.quick ul {
    width: 77px;
    height: 355px;
    border-radius: 3.9rem;
    background-color: #fff;
}

.quick.on ul{
    background-color: #886E58;
}

.quick ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 77px;
    height: 84px;
}

.quick ul li+li {
    position: relative;
}

.quick ul li a {
    display: block;
    transition: opacity 0.4s;
}

.quick ul li a:hover {
    opacity: 0.6;
}

.quick ul li .blog {
    width: 31px;
    height: 31px;
    margin-top: 25px;
    background: url('/img/common/quick_blog.png') no-repeat;
}

/* .quick.on ul li .blog{
    background: url('/img/common/quick_blog_wh.png') no-repeat;
} */

.quick ul li .map {
    width: 31px;
    height: 31px;
    margin-top: 25px;
    background: url('/img/common/quick_map.png') no-repeat;
}

.quick.on ul li .map{
    background: url('/img/common/quick_map_wh.png') no-repeat;
}

.quick ul li .reserve {
    width: 31px;
    height: 31px;
    margin-top: 25px;
    background: url('/img/common/quick_reserve.png') no-repeat;
}

.quick.on ul li .reserve{
    background: url('/img/common/quick_reserve_wh.png') no-repeat;
}

.quick ul li .naver {
    width: 31px;
    height: 31px;
    margin-top: 25px;
    background: url('/img/common/quick_naver_gr.png') no-repeat;
}

/* .quick.on ul li .naver{
    background: url('/img/common/quick_naver_gr.png') no-repeat;
} */

.quick ul li p {
    margin: 35px -30px;
    font-size: 12px;
    color: #886E58;
    text-align: center;
}

.quick.on ul li p{
    color: #fff;
}

.quick.on ul li:hover p{
    color: #fff;
}

/* .goTop {
	height: 0;
	transform: scale(0);
	overflow: hidden;
	transition: all .5s cubic-bezier(0.33, 1, 0.68, 1);
}

.goTop.fix {
	height: auto;
	margin-top: 2.6rem;
	transform: scale(1);
} */

.goTop span {
    display: block;
    width: 61px;
    height: 61px;
    margin: 15px;
    background: url('/img/common/quick_up_brown.png');
    opacity: 0.5;
}

.goTop span:hover{
    opacity: 1;
}

/* 퀵메뉴 */




/* 그누보드 reset */
ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden
}

label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1em
}

input,
button {
    margin: 0;
    padding: 0;
    font-size: 1em;
}

input[type="submit"] {
    cursor: pointer
}

button {
    cursor: pointer
}

textarea,
select {
    font-size: 1em;
}

select {
    margin: 0
}

p {
    margin: 0;
    padding: 0;
    word-break: break-all
}

hr {
    display: none
}

pre {
    overflow-x: scroll;
    font-size: 1.1em
}

a {
    color: #000;
    text-decoration: none
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=text],
input[type=password],
textarea {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
    -webkit-box-shadow: 0 0 5px #9ed4ff;
    -moz-box-shadow: 0 0 5px #9ed4ff;
    box-shadow: 0 0 5px #9ed4ff;
    border: 1px solid #558ab7 !important;
}

.placeholdersjs {
    color: #aaa !important
}

#bo_v_title .bo_v_tit {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -1px;
}

#bo_v_title .bo_v_sub{
    display: block;
    font-size: 1.5rem;
    margin-top: 1rem;
}


/* === 그누보드 CSS ===*/
/* 팝업레이어 */
#hd_pop {
    z-index: 1000;
    position: relative;
    margin: 0 auto;
    height: 0
}

#hd_pop h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

.hd_pops {
    position: absolute;
}

.hd_pops img {
    max-width: 100%
}

.hd_pops img img{
    width: 100%;
}

.hd_pops_con {
    height: auto !important;
}

.hd_pops_con #text{
    display: none;
}

.hd_pops_footer {
    padding: 0;
    background: #000;
    font-size: 16px;
    color: #fff;
    text-align: left;
    position: relative
}

.hd_pops_footer:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.hd_pops_footer button {
    padding: 10px;
    border: 0;
    color: #fff
}

.hd_pops_footer .hd_pops_reject {
    background: #000;
    text-align: left
}

.hd_pops_footer .hd_pops_close {
    background: #393939;
    position: absolute;
    top: 0;
    right: 0
}

/* 게시물 선택복사 선택이동 */
#copymove {}

#copymove .win_desc {
    text-align: center;
    display: block
}

#copymove .tbl_wrap {
    margin: 20px
}

#copymove .win_btn {
    padding: 0 20px 20px
}

.copymove_current {
    float: right;
    background: #ff3061;
    padding: 5px;
    color: #fff;
    border-radius: 3px
}

.copymove_currentbg {
    background: #f4f4f4
}

/* 화면낭독기 사용자용 */
#hd_login_msg {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

.msg_sound_only,
.sound_only {
    display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0;
    line-height: 0;
    border: 0 !important;
    overflow: hidden !important
}

/* 본문 바로가기 */
#skip_to_container a {
    z-index: 100000;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

#skip_to_container a:focus,
#skip_to_container a:active {
    width: 100%;
    height: 75px;
    background: #21272e;
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 3.3em
}

/* ie6 이미지 너비 지정 */
.img_fix {
    width: 100%;
    height: auto
}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

#captcha legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden
}

#captcha #captcha_img {
    height: 40px;
    border: 1px solid #898989;
    vertical-align: top;
    padding: 0;
    margin: 0
}

#captcha #captcha_mp3 {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    background: url('../img/captcha2.png') no-repeat;
    text-indent: -999px;
    border-radius: 3px
}

#captcha #captcha_reload {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    background: url('../img/captcha2.png') no-repeat 0 -40px;
    text-indent: -999px;
    border-radius: 3px
}

#captcha #captcha_key {
    margin: 0 0 0 3px;
    padding: 0 5px;
    width: 90px;
    height: 40px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 1.333em;
    font-weight: bold;
    text-align: center;
    border-radius: 3px;
    vertical-align: top
}

#captcha #captcha_info {
    display: block;
    margin: 5px 0 0;
    font-size: 0.95em;
    letter-spacing: -0.1em
}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {
    display: block;
    margin: 0 0 5px;
    width: 187px
}

#captcha.m_captcha #captcha_img {
    width: 160px;
    height: 60px;
    border: 1px solid #e9e9e9;
    margin-bottom: 3px;
    margin-top: 5px;
    display: block
}

#captcha.m_captcha #captcha_reload {
    position: static;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    background: url('../img/captcha2.png') no-repeat 0 -40px;
    text-indent: -999px
}

#captcha.m_captcha #captcha_reload span {
    display: none
}

#captcha.m_captcha #captcha_key {
    margin: 0;

    padding: 0 5px;
    width: 115px;
    height: 29px;
    border: 1px solid #b8c9c2;
    background: #f7f7f7;
    font-size: 1.333em;
    font-weight: bold;
    text-align: center;
    line-height: 29px;
    margin-left: 3px
}

#captcha.m_captcha #captcha_info {
    display: block;
    margin: 5px 0 0;
    font-size: 0.95em;
    letter-spacing: -0.1em
}

#captcha.m_captcha #captcha_mp3 {
    width: 31px;
    height: 31px;
    background: url('../img/captcha2.png') no-repeat 0 0;
    vertical-align: top;
    overflow: hidden;
    cursor: pointer;
    text-indent: -9999px;
    border: none
}

/* ckeditor 단축키 */
.cke_sc {
    margin: 0 0 5px;
    text-align: right
}

.btn_cke_sc {
    display: inline-block;
    padding: 0 10px;
    height: 23px;
    border: 1px solid #ccc;
    background: #fafafa;
    color: #000;
    font-size: 1.2rem;
    text-decoration: none;
    line-height: 1.9em;
    vertical-align: middle;
    cursor: pointer
}

.cke_sc_def {
    margin: 0 0 5px;
    padding: 10px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    text-align: center
}

.cke_sc_def dl {
    margin: 0 0 5px;
    text-align: left;
    zoom: 1
}

.cke_sc_def dl:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.cke_sc_def dt,
.cke_sc_def dd {
    float: left;
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #e9e9e9
}

.cke_sc_def dt {
    width: 20%;
    font-weight: bold
}

.cke_sc_def dd {
    width: 30%
}

/* ckeditor 태그 기본값 */
#bo_v_con ul {
    display: block;
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px
}

#bo_v_con ol {
    display: block;
    list-style-type: decimal;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px
}

#bo_v_con li {
    display: list-item
}

/* 버튼 */
a.btn,
.btn {
    line-height: 35px;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    font-weight: bold;
    border: 0;
    font-size: 1.4em;
    -webkit-transition: background-color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out
}

a.btn01 {
    display: inline-block;
    padding: 7px;
    border: 1px solid #ccc;
    background: #fafafa;
    color: #000;
    text-decoration: none;
    vertical-align: middle
}

a.btn01:focus,
a.btn01:hover {
    text-decoration: none
}

button.btn01 {
    display: inline-block;
    margin: 0;
    padding: 7px;
    border: 1px solid #ccc;
    background: #fafafa;
    color: #000;
    text-decoration: none
}

a.btn02 {
    display: inline-block;
    padding: 7px;
    border: 1px solid #3b3c3f;
    background: #4b545e;
    color: #fff;
    text-decoration: none;
    vertical-align: middle
}

a.btn02:focus,
.btn02:hover {
    text-decoration: none
}

button.btn02 {
    display: inline-block;
    margin: 0;
    padding: 7px;
    border: 1px solid #3b3c3f;
    background: #4b545e;
    color: #fff;
    text-decoration: none
}

.btn_confirm {
    text-align: right
}

/* 서식단계 진행 */

.btn_submit {
    border: 0;
    background: #E690B0;
    color: #fff;
    cursor: pointer;
    border-radius: 3px
}

.btn_submit:hover {
    background: #CFB7C4;
}

.btn_close {
    border: 1px solid #dcdcdc;
    cursor: pointer;
    border-radius: 3px;
    background: #fff
}

a.btn_close {
    text-align: center;
    line-height: 50px
}

a.btn_cancel {
    display: inline-block;
    background: #969696;
    color: #fff;
    text-decoration: none;
    vertical-align: middle
}

button.btn_cancel {
    display: inline-block;
    background: #969696;
    color: #fff;
    text-decoration: none;
    vertical-align: middle
}

.btn_cancel:hover {
    background: #aaa
}

a.btn_frmline,
button.btn_frmline {
    display: inline-block;
    width: 128px;
    padding: 0 5px;
    height: 40px;
    border: 0;
    background: #434a54;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    vertical-align: top
}

/* 우편번호검색버튼 등 */
a.btn_frmline {}

button.btn_frmline {
    font-size: 1em
}

/* 게시판용 버튼 */
a.btn_b01,
.btn_b01 {
    display: inline-block;
    color: #bababa;
    text-decoration: none;
    vertical-align: middle;
    border: 0;
    background: transparent
}

.btn_b01:hover,
.btn_b01:hover {
    color: #000
}

a.btn_b02,
.btn_b02 {
    display: inline-block;
    background: #253dbe;
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
    border: 0;
    vertical-align: middle
}

a.btn_b02:hover,
.btn_b02:hover {
    background: #0025eb
}

a.btn_b03,
.btn_b03 {
    display: inline-block;
    background: #fff;
    border: 1px solid #b9bdd3;
    color: #646982;
    text-decoration: none;
    vertical-align: middle
}

a.btn_b03:hover,
.btn_b03:hover {
    background: #ebedf6
}

a.btn_b04,
.btn_b04 {
    display: inline-block;
    background: #fff;
    border: 1px solid #ccc;
    color: #707070;
    text-decoration: none;
    vertical-align: middle
}

a.btn_b04:hover,
.btn_b04:hover {
    color: #333;
    background: #f9f9f9
}

a.btn_admin,
.btn_admin {
    display: inline-block;
    color: #d13f4a;
    text-decoration: none;
    vertical-align: middle
}

/* 관리자 전용 버튼 */
.btn_admin:hover,
a.btn_admin:hover {
    color: #ff3746
}


/* 기본테이블 */
.tbl_wrap table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0 5px;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec
}

.tbl_wrap caption {
    padding: 10px 0;
    font-weight: bold;
    text-align: left
}

.tbl_head01 {
    margin: 0 0 10px
}

.tbl_head01 caption {
    padding: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

.tbl_head01 thead th {
    padding: 20px 0;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #ececec;
    height: 40px;
    font-size: 15px;
}

.tbl_head01 thead th input {
    vertical-align: top
}

/* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th,
.tbl_head01 tfoot td {
    padding: 10px 0;
    border-top: 1px solid #c1d1d5;
    border-bottom: 1px solid #c1d1d5;
    background: #d7e0e2;
    text-align: center
}

.tbl_head01 tbody th {
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8
}

.tbl_head01 td {
    color: #666;
    padding: 10px 5px;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
    line-height: 1.4em;
    height: 60px;
    word-break: break-all;
    font-size: 15px;
}

.tbl_head01 tbody tr:hover td {
    background: #fafafa
}

.tbl_head01 a:hover {
    //text-decoration: underline
}

.tbl_head02 {
    margin: 0 0 10px
}

.tbl_head02 caption {
    padding: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden
}

.tbl_head02 thead th {
    padding: 5px 0;
    border-top: 1px solid #d1dee2;
    border-bottom: 1px solid #d1dee2;
    background: #e5ecef;
    color: #383838;
    font-size: 0.95em;
    text-align: center;
    letter-spacing: -0.1em
}

.tbl_head02 thead a {
    color: #383838
}

.tbl_head02 thead th input {
    vertical-align: top
}

/* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th,
.tbl_head02 tfoot td {
    padding: 10px 0;
    border-top: 1px solid #c1d1d5;
    border-bottom: 1px solid #c1d1d5;
    background: #d7e0e2;
    text-align: center
}

.tbl_head02 tbody th {
    padding: 5px 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background: #fff
}

.tbl_head02 td {
    padding: 5px 3px;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background: #fff;
    line-height: 1.4em;
    word-break: break-all
}

.tbl_head02 a {}

/* 폼 테이블 */
.tbl_frm01 {
    margin: 0 0 20px
}

.tbl_frm01 table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0
}

.tbl_frm01 th {
    width: 70px;
    padding: 7px 13px;
    border: 1px solid #e9e9e9;
    border-left: 0;
    background: #f5f8f9;
    text-align: left
}

.tbl_frm01 td {
    padding: 7px 10px;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background: transparent
}

.wr_content textarea,
.tbl_frm01 textarea,
.form_01 textarea,
.frm_input {
    font-size: 14px;
    border: 1px solid #d0d3db;
    background: #fff;
    color: #000;
    vertical-align: middle;
    border-radius: 3px;
    padding: 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.tbl_frm01 textarea {
    padding: 2px 2px 3px
}

.frm_input {
    height: 40px
}

.full_input {
    width: 100%
}

.half_input {
    width: 49.5%
}

.twopart_input {
    width: 385px;
    margin-right: 10px
}

.tbl_frm01 textarea,
.write_div textarea {
    width: 100%;
    height: 100px
}

.tbl_frm01 a {
    text-decoration: none
}

.tbl_frm01 .frm_file {
    display: block;
    margin-bottom: 5px
}

.tbl_frm01 .frm_info {
    display: block;
    padding: 0 0 5px;
    line-height: 1.4em
}

/*기본 리스트*/
.list_01 ul {
    border-top: 1px solid #ececec
}

.list_01 li {
    border-bottom: 1px solid #ececec;
    background: #fff;
    padding: 10px 15px;
    list-style: none;
    position: relative
}

.list_01 li:nth-child(odd) {
    background: #f6f6f6
}

.list_01 li:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.list_01 li:hover {
    background: #f9f9f9
}

.list_01 li.empty_li {
    text-align: center;
    padding: 20px 0;
    color: #666
}

/*폼 리스트*/
.form_01 h2 {
    font-size: 1.167em
}

.form_01 li {
    margin-bottom: 10px
}

.form_01 ul:after,
.form_01 li:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.form_01 .left_input {
    float: left
}

.form_01 .margin_input {
    margin-right: 1%
}

.form_01 textarea {
    height: 100px;
    width: 100%
}

.form_01 .frm_label {
    display: inline-block;
    width: 130px
}

/* 자료 없는 목록 */
.empty_table {
    padding: 50px 0 !important;
    text-align: center
}

.empty_list {
    padding: 20px 0 !important;
    color: #666;
    text-align: center
}

/* 필수입력 */
.required,
textarea.required {
    background-image: url('/img/require.png') !important;
    background-repeat: no-repeat !important;
    background-position: right top !important
}

/* 테이블 항목별 정의 */
.td_board {
    width: 80px;
    text-align: center
}

.td_category {
    width: 80px;
    text-align: center
}

.td_chk {
    width: 30px;
    text-align: center
}

.td_date {
    width: 60px;
    text-align: center
}

.td_datetime {
    width: 110px;
    text-align: center
}

.td_group {
    width: 80px;
    text-align: center
}

.td_mb_id {
    width: 100px;
    text-align: center
}

.td_mng {
    width: 80px;
    text-align: center
}

.td_name {
    width: 100px;
    text-align: left
}

.td_nick {
    width: 100px;
    text-align: center
}

.td_num {
    width: 50px;
    text-align: center
}

.td_numbig {
    width: 80px;
    text-align: center
}

.td_stat {
    width: 60px;
    text-align: center
}

.txt_active {
    color: #5d910b
}

.txt_done {
    color: #e8180c
}

.txt_expired {
    color: #ccc
}

.txt_rdy {
    color: #8abc2a
}

/* 새창 기본 스타일 */
.new_win {
    width: 770px;
    position: relative;
    margin: 200px auto;
}

.new_win .tbl_wrap {
    margin: 0 20px
}

.new_win #win_title {
    font-size: 1.3em;
    height: 50px;
    line-height: 30px;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, .1)
}

.new_win #win_title .sv {
    font-size: 0.75em;
    line-height: 1.2em
}

.new_win .win_ul {
    margin-bottom: 15px;
    padding: 0 20px
}

.new_win .win_ul:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.new_win .win_ul li {
    float: left;
    background: #fff;
    text-align: center;
    padding: 0 10px;
    border: 1px solid #d6e9ff;
    border-radius: 30px;
    margin-left: 5px
}

.new_win .win_ul li:first-child {
    margin-left: 0
}

.new_win .win_ul li a {
    display: block;
    padding: 8px 0;
    color: #6794d3
}

.new_win .win_ul .selected {
    background: #3a8afd;
    border-color: #3a8afd;
    position: relative;
    z-index: 5
}

.new_win .win_ul .selected a {
    color: #fff;
    font-weight: bold
}

.new_win .win_desc {
    position: relative;
    margin: 10px;
    border-radius: 5px;
    font-size: 1em;
    background: #f2838f;
    color: #fff;
    line-height: 50px;
    text-align: left;
    padding: 0 20px
}

.new_win .win_desc i {
    font-size: 1.2em;
    vertical-align: baseline
}

.new_win .win_desc:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 50px;
    background: #da4453;
    border-radius: 3px 0 0 3px
}

.new_win .frm_info {
    font-size: 0.92em;
    color: #919191
}

.new_win .win_total {
    float: right;
    display: inline-block;
    line-height: 30px;
    font-weight: normal;
    font-size: 0.75em;
    color: #3a8afd;
    background: #f6f6f6;
    padding: 0 10px;
    border-radius: 5px
}

.new_win .new_win_con {
    margin: 20px 0;
    padding: 20px
}

.new_win .new_win_con:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.new_win .new_win_con2 {
    margin: 20px 0
}

.new_win .btn_confirm:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.new_win .win_btn {
    text-align: center;
    margin-top: 40px;
}

.new_win .btn_close {
    width: 72px;
    height: 45px;
    overflow: hidden;
    cursor: pointer
}

.new_win .btn_submit {
    padding: 0 20px;
    height: 45px;
    font-weight: bold;
    font-size: 1.083em
}

/* 검색결과 색상 */
.sch_word {
    color: #fff;
    background: #ff005a;
    padding: 2px 5px 3px;
    line-height: 18px;
    margin: 0 2px
}

/* 자바스크립트 alert 대안 */
#validation_check {
    margin: 100px auto;
    width: 500px
}

#validation_check h1 {
    margin-bottom: 20px;
    font-size: 1.3em
}

#validation_check p {
    margin-bottom: 20px;
    padding: 30px 20px;
    border: 1px solid #e9e9e9;
    background: #fff
}

/* 사이드뷰 */
.sv_wrap {
    position: relative;
    font-weight: normal
}

.sv_wrap .sv {
    z-index: 1000;
    display: none;
    margin: 5px 0 0;
    font-size: 0.92em;
    background: #333;
    -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2)
}

.sv_wrap .sv:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #333 transparent
}

.sv_wrap .sv a {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    line-height: 30px;
    width: 100px;
    font-weight: normal;
    color: #bbb
}

.sv_wrap .sv a:hover {
    background: #000;
    color: #fff
}

.sv_member {
    color: #333
}

.sv_on {
    display: block !important;
    position: absolute;
    top: 23px;
    left: 0px;
    width: auto;
    height: auto
}

.sv_nojs .sv {
    display: block
}

/* 페이징 */
.pg_box {
    text-align: center;
}

.pg_wrap {
    display: inline-block
}

.pg_wrap:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.pg {
    text-align: center
}

.pg_page,
.pg_current {
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #6d4099;
    margin: 0 2.5px;
}

.pg a:focus,
.pg a:hover {
    text-decoration: none
}

.pg_page {
    color: #ddd;
    font-size: 1.083em;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    min-width: 30px;
    text-decoration: none;
    border: 1px solid #ddd;
}

.pg_page:hover {
    background-color: #fafafa
}

.pg_start {
    text-indent: -999px;
    overflow: hidden;
    background: url('/img/btn_first.gif') no-repeat 50% 50% #fff;
    padding: 0;
    border: 1px solid #ddd
}

.pg_prev {
    text-indent: -999px;
    overflow: hidden;
    background: url('/img/btn_prev.gif') no-repeat 50% 50% #fff;
    padding: 0;
    border: 1px solid #ddd
}

.pg_end {
    text-indent: -999px;
    overflow: hidden;
    background: url('/img/btn_end.gif') no-repeat 50% 50% #fff;
    padding: 0;
    border: 1px solid #ddd
}

.pg_next {
    text-indent: -999px;
    overflow: hidden;
    background: url('/img/btn_next.gif') no-repeat 50% 50% #fff;
    padding: 0;
    border: 1px solid #ddd
}

.pg_start:hover,
.pg_prev:hover,
.pg_end:hover,
.pg_next:hover {
    background-color: #fafafa
}

.pg_current {
    display: inline-block;
    background: #fff;
    border: 1px solid #6d4099;
    color: #6d4099;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    min-width: 30px;
    margin: 0 2.5px;
}

/* cheditor 이슈 */
.cheditor-popup-window *,
.cheditor-popup-window :after,
.cheditor-popup-window :before {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* Mobile화면으로 */
#device_change {
    display: block;
    margin: 0.3em;
    padding: 0.5em 0;
    border: 1px solid #eee;
    border-radius: 2em;
    background: #fff;
    color: #000;
    font-size: 2em;
    text-decoration: none;
    text-align: center
}

#bo_v_share a {
    font-size: 13px !important;
}

.more_opt li button,
.more_opt li a {
    font-size: 13px !important;
}

.bd_container, .bd_container2 {
    width: calc(100% - 4rem);
    max-width: 1280px;
    margin: 0 auto;
    padding: 10rem 0 12rem;
	font-size:1.4rem;
}

.bd_container .sub_m_row{
    margin-bottom: 8rem;
}

.bd_container2 .sub_m_row{
    margin-bottom: 8rem;
}