main{
    padding-top: 180px;
}
.banner{
    height: 600px;
    margin-bottom: var(--space-3x-large);
}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story{
    margin-bottom: var(--space-3x-large);
}
.story .common-frame{
    display: flex;
    align-items: flex-end;
    gap: var(--space-large);
}
.story .common-frame figure{
    flex: 1;
}
.story-desc{
    flex: 1;
}
.story .title h1{
    text-align: left;
    margin-bottom: var(--space-normal);
    font-size: var(--fs-h1);
}
.story .title h1+p{
    margin-bottom: var(--space-large);
}
.para{
    display: flex;
    flex-direction: column;
    gap: var(--space-normal);
}
.timeline{
    margin-bottom: var(--space-3x-large);
}
.timeline h1{
    text-align: center;
    margin-bottom: var(--space-large);
}
.tList{
    display: flex;
    gap:var(--space-normal);
}
.tList li{
    flex: 1;
    text-align: center;
    position: relative;
}
/* 오른쪽 선 */
.tList li::after {
    content: "";
    position: absolute;
    top: 100px;
    right: -76%;
    width: 100%;
    height: 1px;
    background: #808080;
}
/* 마지막 요소는 선 제거 */
.tList li:last-child::after {
    display: none;
}
.tList li img{
    margin-bottom: var(--space-normal);
}
.tList li img+h4{
    margin-bottom: var(--space-normal);
}
.philo{
    margin-bottom: var(--space-3x-large);
}
.philo .common-frame{
    text-align: center;
}
.philo .common-frame h1:first-of-type{
    margin-bottom: var(--space-large);
}
.philo .common-frame h1:last-of-type{
    margin-bottom: var(--space-x-large);
    color: var(--main-color);
}
.pList{
    display: flex;
    gap:var(--space-normal)
}
.pList li{
    flex: 1;
    border: 1px solid rgba(14, 46, 135, 0.5);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 2.5rem var(--space-small);
}
.pList li div h4{
    margin-bottom: .5rem;
}
.addDesc{
    display: flex;
    justify-content: center;
    gap: 4.75rem;
    margin: var(--space-x-large) 0;
    color: var(--main-color);
}
.addDesc span{
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
}
.addDesc+h3{
    color: var(--main-color);
}
.selling-point {
    background-color: #F5F5F5;
    /* height: 888px; */
    padding-bottom: 6rem;
}
.selling-point .common-frame{
    text-align: center;
}
.selling-point .common-frame>p:first-of-type{
    padding-top: var(--space-large);
    margin-bottom: var(--space-normal);
}
.selling-point h3{
    margin-bottom: var(--space-normal);
}
.selling-point h3+p{
    margin-bottom: var(--space-large);
}
.spList{
    display: flex;
    gap: var(--space-normal);
    margin-bottom: var(--space-x-large);
}
.spList li{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-normal);
}
.selling-point button{
    color: #fff;
    background-color: var(--main-color);
    height: 54px;
    width: 244px;
    border-radius: .5rem;
}





/* ---------------- */
/* 반응형 대응 코드 */
@media (max-width: 1440px){
    main{
        padding-top: 90px;
    }
    .story .common-frame {
        gap: var(--space-normal);
        align-items: flex-start;
    }
    .tList li::after {
        display: none;
    }
    .pList {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: var(--space-normal);
    }

}


@media (max-width: 1000px){
    
    
}


@media (max-width: 768px){
    main{
        padding-top: 65px;
    }
    .banner {
        width: 100%;
        height: 100%;
        margin-bottom: var(--space-3x-large);
    }
    .story .common-frame {
        gap: var(--space-large);
        flex-direction: column;
    }
    .tList {
        display: grid;
        grid-template-columns: repeat(2,auto);
    }
    .pList {
        display: grid;
        grid-template-columns: repeat(2,auto);
        gap: var(--space-normal);
    }
    .pList li {
        flex-direction: column;
        text-align: center;
        padding: 1rem .5rem;
    }
    
    .addDesc {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }
    .spList {
        display: grid;
        grid-template-columns: repeat(2,auto);
    }
    
}


@media (max-width: 500px){
    .tList li img {
        max-width: 150px;
        max-height: 150px;
    }
}


@media (max-width: 300px){
    .tList li img {
        max-width: 120px;
        max-height: 120px;
    }
}