@charset "utf-8";

/*-------------------------------------------------
Author : WEB,Seo
Create date : 2025. 01. 17
Last update : 
-------------------------------------------------*/

/* =============== import =============== */
@import url('/resources/css/default/jquery-ui.css');
@import url('/resources/css/default/normalize.css');
@import url('/resources/css/assets/fonts.css');
@import url('/resources/css/assets/mixin.css');
@import url('/resources/css/assets/screen-ui.css');


/* =============== default setting =============== */
html {
    font: 400 10px/1.2 'Pretendard', sans-serif;
    overflow-x: hidden;
}

body {
    font-size: 1.6rem;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-y: initial;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    width: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* 스크롤바 색상 */
    border-radius: 10px;
    /* 스크롤바 둥근 테두리 */
}

/* =============== //default setting =============== */


/* =============== header =============== */

#header {
    position: fixed;
    left: 0;
    top: 3.5rem;
    z-index: 99;
    transition: 0.3s;
}

.header_inner {
    height: 8rem;
    background: var(--white-color);
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.15);
    border-radius: 5rem;
    padding: 0 10rem;
    box-sizing: border-box;
    transition: 0.3s;
}

#header.scroll {
    top: 0;
}

#header.scroll .header_inner {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    width: 100%;
}

.hn_logo img {
    width: 15rem;
    vertical-align: bottom;
}

.hn_logo a {
    font-size: 2.5rem;
    font-weight: 500;
}

.gnb_li {
    overflow: hidden;
    font-weight: 500;
    font-size: 1.8rem;
    position: relative;
}

.gnb_li:hover {
    overflow: unset;
}

.gnb_a {
    border-bottom: 3px solid transparent;
    height: 8rem;
    padding: 0 3.5rem;
    z-index: 1;
    position: relative;
    background: white;
}

.gnb_li.highlight .gnb_a {
    background-color: #FFF7D1;
    color: var(--orange-color);
    font-weight: 800;
    font-size: 3rem;
    padding: 0 4rem;
}

.gnb_li.active .gnb_a,
.gnb_li:hover .gnb_a {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
    opacity: 1;
    font-weight: 600;
}

.gnb_li.highlight:hover .gnb_a {
    color: var(--orange-color);
    font-weight: 800;
    font-size: 3rem;
    border-bottom: 3px solid transparent;
}

.gnb_2ul {
    position: absolute;
    left: 0;
    top: 0;
    background: white;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: -1;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.15);
    padding-top: 0.3rem;
}

.gnb_li:hover .gnb_2ul {
    top: 100%;
    opacity: 1;
}

.gnb_2ul li {
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    font-size: 1.7rem;
}

.gnb_2ul a {
    padding: 1.2rem 1.5rem;
    display: block;
}


/* hamburger */
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    z-index: 9999;
    width: 3rem;
    height: 2.7rem;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background-color: #333;
    border-radius: 0.4rem;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 1.2rem;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.menu-trigger.active-5 span:nth-of-type(1) {
    -webkit-transform: translateY(1.3rem) rotate(-45deg);
    transform: translateY(1.3rem) rotate(-45deg);
}

.menu-trigger.active-5 span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar05 .8s forwards;
    animation: active-menu-bar05 .8s forwards;
}

@-webkit-keyframes active-menu-bar05 {
    100% {
        height: 0;
    }
}

@keyframes active-menu-bar05 {
    100% {
        height: 0;
    }
}

.menu-trigger.active-5 span:nth-of-type(3) {
    -webkit-transform: translateY(-1.1rem) rotate(45deg);
    transform: translateY(-1.1rem) rotate(45deg);
}

/* =============== //header =============== */



/* =============== footer =============== */
#footer {
    background: #1E2534;
    padding: 6rem 0 5rem;
    color: #ccc;
    font-size: 1.4rem;
}

.ft_inner {
    align-items: flex-end;
}

#footer .privacy li a {
    border-right: 1px solid #eee;
    display: block;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    line-height: 0.8;
    color: var(--white-color);
}

#footer .privacy li:last-child a {
    border: 0;
    padding-right: 0;
    margin-right: 0;
}

.quick_closed .quick_inq {
    display: none;
    /* transition 되기 전에 즉시 숨김 */
}

.ft_logo {
    width: 25rem;
    font-weight: 500;
    color: var(--white-color);
}

.ft_info b {
    font-weight: 600;
}

.copyright {
    font-size: 1.3rem;
}

.copyright a {
    border-radius: 5rem;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
}

.ft_right {
    font-size: 2.4rem;
    color: var(--white-color);
}

.ft_right b {
    font-size: 6rem;
    font-weight: 800;
}

/* 빠른 상담 신청 */
.quick_inq {
    height: 8rem;
    background: #C5E2FF;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 97;
    transition: 0.3s;
}

.quick_inq.close {
    bottom: -8rem;
}

.quick_inq.close .quick_close img {
    transform: rotate(180deg);
}

.quick_inner {
    position: relative;
}

.quick_inq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.quick_inq h2 b {
    font-size: 4rem;
    color: #1E8EFF;
    font-weight: 800;
}

.quick_inq .btn {
    background: #1E8EFF!important;
    height: 5rem;
    width: 15rem;
    font-size: 1.7rem;
}

.quick_inq input[type="checkbox"] {
    background: white;
}

.quick_inq input[type="checkbox"]:checked {
    border: none;
    background-image: url(/resources/images/common/ico-check-on.svg);
}

.quick_close {
    position: absolute;
    right: 0rem;
    bottom: 100%;
    width: 4.5rem;
    height: 3rem;
    border-radius: 0.5rem 0.5rem 0 0;
    background: #C5E2FF;
    padding-top: 0.2rem;
}

.quick_close img {
    width: 2rem;
}


/* =============== //footer =============== */



/* =============== main =============== */

/* common */
.main_txt {
    font-size: 5rem;
    font-weight: 800;
}

.main_txt .blue {
    color: var(--main-color);
}

.sub_txt {
    font-size: 3.5rem;
    font-weight: 800;
}

.btn {
    height: 6rem;
    color: white;
    font-size: 2rem;
    border-radius: 1rem;
    background: #333333;
    font-weight: 600;
}

.bg_white {
    background-color: #fff;
}

.bg_yellow {
    background-color: #FFFEEC;
}

.bg_gray {
    background: #F9F9F9;
}

.bg_gray2 {
    background: #eee;
}

.bg_black {
    background-color: #000;
}

.bg_blue {
    background-color: #1E8EFF;
}

.bg_blue {
    background-color: #1E8EFF;
}

.btn.pink {
    background: var(--pink-color);
}

.btn.red {
    background: var(--red-color);
}

.btn.orange {
    background: var(--orange-color);
}

.btn.white {
    background: var(--white-color);
    color: #1a1a1a;
}

.btn.w-17 {
    width: 17rem;
}

/* visual */
.visual {
    width: calc(100% - 2rem);
    height: calc(100vh - 2rem);
    margin: 1rem auto 0;
    border-radius: 3rem;
    background: linear-gradient(270deg, #81FFA7, #26D79C, #2BD6B3);
}

.vis_inner {
    padding-top: 7rem;
    box-sizing: border-box;
}

/* vis_left */
.vis_left {
    align-items: flex-start;
}

.vis_txt {
    color: var(--white-color);
    font-weight: 500;
    position: relative;
    z-index: 0;
    width: 46.5rem;
}

.vis_txt:after {
    content: '';
    position: absolute;
    left: 58%;
    top: 68%;
    height: 69rem;
    width: 72rem;
    transform: translate(-50%, -50%);
    background: url(/resources/images/main/visual_bg.svg) bottom center / contain no-repeat;
    z-index: -1;
}

.v_t_top {
    color: #008150;
    font-size: 2rem;
    font-weight: 600;
}

.v_t_bottom {
    font-size: 4rem;
    font-weight: 700;
}

.vis_txt h2 span {
    font-size: 5rem;
    font-weight: 500;
}

.vis_txt h2 b {
    font-size: 8rem;
    font-weight: 700;
    display: block;
}

.vis_p img {
    width: 40.2rem;
    transform: translate(3rem, 13rem);
}

.vis_event li {
    background: var(--green-color);
    font-size: 2.5rem;
    border-radius: 5rem;
    line-height: 6rem;
}

.vis_pre {
    font-size: 1.9rem;
    font-weight: 600;
}

.vis_pre b {
    font-size: 4rem;
    color: #FFF278;
    font-weight: 800;
    display: inline-block;
    padding: 0 0.5rem;
}

/* vis_right */
.vis_right {
    color: white;
    position: relative;
}

.vis_right:before,
.vis_right:after {
    content: '';
    width: 3.5rem;
    height: 4rem;
    display: block;
    position: absolute;
    left: -5rem;
    top: 8rem;
    background: url(/resources/images/main/twinckle.png) center / cover no-repeat;
}

.vis_right:after {
    left: auto;
    right: 1rem;
    top: 4rem;
}

.vis_right h3 {
    font-size: 5rem;
    font-weight: 600;
    position: relative;
    width: fit-content;
    padding: 0 1rem 0 4rem;
}

.vis_right h3 img {
    width: 7rem;
    position: absolute;
    left: 100%;
    bottom: 0;
}

.vis_right .txt_big {
    font-size: 8rem;
    font-weight: 800;
}

.vis_right span {
    font-size: 2.4rem;
    background: linear-gradient(45deg, #005E3A, #009A53);
    border-radius: 5rem;
    padding: 1.5rem 3.5rem;
    font-weight: 500;
    max-width: 70rem;
    width: 100%;
    text-align: center;
}

/* vis_inq */
.vis_inq {
    width: calc((100% - 3rem) / 2);
    background: var(--white-color);
    border-radius: 3rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
    padding: 5rem;
    box-sizing: border-box;
    border: 1px solid #eee;
}

.v_inq_h p {
    font-size: 1.7rem;
    color: #747474;
}

.req_lab {
    font-size: 1.7rem;
    font-weight: 500;
}

.req_st {
    display: inline-block;
    color: red;
}

.privacy {
    font-weight: 500;
}

.pri_alert {
    color: var(--green-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.pri_cont {
    overflow-y: scroll;
    height: 15rem;
    background: #f9f9f9;
    border: 1px solid #dfdfdf;
    color: #747474;
    padding: 2rem;
    border-radius: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.pri_cont .section+.section {
    padding-top: 10px;
}

.pri_cont b {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
}

.custom {
    padding: 15rem 0;
}

.cus_cont {
    align-items: stretch;
}

.tit_tag {
    background: var(--main-color);
    border-radius: 5rem;
    width: 22.5rem;
    color: white;
    margin: 0 auto;
    height: 5rem;
    font-size: 2rem;
    font-weight: 500;
}

.input_wrap input {
    width: calc(100% - 7rem);
}

.tong img {
    height: 2.5rem;
    width: fit-content;
    display: block;
    margin: 0 auto;
}

/* present */
.present {
    padding: 23rem 0 16rem;
    background: var(--white-color);
    border-radius: 0 0 10rem 10rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
    position: relative;
}

.pre_header {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    z-index: 0;
}

.exp {
    color: #4B4B4B;
    font-size: 1.9rem;
    font-weight: 500;
}

.pre_header:after {
    position: absolute;
    background: url(/resources/images/main/ballen.png) center / contain no-repeat;
    top: 15%;
    left: 54%;
    transform: translate(-50%, -50%);
    content: '';
    width: 73rem;
    height: 25rem;
    z-index: -1;
}

.tag_icon {
    width: 2.3rem;
}

.pre_cont {
    position: relative;
}

.pre_cont:after {
    content: '';
    position: absolute;
    left: -12rem;
    bottom: -5rem;
    width: 19rem;
    height: 20.5rem;
    background: url(/resources/images/main/gift.svg) center / contain no-repeat;
}

/* agency */
.agency {
    width: calc((100% / 3) - 3rem);
    background: #F9F9F9;
    border-radius: 3rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
}

.agency_logo {
    width: 12rem;
}

.ag_top {
    background: var(--white-color);
    border-radius: 3rem;
    padding: 5rem 4rem 3rem;
    box-sizing: border-box;
    border: 1px solid #E9E9E9;
}

.ag_top h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.ag_top p {
    color: #B2B2B2;
    font-size: 1.5rem;
    font-weight: 600;
}

.ag_top li {
    font-size: 1.5rem;
    font-weight: 600;
}

.ag_top li p {
    border: 1px solid #D8D8D8;
    border-radius: 1rem;
    width: 8.5rem;
    height: 8.5rem;
}

.ag_top li img {
    width: 5.2rem;
}

.reg_price {
    color: #B2B2B2;
    font-size: 1.9rem;
    font-weight: 600;
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.ag_price {
    justify-content: flex-end;
    align-items: flex-end;
}

.ag_price h4 {
    color: var(--pink-color);
    font-size: 2.4rem;
    font-weight: 500;
}

.ag_price h4 b {
    font-weight: 800;
    font-size: 3.5rem;
}

.ag_price h4.red {
    color: var(--red-color);
}

.ag_price h4.orange {
    color: var(--orange-color);
}

.sk .ag_price h4 {
    color: var(--orange-color);
}

.agency .btn_wrap {
    width: calc(100% - 8rem);
}

.agency .btn_wrap .btn {
    border-radius: 5rem;
    height: 5rem;
    font-size: 1.8rem;
}

.vat {
    color: #B2B2B2;
    font-size: 1.5rem;
    font-weight: 600;
}

/* new_review */
.new_review {
    padding: 20rem 0 15rem;
}

.nr_header {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    z-index: 0;
}

.nr_header:after {
    position: absolute;
    background: url(/resources/images/main/ballen.png) center / contain no-repeat;
    top: 15%;
    left: 54%;
    transform: translate(-50%, -50%);
    content: '';
    width: 73rem;
    height: 25rem;
    z-index: -1;
}

.nr_header .btn {
    width: 17rem;
    margin: 3rem auto 0;
}

.nr_cont {
    overflow: visible;
}

.re_wr {
    border: 1px solid #CFCFCF;
    border-radius: 1rem;
    padding: 1rem;
    height: 25rem;
    cursor: pointer;
}

.rev_img {
    width: 20rem;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

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

.rev_txt {
    width: calc(100% - 25rem);
    color: #333333;
}

.rev_txt p {
    line-height: 1.3;
}

.rev_txt img {
    width: 10rem;
}

.rev_txt h3 {
    font-size: 2rem;
    font-weight: 600;
}

.nr_cont .swiper-pagination.progressbar {
    height: 0.2rem;
    background: #ddd;
    position: relative;
}

.nr_cont .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #333;
}

/* access */
.access {
    background: #EFF7FF;
    padding: 15rem 0;
}

.acc_header {
    color: var(--white-color);
}

.acc_header .main_txt {
    color: #222;
}

.acc_img {
    width: 31.5rem;
}

.acc_header li {
    background: #00478E;
    padding: 0 2.5rem;
    height: 5rem;
    border-radius: 5rem;
    font-weight: 600;
    font-size: 2rem;
}

.merit {
    width: calc((100% - 15rem) / 3);
}

.merit_txt {
    background: var(--white-color);
    border-radius: 3rem;
    padding: 8rem 3rem 6rem;
    margin-top: -6rem;
    position: relative;
    z-index: 0;
    border: 0.7rem solid #DCE2E8;
    line-height: 1.3;
}

.merit img {
    height: 21rem;
    width: auto;
    position: relative;
    z-index: 1;
}

.merit h3 span {
    font-weight: 700;
    color: var(--main-color);
}

.merit h3 {
    font-size: 3rem;
    font-weight: 700;
}

.merit p {
    color: #777;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.4;
}

.merit p b {
    color: #222;
    font-weight: 700;
}

/* procedure */
.procedure {
    background: #EFEEFF;
    padding: 10rem 0;
}

.proc_header h2 {
    font-size: 4.5rem;
    color: #333333;
    font-weight: 800;
}

.proc_header h2 .small {
    font-size: 3.5rem;
    font-weight: 400;
}

.proc_header p {
    color: #887FFA;
}

.proc_cont {
    width: 23rem;
    aspect-ratio: 1 / 1;
    background: white;
    border: 0.5rem solid #887FFA;
    border-radius: 100%;
    position: relative;
}

.proc_cont:before {
    content: '';
    width: calc(100% + 1rem);
    height: calc(50% + 1rem);
    background: #fff;
    border-top-left-radius: 50rem;
    border-top-right-radius: 50rem;
    display: block;
    position: absolute;
    left: 50%;
    top: -0.6rem;
    transform: translateX(-50%);
}

.proc_cont:nth-child(odd):before {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50rem;
    border-bottom-right-radius: 50rem;
    display: block;
    position: absolute;
    left: 50%;
    top: auto;
    bottom: -0.6rem;
    transform: translateX(-50%);
}

.ico-right {
    background: #887FFA;
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    position: absolute;
    z-index: 2;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
}

.ico-right img {
    width: 2rem;
}

.proc_ind {
    z-index: 1;
    position: relative;
    align-items: center;
    justify-content: center;
}

.proc_ind img {
    height: 7.5rem;
    width: fit-content;
}

.proc_ind h3 {
    color: #4A41C1;
    font-size: 2.2rem;
    font-weight: 600;
}

.proc_ind p {
    font-size: 1.4rem;
    font-weight: 600;
}

/* choose */

.choose {
    padding: 20rem 0;
}

.ch_inner {
    align-items: flex-start;
}

.ch_header {
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    width: calc(100% - 110rem);
}

.ch_cont {
    width: 97rem;
    margin: 0;
}

.ch_slide {
    border-radius: 5rem;
    background: var(--orange-color) url('/resources/images/main/ch_01.png') right bottom / 22rem no-repeat;
    padding: 8rem 5rem;
    box-sizing: border-box;
    color: var(--white-color);
    font-size: 18px;
    height: 65.2rem;
}

.ch_slide .sub_txt {
    min-height: 10rem;
}

.ch_slide .sub_txt span {
    font-size: 2rem;
    font-weight: 500;
}

.ch_slide.purple {
    background: var(--purple-color) url('/resources/images/main/ch_02.png') right bottom / 22rem no-repeat;
}

.ch_slide.green {
    background: var(--light-green) url('/resources/images/main/gift.svg') right bottom / 22rem no-repeat;
}

.ch_slide.yellow {
    background: var(--yellow-color) url('/resources/images/main/ch_02.png') right bottom / 22rem no-repeat;
}

.ch_slide p {
    font-size: 2.5rem;
    font-weight: 600;
}

.ch_price {
    font-size: 2.5rem;
    border: 2px solid var(--white-color);
    border-radius: 1rem;
    height: 7rem;
}

.ch_slide .btn {
    height: 6rem;
    color: var(--orange-color);
    background: var(--white-color);
}

.ch_slide.purple .btn {
    color: var(--purple-color);
}

.ch_slide.green .btn {
    color: var(--light-green);
}

.ch_slide.yellow .btn {
    color: var(--yellow-color);
}

.choose .swiper-button-next,
.choose .swiper-button-prev {
    position: initial;
    margin: 0;
}

.choose .swiper-pagination.progressbar {
    height: 0.2rem;
    background: #ddd;
    position: relative;
}

.swiper-pagination.fraction {
    position: relative;
    font-size: 1.5rem;
}

.choose .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #1a1a1a;
    position: absolute;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

/* current */
.current {
    overflow: hidden;
    background: url(/resources/images/main/current_bg.png) center / cover no-repeat;
}

.current_inner {
    padding: 14rem 0;
}

.cur_header {
    color: var(--white-color);
}

.cur_header img {
    filter: invert(4);
}

.cur_header .exp {
    color: var(--white-color);
}

.cur_cont {
    width: calc((100% - 3rem) / 2);
    background: var(--white-color);
    border-radius: 3rem;
    box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
    padding: 5rem;
    box-sizing: border-box;
    position: relative;
    font-weight: 600;
    border: 1px solid #eee;
}

.cur_cont:after {
    content: '';
    display: block;
    background: url('/resources/images/main/robots.png') center / contain no-repeat;
    right: -10rem;
    bottom: 3rem;
    z-index: 1;
    position: absolute;
    width: 17rem;
    height: 17rem;
}

.table_header {
    font-size: 1.7rem;
    color: var(--white-color);
    background: #222;
    border-radius: 0.5rem;
    padding: 1rem;
    box-sizing: border-box;
}

.table_header {
    font-size: 1.7rem;
    color: var(--white-color);
}

.table_list {
    padding-top: 0.5rem;
}

.table_list li {
    padding: 1rem;
    box-sizing: border-box;
}

/* =============== //main =============== */

/* 통신사 */
.tel-li .tablet .swiper-pagination {
    bottom: 0;
}

.visual_v2 {
    height: unset;
    background: #F8F8F8;
}

.w-430 {
    width: 43rem;
    background-color: #fff;
}

.w-480 {
    width: 48rem;
    min-width: 40rem;
}

.w-655 {
    width: 65.5rem;
}

.cost-wh {
    width: calc(100% - 43rem);
}

.tel-icon {
    width: 2.5rem
}

.tel-icon2 {
    width: 4rem;
    height: 4rem;
}

.tel-icon2 img {
    fill: #363636;
}

.tel-li {
    min-width: 15.2rem;
    height: 6.2rem;
    border-radius: 5rem 0 0 5rem;
    font-weight: 500;
    /* background-color: #fff; */
}

.tel-sele {
    height: 6.2rem;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.tel-sele2 {
    background: #000 url('/resources/images/common/select_arrow2.svg') no-repeat calc(100% - 20px) center/16px auto;
    border-radius: 0 5rem 5rem 0;
    text-align: center;
    /* text-indent: -25%; */
    border-left: 1px solid #676767;
}

.tel-sele2 option {
    color: #000;
    background-color: #fff;
}

.line-1 {
    border-bottom: 1px solid transparent;
    border-image: repeating-linear-gradient(to right,
            #EEE 0 6px,
            transparent 6px 11px);
    border-image-slice: 1;
    border-image-repeat: repeat;
}


.deco_line span {
    position: relative;
    z-index: 1;
}

.deco_line::before {
    content: '';
    position: absolute;
    width: calc(100% + 4rem);
    height: 70%;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #DEEEFF;
    border-radius: 5px;
}

.tel-img {
    position: absolute;
    right: -13rem;
    bottom: -3rem;
}

.ag_top li.__w-list {
    width: 12rem;
    height: 12rem;
}

.ag_top li p.__w-list {
    width: 100%;
    height: 12rem;
}

.icon-wrap {
    width: 25.5rem;
    margin: 0 auto
}

.line-2 {
    border-top: 2px solid #000;
}

.line-3 {
    border-bottom: 1px solid #ccc;
}

.w-3-1 {
    width: calc(100% / 3);
}

.w-4-1 {
    width: calc(100% / 4);
}


.boxing_txt {
    padding: 2rem;
    background: #f9f9f9;
    /* margin-top: 1rem; */
    border-radius: 1rem;
}

.sub-tel .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

.sub-tel .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}


/* sk */

.tel-point {
    color: #F0881B;
}

.tel-btn {
    width: 19rem;
    height: 5rem;
    border-radius: 5rem;
    background-color: #F0881B;
}

.tel-btn.sk {
    color: #fff;
}

/* KT */

.kt .tel-point {
    color: #2F8200;
}

.kt .tel-btn,
.kt .agency .btn_wrap .btn {
    background-color: #2F8200;
    color: white;
}

/* .kt .btn {
    color: #fff !important;
    background-color: #2F8200 !important;
} */


/* LG 유플러스 */

.lgu .tel-point {
    color: #9111AF;
}

.lgu .tel-btn {
    background-color: #9111AF;
}

.lgu .btn {
    color: #fff;
    background-color: #9111AF;
}

/* LG 헬로비전 */

.lg .tel-point {
    color: #FF4773;
}

.lg .tel-btn {
    background-color: #FF4773;
}

.lg .btn {
    color: #fff;
    background-color: #FF4773;
}

/* POP TV */

.pop .tel-point {
    color: #00B7CC;
}

.pop .tel-btn {
    background-color: #00B7CC;
}

.pop .btn {
    color: #fff;
    background-color: #00B7CC;
}


/* 카드 */
.width-3-60 {
    width: calc((100% - (4rem * 2))/3);
}

.width-4-60 {
    width: calc((100% - (4rem * 3))/4);
}

.card-img {
    width: 25rem;
}

.card-img img {
    border-radius: 1rem;
}

.txt-card .br-blue {
    display: inline-block;

}




/* 이벤트 */
.width-4-20 {
    width: calc((100% - (2rem * 3))/4);
}

.sum {
    overflow: hidden;
    height: 25rem;
    border-radius: 1rem 1rem 0 0;
}

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

/* 페이지네이션 */
.paging {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.9rem;
    color: #C0C0C0;
    width: 3rem;
    height: 3rem;
    font-weight: 600;
}

.paging.on {
    color: #fff;
    background-color: #000;
    border-radius: 9999px;
}

.arrow {
    background-color: #f5f5f5;
    border-radius: 9999px;
    color: #b7b7b7;
}

/* 리뷰 후기 */
.icon-best {
    width: 5rem;
}

.rw-list {
    overflow: hidden;
    position: relative;
}

.rw-list:hover {
    border-radius: 16rem 1rem 1rem;
}

.rw-list::before {
    content: '';
    position: absolute;
    right: -100%;
    bottom: 2.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: url('/resources/images/sub/icon-right.svg') center / contain;
    transition: right 0.3s;
}

.rw-list:hover::before {
    right: 2rem;
}

.width-3-25 {
    width: calc((100% - (2.5rem * 2))/3);
}

.sum_v2 {
    width: 16rem;
    height: 16rem;
    border-radius: 1rem;
}

.txt-wrap {
    width: calc(100% - 16rem - 7.5rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-wrap {
    width: 35rem;
    height: 5rem;
    border: 1px solid #A1A1A1;
    border-radius: 3rem;
    margin: 0 0 0 auto;
}

.search-wrap svg {
    vertical-align: bottom;

}

.search_txt {
    width: 26rem;
}

textarea::placeholder,
input::placeholder {
    color: #A1A1A1;
    border: none;
}

select:focus,
input:focus {
    outline: none;
}

textarea:focus {
    outline-color: #1E8EFF;
}


.list-item+.list-item {
    border-bottom: 1px solid #C0C0C0;
}

.th_list {
    border-radius: 1.5rem 1.5rem 0 0;
}

.list-item {
    height: 6rem;
    font-size: 18px;
}

.number-box {
    width: 11rem;
}

.tit-box {
    width: calc(100% - 11rem - 13rem);
}

.date-box {
    width: 13rem;
}

.icon-fix {
    width: 3.5rem;
}

.list-item:not(.th_list):hover {
    background-color: #f9f9f9;
}

/* 뷰페이지 */

.view_pg img {
    width: fit-content;
    max-width: 100%;
}

.view_header {
    /* width: calc(100% - 6rem); */
    width: 100%;
    padding: 3rem;
}

.view-btn {
    padding: 1rem 1.5rem;
    border-radius: 9999px;
}

.__w-txt_box {
    width: 100%;
}

.__w-txt_box2 {
    width: 100%;
}

.view-btn.edit {
    background-color: #C0C0C0;
    color: #fff;
}

/* 댓글 */
.comt_txt {
    line-height: 1.5;
}


/* 글쓰기 */
.write_pg input {
    height: 6rem;
}


/* 썸네일 선택 */
.btn_v2 {
    width: 8.5rem;
    height: 6rem;
}


.btn_v3 {
    width: 25.5rem;
    height: 6rem;
    margin: 0 auto;
}


/* 신청서 폼 */
.apply_pg {
    position: relative;
    top: -10rem;
    border-radius: 6rem;
}

select.tel-select {
    padding: 0 20px;
    text-align: left;
}

.apply-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 6rem;
    border: 1px solid #E1E1E1;
    box-sizing: border-box;
    border-radius: 1.5rem;
    font-size: 1.6rem;
    background-color: #fff;
    font-weight: 600;
    color: #707070;
    text-align: center;
}

.apply-same {
    width: 20rem;
}

input:checked+.apply-btn {
    border-color: #1E8EFF;
    background-color: #f3f9ff;
    color: #1E8EFF;
}

.select-btn {
    width: 20rem;
    min-width: 15rem;
}

.btn-way .apply-btn {
    width: calc((100% - (1rem * 5))/6);
}

.apply_txtarea {
    height: 38rem;
    border: 1px solid #E1E1E1;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
}

.apply_btn {
    margin-bottom: 6rem;
}

fieldset {
    border: 1px solid #E1E1E1;
    padding: 2rem;
    border-radius: 1.5rem;
    color: #999;
}


input.agree_input {
    position: relative;
    width: 2rem;
    height: 2rem;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    border-radius: 9999px;
    font-size: 1.6rem;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .1);
    background: #fff;
}

.agree-btn {
    font-size: 1.3rem;
    font-style: italic;
    color: #666;
    border-bottom: 1px solid #bbb;
}






/* 모달 */

.modal {
    display: none;
}

.modal-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10999;
    max-height: calc(100vh - 30px - 6rem);
    max-width: 65rem;
    width: calc(100% - 30px);
    padding: 2rem;
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.modal_content {
    height: 100%;
    max-height: calc(90vh - 170px);
    overflow-y: scroll;
    overflow-x: clip;

}

.modal_content::-webkit-scrollbar {
    display: none;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0.6;
}

.ham_back {
    display: none;
}


.on .ham_back {
    display: block;
    z-index: -1;
}

.close-btn {
    width: 4rem;
    height: 4rem;
    background-color: #3d3d3d;
    border-radius: 10px;
}

.close-btn2 {
    height: 6rem;
    border: 1px solid #EAEAEA
}


.close-btn:hover .xi-close {
    transform: rotate(180deg);
    transition: all 0.8s;
}




.modal .policy-wrap {
    width: unset;
    height: 50vh;
    overflow-y: scroll;
    padding: 3rem;
    border: 1px solid #e1e1e1;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.modal .policy-wrap1 {
    height: 30vh;
    padding: 1rem;
    margin-top: 10px;
    font-size: 12px;
}

.modal .policy-header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    font-size: 25px;
    border-bottom: 1px solid #999;
    margin-bottom: 20px;
}

.modal .policy-header h1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding-left: 30px;
    box-sizing: border-box;
}

.modal .btn {
    width: 100%;
}

.modal .policy-header h1 em {
    color: #666;
    font-size: 18px;
}

.modal .policy-header h1 b {
    font-weight: 600;
}

.modal .policy-info {
    font-family: Pretendard, sans-serif;
    line-height: 1.5;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
    word-break: keep-all;
}

.modal .section {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.4;
    word-break: keep-all;
}

.modal-tit {
    width: calc(100% - 4rem);
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -.01em;
    text-align: center;
}

.modal h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px;
    padding: 15px 0;
    text-align: center;
    background-color: #f8f8f8;
}



.modal .section ol>li {
    padding-left: 5px;
    list-style: decimal;
    margin: 0 0 20px 20px;
}

.modal .section>p {
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.modal .section ol>li>ol {
    padding-left: 5px;
    margin: 20px 0;
    font-size: 14px;
}

.modal .section ol>li>ol>li {
    list-style: disc;
    margin-bottom: 10px;
}

.review-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFEEC
}

/* * {background: #f8f8f8;} */
.modal1 p {

    font-size: 16px;
    line-height: 1.6;
    white-space: pre-line;
}

.modal1 .policy-wrap {
    word-break: keep-all;
    font-family: Pretendard, sans-serif;
}

.modal1 .policy-header h1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding-left: 30px;
    box-sizing: border-box;
    font-weight: 600;
}

.modal1 .policy-header h1 em {
    color: #666;
    font-size: 18px;
}


.modal1 h2 {
    font-weight: 600;
    font-size: 1.3em;
    padding: 1em 0 0.5em;
}

.modal1 b {
    font-weight: 700;
}



/* 사이트맵 */


.map_gnb {
    position: fixed;
    top: 0;
    left: -100%;
    transition: left 0.5s;
    z-index: 9998;
    height: 100vh;
    background: linear-gradient(180deg, rgba(25, 100, 176, 1) 0%, rgba(33, 112, 191, 1) 7%, rgba(36, 139, 242, 1) 100%);
    color: #fff;
}

.map_gnb i {
    height: 2.5rem;
}

.map_gnb i img {
    height: 100%;
}

.gnb-open .map_gnb {
    transition: left 0.5s;
    left: 0;
}

.gnb-open .menu-trigger span {
    background-color: #fff;
}

.m_logo {
    width: 25rem;
    /* padding: 2rem; */
    border-radius: 999px;
    /* border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 46%); */
}


.site-tit {
    border-bottom: 2px solid #ffffff9e;
    padding: 2rem;
    margin-bottom: 3.5rem;
}

.site-wrap .bg-gray {
    width: 100%
}

.site-wrap {
    gap: 5rem;
    width: 120rem;
    height: 50rem;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 13.8%);
    padding: 3rem 5rem;
    border-radius: 3rem;
}

.map-list a {
    display: block;
    padding: 1rem 0;
    font-size: 2rem;
}

.map-list a:hover {
    background-color: rgba(255, 255, 255, 60%);
    color: #000;
    font-weight: 600;
}

.m_br,
.d_br {
    display: none;
}

.tablet {
    display: none;
}

.present {
    overflow: hidden;
}

.iconbg-h {
    height: 70rem;
}

.iconbg-tel {
    width: 20rem;
}

.iconbg {
    height: 9rem;
}

.boxing_txt .tit {
    display: block;
    padding-bottom: 3px;
}

.iconbg-h2 {
    height: 60rem;
}


/* 달력 */
.calendar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #999;
    margin-left: 20px;
}

.datepicker {
    padding: 0 20px 0 10px;
    height: 100%;
}

.ui-datepicker {
    /* width: auto !important; */
    width: 31rem;
}

.ui-widget.ui-widget-content {
    position: absolute;
    border: 1px solid #eee !important;
    font-size: 1.5rem;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.05);
}

.ui-datepicker .ui-widget-header {
    border: 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.ui-datepicker .ui-datepicker-header {
    padding: 10px 0 !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 50% !important;
    transform: translate(0, -50%);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none !important;
    background-color: #fff !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    color: #666 !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius: 999px;
}



.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    color: #fff !important;
    background-color: #6C93FF !important;
    border-radius: 999px;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 0.3;
}

.ui-datepicker-week-end {
    color: #D56464;
}

.ui-datepicker-calendar>thead>tr>th:last-child {
    color: #6C93FF;
}


.default-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mySwiper2 {
    overflow: unset;
}

.tablet .swiper-pagination {
    bottom: unset;
    padding-top: 5px;
}

.sub-tel .tablet .swiper-pagination {
    bottom: 0;
}

.sub-tel .ag_top {
    text-align: center;
}