.visual {
    background:url('../img/visual3.jpg') 50% 50% no-repeat;
    background-size:cover;
    height:430px;
}

main {
    background:#fff;
    display:flex;
    gap:60px;
    position:relative;
    top:-30px;
    z-index:6000;
}

article {
    width:210px;
    height:auto;
    margin-top:70px;
    margin-left:34px;
}

article li {
    margin-bottom:26px;
    position:relative;
}

article li a {
    color:#686868;
    display:block;
}

article li.now a {
    color:#fff;
    font-weight:700;
    z-index:7000;
}

article li.now:after {
    content:'';
    display:block;
    position:absolute;
    z-index:-1;
    background:#00a19a;
    width:210px;
    height:26px;
    top:-1px;
    left:-12px;
}

section {
    margin-top:70px;
    width:calc(100% - 270px);
}

.title h2 {
    width:100%;
    font-size:24px;
    font-weight:500;
    padding-bottom: 12px;
    border-bottom:2px dashed #dbdbdb;
}

.title {
    position:relative;
    margin-bottom:70px;
    padding-right:34px;
}

.title span {
    position:absolute;
    top:12px;
    right:34px;
    font-size:14px;
    color:#686868;
}

.content {
    padding-right:34px;
    display:flex;
    gap:30px;
}

.left_con {
    /* width:260px; */
    width:0;
    padding-left:20px;
}

.right_con {
    padding-right:20px;
}

.content h3 {
    font-size:24px;
    font-weight:500;
    color:#2c2e83;
    margin-bottom:20px;
}

.content h4 {
    font-size:20px;
    font-weight:500;
    line-height:180%;
}

.wrap {
    padding-bottom:34px;
    border-bottom:1px solid #767676;
    margin-bottom:24px;
}

.wrap:last-child {
    border-bottom:0;
}

.wrap p {
    font-size:20px;
    line-height:180%;
}

.wrap span {
    display:block;
    position:relative;
    padding-left:20px;
    font-size:18px;
    line-height:180%;
}

.wrap span:before {
    content:'';
    display:block;
    position:absolute;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#333;
    left:8px;
    top:14px;
}

.marginB {
    margin-bottom:22px;
}

@media all and (max-width:1024px) {
    article {
        display:none;
    }

    main {
        background:#fff;
        gap:0;
        position:static;
        justify-content:center;
    }

    .title {
        margin-bottom:30px;
    }

    .title span {
        left:0;
        top:-24px;
    }

    .title, .content {
        padding-right:0;
    }

    section {
        width:100%;
    }

    .left_con {
        padding-left:0;
    }

    .right_con {
        padding-right:0;
    }

}

@media all and (max-width:560px) {
    .title h2 {
        font-size:20px;
    }

    .title span {
        font-size:12px;
    }

    .content h3 {
        font-size:18px;
    }

    .wrap {
        border-bottom: 2px solid #DBDBDB;
        margin-bottom:34px;
    }

    .wrap p, .wrap span, .content h4 {
        font-size:14px;
    }

    .content {
        gap:20px;
        flex-direction:column;
        align-items:center;
    }
}