* {
    /* outline: 1px solid tomato; */
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);

    transition: 0.3s;
}

#header.on {
    transition: 0.3s;
    background: #fff;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    height: 10rem;
    align-items: center;
}

#header.on .inner {
    height: 8rem;
}

#header .inner h1 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

#header.on .inner h1 {
    color: #444;
}
/*
#header .inner h1 img {
	height: 4rem
}
*/
#header .inner .hon {
	display: none;
}

/*
#header.on .inner .hoff {
   display:  none ;
}
*/

#header.on .inner .hon {
   display:  block ;
}


#header .inner .gnb>ul {
    display: flex;
    gap: 8rem;
    justify-content: space-between;
}

#header .inner .gnb>ul>li {
    position: relative;
    font-size: 20px;
    color: #fff;
}

#header .inner .gnb>ul>li>a {
    display: block;
    line-height: 10rem;
    white-space: nowrap;
}

#header.on .inner .gnb>ul>li>a {
    line-height: 8rem;

}

#header.on .inner .gnb>ul>li {
    color: #444;
    font-weight: 500;
}

#header .inner .gnb>ul>li ul {
    position: absolute;
    top: auto;
    left: 50%;
    width: 20rem;
    background: #fff;
    border: 1px solid var(--line-color);
    transform: translate(-50%, 0);
    border-radius: 0.8rem;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

#header .inner .gnb>ul>li ul li {
    color: #444;
}

#header .inner .gnb>ul>li:hover ul {
    transform: translate(-50%, -1rem);
    opacity: 1;
    visibility: visible;
}

#header .inner .gnb>ul>li ul a {
    display: block;
    line-height: 4.8rem;
    font-size: 1.6rem;
    text-align: center;
}

#header .inner .gnb>ul>li ul .c a {
    line-height: 2.4rem;
    padding: 0.8rem 0;
}

#header .inner .gnb>ul>li ul li a:hover {
    color: var(--mc);
    font-weight: 500;
}

#header .inner .gnb>ul>li ul li~li a {
    border-top: 1px solid var(--line-color);
}

#header .inner .gnb .c {
    line-height: 1.6rem;
}

#header .inner .util {
    display: flex;
    gap: 30px;

    justify-content: end;
}

#header .util li {
    position: relative;
    color: #fff;
}

#header .util>li>a {
    white-space: nowrap;
}

#header.on .util li {
    color: #000;
    font-weight: 500;
}

#header .util>li~li::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: -17px;
    width: 2px;
    height: 2px;
    background: #fff;
}

#header.on .util li~li::before {
    background: #444;
}

#header .inner .util>li ul {
    position: absolute;
    top: 4.8rem;
    left: 50%;
    width: 20rem;
    background: #fff;
    border: 1px solid var(--line-color);
    transform: translate(-50%, 0);
    border-radius: 0.8rem;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

#header .inner .util>li ul li {
    color: #444;
}

#header .inner .util>li:hover ul {
    transform: translate(-50%, -1rem);
    opacity: 1;
    visibility: visible;
}

#header .inner .util>li ul a {
    display: block;
    line-height: 4.8rem;
    font-size: 1.6rem;
    text-align: center;

}

#header .inner .util>li ul li a:hover {
    color: var(--mc);
    font-weight: 700;
}

#header .inner .util>li ul li~li a {
    border-top: 1px solid var(--line-color);
}

#header .mbtn {
    display: none;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    background: var(--line-color) url(../images/menu.svg)no-repeat center center;
}

#header .inner .gnb .m_util {
    display: none;
}

@media (max-width: 768px) {
    #header {
        position: sticky;
        background: var(--white-color);
    }

    #header .inner {
        height: 8rem;
    }

    #header .inner h1 {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translate(0, -50%);
        z-index: 9999;
		 font-size: 2.2rem;
        color: #444;
    }
	
/*
	#header .inner h1 img {
		height: 3.2rem;
	}
*/
	
/*
	#header .inner .hon {
	display: block;
}

#header.on .inner .hoff {
   display:  none ;
}
*/

    .gnb {
        position: fixed;
        flex-direction: column;
        top: 0;
        left: -100%;
        background: #fff;
        z-index: 2;
        height: 100vh;
        padding: 80px 16px;
        width: calc(100% - 10rem);
        transition: left 0.4s;
        border-right: 1px solid var(--line-color);
		        overflow-x: hidden;

    }

    #header .gnb.on {
        left: 0;
    }

    #header .inner .gnb>ul {
        flex-direction: column;
        gap: 0;
    }

    #header .gnb>ul>li {
        position: relative;
    }

    #header .inner .gnb>ul>li>a {
        color: #444;
        line-height: 7.2rem;
        border-bottom: 1px solid var(--line-color);
        font-size: 2rem;
    }

    #header .inner .gnb>ul>li ul {
        display: none;
        position: static;
        transform: translate(0, 0);
        border: none;
        background: var(--bsc);
        width: auto;
        border-radius: unset;
        box-shadow: none;
        opacity: unset;
        visibility: unset;
        display: none;
        transition: unset;
    }

    #header .gnb>ul>li:hover ul {
        display: none;
    }

    #header .gnb>ul>li ul a {

        border-bottom: 1px solid var(--line-color);
    }

    #header .mbtn {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translate(0, -50%);
        display: block;
        background: rgba(20, 49, 113, 0.2) url(../images/menu.svg) no-repeat center center;
        width: 3.6rem;
        height: 3.6rem;
        font-size: 0;
    }

    #header .mbtn.on {
        background: rgba(20, 49, 113, 0.2) url(../images/x.svg) no-repeat center center;
    }

    #header .inner .util {
        display: none;
    }

    #header.on .inner .gnb>ul>li>a {
        line-height: 5.6rem;
    }

    #header .inner .gnb>ul>li:hover>a {
        color: var(--sc);
        font-weight: 600;
    }

    #header .inner .gnb>ul>li:hover ul {
        opacity: unset;
        visibility: unset;
        transform: translate(0, 0);
        display: none;
    }

    #header .inner .gnb .m_util {
        display: block;
    }

}


@media (max-width: 500px) {
    #header .inner h1 {

        font-size: 2rem;

    }
}







/* 비주얼 */

.mainvisual {}

.mainvisual .itm {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.mainvisual .itm::before {
    position: absolute;
    content: "";
    inset: 0 0 0 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);

}

.mainvisual .itm01 .slide-img {
    position: absolute;
    inset: 0 0 0 0;
    background: url(../images/mainvisual01.jpg) no-repeat center center/cover;
}

.mainvisual .itm02 .slide-img {
    position: absolute;
    inset: 0 0 0 0;
    background: url(../images/mainvisual02.jpg) no-repeat center center/cover;
}

.mainvisual .itm03 .slide-img {
    position: absolute;
    inset: 0 0 0 0;
    background: url(../images/mainvisual03.jpg?raaa) no-repeat center center/cover;
}

.mainvisual .itm .slg {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1410px;
    width: 100%;
    transform: translate(-50%, -40%);
    text-align: center;
    z-index: 4;
}


.mainvisual .itm .slg strong {
    display: block;
    font-size: 6.4rem;
    font-weight: 600;
    margin-bottom: 4.8rem;
    line-height: 8rem;
    color: #fff;
    opacity: 0;
    word-break: keep-all;
}

.mainvisual .itm.swiper-slide-active .slg strong {
    opacity: 1;
    transform: translate(0, -50%);
    transition: 1s 0.5s;
}

.mainvisual .itm .slg p {
    font-size: 3rem;
    font-weight: 300;
    line-height: 4rem;
    color: #fff;

    opacity: 0;
}

.mainvisual .itm.swiper-slide-active .slg p {
    opacity: 1;
    transform: translate(0, -50%);
    transition: 2s 0.5s;
}

.mainvisual .arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);

    max-width: 1410px;
    width: 100%;
}

.mainvisual .arrows button {
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    padding: 2.4rem;
    border-radius: 50%;
}

.mainvisual .arrows button img {
    width: 3.2rem;
}

.mainvisual .arrows .prev {
    left: 0;
}

.mainvisual .arrows .next {
    right: 0;
}

.mainvisual .scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    color: #fff;
    transform: translate(-50%, 0);
}

.mainvisual .circle_btn {
    position: absolute;
    bottom: 0rem;
    right: 23rem;
    z-index: 2;
    background: rgba(124, 27, 29, 0.7);
    transform: translate(0, 50%);
}

.mainvisual .circle_btn::before {
    background: var(--mc);
}

@media (max-width: 768px) {

    .mainvisual .itm {
        height: calc(100vh - 80px);
    }

    .mainvisual .itm .slg strong {
        display: block;
        font-size: 6.4rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        line-height: 8rem;
        color: #fff;
        opacity: 0;
        font-size: 3.2rem;
    }

    .mainvisual .itm .slg p {
        font-size: 3rem;
        font-weight: 300;
        line-height: 3.2rem;
        color: #fff;
        padding: 0 5.2rem;
        opacity: 0;
    }

    .mainvisual .itm.swiper-slide-active .slg p {
        opacity: 1;
        transform: translate(0, -50%);
        transition: 2s 0.5s;
    }

    .mainvisual .itm .slg p {
        font-size: 1.8rem;
    }

    .mainvisual .itm .slg p br {
        display: none;
    }

    .mainvisual .arrows button {
        padding: 0.4rem;
    }

    .mainvisual .arrows button img {
        width: 2.4rem;
    }

    .mainvisual .circle_btn {
        right: 2.4rem;  
        width: 9rem;
        height: 9rem;
    }


    .circle_btn img {
        height: 2.8rem;

    }

    .circle_btn::before {
        content: "";
        position: absolute;
        inset: 0 0 0 0;
        width: 9rem;
        height: 9rem;

        border-radius: 50%;
        opacity: 0;
    }

    .circle_btn strong {
        font-size: 1.6rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 500px) {
    .mainvisual .itm .slg strong {
        display: block;
        font-size: 6.4rem;
        font-weight: 600;
        margin-bottom: 3.2rem;
        line-height: 8rem;
        color: #fff;
        opacity: 0;
        font-size: 3.2rem;
    }
	
	.mainvisual .itm .slg .tr {
		line-height: 4.8rem;
		padding-bottom: 1.4rem;
	}

    .mainvisual .itm .slg p {
        font-size: 3rem;
        font-weight: 300;
        line-height: 3.2rem;
        color: #fff;
        padding: 0 5.2rem;
        opacity: 0;
    }

    .mainvisual .itm.swiper-slide-active .slg p {
        opacity: 1;
        transform: translate(0, -50%);
        transition: 2s 0.5s;
    }

    .mainvisual .itm .slg p {
        font-size: 1.8rem;
    }

    .mainvisual .arrows button {
        padding: 0.4rem;
    }

    .mainvisual .arrows button img {
        width: 2rem;
    }
	
	.mainvisual .circle_btn {
        right: 4%;
        width: 8rem;
        height: 8rem;
    }


    .circle_btn img {
        height: 2.4rem;

    }

    .circle_btn::before {
        content: "";
        position: absolute;
        inset: 0 0 0 0;
        width: 8rem;
        height: 8rem;

        border-radius: 50%;
        opacity: 0;
    }

    .circle_btn strong {
        font-size: 1.4rem;
        line-height: 1.4rem;
		padding-bottom: 0.6rem
    }
}





/* 인트로 */

.main_intro {
    padding: 12rem 0 14.8rem 0;
}

.main_intro .title h2 {
    letter-spacing: 1px;

}

.main_intro .title h2,
p {
    text-align: center;
}

.main_intro .inner {
    display: flex;
}

.main_intro .inner>* {
    flex: 1;
}

.main_intro .inner .right ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
}

.main_intro .inner .right ul li {
    display: flex;
    flex-direction: column;
    padding: 3.2rem 4rem 2.8rem 4rem;
}

.main_intro .inner .right ul li strong {
    position: relative;
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.main_intro .inner .right ul li strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 1px;
    background: var(--mc);
    transition: 1s;
}

.main_intro .inner .right ul li:nth-child(2) strong::after {
    background: var(--white-color);
}

.main_intro .inner .right ul li:nth-child(3) strong::after {
    background: var(--white-color);
}

.main_intro .inner .right ul li:nth-child(4) strong::after {
    background: var(--sc);
}

.main_intro .inner .right ul li:hover strong::after {
    width: 100%;
}


.main_intro .inner .right ul li p {
    text-align: left;
    word-break: keep-all;
    min-height: 12rem;
}

.main_intro .inner .right ul li .sh {
    min-height: 2.6rem;
}

.main_intro .inner .right ul li .arrow {
    display: block;
    text-align: end;
    margin-right: 2.4rem;
    transition: 0.4s;
    cursor: pointer;

}

.main_intro .inner .right ul li:hover .arrow {
    text-align: end;
    margin-right: 0;
    transition: 1s;
}

.main_intro .inner .right ul li .arrow i {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.4rem;
    border-radius: 50%;
    font-size: 1.8rem;
}

.main_intro .inner .right ul li .dark i {
    background: rgba(0, 0, 0, 0.1);
}

.main_intro .inner .right ul li:nth-child(1) {
    background: var(--bgc);
}

.main_intro .inner .right ul li:nth-child(2) {
    background: var(--mc);
}

.main_intro .inner .right ul li:nth-child(2) strong {
    color: #fff;
}

.main_intro .inner .right ul li:nth-child(2) p {
    color: #fff;
}

.main_intro .inner .right ul li:nth-child(2) .arrow {
    color: #fff;
}

.main_intro .inner .right ul li:nth-child(3) {
    background: var(--sc);
}

.main_intro .inner .right ul li:nth-child(3) strong {
    color: #fff;
}

.main_intro .inner .right ul li:nth-child(3) p {
    color: #fff;
}

.main_intro .inner .right ul li:nth-child(3) .arrow {
    color: #fff;
}

.main_intro .inner .right ul li:nth-child(4) {
    background: var(--bgc);
}


@media (max-width: 768px) {
    .main_intro {
        padding: 8rem 1.6rem;
    }

    .main_intro .title h2 {
        font-size: 2.4rem;
    }

    .main_intro .title p br {
        display: none;
    }

    .main_intro .inner {
        flex-direction: column;
    }

    .main_intro .inner .right ul li {
        display: flex;
        flex-direction: column;
        padding: 1.6rem;
    }

    .main_intro .inner .right ul li strong {
        font-size: 2rem;
    }

    .main_intro .inner .right ul li p {
        word-break: break-all;
        min-height: 14rem;
    }
}

@media (max-width: 498px) {
    .main_intro .inner .right ul li p {
        word-break: break-all;
        min-height: 18rem;
    }
}

@media (max-width: 443px) {
    .main_intro .inner .right ul li p {
        word-break: break-all;
        min-height: 20rem;
    }

    .main_intro .inner .right ul li strong {
        position: relative;
        display: block;
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

}

@media (max-width: 443px) {
    .main_intro .inner .right ul li p {
        word-break: break-all;
        min-height: 19rem;
    }
	.main_intro .inner .right ul li .sh {
    min-height: 7rem;
}
}



@media (max-width: 370px) {
    .main_intro .inner .right ul li p {
        word-break: break-all;
        min-height: 21rem;
    }
	
		.main_intro .inner .right ul li .sh {
    min-height: 9rem;
			
}
}





/* 메인배너 */

.mainbanner {
    position: relative;
    padding: 6rem;
    background: url(../images/mainvisual03.png) fixed center center/cover;
}

.mainbanner::after {
    position: absolute;
    content: "";
    inset: 0 0 0 0;
    background: rgba(0, 0, 0, 0.4);
}

.mainbanner .title {
    position: relative;
    z-index: 4;
    margin-bottom: 0;
}

.mainbanner h2 {
    text-align: center;
    color: #fff;
}

.mainbanner p {
    color: #fff;

}


.mainbanner .link {
    display: block;
    text-align: center;
}

/* .mainbanner .link a {
    padding: 8px 24px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;

} */


@media (max-width: 768px) {
    .mainbanner {
        padding: 4rem 1.6rem;
    }

    .mainbanner .title {
        position: relative;
        z-index: 4;
        margin-bottom: 0;
    }

    .mainbanner h2 {
        text-align: center;
        color: #fff;
        font-size: 2.4rem;
    }

    .mainbanner p {
        color: #fff;
    }

    /* .mainbanner .link a {
        padding: 8px 24px;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 8px;

    } */
}


@media (max-width: 471px) {
    .mainbanner .title h2 {
        font-size: 2rem;
    }

    .mainbanner .title p {
        font-size: 1.6rem;
    }

}












/* 탭 */

.main_tap {
    position: relative;
    padding: 18rem 0 12rem 0;
}

.main_tap .inner {
    display: flex;
    gap: 10rem;
    justify-content: space-between;
}

.main_tap .inner>* {
    flex: 1;
}

.main_tap .inner .left {}

.main_tap .inner .left .tap_list {
    display: flex;
    border-bottom: 2px solid var(--mc);
    height: auto;
    align-items: center;
}

.main_tap .inner .left .tap_list li~li {
    border-right: 1px solid var(--line-color);
}



.main_tap .inner .left .tap_list {
    display: flex;
    justify-content: space-between;
}

.main_tap .inner .left .tap_list strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 5.6rem;
}

.main_tap .inner .left .tap_list a i {
    font-size: 2rem;
}

.main_tap .inner .left .notice_content li {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.main_tap .inner .left .notice_content a {
    display: block;
    line-height: 5.6rem;
    white-space: nowrap;
    width: calc(100% - 10rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.main_tap .inner .left .notice_content .notice_list {
    display: none;
    /* border-top: 2px solid #000;
    border-bottom: 2px solid #000; */
}

.main_tap .inner .left .notice_content .notice_list.on {
    display: block;
}

.main_tap .inner .left .notice_content .notice_list span {
    margin-left: 8px;
}

.main_tap .inner .left .notice_content .notice_list em {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 5.6rem;
}


.main_tap .inner .middle .tap_list {
    display: flex;
    border-bottom: 2px solid var(--sc);
    height: auto;
    align-items: center;
}

.main_tap .inner .middle .tap_list li~li {
    border-right: 1px solid var(--line-color);
}



.main_tap .inner .middle .tap_list {
    display: flex;
    justify-content: space-between;
}

.main_tap .inner .middle .tap_list strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 5.6rem;
}

.main_tap .inner .middle .tap_list a i {
    font-size: 2rem;
}


.main_tap .inner .middle .notice_content li {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.main_tap .inner .middle .notice_content a {
    display: block;
    line-height: 5.6rem;
    white-space: nowrap;
    width: calc(100% - 10rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.main_tap .inner .middle .notice_content .notice_list {
    display: none;
    /* border-top: 2px solid #000;
    border-bottom: 2px solid #000; */
}

.main_tap .inner .middle .notice_content .notice_list.on {
    display: block;
}

.main_tap .inner .middle .notice_content .notice_list span {
    margin-left: 8px;

}

.main_tap .inner .middle .notice_content .notice_list em {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 5.6rem;
}

.main_tap .inner .right {
    position: relative;
    text-align: end;
    min-width: 0;
}

.main_tap .inner .right::before {
    content: "";
    position: absolute;
    top: -9rem;
    left: -8rem;
    width: 12rem;
    height: 12rem;
    border: 6rem solid rgba(20, 49, 112, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
}

/* .main_tap .inner .right .main_info_slide {
    border-top: 2px solid #000;
} */

.main_tap .inner .right strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.main_tap .inner .right figure {
    position: relative;
}

.main_tap .inner .right img {
/*    width: 360px;*/
	width: 403px;
    height: 343px;
    object-fit: cover;
}

.main_tap .inner .right .dots {
    position: absolute;
    bottom: 0;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.main_tap .inner .right .dots span {
    position: relative;

    height: 8px;
    width: 8px;
    border-radius: 50%;
}

.main_tap .inner .right .dots span.swiper-pagination-bullet-active {
    background: var(--mc);
}

@media(max-width:768px) {
    .main_tap {
        padding: 6.5rem 1.6rem 6.4rem 1.6rem;
    }

    .main_tap .inner {
        flex-direction: column;
    }

    .main_tap .inner {
        display: flex;
        gap: 4.8rem;
        justify-content: space-between;
    }

    .main_tap .inner .middle {
        margin-top: -1.5rem;
    }

    .main_tap .inner .right .dots {
        position: static;
    }
}





/* 포토 */

.main_poto {

    overflow: hidden;
    position: relative;
    padding: 6rem 0;
    background: url(../images/mainpoto_bg01.jpg) center center/cover;
}

.main_poto::after {
    position: absolute;
    content: "";
    inset: 0 0 0 0;
    background: rgba(225, 225, 225, 0.8);

}

.main_poto h2 {
    position: relative;
    text-align: center;
    color: #444;
    margin-bottom: 3.2rem;
    z-index: 4;
}

.main_poto .main_poto_slide {
    position: relative;
    margin: 0 -15px;
    z-index: 3;
}

.main_poto .main_poto_slide .itm {
    margin: 0 1.5rem;
}

.main_poto .main_poto_slide .itm img {
	width: 32rem;
	height: 18rem; 
}

.main_poto .arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);

    max-width: 156rem;
    width: 100%;

}

.main_poto .arrows button {
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.6rem;
    border-radius: 50%;
}

.main_poto .arrows button img {
    width: 3.2rem;
}

.main_poto .arrows .prev {
    left: 8px;
}

.main_poto .arrows .next {
    right: 8px;
}


.main_poto .main_poto_slide .slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.main_poto .main_poto_slide .slick-dots li {
    display: inline-block;
    margin: 0 8px;
}

.main_poto .main_poto_slide .slick-dots li button {
    width: 8px;
    height: 8px;
    text-indent: -9999px;
    background: rgba(20, 49, 113, 0.2);
    font-size: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.main_poto .main_poto_slide .slick-dots li.slick-active button {
    background: var(--sc);
    transform: rotate(15deg);
    transition: 0.5s;
}


@media(max-width: 768px) {

    /* .main_poto {
        padding: 0 1.6rem;
    } */

    .main_poto .main_poto_slide .itm {
        margin: 0 4px;
    }

    .main_poto .arrows button {
        position: absolute;
        background: rgba(0, 0, 0, 0.1);
        padding: 0.4rem;
        border-radius: 50%;
    }

    .main_poto .arrows button img {
        width: 2.8rem;
    }
}






/* 퀵메뉴 */

.quick_menu {
    position: fixed;
    top: 50%;
    right: 3rem;
    transform: translate(0, -50%);
    background: var(--bgc);
    z-index: 999;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
}

.quick_menu strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.4rem 0;
    text-align: center;
    background: var(--mc);
    color: #fff;
}

.quick_menu .menu_list {
    width: 12rem;


}

.quick_menu .menu_list ul li {
    padding: 1.6rem 0;
    border-top: 1px dashed var(--line-color);
}


.quick_menu .menu_list ul li a {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;

}

.quick_menu .menu_list ul li a p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #858585;
}

.quick_menu .menu_list ul li:hover a p {
    color: var(--mc);
    font-weight: 800;
}

.quick_menu .menu_list ul img {
    width: 2em;

}

.quick_menu .to_top {
    text-align: center;
    margin-top: 0.8rem;
    background: var(--sc);
    padding: 1.2rem 0;
}

.quick_menu .to_top:hover {
    background: var(--mc);
}

.quick_menu .to_top button {
    color: #fff;

}

@media (max-width: 768px) {
    .quick_menu {
        display: none;
    }
}




#footer {

    background: var(--sc);
}

#footer ul {
    display: flex;
    gap: 32px;
    justify-content: center;
}

#footer .fs {

    overflow: hidden;
    padding: 16px 0 16px 0;
    background: #fff;
    border-top: 1px solid var(--line-color);
}


#footer .fs .swiper {
    width: 141rem;
    overflow: hidden;
}


#footer .fs .swiper-slide {
    width: auto;
    box-sizing: border-box;

}



#footer .fs .swiper-wrapper {
    transition-timing-function: linear !important;
}


#footer .fs img {
    height: 3.2rem;
}


#footer .ft {
    padding: 2.4rem 0;
}

#footer li {
    position: relative;
    color: #c2c2c2;
    line-height: 32px;
}

#footer li~li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;

    transform: translate(0, -50%);
    width: 2px;
    height: 10px;
    background: rgba(221, 221, 221, 0.3);
}

#footer .ft .b {
    color: #fff;
}

#footer .fb {
    padding: 2.4rem 0;
    border-top: 1px solid rgba(221, 221, 221, 0.2);
}

#footer .fb address {
    text-align: center;
    color: #c2c2c2;
    font-size: 1.4rem;
    margin-top: 1.2rem;
}

#footer .fb .btn {
	  display: block;
    text-align: center;
}
#footer .fb  button {
    margin-top: 16px;
   font-size: 14px;
    color: #ddd;
    border: 1px solid #ddd;
    padding: 4px 16px;
}



@media (max-width: 768px) {
	
	#footer .fs img {
    height: 2.4rem;
}
   
    #footer .ft {
        padding: 1.6rem;
    }

    #footer .ft li {
        font-size: 1.3rem;
    }

    #footer .fb {
        padding: 1.6rem;
    }

    #footer  .addre {
        display: none;
    }

    #footer .fb li {
        font-size: 1.2rem;
    }

    #footer .fb address {
        text-align: center;
        color: #c2c2c2;
        font-size: 1.2rem;
       
    }
	    #footer .fb  button {
        margin-top: 12px;
       font-size: 12px;
        color: #ddd;
        border: 1px solid #ddd;
        padding: 4px 16px;
        margin-bottom: 8px;
    }

}



@media (max-width: 600px) {
	
    #footer .ft li {
        font-size: 1.2rem;
    }
	
#footer .fb {
    padding: 1.6rem 0;
    border-top: 1px solid rgba(221, 221, 221, 0.2);
}
	
}



@media (max-width: 440px) {
    #footer .ft ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    #footer .ft ul li {
        font-size: 1.4rem;
        text-align: center;
    }

    #footer li~li::before {
        display: none;
    }

    #footer .fb ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    #footer .fb ul li {
        font-size: 1.4rem;
        text-align: center;
    }

    #footer li~li::before {
        display: none;
    }

    #footer .fb address {
        line-height: 1.6;
    }


}