html {
    font-size: 10px; color-scheme: light;
}
img {  color-scheme: light;   -webkit-filter: none !important;}

@media (max-width: 1199.98px) {
    html {
        font-size: 8.5px;
    }
}

@media (max-width: 991.98px) {
    html {
        font-size: 8px;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: 7.5px;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 6.5px;
    }
}


/* noStyle */
.bd_none {
    border: none !important;
}

.bt_none {
    border-top: none !important;
}

.bl_none {
    border-left: none !important;
}

.bb_none {
    border-bottom: none !important;
}

.br_none {
    border-right: none !important;
}

.bk_none {
    background: none !important;
}

.mr_auto {
    margin: 0 auto !important;
}

.mr_none {
    margin: 0 !important;
}

.pd_none {
    padding: 0 !important;
}

.bs_none {
    border-radius: 0 !important;
}


.wth100p {
    width: 100% !important;
}

.bd_rd4 {
    border-radius: 0.4rem
}

.bd_rd8 {
    border-radius: 0.8rem
}

.bd_rd10 {
    border-radius: 1rem
}

.bd_rd12 {
    border-radius: 1.2rem
}

.bd_rd14 {
    border-radius: 1.4rem
}

.bd_rd16 {
    border-radius: 1.6rem
}

.bd_rd20 {
    border-radius: 1.8rem
}

.bd_rd25 {
    border-radius: 2rem
}

.bd_rd50p {
    border-radius: 50%;
}

.f_black {
    color: #111
}

.f_yellow {
    color: #D5AA4C
}

.f_white {
    color: #fff;
}

.f_red {
    color: #E9001F;
}

.tcen {
    text-align: center
}

.tleft {
    text-align: left
}

.tright {
    text-align: right
}

.bold {
    font-weight: 700;
}

.bold400 {
    font-weight: 400 !important;
}

.f_gold {

	color:#edca7c;
/*
    background: linear-gradient(90deg, #E0C871 0%, #E2BB66 27.4%, #F2E1A7 54.33%, #E2BB66 75%, #D5AA4C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
*/
}
.f_white{
	color:#fff !important;
}


.bg_yellow {
    background: #FFF9EB
}

.bg_black {
    background: #111
}

@media (prefers-color-scheme: dark) {

}




/***메인***/


.inner {
    width: 1600px;
    margin: 0 auto;
}


.section {
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
}

.section h1 {
    font-size: 10rem;
    font-weight: 700;
    line-height: 1.2;
}

.section h2 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
}

.section h4 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section h5 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
}

.section h6 {
    font-size: 3.4rem;
    font-weight: 700;
}

.section p {
    font-size: 2.4rem;
}


.sect1 {
    color: #fff;
    background: url(/_img/main/sec1_img1.png)no-repeat bottom center #010101;
    padding-top: 15rem;
    height: 1000px;
    background-size: auto 89%;
    ;
}

.s1_container {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.s1_container h1 {}

.s1_container p {
    margin-top: 3rem;
    font-weight: 400;
    font-size: 2.4rem;
}

.s1_container img {
    margin-top: -20rem;
}


.smoke {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    transform: translateX(-50%);
    opacity: 0.6;
    pointer-events: none;
    animation: smokeUp 3s infinite ease-out;
}

@keyframes smokeUp {
    0% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -20px) scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -45px) scale(1.2);
        opacity: 0;
    }
}





.sect2 {
    background: #111;
}

.s2_container {
    background: #D8AF56;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: contain;
    padding: 12rem 0 15rem 0;

}



.video_bg img {
    width: 100%;
}
.sect2 .video_box_wrap{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
	max-width:1300px;
    overflow: hidden;
    z-index: 1;
}

.sect2 .video_box_wrap .videobx {
    position:relative;
	padding-top:56.25%
}


.videobx iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}



/* 텍스트가 도는 영역 */
.loop_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: -9;
}

/* 텍스트 전체 (두 번 반복) */
.loop_inner {
    display: inline-block;
    white-space: nowrap;
    animation: loopMove 30s linear infinite;
}

/* 실제 텍스트 내용 */
.loop_text {

    display: inline-block;
    white-space: nowrap;
    color: #fff;
    mix-blend-mode: normal;
    font-size: 9rem;
    font-weight: 900;
    line-height: 1.2;
    margin-right: 80px;
    /* 단어 사이 간격 */
}

/* 가로로 무한히 도는 애니메이션 */
@keyframes loopMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.s2_container2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-size: auto 100%;
}

.s2_container2 p {
    font-size: 2.4rem;
    font-weight: 700;
}

.s2_container2 .titbx {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 5rem;
}

.s2_container2 .line {
    display: inline-block;
    width: 100px;
    height: 1px;
    background: #fff;
    ;
}

.s2_container2 .inner{
	height:60rem;
	background-position: center;
	background-size:auto 100%;
	background-repeat: no-repeat;
	width:100%;
	max-width:2560px;
}
@media(max-width:1679.98px){
	.s2_container2 .inner{
		height:50rem;
	}
}
@media(max-width:1199.98px){
	.s2_container2 .inner{
		height:40rem;
	}
}
@media(max-width:767.98px){
	.s2_container2 .inner{
		height:auto;
		padding-top:109%;
	}
}


.s2_slide {
    width: 100%;
    overflow: hidden;
}


.s2_slidewrap .page {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.s2_container2 .swiper-pagination {
    font-size: 2.4rem;
    font-weight: 300;
    width: auto;
    position: static;
    z-index: 1000;
}

.s2_card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    background: url(/_img/main/sec2_bg.png)no-repeat center;
    gap: 5rem;
    padding: 15rem 0;
}

.s2_card .inner > div:first-child {
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 5rem;
}

.s2_card .inner > div:first-child p:last-child {
    font-weight: 400;
}

.s2_card .inner > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s2_card .inner > div > img {}


.s2_container2 .swiper-pagination span {
    font-size: 2.4rem;
    color: #fff;
    font-weight: 300;
}

.s2_container2 .swiper-pagination .swiper-pagination-current {
    font-weight: 700;
}

.s2_box2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}





.sect3 {
    padding: 15rem 0 0 0;
    background: #000;
    color: #fff;
}

.s3_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    align-items: center;
    justify-content: center;
    text-align: center
}

.s3_container p {
    font-size: 2rem;
}

.s3_box1 {
    display: flex;
    gap: 2rem;
    width: 100%;
    flex-direction: column;
    width: 100%;
}

.s3_box1 img {
    width: 100%;
}

.s3_box1 > div {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    background: linear-gradient(90deg, #E0C871 0%, #E2BB66 27%, #E2BB66 54%, #F2E1A7 75%, #D5AA4C 100%);
    backdrop-filter: blur(3px);
    color: #111;
    gap: 7rem
}

.s3_box1 .txtbx {
    width: 500px;
}

.s3_box1 p {
    margin-top: 4rem;
}

.s3_box1 > div span:first-child {
    display: inline-block;
    border-radius: 100px;
    border: 2px solid #111111;
    background: #111;
    ;
    padding: 1.2rem 3rem 1rem 3rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.s3_box1 > div:nth-child(2) {
    flex-direction: row-reverse;
}

.line2 {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.20);
    display: inline-block;
}






.sect4 {
    background: #000;
    color: #fff;
}

.s4_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    align-items: center;
}

.s4_box1 {
    position: relative;
    display: flex;
    gap: 2rem;
    width: 100%;
    padding: 15rem 0;
    justify-content: center;
    text-align: center;
}

.s4_box1 .txtbx {
    background: url(/_img/main/sec4_bg.png)no-repeat top center;
    width: 404px;
    height: 379px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 2rem;
}

.s4_box1 .txtbx > p {
    text-align: right;
    width: 100%;
}

.s4_box1 .txtbx h2 {
    font-size: 8rem;
}

.s4_box1 .txtbx h2 span {
    font-size: 13rem;
}

.s4_box1 p {
    font-size: 2.4rem;
}

.s4_box1 > span {
    position: absolute;
}

.s4_bg1 {
    top: 0;
    right: -10rem;
}

.s4_bg2 {
    bottom: 0;
    left: 0;
}

.s4_box1 .txtbx {
    margin-bottom: 7rem;
}

.sect5 {
    padding: 15rem 0;
    color: #111;
    text-align: center;
}

.s5_container {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.s5_box {
    display: flex;
    gap: 7rem;
    width: 100%;
    flex-direction: column;
}

.s5_box > div {
    display: flex;
    width: 100%;
    gap: 2rem;
}

.s5_box .txtbx {
    padding: 3rem 0 6rem 0;
    background: #000;
    color: #fff;
    height: 204px;
    ;
}

.s5_box .txtbx > span {
    border-radius: 100px;
    border: 2px solid #FFF;
    padding: 0 3rem;
    line-height: 3.6rem;
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.s5_box .txtbx p {
    font-size: 2.4rem;
    left: 1.4;
}



/* 기본 박스 스타일 */
.s5_box > div > div {
    position: relative;
    overflow: visible;
}

/* border 대신 가상요소로 애니메이션 처리 */
.s5_box > div > div::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0;
    /* 필요하면 둥글게 수정 가능 */
    pointer-events: none;

    /* 초기 border 숨김 */
    border: 3rem solid transparent;
    box-sizing: border-box;

    animation: borderAnim 6s ease-in-out infinite;
}

/* 순차 딜레이 */
.s5_box > div > div:nth-child(1)::before {
    animation-delay: 0s;
}

.s5_box > div > div:nth-child(2)::before {
    animation-delay: 2s;
}

.s5_box > div > div:nth-child(3)::before {
    animation-delay: 4s;
}

/* border 애니메이션 */
@keyframes borderAnim {

    0%,
    20% {
        border-color: transparent;
    }

    30%,
    50% {
        border-color: #D8AF56;
        /* 원하는 색 */
    }

    60%,
    100% {
        border-color: transparent;
    }
}








.s5_box > div img {
    width: 100%;
}

.s5_box2 {
    display: flex;
    gap: 7rem;
    width: 100%;
    flex-direction: column
}

.s5_box2 .round_box {
    display: flex;
    gap: 3.5rem;
    justify-content: center;
}

.s5_box2 .round_box > div {
    border-radius: 500px;
    background: #111;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s ease-in-out;
}

.s5_box2 .round_box span {
    display: block;
    width: 100%;
    height: 70px;
}

.s5_box2 .round_box > div h6 {
	color:#E0C871;
	/*
    background: linear-gradient(90deg, #E0C871 0%, #E2BB66 27.4%, #F2E1A7 54.33%, #E2BB66 75%, #D5AA4C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}

.s5_r1 {
    background: url(/_img/main/sec5_icon1.png)no-repeat center;
}

.s5_box2 .round_box > div:hover .s5_r1 {
    background: url(/_img/main/sec5_icon1_o.png)no-repeat center;
}


.s5_r2 {
    background: url(/_img/main/sec5_icon2.png)no-repeat center;
}

.s5_box2 .round_box > div:hover .s5_r2 {
    background: url(/_img/main/sec5_icon2_o.png)no-repeat center;
}

.s5_r3 {
    background: url(/_img/main/sec5_icon3.png)no-repeat center;
}

.s5_box2 .round_box > div:hover .s5_r3 {
    background: url(/_img/main/sec5_icon3_o.png)no-repeat center;
}

.s5_box2 .round_box > div:hover {
    background: #F3EBD9;
}

.s5_box2 .round_box > div:hover h6 {
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #111;
    color: #111;
}






.sect6 {
    padding: 15rem 0;
    background: url(/_img/main/sect6_bg.png)no-repeat top center;
    color: #fff;
    background-size: cover;
}

.s6_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.s6_container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.s6_container > span {
    position: absolute;
    top: 6.6rem;
    right: 0;
}

.s6_container > div {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
}

.s6_container > div p {
    font-size: 2.4rem;
}

.s6_container > div:nth-child(2) {
    width: 1600px;
    border: 1px solid rgba(216, 175, 86, 0.20);
    background: linear-gradient(90deg, #E0C871 0%, #E2BB66 27.4%, #F2E1A7 54.33%, #E2BB66 75%, #D5AA4C 100%);
    backdrop-filter: blur(5px);
    padding: 5rem 0;

}

.s6_container > div:nth-child(2) h1 {}

.s6_container > div:nth-child(2) span:last-child {
    font-size: 1.8rem;
    text-align: right;
    max-width: 724px;
    color: rgba(255, 255, 255, 0.70);
    display: block;
    font-weight: 400;
}


.s6_container .lasttxt {
    font-weight: 400;
    font-size: 2.4rem;
}



.sect7 {
    padding: 15rem 0;
}

.s7_container {
    display: flex;
    flex-direction: column;
}

.s7_container > div {
    display: flex;
    flex-direction: row-reverse;
}

.s7_container .titbx {
    margin-bottom: 7rem;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s7_container .titbx > p {
    margin-top: 2rem;
}

.s7_container .inimg {
    margin: 3rem 0 0 0;
    width: 100%;
}

.s7_container .inimg img {
    width: 100%;
}

.s7_container > div:nth-child(even) {
    flex-direction: row;
}

.s7_container .txtbx {
    padding: 0 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: calc(100% - 800px)
}

.s7_container img {}

.s7_container .txtbx > span {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1rem 2rem 0.6rem 2rem;
    border-radius: 100px;
    color: #D8AF56;
    border: 2px solid #D8AF56;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.s7_container .txtbx > div {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.s7_container .txtbx > div > div {
    border: 1px solid #DDD;
    padding: 3rem 0;
}

.s7_container .txtbx > div > div p {
    font-size: 2rem;
}

.s7_container .txtbx > div > div .tit {
    font-weight: 700;
    font-size: 2.4rem;
}


.s7_container .txtbx .fourbx {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}

.s7_container .txtbx .fourbx > div {
    width: calc(50% - 0.5rem);
    padding: 5rem 0;
}

.s7_container .txtbx .fourbx > div img {
    margin: 0 auto;
    margin-bottom: 1rem;
}

.s7_container .txtbx .fourbx > div p {
    font-size: 3.4rem;
}


.sect8 {
    background: #F3EBD9;
    padding: 15rem 0;
    text-align: center;
    color: #111;
}

.s8_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sect8 .txtarea {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 588px;
    align-items: flex-end;
}

.sect8 .txtarea h5 {
    border-bottom: 1px solid #111;
    font-weight: 700;
}

.sect8 .txtarea p {
    font-size: 2.4rem;
    letter-spacing: -0.1rem;
    text-align: right;
}

.sect8 .imgarea {
    margin-top: 7rem;
    display: flex;
}

.sect8 .imgarea > div {
    flex: 1;
    color: #000;
}

.sect8 .imgarea > div:nth-child(2) {
    margin-top: 7rem;
}

.sect8 .imgarea > div p {
    font-size: 2rem;
    padding: 0 2rem;
}

.sect8 .fourbx {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 7rem;
}

.sect8 .fourbx > div {
    width: calc(50% - 0.5rem);
    background: #FFF;
    color: #111;
    box-shadow: 0 6px 2px 0 rgba(0, 0, 0, 0.10);
    padding: 3rem 0;
}

.sect8 .fourbx > div p {
    font-size: 2rem;
    margin-top: 2rem;
}

.s8_slidebox {
    width: 870px;
    overflow: hidden;
    padding: 4rem 1.6rem
}

.s8_slide {}

.s8_slide .swiper-slide {
    position: relative;
    width: 350px;
    height: auto;
    object-fit: cover;
    box-shadow: 10px 20px 30px 0 rgba(0, 0, 0, 0.25);
}

.s8_slide .swiper-slide:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}


.s8_slide .swiper-slide img {
    width: 100%;
}

.s8_slide .swiper-slide-active {
    border: 2px solid #D8AF56;
    transform: scale(1.2);
}

.s8_slide .swiper-slide-active:after {
    display: none;
    ;
}

.s8_slide .swiper-slide-active img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}


.sect9 {
    padding: 15rem 0;
    text-align: center;
    background: linear-gradient(0deg, #CEA753 0%, #CEA753 100%), #F3EBD9;
    color: #111;
}

.s9_container {}

.s9_slidebox {
    margin-top: 7rem;
    position: relative;
}

.s9_slide {
    overflow: hidden;
}

.s9_slidebox .s9_slide .swiper-slide img {
    width: 100%;
}

.s9_slidebox .btnbx {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 40;
}


.s9_slidebox .swiper-button-next,
.s9_slidebox .swiper-button-prev {
    background: none;
    width: 70px;
    height: 70px;
}

.s9_slidebox .swiper-button-next {
    right: -35px;
}

.s9_slidebox .swiper-button-prev {
    left: -35px;
}





.sec10 {
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    max-height: 850px;
}


.s10_container {
    position: relative;
    display: flex;
    width: 100%;
    gap: 36rem
}

.s10_container .txtbx {
    margin-top: 15rem;
}

.s10_container .txtbx > p{
    margin: 2rem 0;
} 

.sec10 .slide-wrap {
    width: 420px;
    position: relative;
    top: 120px;
    left: 180px;


}

.sec10 .slide-wrap .swiper-container {
    overflow: hidden;
}

.sec10 .slide-wrap::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 420px;
    height: 779px;
    background: url(/_img/main/sec9_sl_bg.png) no-repeat top center;
    z-index: 20;
}

.sec10 .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}


.sec10 .slider {
    left: -162px;
    width: 100vw;
    position: absolute;
    bottom: 0;
}
.sec10 .slider img {width: 100%; height: 100%; object-fit: contain; }

.sec10 .slider-container {
    display: flex;
    width: max-content;
    animation: carousel 20s linear infinite;

}



.sec10 .slider-container .slider-content {
    flex: 0 0 auto;
    width: 162px;
    height: auto;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 10px;
    border: 1px solid #DDD;

}

.sec10 .slider-container .slider-content .img {
    width: 100%;
}

.sec10 .slider-container .slider-content .slider-content img {
    width: 100%;
    display: block;
}

@keyframes carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-162px * 5));
    }
}








.sec11 {
    background: #111;
    color: #fff;
}

.s11_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 1000px;
}

.s11_container .txtbx {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.s11_container .txtbx > div {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.s11_container .txtbx > div > div {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.s11_container .txtbx > div > div p {
    font-weight: 600;
}

.s11_container .txtbx > div > div span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    width: 160px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #C89A3D;
    color: #CEA753;
}

.s11_container .txtbx > div > div:first-child span {
    color: #111;
    font-weight: 600;
    background: #C89A3D;
}


.s11_container p {
    font-size: 2.4rem;
}


.s11_bgbox {
    display: flex;
    gap: 2rem;
}

.s11_bgbox > div {
    display: flex;
    flex-direction: column;
}

.s11_bgbox img {
    width: 100%;
}

.s11_bgbox > div img {
    margin-bottom: 10px;
}

.s11_bgbox > div img:last-child {
    margin-bottom: 0;
}

.s11_bg_le img {
    animation: marqueeY 50s infinite linear;
}

.s11_bg_ri img {
    animation: marqueeY 50s infinite linear reverse;
}


@keyframes marqueeY {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(-100%);
    }
}




@media (min-width:2401px) {
    .sec10 .slider {
        bottom:0;
        left: -53.2%;
    }

}





.sec12 {
    padding: 15rem 0;
    background: linear-gradient(90deg, #E0C871 -3.36%, #E2BB66 24.55%, #F2E1A7 52.45%, #E2BB66 74.16%, #D5AA4C 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}


.s12_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    align-items: center;
    justify-content: center;
    text-align: center
}

.s12_container .txtbx p {
    font-size: 2.4rem;
    margin-top: 2rem;
}


.s12_box {
    border-radius: 3rem;
    background: #111;
    color: #fff;
    padding: 7rem 10rem;
    display: flex;
    gap: 7rem;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.s12_box > div {
    position: relative;
    width: calc(50% - 10rem);
    display: flex;
    flex-direction: column;
    gap: 5rem
}

.s12_box > div:first-child:before {
    position: absolute;
    top: 0;
    right: -10rem;
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.10);
}

.s12_box p {
    font-size: 2.4rem;
}

.s12_box h5 {
    font-weight: 700;
}

.s12_box .snsbx {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.s12_box .snsbx p {
    margin-top: 1rem;
}

.s12_box img {
    width: 100%;
}



.sec13 {
    background: url(/_img/main/sec13_bg.png)no-repeat top center;
    background-size: cover;
    ;
    padding: 15rem 0;
    color: #fff;
    text-align: center;
}

.s13_box {
    border-radius: 3rem;
    background: #FFF;
    padding: 7rem 0 7rem 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s13_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    width: 100%;
    justify-content: space-between;
}

.s13_container h2 {
    margin-top: 2rem;
}

.s13_box .txtbx {
    color: #111;
    text-align: left;
    width: 951px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.s13_box .txtbx h5 {
    font-weight: 700;
}

.s13_box .txtbx p {
    font-size: 2.4rem;
}

.s13_box .txtbx > div {
    padding-left: 7rem;
}

.s13_box .txtbx .gdbx {
    border-radius: 10rem 0 0 10rem;
    background: linear-gradient(90deg, #E0C871 0%, #E2BB66 27%, #F2E1A7 54%, #E2BB66 75%, #D5AA4C 100%);
    padding: 2rem 0 2rem 10rem;
}

.s13_box .txtbx span {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.s13_box .txtbx img {
    margin-top: 2rem;
}



.sec14 {
    background: url(/_img/main/sec14_bg.png)no-repeat top center;
    padding: 15rem 0;
    color: #fff;
    text-align: center;
    background-size: cover;
}

.s14_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    width: 100%;
    justify-content: space-between;
}

.s14_container h2 {
    margin-top: 2rem;
}


.sec15 {
    background: #111;
    padding: 15rem 0;
    color: #fff;
    text-align: center;
}

.s15_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    width: 100%;
}

.s15_container .titbox h5 {
    border-bottom: 1px solid #fff;
    font-weight: 700;
    display: inline-block;
    margin: 2rem 0;
}

.s15_container p {
    font-size: 2.4rem;
}

.s15_container h5 {
    font-weight: 600;
}

.s15_box {
    display: flex;
    width: 100%;
    gap: 12rem;
    align-items: center;
}

.s15_box > div {
    width: calc(50% - 6rem);
    text-align: center;
}

.s15_box .woneffect {
    position: relative;
    display: inline-block;
}

.s15_box > div:first-child p {
    border-bottom: 1px solid #fff;
    display: inline-block;
    margin-bottom: 3rem;
}

.s15_box > div:first-child > img {
    position: relative;
    margin-top: -6rem;
    margin-left: 5rem;
}

.s15_box .s15_smbox {
    display: flex;
    flex-direction: column;
    width: 700px;
    gap: 1rem;
}

.s15_box .s15_smbox > div {
    padding: 3rem 10rem;
    border: 1px solid rgba(108, 49, 49, 0.1);
    background: rgba(255, 255, 255, 0.05);
    text-align: left;
    height: 170px;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s15_box .s15_smbox > span {
    font-size: 2rem;
    display: block;
    text-align: right;
}

.s15_box .s15_smbox p {
    font-size: 3.4rem;
    font-weight: 400;
}

.s15_box .s15_smbox .check {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 4rem;
    font-weight: 700;
    color: #D8AF56;
}

.light {
    position: absolute;
    top: -5%;
    left: 25%
}

.light img {
    animation: lightBlink 1.6s ease-in-out infinite;
    display: block;
}

@keyframes lightBlink {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.s15_box .s15_smbox > div:last-child {
    height: auto;
    background: #D8AF56;
    backdrop-filter: blur(3px);
    text-align: center;
    justify-content: center;
    font-weight: 700;
    color: #111;
}

.s15_box2 {
    margin-top: 8rem;
}

.s15_box2 > div:first-child p {
    border-bottom: 1px solid #fff;
    display: inline-block;
    margin-bottom: 3rem;
}

.s15_smbox2 {
    display: flex;
    gap: 5rem;
    appearance: 5rem;
    width: 100%;
    margin-top: 7rem;
}

.s15_smbox2 > div {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    width: 50%;
    padding: 3rem 10rem;
}

.s15_smbox2 > div > span {
    border-radius: 100px;
    padding: 1rem 3rem 0.6rem 3rem;
    border: 2px solid #D8AF56;
    display: inline-block;
    font-size: 2rem;
    color: #D8AF56;
    font-weight: 600;
    margin-bottom: 2rem;
}


.wh_box {
    background: #fff;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    color: #111;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
}

.wh_box > div {
    border-bottom: 1px solid rgba(17, 17, 17, 0.20);
    padding: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.wh_box > div:last-child {
    border-bottom: none;
}







.sec16 {
    position: relative;
    background: #D8AF56;
    padding: 15rem 0;
    color: #111;
    text-align: center;
}

.s16_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    width: 100%;
}

.s16_container p {
    font-size: 2.4rem;
}

.sec16 > span {
    position: absolute;
    top: 7%;
    right: -7%;
    z-index: 4;
    ;
}

.stepwrap {}

.stepbox {
    display: flex;
}

.stepbox > div {
    height: 342px;
    position: relative;
    flex: 1;
    padding: 6rem 0;
    display: flex;
    gap: 2rem;
    background: #fff;
    border: 1px solid #ddd;
    flex-direction: column;
}

.stepbox > div span {
    color: #D8AF56;
    font-size: 2rem;
    font-weight: 500;
}

.stepbox > div p {
    font-size: 2rem;
}

.stepbox > div:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2rem;
    z-index: 10;
    content: '';
    display: block;
    background: url(/_img/main/sect16_arrow.png)no-repeat center;
    width: 40px;
    height: 40px;
}

.stepbox > div:last-child:after {
    left: 50%;
    bottom: -2rem;
    top: auto;
    transform: translateX(-50%) translateY(0) rotate(90deg);
}

.stepbox:first-child {
    position: relative;
    z-index: 3;
}

.stepbox:nth-child(2) > div:after {
    transform: translateY(-50%) rotate(180deg);
}

.stepbox:nth-child(2) > div:last-child:after {
    display: none;
}

.stepbox .eightbx {
    background: #111;
    color: #fff;
}

.stepweb {
    display: flex;
}

.stepmob {
    display: none;
}


.sec17 {
    padding: 15rem 0;
    color: #111;
    text-align: center;
}

.s17_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.tblwrap {
    width: 100%;
    overflow-x: auto;
}

.tblwrap table {
    width: 100%;
    border-left: 1px solid #ddd;
    min-width: 600px;
    border-collapse: collapse;
}

.tblwrap table th {
    padding: 1.6rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    background: #D8AF56;
    color: #111;
    font-weight: 600;
    font-size: 2rem;
}

.tblwrap table td {
    padding: 1.6rem 2rem;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 2rem;
    height: 100px;
    vertical-align: middle;
}

.tblwrap > div {
    margin-top: 2rem;
}

.tblwrap > div p {
    font-size: 1.8rem;
    text-align: left;
}



.sec18 {
    padding: 15rem 0;
    text-align: center;
    background: url(/_img/main/sect18_bg.png);
    color: #fff;
    background-size: cover;
}

.s18_container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
}



.wth100p {
    width: 100% !important;
}




.s18_formwrap {
    width: 1000px;
    margin: 0 auto;
    padding: 5rem 10rem;
    text-align: left;
    background: #111;
    box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.10);
}

.s18_formwrap .tit {
    font-weight: 700;
    font-size: 2.4rem;
}

.s18_formbx {

    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.s18_formbx > div {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}


.s18_formbx > div p {
    font-size: 2rem;
    ;

}

.s18_formbx > div span {
    font-size: 1.8rem
}

.s18_formbx > div > div {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 260px;
    gap: 0.6rem
}



.s18_formbx input {
    width: 100%;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    font-size: 2rem;
    height: 5.8rem;
    width: 260px;
    background: #111;
    ;
    color: #Fff;
}

.s18_formbx select {
    padding: 1.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    font-size: 2rem;
    width: 260px;
    font-size: 1.8rem;
    height: 5.8rem;
    background: #111;
    ;
    color: #Fff;
}

.s18_formbx textarea {
    height: 20rem;
    resize: none;
    padding: 1.2rem 2rem;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.20);
    font-size: 1.8rem;
    background: #111;
    ;
    color: #Fff;
}


.s18_formbx .namebx span {
    width: 456px;
}

.s18_formbx .emailbx span {
    width: 300px;
}

.s18_formbx .telbx > div {
    gap: 11px;
}

.s18_formbx .telbx span {
    width: 300px;
}

.s18_formbx .hopebx span {
    width: 300px;
}

.pesonal_ok {
    padding: 2rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* The container */
.agree {
    display: block;
    position: relative;
    padding-left: 3.2rem;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 2.4rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
}

/* Hide the browser's default checkbox */
.agree input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 2.4rem;
    width: 2.4rem;
    border-radius: 3px;
    background-color: #eee;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* On mouse-over, add a grey background color */
.agree:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.agree input:checked ~ .checkmark {
    background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.agree input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.agree .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width:1.8rem;
    height: 1.8rem;
    background: url(../_img/main/wh_checkbox.svg)no-repeat center; 
    ;
    background-size: contain;
}


.per_btn {
    border-radius: 4px;
    padding: 0 3.2rem;
    line-height: 3rem;
    font-size: 1.4rem;
    border: 1px solid #CCC;
    background: transparent;
    color: #fff;
	position: relative;
    z-index: 999;
}


.s18_formwrap .btnbx {
    text-align: center;
    margin-top: 2rem;
}

.que_btn {
    width: 100%;
    padding: 0 10rem;
    line-height: 6.9rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
    background: #D8AF56;
    border: 0;
}






/*셀렉박스커스텀*/
.custom-selectbox {
    position: relative;
    width: 100%;
    display: inline-block;

}

.custom-selectbox select {
    /*display: none;*/
}

.select-selected {}

/*style the arrow inside the select element:*/
.select-selected:after {

    position: absolute;
    content: "";
    width: 5.6rem;
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    ;
    top: 1px;
    right: 1px;

    ;
    content: '\e941';
    font-family: xeicon;
}

/*
.select-selected.select-arrow-active:after {
border-color: transparent transparent #fff transparent;
top: 7px;
}*/

/*style the items (options), including the selected item:*/

.select-selected {
    color: #fff;
    line-height: 5.6rem;

    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 0 10px;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    ;
    background: #111;
    font-size: 1.8rem;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.20);
    top: 105%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 295px;
    overflow-y: auto;
}

.select-items div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    ;
    line-height: 5.8rem;
    padding: 0 10px;
}

.select-items div:last-child {
    border-bottom: 0;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}



.footerArea {
    padding: 7rem 0;
    margin-bottom: 118px;
}

.footer_container .logo {
    width: 250px;
}

.footer_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_container .infobx {
    display: flex;
    gap: 1rem 3rem;
    flex-wrap: wrap;
    width: 860px;
}

.footer_container .infobx > span {
    margin-top: 3rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.footer_container p {
    font-size: 1.7rem;
    color: #444
}

.footer_container a {
    font-size: 1.7rem;
    color: #444
}

.footer_container p > span {
    margin-right: 1rem;
}

.footer_container .snsbx {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer_container .snsbx > div {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
    align-items: center;
    ;
}

.footer_container .snsbx button {
    border: 1px solid rgba(17, 17, 17, 0.20);
    color: #111;
    width: 100%;
    padding: 0 2rem;
    line-height: 5.8rem;
    font-size: 1.8rem;
    text-align: left;
    display: inline-block;
    background: url(/_img/main/down_btn.svg)no-repeat 210px center;
}




.quickArea {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    background: #111111;
    color: #fff;
    z-index: 100;
}

.quick_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chicken {
    position: absolute;
    bottom: 3rem;
    left: 5rem;
}


.quick_container p {
    font-size: 2.4rem;
    font-weight: 700;
}

.quick_container > button {
    height: 54px;
    padding: 1.2rem 3rem;
    text-align: center;
    background: #D8AF56;
    color: #000;
    font-weight: 600;
    font-size: 1.8rem;
}


.quick_container .s18_formbx select {
    width: 220px;
}

.quick_container .s18_formbx input {
    width: 220px;
}

.quick_container .s18_formbx > div {
    align-items: center;
}

.quick_container .s18_formbx > div > div {
    width: 220px;
}

.quick_container .s18_formbx .pesonal_ok {
    padding: 0;
}


.quick_container .select-items {
    top: auto;
    bottom: 105%;
}

.mobile {
    display: none;
    ;
}




.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 1200px;
    padding: 7em 4.5rem 4.5rem 4.5rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-box h5 {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    ;
}

.close-btn {
    width: 50px;
    height: 50px;
    background: url(/_img/main/modal_close_btn.svg)no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}


.close-btn {}

.modal_txtbx {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
}

.modal_btn {
    padding: 10px 20px;
    background-color: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}




.familyWrap {
    position: relative;
}

.familyBox {
    display: none;
    position: absolute;
    bottom: 102%;
    left: 0;
    width: 250px;
    border: 1px solid rgba(17, 17, 17, 0.20);
    overflow-y: auto;
    z-index: 10;
    background: #fff;
}

.familyBox a {
    padding: 1.5rem 0;
    display: block;
    text-align: center;
    color: #111;
    border-bottom: 1px solid rgba(17, 17, 17, 0.20);
    font-size: 1.6rem;
    cursor: pointer;
}

.familyBox a:hover {
    font-weight: 700;
}

.familyBox a:last-child {
    border-bottom: 0;
}





/*반응형*/

@media (max-width: 1600px) {

    .inner {
        width: 100%;
        padding: 0 3%;
    }


    .s2_container {
        padding: 12rem 2% 15rem 2%;
    }
/*
    .videobx {
        width: 960px;
        height: 540px;
    }
*/
    .s2_container2 {}


    .s4_box1 > span {
        width: 40vw;
    }

    .s4_box1 > span img {
        width: 100%;
    }

    .s5_box2 .round_box {
        flex-wrap: wrap;
    }

    .s6_container > div:nth-child(2) {
        width: 100%;
        padding: 5rem 2rem;
    }

    .s7_container > div > span {
        width: 50%;
    }

    .s7_container > div > span img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .s7_container .txtbx {
        width: 50%;
    }


    .s8_container {
        flex-direction: column;
        gap: 7rem
    }

    .s8_slidebox {
        width: 100%;
    }

    .sect8 .txtarea {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .sect8 .txtarea p {
        text-align: center;
    }




    .s13_box > span img {
        width: 100%;
    }

    .quick_container {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        padding-left: 50px;
    }

    .chicken {
        top: 20%;
        left: 20px;
        bottom: auto;
    }
}

@media (max-width: 1200px) {
    section {}

    .s1_container h1 {
        width: 100%;
        text-align: center !important
    }

    .s2_card .inner > div {
        flex-direction: column;
        gap: 2rem;
    }

    .s2_card .inner > div:first-child {
        flex-direction: row;
        justify-content: center !important;
    }

    .s7_container .txtbx {
        padding: 3rem 5rem;
    }


    .s10_container {
        gap: 0;
        justify-content: space-between;
    }

    .sec10 .slide-wrap {
        left: 0;
    }

    .sec11 {
        padding: 15rem 0 0 0;
    }

    .s11_container {
        flex-direction: column;
    }

    .s11_container .txtbx {
        width: 100%;
        align-items: center;
        margin-bottom: 4rem;
        text-align: center;
    }



    .s11_bg_le img,
    .s11_bg_ri img {
        animation-name: marqueeYMobile;
    }

    @keyframes marqueeYMobile {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-100%);
        }
    }




    .s11_bgbox {
        overflow: hidden;
    }

    .stepbox > div {
        height: 294px;
    }

    .sec16 > span {
        width: 26vw;
    }

    .sec16 > span img {
        width: 100%;
    }


    .s18_formwrap {
        width: 100%;
    }


    .footerArea {
        margin-bottom: 209px;
    }

    .footer_container {
        gap: 2rem;
    }

    .footer_container .infobx {
        width: calc(100% - 650px);
    }

    .footer_container .infobx > span {
        width: 100%;
    }

    .modal-box {
        width: 94%;
        padding: 5rem 2rem 2rem 2rem;
    }

}

@media (max-width: 960px) {

    .sect1 {
        height: 600px;
    }

    .s1_container p {
        word-break: keep-all;
    }

    .s1_container span img {
        width: 100%;
    }

    .s2_container {
    }



/*
    .videobx {
        width: 600px;
        height: 337.5px;
    }
*/





    .s3_container {
        flex-direction: column;
    }

    .s3_container > span {
        width: 100%;
    }

    .s3_container > span {
        height: 20vh;
        object-fit: contain;
    }

    .s3_container > div {
        width: 100%;
    }


    .s3_box1 {
        flex-direction: column;
        padding: 0 2%;
    }

    .s4_box2 {
        padding: 0 2%;
    }

    .s7_container > div {
        flex-direction: column;
    }

    .s7_container > div > span {
        width: 100%;
    }

    .s7_container .txtbx {
        width: 100%;
        padding: 3rem 0;
    }

    .s7_container > div:nth-child(even) {
        flex-direction: column;
    }

    .s7_container .txtbx .fourbx > div p {
        font-size: 2rem;
    }


    .s9_slidebox .swiper-button-next,
    .s9_slidebox .swiper-button-prev {
        background: none;
        width: 40px;
        height: 40px;
    }

    .s9_slidebox .swiper-button-next img,
    .s9_slidebox .swiper-button-prev img {
        width: 100%;
    }


    .s9_slidebox .swiper-button-next {
        right: -4px;
    }

    .s9_slidebox .swiper-button-prev {
        left: -4px;
    }


    .s11_container {
        flex-direction: column;
        position: relative;
        height: 600px;
    }



    .s13_box {
        padding: 4rem 0 4rem 5rem
    }

    .s13_box img {
        width: 100%;
    }


    .s15_box {
        flex-direction: column;
        gap: 7rem
    }

    .s15_box > div {
        width: 100% !important;
    }

    .s15_box > div:first-child img {
        width: 100%;
        margin-top: -0;
        margin-left: 3rem;
    }

    .s15_container .titbox h5 {
        border-bottom: 0;
    }

    .s15_box .s15_smbox > div {
        height: auto;
        padding: 3rem;
    }

    .s15_box2 > div:first-child p {
        border-bottom: 0;
    }

    .s15_container p {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .s15_smbox2 {
        flex-direction: column;
    }

    .s15_smbox2 > div {
        width: 100%;
        ;
        padding: 3rem;
    }


    .stepwrap h6 {
        font-size: 3rem;
    }

    .stepbox > div:after {
        width: 30px;
        height: 30px;
        background-size: contain;
    }


    .sec18 {}

    .s18_formwrap {
        padding: 4rem 3rem
    }

    .s18_formbx > div > div {
        width: 33.3%;
    }

    .s18_formbx input {
        width: 100%;
    }

    .s18_formbx select {
        width: 100%;
    }




    .footer_container {
        flex-direction: column;
    }

    .footer_container .infobx {
        width: 100%;
        justify-content: center;
    }

    .footer_container .snsbx {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .footer_container .infobx > span {
        text-align: center;
    }

    .footer_container .snsbx button {
        width: 200px;
        background-position: 160px center;
    }

    .familyBox {
        width: 200px;
    }

    .s18_formbx > div {
        width: 100%;
    }

    .quick_container {
        padding-left: 140px;
        align-items: flex-start;
    }

    .quick_container .s18_formbx input {
        width: 100%;
    }

    .quick_container .s18_formbx select {
        width: 100%;
    }

    .quick_container .s18_formbx > div > div {
        width: 25%;
    }

    .quick_container > button {
        width: 100%;
        font-size: 2.4rem;
    }




    @media (max-width: 768px) {

        .s1_container {
            padding: 0 2rem;
        }

        .s2_card .inner > div > img {
            width: 100%;
        }

        .s3_box1 > div {
            flex-direction: column;
            gap: 2rem;
        }

        .s3_box1 > div:nth-child(2) {
            flex-direction: column
        }

        .s3_box1 .txtbx {
            width: 100%;
        }

        .s3_box1 img {
            width: 100%;
        }

        .s5_box > div {
            flex-direction: column;
            ;
        }

        .s5_box > div > div {
            width: 100%;
        }

        .s5_box .txtbx {
            height: auto;
        }

        .sec10 {
            max-height: 100%;
            ;
        }

        .s10_container {
            flex-direction: column-reverse;
        }

        .s10_container .txtbx {
            text-align: center;
        }

        .sec10 .slide-wrap {
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
        }


        .s12_box {
            flex-direction: column;
            padding: 5rem 3rem;
        }

        .s12_box > div {
            width: 100%;
        }

        .s12_box p {
            font-size: 1.8rem;
        }

        .s12_box > div:first-child:before {
            top: auto;
            bottom: -4rem;
            left: 0;
            right: 0;
            width: 100%;
            height: 1px;
        }

        .s13_box {
            flex-direction: column;
        }

        .s13_box .txtbx {
            width: 100%;
            text-align: center;
        }

        .s13_box .txtbx .gdbx {
            border-radius: 10rem;
            padding: 2rem 0;
            text-align: center;
        }

        .s13_box {
            padding: 4rem;
            text-align: center;
            gap: 5rem;
        }

        .s13_box .txtbx > div {
            padding-left: 0;
        }


        .stepbox {
            flex-wrap: wrap;
            width: 100%;
        }

        .stepbox > div {
            width: 50%;
            height: auto;
            flex: auto;
        }

        .stepbox > div:after {
            display: none;
        }

        .sec16 > span {
            display: none;
        }

        .mobile {
            display: block;
        }

    }

    .s16_container > div > span {
        margin-top: 2rem
    }

    .s16_container > div > span img {
        width: 80%;
        margin: 0 auto;
    }



    .stepweb {
        display: none;
    }

    .stepmob {
        display: flex;
    }

}

@media (max-width: 600px) {

    .section h1 {
        font-size: 7.5rem;
    }

    .section h2 {
        font-size: 4rem;
    }

    .section h5 {
        font-size: 3rem;
    }




    .s2_container {
		padding:8rem 15px 8rem 15px;
    }
	.sect2 .video_box_wrap {
		position: relative;
		top: auto;
		left: auto;
		transform: unset;
		width: 100%;
		max-width: 1300px;
		overflow: hidden;
		z-index: 1;
	}



    .s3_container p {
        font-size: 2.4rem;
    }



    .s4_box1 {}

    .s4_box1 .txtbx h2 {
        font-size: 6rem;
    }

    .s4_box1 .txtbx h2 span {
        font-size: 15rem;
    }

    .s4_box1 .txtbx {
        width: 250px;
        height: 250px;
        margin: 0 auto;
        background-size: contain;
    }

    .s4_box1 > div {
        width: 100%;
        padding: 2rem;
        position: relative;
        z-index: 3;
    }

    .s4_box1 .txtbx > p {
        text-align: center;
    }

    .s4_box1 > span {
        width: 60vw;
        z-index: 1;
    }

    .s4_bg1 {
        top: -4rem
    }

    .s5_box2 .round_box > div {
        width: 300px;
        height: 300px;
    }

    .s6_container > div:nth-child(2) span {
        text-align: center;
        ;
    }


    .s8_slide .swiper-slide-active img {
        transform: scale(1);
        opacity: 1;
    }

    .sect9 .inner {
        padding: 0;
    }

    .s9_slidebox .swiper-button-prev {
        left: 0;
    }

    .s9_slidebox .swiper-button-next {
        right: 0;
    }

    .sec10 .slide-wrap {
        width: 280px;
        top: auto;
        bottom: -66px;
    }

    .sec10 .slide-wrap::after {
        width: 280px;
        background-size: contain;
    }

    .s16_container {
        gap: 4rem;
    }

    .quick_container {
        padding-left: 0;
    }

    .chicken {
        width: 60px;
        height: auto;
        left: auto;
        right: 2rem;
        top: -3rem;
    }

    .chicken img {
        width: 100%;
    }

    .quick_container .s18_formbx > div {
        flex-wrap: wrap;
        gap: 14px
    }

    .quick_container .s18_formbx > div > div {
        width: calc(33.3% - 10px);
    }

    .quick_container .s18_formbx > div > div.pesonal_ok {
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
        ;
    }

    .light {
        top: -26%;
        left: 17%;

    }

    .s7_container .txtbx > div > div {
        padding: 3rem;
    }

    .stepbox > div {
        padding: 4rem 1rem;
    }



    .sec11 {
        padding-bottom: 0;
    }

    .s11_bgbox {
        width: 100%;
    }




    .s5_box2 .round_box {}

    .s5_box2 .round_box {
        gap: 1rem;
    }

    .s5_box2 .round_box > div {
        width: 100%;
        height: auto;
        border-radius: 25px;
        ;
        padding: 3rem 0;
        flex-direction: row;
    }

    .s5_box2 .round_box span {
        width: 60px;
        height: 40px;
        background-size: contain;
    }


    .s5_box2 .round_box > div:hover .s5_r1 {
        background-size: contain;
    }


    .s5_box2 .round_box > div:hover .s5_r2 {
        background-size: contain;
    }

    .s5_box2 .round_box > div:hover .s5_r3 {
        background-size: contain;
    }

    .video_bg {
        display: none;
    }

    .s6_container .lasttxt {
        font-size: 2rem;
    }

    .s11_container .txtbx > div > div {
        justify-content: center;
    }

    .s11_container .txtbx > div > div:first-child span {
        font-size: 2.4rem;
        width: 100px;
        height: 36px;
    }

    .s11_container .txtbx {
        padding-bottom: 4rem;
    }

    .s11_container .txtbx > div > div span {
        font-size: 2.4rem;
        width: 100px;
        height: 36px;
    }

    .s11_container .txtbx > div > div p {
        font-size: 3.6rem;
    }

    .s3_box1 img {
        width: 80%;
        margin: 0 auto;
    }
}



@media (max-width: 390px) {
.footer_container .snsbx {flex-direction: column; ;}
.footerArea {
        margin-bottom: 207px;
    }
    .agree {line-height: 3rem; }
} 



.store-status-section{padding: 130px 20px;text-align:center;color:white;background: #000 url('../_img/main/store_bg.webp') no-repeat bottom;background-size: cover;}
.status-title{margin-bottom:30px}
.counter-display{display:flex;justify-content:center;align-items:center;margin-bottom: 80px;}

.digit{font-size:6em; font-weight:bold; color:#1c1c1c;  background: linear-gradient(to bottom, #666666, #f0f0f0, #666666);  padding: 10px 17px; margin:0 5px;  border-radius:10px;   box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7), inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -2px -2px 5px rgba(0, 0, 0, 0.3); text-align:center;}
.count-unit{font-size:2.5em;font-weight:bold;color:white;margin-left:10px;padding-top:10px}

.store-list-container{margin:30px 210px;max-width:100%;}
.store-list{display:flex;flex-wrap: wrap;flex-direction: row;justify-content: center;}

.store-column{display:flex;flex-direction: row;gap: 1px;box-sizing: border-box;width: 100%;flex-wrap: wrap;}
.store-column:last-child{border-right:none}

.store-item{display: flex;justify-content: space-between;padding: 17px 17px;font-size: 17px;white-space:nowrap;/* width: 67%; */background: linear-gradient(90deg, #E0C871 0%, #E2BB66 27%, #E2BB66 54%, #F2E1A7 75%, #D5AA4C 100%);margin: 1px;flex: 0 0 calc((100% - (16px * 3)) / 4);box-sizing: border-box;color: #000;}
.store-item em{font-style:normal;font-weight: 900;}
.store-item:last-child{border-bottom:none}

@media (max-width:1400px){
	.digit{font-size:4em;width:70px}
	.store-list{min-width:100%;}
	.store-item{padding:10px;width:22%;}
	.store-list-container{ margin:30px 40px;}

}

@media (max-width:760px){
	.store-item{width:49%; flex:none;}
	.store-list-container{ margin:30px 0;}
	.store-column{justify-content:center;}
}

@media (max-width:480px){
	.store-list-container{margin:0;}
	.digit{padding:4px; font-size:48px;}
	.store-status-section{40px 20px 50px;}
	
	
}