@charset "utf-8";
/* ========================
contents
========================*/
.works {
    margin: 120px auto 0;
    padding: 0 90px;
    max-width: 1200px;
}

.works__block {
    margin-top: 48px;
}

.works__title {
    justify-content: left;
    align-items: center;
}

.works__title h2 {
    font-family: var(--serif_ja);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.works__title time {
    display: block;
    font-family: var(--serif_en);
    font-size: 2.4rem;
    font-weight: 700;
    color: #5f5f5f;
    margin-top: 16px;
}

.works__title h3 {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    position: relative;
    margin-top: 64px;
}

.works__title h3::before {
    content: '';
    position: absolute;
    display: block;
    width: calc(100% + 180px); left: -90px;
    top: 50%;
    border-top: 1px solid var(--black);
    margin-top: -50px;
}

.works__grid--top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.works__grid--top img {
    aspect-ratio: 3 / 2;
}

.works__desc {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 48px;
    text-align: justify;
}

.works__desc p {
    margin-bottom: 1em;
}

.works__desc p:last-child {
    margin-bottom: 0;    
}

.works__grid--bottom {
    margin-top: 48px;
    display: block;
}

.works__item {
    display: flex;
    flex-direction: column;
}

.works__img--1 {
    width: 100%;
    height: auto;
}

.works__item p {
    font-size: 1.8rem;
    line-height: 2;
    text-align: justify;
    margin-top: 48px;
}

.works__img--group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.works__item--bottom {
    margin-top: 48px;
}

.works__item--bottom p {
    margin-top: 48px;
}

@media screen and (max-width: 768px) {
    .works {
        margin: 120px 8.5% 0;
        padding: 0;
    }

    .works__title h2 {
        font-size: 2.4rem;
    }

    .works__title time {
        font-size: 2rem;
    }

    .works__title h3 {
        font-size: 1.8rem;
        font-weight: 500;
        margin-top: 48px;
    }

    .works__title h3::before {
        width: 100%;
        left: 0;
        top: 50%;
        border-top: 1px solid var(--black);
        margin-top: -50px;
    }

    .works__grid--top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .works__item {
        display: flex;
        flex-direction: column;
    }

    .works__item--bottom {
        margin-top: 48px;
        gap: 0;
    }

    .works__img--group {
        gap: 16px;
    }

    .works__desc,
    .works__item p {
        font-size: 1.6rem;
        margin-top: 48px;
    }

    .pcBr {
        display: none;
    }

}