﻿



.wrap>div{
    max-width: unset;
    width: unset;
}


.tag, .s1,.s2,.s5, .s6{
    max-width: 800px;
    margin: 0 auto;
}
.tag{
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1200px) {

    .wrap>div{
        padding: 0;
    }

    .tag_wrap, .s1,.s2,.s5, .s_info>div, .s6 {
        width: 100%;
        padding: 0 1.5rem;
    }
}




/*2. 이심개통 절차 */
.s2 li{
    border-radius: 25px;
    border: 1px solid #EBEBEB;
    padding: 1.5rem 3rem;
}

.s2 li:not(:last-of-type){
    margin-bottom: 1rem;
}

.s2 li .flex{
    justify-content: unset;
    column-gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.s2 li .num{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    font-size: 0.87rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s2 li .flex:first-of-type p{
    color: var(--main-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.s2 li p{
    word-break: keep-all;
}

.how{
    color: var(--g-color);
    text-decoration: underline;
}


@media (max-width:580px){

    .s2 li{
        padding: 1.5rem 2rem;
    }

    .s2 li img:not(.what){
        height: 80px;
    }

    .guide2{
        height: 68px !important;
    }

}

/*휴대폰 정보 확인 방법*/
.info_modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    max-width:500px;
    background: #fff;
    padding: 2rem;
    border-radius: 25px;
    display: none;
}






/*4. 이심 단말기*/
.s3{
    width: 100%;
    background: #F0F8FA;
}

.s3>div{
    max-width: 800px;
    margin: 0 auto;
    border: none;
}

.s3 ul{
    background: #fff;
    border-radius: 25px;
    padding: 2rem 4rem;
    align-items: flex-start;
}

.s3 li{
    display: block;
    width: 49%;
    margin-bottom: 0 !important;
    text-align: center;
}

.s3 li p{
    word-break: keep-all;
}

.s3 li span{
    color: var(--main-color);
}

.s3 li img{
    margin-bottom: 1rem;
    height: 250px;
}

@media (max-width:580px){

    .s3 ul{
        padding: 2rem;
    }

    .s3 li img{
        width: 90%;
        height: auto;
    }

}






/* 5. 활성화 방법 */
.esim5>p{
    text-align: center;
    line-height: 180%;
    font-weight: 600;
}

.tab_btn {
    margin-bottom: 20px;
}

.tab_btn .active{
    color: #000;
}

.tab_btn p {
    cursor: pointer;
    color: #CFC9CC;
    line-height: 200%;
    font-weight: 600;
}


.tab_detail > li {
    display: none; /* 초기화 상태에서 모든 콘텐츠 숨김 - visibility 대신 display 사용 */
}
/* 활성화된 콘텐츠만 표시 */
.tab_detail > li.active {
    display: block;
    position: relative; /* 필요 시 추가 */
    visibility: visible; /* 확실히 표시 */
    opacity: 1;
    transition: none; /* 불필요한 애니메이션 제거 */
}

.tab_menu {
    margin: 2rem auto 1rem;
    display: flex;
    justify-content: space-around;
}
.tab_menu button {
    background-color: #F6F6F6;
    border-radius: 25px;
    width: 30%;
    cursor: pointer;
    padding: 0.8rem 0;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    font-weight: 500;
    color: var(--sub2-color);
}

.tab_menu button.tab_now {
    background:var(--sub2-color);
    color: #fff;
}


.swiper-container {
    margin: 0 auto;
    background: #F6F6F6;
    border: 1px solid #DBDBDB;
    border-radius: 25px;
    padding: 2rem 3rem !important;
    overflow: hidden;
}
.swiper-container.active {
    display: block; /* 활성화된 콘텐츠만 표시 */
}
.swiper-slide {
    text-align: center;
}
.swiper-slide img{
    width: 160px;
}
.swiper-slide p{
    margin-bottom: 1rem;
    line-height: 150%;
    word-break: keep-all;
    height: 45px;
}
/* 스와이퍼 이전/다음 버튼 */
.swiper-button-prev, .swiper-rtl .swiper-button-next,
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    margin-top: 0 !important;
}

.swiper-button-prev, .swiper-button-next {
    color: #7D7D7D;
    transition: background 0.3s ease;
}
.swiper-button-next{
    background-image: url(/common/img/guide/next.svg) !important;
    background: no-repeat;
    
}.swiper-button-prev{
    background-image: url(/common/img/guide/prev.svg) !important;
    background: no-repeat;
}
.swiper-button-next, .swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    background-size: 44px 44px !important;
}

.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}



@media (max-width:480px){

     .swiper-slide p{
        height: auto;
    }

    .swiper-button-next, .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    background-size: 35px 35px !important;
}

}




/* 6. eSIM 활성화 코드 */
.s6>div{
    padding: 45px 1rem;
    background: #F6F6F6;
    border-radius: 30px;
    border: 1px solid #DBDBDB;

    justify-content: center;
    column-gap: 40px;
}
.s6 h4{
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #434343;
}
.s6 p{
    line-height: 135%;
    color: #434343;
}

@media (max-width: 580px) {
    .s6>div{
        display: block;
        text-align: center;
    }
    .s6 h4{
        margin-top: 15px;
    }

}

@media (max-width: 360px) {
    .s6 br{
        display: none;
    }
}


/* 7. 유의사항 */
.esim_info{
    background: #F5F5F5;
    padding: 3rem 0;
}
.esim_info>div{
    width: 1200px;
    height: auto;
    margin: auto;
}
.esim_info>div>div{
    padding: 2rem;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-30px);

}
.esim_info p{
    font-size: 0.93rem;
    line-height: 210%;
    color: #484848;
}

.s_info p{
    word-break: keep-all;
}

@media (max-width:1280px) {
    .esim_info>div{
        width: 94%;
    }
}