@charset "UTF-8";

/* MainVisual */
.main-visual{
    background: url(../images/mv.png) no-repeat center / cover;
    width: 100%;
    height: 500px;
    position: relative;
}

.main-visual p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 2.5vw;
}

/* type */
.type{
    width: 100%;
    padding: 100px 0 200px;
}

.inner h2{
    font-size: 2.2em;
    text-align: center;
    margin: 0 0 60px;
    letter-spacing: 3px;
    position: relative;
    padding: 0 0 20px;
    font-weight: 600;
}

.inner h2::after{
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background-color: #538FBF;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.inner img{
    width: 100%;
    margin: 0 0 80px;
}

.type-img{
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 100px;
}

.type-img li{
    width: 50%;
}

.type-img li img{
    width: 100%;
}

.type-img li p a{
    width: 230px;
    background-color: #538FBF;
    display: block;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin: auto;
}

@media screen and (max-width:968px) {
    /* MainVisual */
    .main-visual{
        background: url(../images/mv.png) no-repeat center / cover;
        width: 100%;
        height: 500px;
        position: relative;
    }

    .main-visual p{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: #fff;
        font-size: 2.5em;
        white-space: nowrap;
    }

    /* type */
    .type{
        width: 100%;
        padding: 100px 0 0;
    }

    .inner h2{
        font-size: 2em;
        text-align: center;
        margin: 0 0 40px;
        letter-spacing: 3px;
        position: relative;
        padding: 0 0 20px;
        font-weight: 600;
    }

    .inner h2::after{
        position: absolute;
        content: "";
        width: 50px;
        height: 2px;
        background-color: #538FBF;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .inner img{
        width: 95%;
        margin: 0 auto 20px;
        display: block;
    }

    .type-img{
        display: block;
        justify-content: space-between;
        width: 95%;
        margin: 0 auto 100px;
    }

    .type-img li{
        width: 100%;
    }

    .type-img li img{
        width: 100%;
    }
}