.navigation.navigation-bgc {
    background-color: #E5DEE0;
}

.section-container-title {
    margin-top: 80px;
    margin-bottom: 100px;
}

.section-title-wrapper-ja {
    font-weight: bold;
    z-index: 2;
    color: #F9FAFA;
}

.section-title-wrapper-en {
    font-size: 3rem;
    color: #F9FAFA;
    font-family: "dejanire-headline", serif;
    font-weight: bold;
    padding: 5px;
    z-index: 2;
}

.section-title-wrapper-hp {
    position: relative;
    background-image: url('../img/pages/about/header.jpg');
    background-size: cover;
    background-position: right;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title-wrapper-hp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: rgba(151, 151, 151, 0.5);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.works-img {
    width: 100%;
    padding-bottom: 40px;
}

.works-img:last-child {
    padding-bottom: 160px;
}

.works-img-inner {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.works-img-inner img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.works-img-inner:hover {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
}

.works-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 160px;
    transition: opacity 1.0s ease, transform 1.0s ease;
    transform: translateY(20px);
}

.works-img-title {
    margin-top: 16px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
}

.works-img-role {
    font-size: 1.6rem;
    color: #979797;
    padding-top: 8px;
}

@media screen and (max-width: 1024px) {

    .navigation.navigation-bgc {
        background-color: #474747;
    }

    .section-container-title {
        margin-top: 0;
        margin-bottom: 0;
    }

    .works-wrapper {
        margin-top: 0px;
    }

    .works-img:last-child {
        padding-bottom: 80px;
    }

}

@media screen and (max-width: 820px) {
    .works-img {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .works-img {
        padding-bottom: 0px;
        max-width: 350px;
        overflow: hidden;
    }

    .works-img-inner img {
        max-width: 350px;
    }

    .works-img-title {
        font-size: 1.6rem;
    }
}