@charset "utf-8";

.sec1 {
    text-align: center;
    padding: 0 0 60px;
    border-bottom: 1px solid #ccc;
    margin: 0 auto 60px;
    max-width: 960px;
}
.sec1 .tit {
    margin: 0 0 60px;
}
.sec1 .semi-tit {
    margin: 0 0 40px;
}
.cont {
    font-size: 1.6rem;
}
.sec2-list {
    display: flex;
    flex-flow: row;
    column-gap: 100px;
}
.list img {
    opacity: 0;
}
.list-tit {
    position: relative;
    margin: 0 0 30px;
    text-align: center;
}
.list-tit span{
    font-weight: 700;
    font-size: 2.4rem;
    background: #fff;
    padding: 0 20px;
    display: inline;
    z-index: 1;
    position: static;
}


.list .list-tit::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #3A54A4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}
.sec2 {
    margin: 0 0 150px;
}

@media (max-width: 1024px){
    .sec1 .tit {
        width: 170px;
        margin: 0 0 30px;
    }
    .sec1 .semi-tit {
        max-width: 335px;
        font-size: 1.6rem;
        font-weight: 400;
        margin: 0 auto 30px;
    }
    .cont{font-size: 1.3rem;
        max-width: 335px;
        margin: auto;
    }
    .sec1 {
        padding: 0 0 50px;
        margin: 0 0 30px;
    }
    .sec2 {
        margin: 0 0 40px;
    }
    .sec2-list {
        flex-flow: column;
        row-gap: 20px;
    }
    .list-tit span {
        font-size: 1.6rem;
        padding: 0 5px;
        font-weight: 400;
    }

}