@charset "utf-8";
/*==========================
works__header
==========================*/
.works__header {
    margin-top: 40px;
    padding: 0 8%;
}

.works__mainTopic {
    color: var(--primary-black);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.7;
}

.works__detail {
    display: inline-block;
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 400;
    background-color: var(--primary-lightGray);
    margin-top: 20px;
    padding: 8px 20px;
    border-radius: 24px;
}

.works__tag {
    color: var(--primary-txtGray);
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 20px;
}

.works__tag span {
    margin-left: 15px;
}

.works__link {
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 20px;
}

.images--works {
    margin-top: 50px;
}

/* works__header pc */
@media screen and (min-width:769px) {
    .works__header {
        margin-top: 100px;
        padding: 0 6.7%;
    }

    .works__mainTopic {
        font-size: 3.5vw;
        line-height: 1;
    }

    .works__detail {
        display: inline-block;
        font-size: 1.6vw;
        margin-top: 40px;
        padding: 13px 30px;
        border-radius: 25px;
    }

    .works__tag {
        margin-top: 40px;
        font-size: 1.6vw;
    }

    .works__tag span {
        margin-left: 30px;
    }

    .works__link {
        margin-top: 40px;
        font-size: 1.6vw;
    }

    .works__link a {
        position: relative;
    }

    .works__link a::after {
        content: "";
        background-color: var(--primary-black);
        bottom: -4px;
        width: 100%;
        height: 0.5px;
        position: absolute;
        left: 0;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform 0.3s;
    }

    .works__link a:hover::after {
        transform-origin: left top;
        transform: scale(1, 1);
    }

    .images--works {
        margin-top: 40px;
    }

    .imagesBanner--works {
        display: block;
        width: 50%;
        margin: 40px auto;
    }
}/* pc 769px */

/*==========================
outline
==========================*/
.mainCaption__title--outline {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 30px;
}

.detail {
    background-image: url(../images/bg.jpg);
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 40px;
    padding: 30px 2.6%;
}

.detail__item {
    margin-top: 40px;
    color: var(--primary-black);
}

.detail__item:first-of-type {
    margin-top: 0;
}

.detail--title {
    font-size: 1.8rem;
    font-weight: 500;
}

.detail--txt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 20px;
}

.description {
    margin-top: 50px;
}

.description__item {
    margin-top: 45px;
}

.description--title {
    font-size: 1.8rem;
    font-weight: 600;
}

.description--txt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 30px;
}

.itemization {
    list-style: disc;
    margin-left: 8%;
}

.images {
    margin-top: 60px;
}

.images__sp {
    display: none;
}

/* outline pc */
@media screen and (min-width:769px) {
    .mainCaption__title--outline {
        font-size: 2.3vw;
        margin-top: 50px;
    }

    .flex__works {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-top: 100px;
    }

    .detail {
        width: 42%;
        margin-top: 0;
        padding: 50px 2.5%;
    }

    .detail__item {
        margin-top: 80px;
    }

    .detail__item:first-of-type {
        margin-top: 0;
    }

    .detail--title {
        font-size: 1.6vw;
    }

    .detail--txt {
        font-size: 1.2vw;
        margin-top: 40px;
    }

    .description_div {
        width: 50%;
    }

    .description {
        margin-top: 0;
    }

    .description__item {
        margin-top: 80px;
    }

    .description__item:first-of-type {
        margin-top: 0;
    }

    .description--title {
        font-size: 1.6vw;
    }

    .description--txt {
        font-size: 1.2vw;
    }

    .itemization {
        margin-left: 4%;
    }

    .images {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-top: 60px;
    }

    .images__pc {
        width: 60%;
        margin: 0 auto;
    }

    .images__sp {
        display: inline-block;
        width: 30%;
        margin: 0 auto;
    }
}/* pc 769px */