@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;
}

/* company-overview */
.company-overview{
    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%);
}

.company-detail{
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.company-detail dt{
    width: 40%;
    padding: 20px 0 20px 50px;
    font-weight: normal;
    border-bottom: 1px #707070 dashed;
    line-height: 2;
}

.company-detail dd{
    width: 60%;
    padding: 20px 0 20px;
    border-bottom: 1px #707070 dashed;
    line-height: 2;
}

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

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

    /* company-overview */
    .company-overview{
        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%);
    }

    .company-detail{
        max-width: 90%;
        display: block;
        flex-wrap: wrap;
        margin: auto;
    }

    .company-detail dt{
        width: 100%;
        padding: 20px 0 0 0;
        font-weight: 600;
        border-bottom: none;
        line-height: 2;
    }

    .company-detail dd{
        width: 100%;
        padding: 10px 0 20px 0;
        border-bottom: 1px #707070 dashed;
        line-height: 2;
    }
}