.visual {
    background:url('../img/visual5.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;
}

.content p {
    font-size:20px;
}

.content .part {
    display:flex;
    gap:52px;
    align-items:center;
}

.content .part .img {
    width:203px;
    height:203px;
    border-radius:50%;
    background-size:cover;
    position:relative;
}

.content .part .img span {
    position:absolute;
    display:block;
    top:40px;
    font-size:24px;
    font-weight:500;
    left:50%;
    transform:translateX(-50%);
}

.content .part0 .img {
    background:url('../img/part0.svg') 50% 50% no-repeat;
}

.content .part1 .img {
    background:url('../img/part1.svg') 50% 50% no-repeat;
}

.content .part .text {
    background:#f8f8f8;
    border-radius:20px;
    width:50%;
    padding:28px 36px;
}

.content .part .text p {
    line-height:180%;
    padding-left:24px;
    position:relative;
}

.content .part .text p:after {
    content:'';
    position:absolute;
    display:block;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#333;
    top:17px;
    left:12px;
}

.marginB {
    margin-bottom:70px;
}

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

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

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

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

    .title, .content h3 {
        margin-bottom:30px;
    }

    .content p:last-child {
        margin-bottom:0;
    }

    section {
        width:100%;
    }

    .content .part {
        gap:30px;
    }

    .content .part .text {
        width:calc(100% - 223px);
    }

}

@media all and (max-width:720px) {
    .content .part {
        flex-direction:column;
    }

    .content .part .text {
        width:80%;
    }
}

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

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

    .content .part .text p {
        font-size:14px;
        padding-left:18px;
    }

    .content .part .text p:after {
        width:4px;
        height:4px;
        left:6px;
        top:11px;
    }

    .content .part .text {
        width:95%;
    }

}