@charset "utf-8";

.supp_sec1 .supp_box p:nth-child(2) {margin-top:1rem}
.supp_conts {
    margin: 5rem 0;
}
.supp_conts h4 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 1rem;
    position:relative;
    display: inline-block;
}
.supp_conts h4:after{
    content:"";
    position:absolute;
    display: block;
    width: 10px;
    height: 10px;
    background-color:var(--color-main);
    border-radius:50%;
    top: 3px;
    right: -12px;
}
.supp_conts ul {}
.supp_conts ul li {margin-bottom:3rem;}
.supp_conts ul li:last-child {margin-bottom:unset}
.supp_conts ul li p{position:relative;padding-left: 1.5rem;}
.supp_conts ul li p:before {
    content:"";
    position:absolute;
    display:inline-block;
    background-color: #666;
    width:10px;
    height:2px;
    left:0;
    top: .8rem;
}
.supp_conts .step {display: flex;width: 100%;justify-content: space-between;}
.supp_conts .step > li {
    display: flex;
    width: 57%;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background-color: #f5f5f5; */
    margin-bottom: 0;
    /* padding: 1rem; */
}
.supp_conts .step > li:first-child {width: 41.5%;}
.supp_conts .step > li div {width:100%;text-align: center;padding-bottom: 1rem;font-weight: 600;color: var(--color-main);border: 1px solid var(--color-main);padding: 1rem 0;border-radius: 10px;margin-bottom: 1rem;}

.supp_conts .step dl {
    /* width: 200px; */
    /* margin-right: 2rem; */
    width: 31.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #fff; */
}
.supp_conts .step dt {
    padding: .5rem 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: var(--color-main);
    border-radius: 10px 10px 0 0;
    position: relative;
}
.supp_conts .step li:last-of-type dl:last-of-type dt {
    border-radius: 10px;
}
.supp_conts .step dt:after {
    content:"\f054";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position:absolute;
    right: -6%;
    color: #888;
}
.supp_conts .step li:last-of-type dl:last-of-type dt:after {display:none;}
.supp_conts .step dd {font-size: 16px;padding: 1rem;width: 100%;background-color: #f5f5f5;border-radius: 0 0 10px 10px;}
.supp_conts .step > li:first-child dl {width: 48%;}

.supp_conts .step .detail {}
.supp_conts .step .detail li {
    margin: 0;
}

/* PC (해상도 ~ 1440px)*/ 
@media only screen and (max-width: 1440px)  {

}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/ 
@media all and (min-width:768px) and (max-width:1024px) {
    .supp_conts .step {
    display: flex;
    flex-wrap: wrap;
}
    .supp_conts .step > li {
    width: 100%;
}
    .supp_conts .step > li:first-child {width: 100%;margin-bottom: 2rem;}

}

/* 모바일 가로, 모바일 세로 (해상도 ~ 767px)*/ 
@media all and (max-width:767px) {
    .supp_conts h4 {font-size: 1.8rem;}
   .supp_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem;
}
    .supp_top p {width:100%;text-align: center;}
    .supp_top img {width:auto;margin-bottom: 2rem;}
    .supp_conts ul li p {word-break:keep-all;padding-left: 1rem;}
    .supp_conts ul li p:before {top: 0;width: 8px;transform: translateY(12px);}
    .supp_conts .step {
    display: flex;
    flex-wrap: wrap;
}
    .supp_conts .step > li, .supp_conts .step > li:first-child {
    width: 100%;
}
    .supp_conts .step dl, .supp_conts .step > li:first-child dl {width: 100%;}
    .supp_conts .step dt:after {
    right: unset;
    left: 50%;
    top: -60%;
    transform: rotate(90deg);
}
    .supp_conts .step dd {margin-bottom:1.5rem}
    .supp_conts .step li:last-of-type dl:last-of-type dt:after {display:unset;}
    .supp_conts .step li dl:first-of-type dt:after {display:none}
}

