@charset "utf-8";

#wrap {
	width: 100%;
    position: relative;
	/* overflow: hidden; */
}

.inner01 {
	width: calc(100% - 4rem);
	max-width: 1678px;
	margin: 0 auto;
}

.inner02 {
	width: calc(100% - 4rem);
	max-width: 1700px;
	margin: 0 auto;
}

.inner03 {
	width: calc(100% - 4rem);
	max-width: 1583px;
	margin: 0 auto;
}

.ptb200{
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.pt200{
    padding-top: 20rem;
}

.ptb180{
    padding-top: 18rem;
    padding-bottom: 18rem;
}

.pt180{
    padding-top: 18rem;
}

.ptb160{
    padding-top: 16rem;
    padding-bottom: 16rem;
}

.pt160{
    padding-top: 16rem;
}


/* ----------------------------------------------------------------------- */

/* header */

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

#hd .hd_wr {
    width: 100%;
	height: 10vh;
	margin: 0px auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
    position: relative;
}

#hd.hide{
    transform: translateY(-100%);
}

#hd.active{
    background: #fff;
    /* background: rgba(255,255,255,0.6); */
}

#hd::after {
    content: "";
    position: absolute;
    top: 100%; /* 헤더 바로 아래 */
    left: 0;
    width: 100%;
    height: 0;

    background: #fff;
    z-index: -1;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#hd:has(.depth01:hover)::after {
    height: 70px; /* depth02 높이 */
    opacity: 1;
    visibility: visible;
}

#hd:not(.active):has(#gnb:hover) {
    background: #fff;
    /* background: rgba(255,255,255,0.6); */
}

#hd .logo {
	flex: 0 0 auto;
	height: 7rem;
    margin-left: 4rem;
}

#hd .logo a {
	display: block;
	width: 26rem;
	height: 6.9rem;
	font-size: 0;
	background: url('/img/common/logo.png') no-repeat;
	transition: .5s;
}

#hd:has(#gnb:hover) .logo a,
#hd.active .logo a{
    background: url('/img/common/logo_color.png') no-repeat;
}


#gnb {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s;
    margin-left: 19rem;
    position: sticky;
}

#gnb .gnb_ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    white-space: nowrap;
}

#gnb .depth01 {
    position: relative;
    height: 13vh;
}

#gnb .depth01 > a {
    padding: 0 2.6rem;
    height: 10rem;
    line-height: 12rem;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 400;
    font-family: "Noto Sans KR", sans-serif;
}


#gnb:hover  .depth01 > a,
#hd.active #gnb .depth01 > a{
    color: #5E4531;
}

/* 2단계 메뉴 (depth02) 가로 배열 설정 */
#gnb .depth02 {
    position: absolute;
    top: 60%;
    left: 0;
    width: auto;
    display: flex;
    padding: 0 15px;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* 위에서 대기 */
    transition: all 0.25s ease 0.1s; /* 나갈 때도 부드럽게 */
    
    z-index: 100;
    pointer-events: none;
}

/* 개별 서브메뉴 항목 */
#gnb .depth02 li {
    width: auto;       /* 텍스트 길이에 맞게 */
    margin: 0 15px; /* 항목 간 간격 */
}

#gnb .depth02 li a {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 17px;
    color: #5c5c5c;
    font-weight: 400;
    white-space: nowrap;
    line-height: 110px; /* 서브메뉴 높이 */
}

#gnb .depth02 li:hover > a{
    color: #5E4531;
}

#gnb .depth02 li.active > a{
    color: #5E4531;
}

#gnb .depth01:hover .depth02 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* header */


/* ham menu btn */
.hd_right {
	display: flex;
	justify-content: space-between;
    margin-left: 20px;
}

.member_btn {
	display: flex;
	min-width: 5rem;
	justify-content: center;
}

.member_btn .login{
    width: 26px;
    height: 26px;
    background: url('/img/common/icon_login.svg') no-repeat;
}

#hd:has(#gnb:hover) .member_btn .login,
#hd.active .member_btn .login{
    background: url('/img/common/icon_login_black.svg') no-repeat;;
}

.member_btn .logout{
    width: 26px;
    height: 26px;
    background: url('/img/common/icon_logout.svg') no-repeat;
}

#hd:has(#gnb:hover) .member_btn .logout,
#hd.active .member_btn .logout{
    background: url('/img/common/icon_logout_black.svg') no-repeat;;
}


.hamBtn {
	width: 26px;
    height: 26px;
}

.hamBtn .ham_line{
    height: 2px;
    width: 4rem;
    background: #fff;
}

#hd:has(#gnb:hover) .hamBtn .ham_line,
#hd.active .hamBtn .ham_line{
    background: #5E4531;
}

#hd.active .hamBtn .ham_line:nth-of-type(2){
    background: #5E4531;
}

.hamBtn .ham_line:nth-of-type(2){
    background: #5E4531;
    width: 2.6rem;
    margin-top: 1rem;
    margin-left: 1.4rem;
}

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

/* ham menu btn */

/* sitemap */

.sitemap .close_btn{
    margin-top: 4vw;
    position: relative;
    top: 0;
    left: 92%;
}

.sitemap .close_btn span{
    color: #5E4531;
    font-size: 40px;
}

/* .sitemap .close_btn .close_line{
    display: block;
    background: #382D21;
    height: 2px;
    width: 26px;
}

.sitemap .close_btn .close_line:nth-of-type(1){
    transform: rotate(45deg);
}

.sitemap .close_btn .close_line:nth-of-type(2){
    transform: rotate(-45deg);
    margin-top: -2px;
} */

.sitemap{
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 250, 0.95);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: none;
}

.sitemap_ul{
    margin-top: 1vw;
    margin-left: 10vw;
}

.sitemap_ul .sitemap_depth01{
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}

.sitemap_ul .sitemap_depth01>a{
    width: 18%;
    font-size: 24px;
    color: #5E4531;
    margin-bottom: 26px;
}

.sitemap_ul .sitemap_depth01:hover>a{
    color: rgba(94, 69, 49, 0.6);
}

.sitemap_ul .sitemap_depth02{
    display: flex;
    gap: 1.1vw;
    margin-top: 0.2vw;
}

.sitemap_ul .sitemap_depth02>li a{
    font-size: 19px;
    color: rgba(94, 69, 49, 0.6);
}

.sitemap_ul .sitemap_depth02>li:hover a{
    color: #5E4531;
}

/* sitemap */

/* 메인 타이틀 - 공통 영역 */

.main_txt{
    text-align: center;
}

.main_txt .main_tag{
    font-size: 2.1rem;
    letter-spacing: 0%;
    color: #D0C0C1;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.main_txt .main_tit{
    font-size: 4.1rem;
    font-weight: 300;
    letter-spacing: -2%;
    color: #353535;
    margin-bottom: 3rem;
}

.main_txt .main_desc{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 2rem;
    color: #333;
    font-weight: 350;
    letter-spacing: -5%;
}

/* 메인 타이틀 - 공통 영역 */

/* 리얼후기  */

/* more_btn 공통 영역 */

.more_btn a{
    display: flex;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid #9E9E9E;
    margin-bottom: 1.3rem;
}

.more_btn p{
    font-size: 1.8rem;
    color: #9E9E9E;
}

.more_btn span{
    color: #5E4531;
    font-size: 2.5rem;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.more_btn:hover span{
    transform: rotate(90deg);
}

/* more_btn 공통 영역 */

.main05{
    position: relative;
    width: 100%;
    height: auto;
}

.main_btn .more_btn{
    width: 5%;
    position: absolute;
    right: 16.9rem;
    top: 33.8rem;
}

.review_con{
    margin-top: 9.4rem;
}

.review_con .swiper-slide{
    padding-top: 12rem;
}

.review_con a{
    width: 36.7rem;
    height: 38.2rem;
}

.review_con a .review_img{
    /* width: 36.7rem; */
    height: 38.2rem;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
}

.review_con .review_img img{
    width: 100%;
    filter: blur(3px); /* 기본: 비로그인 상태 */
}

/* 로그인 상태일 때 blur 해제 */
.review_con .swiper-slide.is_login .review_img img {
    filter: none;
}

.review_con .swiper-slide:hover .review_hover {
    opacity: 1;        
    visibility: visible;  
}

.review_hover{
    font-family: "Noto Sans KR", sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.review_hover .rv_hover_box,
.review_hover .re_login{
    opacity: 0;
    transform: translateY(10px); /* 살짝 아래에서 위로 올라오는 효과 */
    transition: all 0.3s ease-out;
}

.review_con .swiper-slide:hover .review_img{
    filter: brightness(0.6);
    transform: translateY(0);
}

.review_con .swiper-slide:hover .rv_hover_box,
.review_con .swiper-slide:hover .re_login{
    opacity: 1;
    transform: translateY(0);
}

.review_hover .rv_hover_box{
    width:  36.8rem;
    height: 50rem;
    background: #F6F6F6;
    border-radius: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    padding: 2.5rem;
}

.review_hover .rv_hover_box .subject{
    font-size: 2.4rem;
    color: #AC9883;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.review_hover .rv_hover_box .desc{
    font-size: 1.9rem;
    font-weight: 400;
    color: #333;
}

.review_hover .re_login{
    position: absolute;
    top: 23rem;
    left: 9rem;
    z-index: 3;
}

.review_hover .re_login p{
    font-size: 1.9rem;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}

.review_hover .re_login .re_login_icon{
    width: 9.3rem;
    height: 9.3rem;
    border-radius: 36rem;
    background: rgba(0,0,0,0.5);
    margin: 2.7rem auto;
    padding: 3rem 3.4rem;
}

.review_hover .re_login .re_login_icon img{
    margin: 0 auto;
}

/* 리얼후기 */

/* footer - 공통 영역 */

/* 진료시간 영역 */

.ft_cs_con {
    width: 100%;
    position: relative;
    height: auto;
    background: url("/img/common/ft_cs_bg.jpg") no-repeat;
    background-size: cover;
}

/* cs style 공통 부분 */

.ft_cs_flex{
    color: #fff;
    display: flex;
    padding: 5.7rem;
    padding-left: 10rem;
    gap: 8rem;
}

.ft_cs_flex .ft_cs_tit{
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.ft_cs_flex .ft_cs_desc{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 1.8rem;
    color: #DDD1C7;
}

.ft_ch_con{
    width: 53%;
}

.ft_call_con{
    width: 30%;
    margin-left: -82px;
}

.ft_sns_re{
    width: 36%;
}


.ft_ch_con::after{
    content: "";
    display: block;
    width: 18%;
    height: 1px;
    background:  rgba(255,255,255,0.3);
    transform: rotate(90deg);
    position: absolute;
    top: 17rem;
    left: 32.5%;
}

.ft_call_con::after{
    content: "";
    display: block;
    width: 18%;
    height: 1px;
    background:  rgba(255,255,255,0.3);
    transform: rotate(90deg);
    position: absolute;
    top: 16rem;
    left: 57.5%;
}

/* cs style 공통 부분 */

.ft_ch_con ul{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.ft_ch_con ul .ch_line{
    width: 17%;
    height: 1px;
    background:  rgba(255,255,255,0.3);
    transform: rotate(90deg);
    position: relative;
    top:-7.5rem;
    left: 21.8rem;
}

.ft_ch_con ul li{
    display: flex;
    width: 50%;
    margin-bottom: 1.8rem;
}

.ft_ch_con ul li div{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 2rem;
}

.ft_ch_con ul li:nth-of-type(2),
.ft_ch_con ul li:nth-of-type(4),
.ft_ch_con ul li:nth-of-type(6){
    margin-left: -61px;
}

.ft_ch_con ul .ch_day{
    width: 25%;
}

.ft_ch_con ul .ch_hours{
    width: 100%;
}


.ft_call_con .ft_call_num{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 5rem;
    color: #fff;
    margin-top: 3.8rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.ft_call_con .ft_call_num span{
    font-family: "Noto Sans KR", sans-serif;
    font-size: 3.3rem;
    color: rgba(255,255,255,0.5);
    display: inline-flex;
}

.ft_sns_re .sns_btn{
    margin-top: 3.5rem;
    display: flex;
    gap: 1.5rem;
}

.ft_sns_re .sns_btn div{
    font-family: "Noto Sans KR", sans-serif;
    width: 17.1rem;
    height: 4.6rem;
    border-radius: 36rem;
}

.ft_sns_re .sns_btn div p{
    font-size: 1.8rem;
    color: #333;
    font-weight: 500;
}

.ft_sns_re .sns_btn .kakao,
.ft_sns_re .sns_btn .naver{
    width: 17.1rem;
    background: #fff;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.ft_sns_re .sns_btn .kakao{
    border: 2px solid #E3C72C;
}

.ft_sns_re .sns_btn .naver{
    border: 2px solid #45C354;
}

.ft_sns_re .sns_btn .icon{
    width: 2.5rem;
    height: 2.5rem;
}

/* 진료시간 영역 */

/* 지도 영역 */


.ft_map_con {
    width: 100%;
    position: relative;
    height: auto;
    background: url("/img/common/ft_bg.jpg") no-repeat;
    background-size: cover;
    padding: 15rem;
    padding-bottom: 20rem;
}

.ft_map_flex{
    display: flex;
    gap: 20rem;
}

.ft_map_con .map_box .map_ttl_row{
    color: #fff;
    margin-bottom: 3rem;
    font-family: "Noto Sans KR", sans-serif;
    margin-left: 1rem;
}

.ft_map_con .map_box .map_ttl_row .title{
    font-size: 2.7rem;
}

.ft_map_con .map_box .map_ttl_row .desc{
    font-size: 2.1rem;
}

.ft_map_con .map_box .place_btn{
    display: flex;
    gap: 15rem;
    margin-left: 1rem;
}

.ft_map_con .map_box .place_btn ul{
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.ft_map_con .map_box .place_btn ul::after{
    content: "";
    display: block;
    width: 3rem;
    height: 1px;
    background:  rgba(255,255,255,0.3);
    transform: rotate(90deg);
    position: relative;
    top: 0;
    left: 8rem;
}

.ft_map_con .map_box .place_btn a:nth-of-type(3) ul::after{
    background: transparent;
}

.ft_map_con .map_box .place_btn li:nth-of-type(1){
    width: 2.3rem;
    height: 2.8rem;
    border-radius: 0.1rem;
    overflow: hidden;
}

.ft_map_con .map_box .place_btn li img{
    width: 100%;
}

.ft_map_con .map_box .place_btn li {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 1.7rem;
    color: #fff;
    font-weight: 500;
}

.ft_map_con .map_box .map_con{
    width: 78.5rem;
    height: 41rem;
    border-radius: 2rem;
    overflow: hidden;
    background: #000;
    margin-top: 3rem;
}

/* 상담신청 박스 */

.ft_rc_con{
    font-family: "Noto Sans KR", sans-serif;
}

.ft_rc_con .ft_rc_tit{
    color: #fff;
}

.ft_rc_con .ft_rc_tit .rc_tit{
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ft_rc_con .ft_rc_tit .rc_desc{
    font-size: 3.2rem;
    font-weight: 300;
    color: #C3A89F;
}

.ft_rc_con .ft_rc_tit .rc_desc span{
    font-size: 3.2rem;
    font-weight: 500;
    color: #fff;
}

.ft_rc_box{
    width: 43.7rem;
    height: 42.9rem;
    border-radius: 2rem;
    background: #fff;
    margin-top: 6rem;
    padding: 3rem;
}

.ft_rc_box .rc_name label,
.ft_rc_box .rc_phone label,
.rc_select .rc_seclect_tit p{
    display: block;
    font-size: 1.9rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ft_rc_box .rc_name span,
.ft_rc_box .rc_phone span,
.rc_select .rc_seclect_tit p span{
    font-size: 1.9rem;
    color: #F22929;
}

.ft_rc_box input,
.rc_select .form select{
    display: block;
    width: 36.7rem;
    height: 4.3rem;
    line-height: 4.3rem;
    border: 1px solid #DDDDDD;
    border-radius: 0.5rem;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 2rem;
    font-size: 17px;
}

.ft_rc_box input::placeholder {
    color: #DDDDDD;
    font-size: 1.7rem;
}

.ft_rc_box input:focus::placeholder {
    color: transparent;
}

.rc_select .form select{
    font-size: 1.7rem;
    color: #DDDDDD;
}

.rc_select .form select option{
    font-size: 1.7rem;
    color: #222;
}

/* 상담신청박스 화살표 아이콘 */

select {
    -webkit-appearance: none;  /* 크롬, 사파리 */
    -moz-appearance: none;     /* 파이어폭스 */
    appearance: none;          /* 표준 속성 */

    /* 2. 커스텀 화살표 배경으로 넣기 */
    background-image: url('/img/common/ft_rc_arrow_btn.svg'); /* 준비하신 화살표 아이콘 경로 */
    background-repeat: no-repeat;
    background-position: calc(100% - 1.5rem) center; /* 오른쪽에서 1.5rem 띄우고 세로 중앙 */
    background-size: 1.2rem; /* 아이콘 크기 조절 */

    /* 3. 디자인 맞추기 (인풋 박스와 동일하게) */
    width: 36.7rem;
    height: 4.3rem;
    padding: 0 1.5rem;
    font-size: 1.7rem;
    color: #333;
    border: 1px solid #DDDDDD;
    border-radius: 0.5rem;
    background-color: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

/* IE에서 화살표 숨기기 */
select::-ms-expand {
    display: none;
}

/* 선택 안 된 상태(Placeholder) 색상 조절 */
select:invalid,
select option[value=""] {
    color: #9E9E9E;
}

/* 상담신청박스 화살표 아이콘 */


.ft_rc_box .checkbox input{
    width: 1.6rem;
    height: 1.6rem;
    border: transparent;
    background: #d9d9d9;
    cursor: pointer;
    display: inline-block;
}

.ft_rc_box .checkbox label{
    font-size: 1.5rem;
    font-weight: 500;
    color: #777;
    margin-left: 0.8rem;
}

.ft_rc_box button{
    width: 36.7rem;
    height: 4.8rem;
    border-radius: 0.5rem;
    background: #DDD1C7;
}

.ft_rc_box button p{
    color: #fff;
    font-size: 1.7rem;
}

.ft_rc_box button:hover{
    background: #5E4531;
}

/* 상담신청 박스 */

/* 카피라이터 */

.copy{
    font-family: "Noto Sans KR", sans-serif;
    position: relative;
    top: 17.2rem;
}

.copy address dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.copy address dl dt {
    position: relative;
}

.copy address dl dd {
    position: relative;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

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

.copy address dl:nth-of-type(2) dt:nth-of-type(3){
    font-size: 11px;
}

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

.copy address * {
    font-size: 1.5rem;
    color:#fff;
    line-height: 1.5;
}

/* 카피라이터 */

/* 지도 영역 */

/* footer - 공통 영역 */

/* 퀵메뉴 */

.quick {
    font-family: "Noto Sans KR", sans-serif;
    position: fixed;
    right: 6.5rem;
    bottom: 18rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.quick.fix {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.quick_hover {
    width: 88px;
    height: 412px;
    border-radius: 41.2rem;
    background-color: #786B5C;
    position: relative;
    bottom: -81px;
    z-index: -1;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}


.quick ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 88px;
    height: 109px;
    padding-top: 4px;
}

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

.quick ul li+li::before {
    content: '';
    width: 40px;
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.2);
}

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

.quick .quick_hover ul li:hover {
    background: #382D21;
}

.quick ul li:nth-of-type(1):hover{
    border-radius: 50px 50px 0px 0px;
}

.quick ul li:nth-of-type(3):hover{
    border-radius: 0px 0px 50px 50px;
    height: 180px;
}

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


.quick ul li .notice {
    width: 28px;
    height: 28px;
    margin-top: 25px;
    background: url('/img/common/quick_notice_icon.svg') no-repeat;
}


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


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

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

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

.quick_btn {
    width: 8.8rem;
	height: 8.8rem;
    border-radius: 8.8rem;
    background: #5E4531;
	overflow: hidden;
}


.quick_btn span {
	display: block;
    font-size: 1.8rem;
    color: #fff;
	transition: all 0.3s;
    background-size: contain;
    margin: 0 10px;
}

.quick:hover .quick_hover{
    opacity: 1;
}

/* 퀵메뉴 */

/* 퀵메뉴 동그라미 */

.progress-area {
    position: fixed;
    right: 40px;
    bottom: 30px;
    width: 138px;
    height: 138px;
    cursor: pointer;
    z-index:11;
}

.progress-bg {
    width: 100%;
    height: 100%;
    background: url('/img/common/progress-bg.png')0 0/100% no-repeat;
}

.progress-percent{
    position: absolute;
    top:38%;
    left:25%;
    width: 50%;
    text-align: center;
    color: #e6e6e6;
}

.progress-area .progress-percent > span{
    display:inline-block;
    width: 23px;
    height:28px;
    margin:6% 0 0 -1%;
    text-indent:-9999px;
    background: url('/img/common/topbtn_down_arrow.png')50% 50%/100% no-repeat; transform:rotate(0deg);
}

.progress-area.on .progress-percent > span{
    display:inline-block;
    width: 100%;
    height:100%;
    margin:0;
    text-indent:0px;
    font-size: 22px;
    background:none;
    transform:rotate(0deg);
}


.progress-percent > span{
    font-size:1.5rem;
}

.topbtn-up-arrow{
    width: 23px;
    height:26px;
    position: absolute;
    top:50%;
    left:50%;
    margin-left: -11.5px;
    margin-top: -13px;
    display: block;
    background:none;
    opacity: 0;
    visibility: hidden;
}

.topbtn-up-arrow > span{
    display:inline-block;
    color:#e6e6e6;
    margin:3% 0 0 -52%;
    text-align:center;
    letter-spacing:0.04em;
    font-weight:400;
    font-size:1.5rem;
}

.progress-area.on .topbtn-up-arrow{
    background: url('/img/common/topbtn_up_arrow.png')0 0/100% no-repeat;
}

.progress-area.on .topbtn-up-arrow > span{
    display: none;
}

/* 퀵메뉴 동그라미 */

