@charset "utf-8";
.edu_sec1,.edu_sec2 {
    margin-bottom: 5%;
}
.edu_sec2 table {
    width: 100%;
    margin-top: 1rem;
}
.edu_sec2 table tr {border-bottom: 1px solid #ddd;}
.edu_sec2 table th {
    width: 20%;
    font-size: 20px;
    background-color: #f5f5f7;
    text-align: center;
    font-weight: 500;
}
.edu_sec2 table tr:first-child {border-top:1px solid #ddd;}
.edu_sec2 table td {
    padding: 1rem 3rem;
    font-weight: 300;
}
.step {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.step li {
    width: 18%;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--color-main);
    border-radius: 10px;
    height: 100px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    position:relative;
    font-weight: 400;
}
.step li:first-child {background-color:#F5F5F7}
.step li:last-child {background-color: var(--color-main);color:#fff}
.step li:after {
    content:"\f054";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position:absolute;
    left: 0;
    margin-left: -10%;
    color: #888;
}
.step li:first-child::after {display:none;}
.step li a {
    color: #185FAF;
}

.edu_sec3 {
    margin: 5% 0 10%;
}


/* PC */ 
@media only screen and (min-width:1280px) and (max-width: 1600px)  {
  
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/ 
@media all and (max-width:1024px) {
    .edu_sec2 table td {padding-left:2rem}
    .step {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
    .step li {
    width: 30%;
    margin-right: 2rem;
    margin-bottom: 1rem;
    word-break: keep-all;
}
    .step li:nth-child(3n) {margin-right:0}
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px) {
	p, li, th, td{font-size:4.5vw}
    .edu_sec1 {padding-bottom:15%}
    .edu_sec3 {padding:15% 0}
    .edu_sec2 table th {font-size:4.5vw;padding: .5rem;word-break: keep-all;}
    .edu_sec2 table td {padding:1rem}
    .step li {width:100%;height: auto;margin-right: 0;margin-bottom: 2rem;}
    .step li:after {
    /* transform: rotate(90deg) translateX(-50%); */
    left: 50%;
    top: 0;
    transform: rotate(90deg) translateX(-50%);
    margin-left: 0;
    margin-top: -7%;
}
}