@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


*{
	padding:0;
	margin:0;
	box-sizing: border-box;
    letter-spacing: -0.03em;
}
ul,li,dl,dt,dd,ol{
	list-style:none;
}
body {
    font-family: 'NotoSansKR', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    color: #2B2B2B;
    /* letter-spacing: -1px; */
    /* background-color: #EFF3F7; */
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
input,textarea{outline:0;border:0}
button {outline:0;border:0;cursor:pointer;background-color: transparent;}
input,input[type="submit"]{
   appearance: none;
   border-radius: 0;
   -webkit-appearance: none;
   -webkit-border-radius: 0;
}
input[type="radio"],
input[type="checkbox"]{
	appearance: auto;
	-webkit-appearance: auto;
}
input:focus,
textarea:focus,
select:focus,
button:focus{ outline: none; box-shadow: none;}
button,label{ cursor:pointer}
b{font-weight:600;}
table {
    border-collapse: collapse;
}
input[type=text]:focus {
    box-shadow: none;
    border: 0;
}
#hd, #wrapper, #ft {
    min-width: unset;
}
input[type=text]:focus,input[type=password]:focus, textarea:focus,select:focus {
    border: none !important;
}
 

:root {
    --main-color:#03A64B;
    --gray_color: #666;
    --border-color: #E5E5E5;
    /*--tb-bg-color: #FBFBFB; */
}
.main_color {
    color: var(--main-color);
}
.gray_color {
    color: var(--gray_color);
}
.border-color{
    color: var(--border-color);
}
.inner_wrap {
    width: 100%;
    /* max-width: 1000px; */
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.br_1024, .br_480_b, .br_480_block {display: none;}


/*헤더*/
header {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(229,229,229,0.5);
}
header .inner_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .pc_menu_wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
header .pc_menu_wrap .gnb {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}
header .pc_menu_wrap .gnb > li {
    position: relative;
    flex: 1;
    max-width: 150px;
}
header .pc_menu_wrap .gnb > li > a {
    display: block;
    padding: 5px 0;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease-in;
    text-align: center;
}
header .pc_menu_wrap .gnb > li > a i {
    color: var(--main-color);
}
header .pc_menu_wrap .gnb > li:hover > a {
    background-color: var(--main-color);
    color: #fff;
}
header .pc_menu_wrap .gnb > li:hover > a i {
    color: #fff;
}
header .pc_menu_wrap .gnb > li .sub {
    width: 100%;
    min-width: 130px;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #fff;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}
header .pc_menu_wrap .gnb > li:hover .sub {
    display: block;
}
header .pc_menu_wrap .gnb > li .sub li {
    margin: 5px 0;
}
header .pc_menu_wrap .gnb > li .sub li a {
    display: block;
    width: 100%;
    text-align: center;
    word-break: keep-all;
    line-height: 1.2;
    padding: 5px 0;
}
header .pc_menu_wrap .gnb > li .sub li a:hover {
    color: var(--main-color);
}

/* 모바일 헤더 */
.mb_menu_bg {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 2;
}
.mb_menu_wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 80vw;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-top: 20px;
    border-top: 1px solid;
}
.mb_menu_wrap .mb_gnb {display: none;}
.mb_menu_wrap .mb_gnb .sub {display: none;}
.mb_menu_btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}
.mb_menu_btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: ease .3s;
}
.mb_menu_btn span:nth-child(1) {top: 25%;}
.mb_menu_btn span:nth-child(3) {top: 75%;}

.mb_menu_btn.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.mb_menu_btn.active span:nth-child(2) {
    opacity: 0;
}
.mb_menu_btn.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mb_menu_bg.active {
    display: block;
}
.mb_menu_bg.active .mb_menu_wrap {
    transform: translateX(0);
}

/* 메인 슬라이드 */
#container_wr {width: 100%;}
#container {
    float: none;
    width: unset;
    height: unset;
    margin: 0;
    min-height: unset;
}
.bn_slder .pc_sd {display: inline-block;}
.bn_slder .m_sd {display: none;}

.main_sd_wrap {
    width: 100%;
    padding: 130px 0 80px;
    background-color: #f6f7fb;
}
.main_sd_wrap .bn_slder {
    padding-bottom: 50px;
}
.main_sd_wrap .bn_slder .con {}
.main_sd_wrap .bn_slder .con a {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}
.main_sd_wrap .bn_slder .con a .imgbox {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;

}
.main_sd_wrap .bn_slder .con a .imgbox p {
    position: absolute;
    left: 5%;
    bottom: 10%;
    transform: translate(0, 0);
    padding: 10px 30px;
    border: 1px solid #FAE100;
    background-color: #FAE100;
    color: #2B2B2B;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in;
}
.main_sd_wrap .bn_slder .con a .imgbox:hover p {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

/* 메인 - roas만 올리는 광고는 끝*/
.main_info {
    width: 100%;
    background-color: #f6f7fb;
    padding-bottom: 100px;
}
.home-wrapper h2 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 50px;
    font-family: 'NotoSansKR';
    /* letter-spacing: -0.5px; */
}
.main_info .info-list {
    display: flex;
    gap: 20px;
}
.main_info .info-list .list_item {
    flex: 1;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #E8E8E8;
    text-align: center;
    padding: 30px 0;
}
.main_info .info-list .list_item .imgbox {}
.main_info .info-list .list_item .tit {
    font-size: 20px;
    font-weight: 600;
    padding: 25px 0;
    word-break: keep-all;
}
.main_info .info-list .list_item .desc {
    font-weight: 600;
}
.main_info .info-list .list_item .gray_color {
    font-size: 14px;
    margin-top: 16px;
}

.pd_100 {
    padding: 100px 0;
}
/* 메인 네이버 실제 고객 성과 비교 */
.befor_after {
    background-color: #E4E6F0;
}
.borderbox {
    border-radius: 20px;
    border: 2px solid var(--main-color);
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
.befor_after .conwrap {
    margin-top: 25px;
}
.befor_after .conwrap .titbox {
    position: relative;
}
.befor_after .conwrap .titbox span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    background-color: var(--main-color);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.befor_after .conwrap .befor_after_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
}
.befor_after .conwrap .befor_after_list .list_item{
    flex: 1;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #E8E8E8;
    text-align: center;
    font-size: 20px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.befor_after .befor_after_list .list_item .tit {
    font-weight: 600;
}
.befor_after .befor_after_list .list_item .pric_num {
    font-weight: 700;
    padding: 10px 0 20px;
}
.befor_after .befor_after_list .list_item .pric_num.txt {
    font-size: 18px;
    word-break: keep-all;
}
.befor_after .befor_after_list .list_item .imgbox {}

.befor_after .arrow_down {
    text-align: center;
    margin-bottom: 55px;
}

.befor_after .info_con {
    display: flex;
    gap: 20px;
}
.befor_after .info_con .borderbox{
    flex-basis: 50%;
}
.befor_after .info_con .borderbox .imgbox{
    text-align: center;
}
.befor_after .info_con .borderbox .txtbox{
    border-top: 1px solid var(--main-color);
    text-align: center;
    padding: 30px 0;
    color: #666;
}
.befor_after .info_con .borderbox .txtbox > p{
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 30px;
}
.befor_after .info_con .benefit_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
}
.befor_after .info_con .benefit_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
.befor_after .info_con .benefit_list li:last-child {
    margin-bottom: 0;
}
.befor_after .info_con .benefit_list li .left {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}
.cir {
    width: 16px;
    height: 16px;
    position: relative;
}
.cir div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--main-color);
}
.cir1 {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 14px;
}
.cir2 {
    width: 110%;
    height: 110%;
    background-color: #64E09B;
    opacity: 0.5;
    animation: scaleAnimation 3s infinite alternate;
}
@keyframes scaleAnimation {
0% {
    transform: translate(-50%, -50%) scale(1);
}

50% {
    transform: translate(-50%, -50%) scale(1.5);
}
100% {
    transform: translate(-50%, -50%) scale(1);
}
}
.befor_after .info_con .benefit_list li .center {
    flex: 0;
    padding: 0 10px;
    color: var(--main-color);
}
.befor_after .info_con .benefit_list li .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.befor_after .info_con .benefit_list li .right i {
    color: var(--main-color);
    animation: bounceUp 1.5s infinite ease-in-out,
               arrow-wave 1.5s infinite ease-in-out;
}
.befor_after .info_con .benefit_list li .right i.down {
    animation: bounceDown 1.5s infinite ease-in-out, 
             arrow-wave 1.5s infinite ease-in-out;
}
@keyframes arrow-wave {
    0% {opacity: 1;}
    50% {opacity: .5;}
    100% {opacity: 1;}
}
@keyframes bounceUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}
@keyframes bounceDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(3px); }
    100% { transform: translateY(0); }
}

/* 빠른상담 */
.counsel {
    width: 100%;
    background-color: #f6f7fb;
}
.counsel h2 span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

.counsel_form {
    padding: 50px 45px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #DCE0E8;
}
.counsel_form form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.counsel_form form .item {
    flex: 0 0 calc(50% - 15px);
}
.counsel_form form .item h3 {
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 30px;
}
.counsel_form form .item label {
    font-size: 18px;
    cursor: unset;
}
.counsel_form .form_box input,
.counsel_form .form_box textarea {
    display: block;
    width: 100%;
    border-radius: 5px;
    /* padding: 10px 5px; */
    padding: 10px 5px 10px 12px;
    background-color: #F4F5F8;
    /* margin: 10px 0 30px; */
    margin: 15px 0 30px;
}
.counsel_form .form_box input::placeholder,
.counsel_form .form_box textarea::placeholder {
    font-size: 14px;
}

.counsel_form .form_box textarea {
    min-height: 300px;
}
.counsel_form .agree_wrap {
    display: flex;
    align-items: center;
}
.agree_wrap .agree_chk {
    display: flex;
    align-items: center;
}
/* contact_fixed 와 공통 */
.agree_wrap .agree_chk .custom_check {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}
.agree_chk input[type="checkbox"]:checked + .custom_check {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.agree_chk input[type="checkbox"]:checked + .custom_check::after {
    content: "✔";
    color: #fff;
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}
.agree_wrap .agree_chk input[type="checkbox"] {
    display: none;
}
/* ↑↑↑↑ contact_fixed 와 공통↑↑↑↑↑↑ */
.counsel_form .agree_wrap .agree_link {
    color: #666;
    text-decoration: underline;
    margin-left: 10px;
}

.counsel_form form .right {}
.counsel_form form .right .contact_info {
    padding-bottom: 50px;
}
.counsel_form form .right .contact_info p {
    margin-bottom: 10px;
    word-break: keep-all;
}
.counsel_form form .right .contact_info p:last-child {
    margin-bottom: 0;
}
.counsel_form form .right .ad_txt_list {
    padding-top: 30px;
}
.counsel_form form .right .ad_txt_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--main-color);
}
.counsel_form form .right .ad_txt_list li:last-child {
    margin-bottom: 0;
}

.counsel_form form .contact_btn {
    background-color: var(--main-color);
    padding: 15px 30px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.3s ease-in;
}
.counsel_form form .contact_btn:disabled {
    background-color: #f4f4f4;
    color: #c4c4c4;
    cursor: not-allowed;
}

/* 파트너사 */
.partner {
    background-color: #E4E6F0;
}
.partner_list {
    width: 100%;
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
}
.partner ul li {}
.partner ul li a {display: block;}

.partner_list .swiper-wrapper {
    display: flex;
  align-items: center;
  justify-content: center;
}
.partner_list .item {
}
.partner_list .item a {
    display: block;
    text-align: center;
}




/* 클라이언트 */
.clents {
    width: 100%;
    background-color: #f6f7fb;
}
.clents_sd .swiper-slide {
    flex: 0 0 auto; 
    width: fit-content;
    height: 50px;
  }
.clents_sd .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.clents_sd .swiper-slide a img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* footer*/
#ft {
    background-color: #fff;
    padding-bottom: 150px;
}
#ft .top {
    width: 100%;
    background-color: #F8F8F8;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}
#ft #ft_link {
    display: flex;
    flex-wrap: wrap;
}
#ft_link a {
    color: #2B2B2B;
    line-height: unset;
    font-weight: 400;
    padding: 13px 0;
}
#ft_link a::after {
    content: '|';
    display: inline-block;
    margin: 0 30px;
}
#ft_link li:last-child a::after {
    display: none;
}
#ft .bottom .call {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E1E1E1;
    flex-wrap: wrap;
}
#ft .bottom .call li {
    font-size: 18px;
    font-weight: 600;
}
#ft .bottom .call li .tit {}
#ft .bottom .call li.main_color {
    font-size: 24px;
    padding: 0 10px;
}
#ft .bottom .call li.gray_color {
    font-weight: 400;
}
#ft .bottom .f_info_wrap {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}
#ft .bottom .f_info_wrap .imgbox {}
#ft .bottom .f_info ul {
    display: flex;
    flex-wrap: wrap;
}
#ft .bottom .f_info ul li {
    color: #999;
    font-size: 14px;
    text-align: left;
    word-break: keep-all;
}
#ft .bottom .f_info ul li::after {
    content: '|';
    display: inline-block;
    margin: 0 10px;
}
#ft .bottom .f_info ul li:last-child::after {
    display: none;
}
#ft .bottom .f_info .copyright {
    color: #999;
    font-size: 14px;
    margin-top: 20px;
    text-align: left;
}

/*문의하기 고정*/
.contact_fixed {
    width: 100%;
    background-color: var(--main-color);
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 2px solid var(--main-color);
    z-index: 1;
}
.contact_fixed .btn-up-down{
    position: absolute;
    width: 100px;
    height: 30px;
    background: var(--main-color);
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    line-height: 30px;
    border-radius: 55px 55px 0 0;
    color: #fff;
    cursor: pointer;
}
.contact_fixed .inner_wrap {
    padding: 20px 0;
    display: block;
}

.consult_form {}
.consult_form .top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.consult_form .top .form_group {
    display: flex;
    flex-direction: column;
}
.consult_form .top .form_group label {
    display: none;
}
.consult_form .top .form_group input,
.consult_form .top .form_group textarea {
  padding: 12px;
  border-radius: 5px;
  font-size: 14px;
  background: #fff;
  height: 40px;
}
.consult_form .top .form_group input {
    max-width: 200px;
}
.consult_form .top .form_group.message_gorm {
    flex: 1;
}

.consult_form .bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.consult_form .bottom .agree_chk span {
    color: #fff;
}
.consult_form .bottom .agree_chk span a {
    text-decoration: underline;
}
.consult_form .bottom .agree_chk input[type="checkbox"]:checked + .custom_check {
    background-color: #fff;
    border-color: var(--main-color);
}
.consult_form .bottom .agree_chk input[type="checkbox"]:checked + .custom_check::after {
    color: var(--main-color);
}
.consult_form .bottom .btn_box .contact_btn {
    padding: 10px 30px;
    background: #FAE100;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'NotoSansKR';
    font-weight: 600;
}

/* 퀵 메뉴*/
.quick_wrap {
    position: fixed;
    z-index: 3;
    right: 0;
    top: 50%;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: translateY(-50%);
}
.quick_wrap .q_con {
    margin-bottom: 5px;
    width: 80px;
    transition: width 0.3s ease;
    overflow: hidden;
    border-radius: 60px 0 0 60px;
}
.quick_wrap .q_con a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100%;; 
}
.quick_wrap .q_con a span {}

.quick_wrap .q_kakao a{
    background: linear-gradient(to bottom, #F5FE7C, #FFD93F);
}
.quick_wrap .q_counsel a {
    background: linear-gradient(to bottom, #56E470, var(--main-color));
    flex-direction: column;
}
.quick_wrap .q_counsel a span {
    font-size: 14px;
    font-family: 500;
    color: #fff;
}
.quick_wrap .q_con:hover {
  width: 100px;
}

/* 모달*/
.modal_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 10;
}
.modalbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    z-index: 11;
    width: 100%;
    max-width: 500px;
    width: calc(100% - 30px);
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    background: #fff;
}
.close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}
.modalbox {
    display: none;
}
/* .modal_cotents {
    background-color: #fff;
    padding: 20px;
} */
.counsel_modal {
    max-width: 500px;
}
.counsel_modal .counsel_form {
    padding: 20px;
    border-radius: 0;
    border: 0;
}
.counsel_modal .counsel_form form .item {
    flex: unset;
}
.counsel_modal .counsel_form form .item .form_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 5px; */
}

.counsel_modal .counsel_form form {
    flex-direction: column;
    gap: 10px;
}
.counsel_modal .counsel_form .form_box input, 
.counsel_modal .counsel_form .form_box textarea {
    /* margin: 0;
    margin-bottom: 10px; */
    margin: 10px 0 15px;
}
.counsel_modal .counsel_form .form_box textarea {
    min-height: 150px;
}
.counsel_modal .counsel_form form .item label {
    font-size: 16px;
}
.counsel_modal .counsel_form .agree_wrap label,
.counsel_modal .counsel_form .agree_wrap .agree_link {
    font-size: 14px;
}
.counsel_modal .counsel_form form .contact_btn {
    padding: 10px 30px;
}




/* 탑 버튼 수정 */
#top_btn {
    color: var(--main-color);
    border-color: var(--main-color);
    background: rgba(255, 255, 255, 0.5);
    bottom: 180px;
    right: calc((100vw - 1000px) / 2* 0.66);
    transition: all 0.3s ease; 
}
#top_btn:hover {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
}