@charset 'utf-8';

/* =================
mainpic
================== */
.article {
    padding: 64px 0 40px 0;
}

.pic__img {
    width: 100%;
    aspect-ratio: 1 /1.618;
    object-fit: cover;
}

/* mainpic pc */
@media screen and (min-width: 976px) {
    .article {
        padding: 180px var(--pcPadding) 100px;
    }

    .mainPic {
        width: 100%;
        margin: 0 auto;
    }

    .pic__box {
        margin: 0 auto;
        max-width: 872px;
        aspect-ratio: 1/1;
    }

    .pic__img {
        aspect-ratio: 1/1;
        outline: 1px solid var(--whglay);
        background: url(<path-to-image>) lightgray 50% / cover no-repeat;
        box-shadow: 4px 8px 12px 4px rgba(51, 35, 22, 0.20);
    }
}

/* pc769px */

/* =================
description
================== */
.description {
    width: 80vw;
    margin: 0 auto;
    padding: 40px var(--spPadding) 80px;
}

.title {
    color: var(--green);
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    line-height: 1.2;
}

.txt {
    font-size: 1.4rem;
    line-height: 1.5;
}

.txtJa {
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 350;
    line-height: 1.5;
}

.material {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.txtBoxJa {
    margin-top: 10px;
}

.award {
    margin-top: 20px;
}

/* desc pc */
@media screen and (min-width: 769px) {
    .description {
        padding-top: 100px;
        display: flex;
        flex-direction: column;
    }

    .title {
        font-size: 3.2rem;
        letter-spacing: 3.2px;
    }
    .spBr {
        display: none;
    }

    .txtBox,
    .txtBoxJa {
        width: 30vw;
        margin-top: 0;
    }

    .txt {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .txtJa {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .material,
    .award {
        display: flex;
        flex-direction: row;
        gap: 10vw;
    }

    .material {
        margin-top: 60px;
    }

    .award {
        margin-top: 62px;
    }
}

/* pc769px */

/* =================
subPic
================== */
.subPic {
    padding: 0 var(--spPadding) 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.subPic__container {
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    transition: .8s;
}

.subPic__img {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1 /1.618;
    object-fit: cover;
    transition: 0.4s;
}
.subPic__img--sw {
    aspect-ratio: 1.618 /1;
}

/* .subPic__img:hover {
    transform: scale(110%);
} */

.wrkbtn {
    display: inline-block;
    width: 100%;
    margin-top: 80px;
    text-align: center;
    color: var(--green);
    font-size: 1.8rem;
    line-height: 2;
    text-decoration: underline;
    transition: 0.4s;
}

.wrkbtn:hover {
    color: var(--gold);
}