/* MV */
.mv {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: url('../image/mv.jpg') no-repeat center center;
    background-size: cover;
    height: 602px;
}

.mv__container {
    position: absolute;
    bottom: 0;
    background-color: #fff;
    padding: 40px 100px;
    white-space: nowrap;
}

.mv__title {
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    line-height: 1.3em;
}

.mv__title::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background-color: #80A6CB;
    margin-top: 8px;
}

.mv__sub {
    margin-top: 13px;
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 768px) {

    .mv {
        height: 697px;
        background: url('../image/mv-sp.jpg') no-repeat center center;
        background-size: cover;
    }

    .mv__container {
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;

        background-color: transparent;
    }

    .mv__title {
        font-size: 40px;
    }
}

/* motto */
.motto {
    margin-top: 116px;
    width: 652px;
}

.motto__text {
    margin-top: 30px;
    text-align: left;
}

@media (max-width: 768px) {
    .motto {
        width: 75%;
        text-align: center;
    }

    .motto__text {
        width: 100%;
        max-width: 400px;
        display: inline-block;
    }
}

/* works */
.works__container {
    margin-top: 70px;
}

.works__wrapper {
    padding: 100px 0;
}

.works__wrapper-left {
    background-image: linear-gradient(90deg, #eff7ff, #ffffff);
}

.works__wrapper-right {
    background-image: linear-gradient(90deg, #ffffff, #eff7ff);
}

.works__content {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

@media (max-width: 768px) {
    .works__content {
        flex-direction: column;
        text-align: center;
    }

    .works__wrapper-right .works__content {
        flex-direction: column-reverse;
    }
}

/* モックアップ画像 */
.img__mp {
    width: 56%;
}

@media (max-width: 768px) {

    .img__mp {
        width: 100%;
    }

    .works__text {
        margin-top: 30px;
    }
}

/* 担当範囲 */
.works__charge {
    margin-top: 20px;

    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 7px;
}

.works__charge-item {
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
}

@media (max-width: 768px) {

    .works__charge {
        justify-content: center;
    }
}

/* 詳しく見るボタン */
.button-todetail {
    margin-top: 40px;
}