@charset "utf-8";

/* モーダルの中身 */
.modal__content {
    background-color: var(--primary--verge);
    padding: 32px 8.5%;
    /* border-radius: 10px; */
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(103, 103, 103, 0.2);
    text-align: center;
    position: relative;
    margin: 24px auto;
}

.modal__image {
    height: 55vh;
    object-fit: contain;
    margin-top: 28px;
}

/* タイトル・説明文 */
.art__title {
    font-family: "Shippori Mincho";
    font-size: 2rem;
    letter-spacing: 2.88px;
    margin-top: 16px;
}

.description {
    font-size: 1.4rem;
    font-weight: 350;
    line-height: 2;
    margin-top: 40px;
}

/* 閉じるボタン */
.item__close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 2.4rem;
    color: var(--primary--black);
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 16px;
}

.item__close:hover {
    color: #333;
}

.year {
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    margin-top: 24px;
}

.type {
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    margin-top: 16px;
}

.size {
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
}

.description_ex {
    font-size: 1.4rem;
    margin-top: 8px;
}

/* ページ移動 */
    .art__nav {
        display: flex;
        justify-content: space-between;
        margin-top: 48px;
        margin-bottom: 40px;
        font-size: 1.2rem;
        font-family: "Shippori Mincho";
    }

/* shop__btn02 */
.btn__group02 {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.shop__btn02 {
    width: 188px;
    height: 48px;
    padding: 8px 16px;
    border-radius: 4px;
    color: #FFF;
    border: 1px solid #433931;
    background: #937257;
    margin: 0 auto;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    cursor: pointer;
}

.shop__btn02:hover {
    background: #433931;
    color: #fff;
}

.shop__move02 {
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 1.5;
    letter-spacing: 1.92px;
    align-items: center;
}

.text__link {
    color: #937257;
    text-decoration: underline;
}

/* art pc */
@media screen and (min-width:769px) {
    .brSp {
        display: none;
    }

    /* モーダルの中身 */
    .modal__content {
        background-color: var(--primary--creme);
        padding: 64px;
        /* border-radius: 10px; */
        max-width: 900px;
        width: 90%;
        box-shadow: 0 10px 30px rgba(103, 103, 103, 0.2);
        text-align: center;
        position: relative;
        margin: 60px auto;
    }

    /* タイトル・説明文 */
    .art__title {
        font-family: "Shippori Mincho";
        font-size: 2.6rem;
        letter-spacing: 3.2px;
        margin-top: 16px;
    }

    .modal__image {
        height: 60vh;
        object-fit: contain;
    }

    .description {
        font-size: 1.6rem;
        font-weight: 350;
        line-height: 2.5;
        margin-top: 44px;
    }

    .year {
        font-family: "Shippori Mincho";
        font-size: 1.6rem;
        margin-top: 60px;
    }


    .type {
        font-family: "Shippori Mincho";
        font-size: 1.4rem;
        margin-top: 16px;
    }

    .size {
        font-family: "Shippori Mincho";
        font-size: 1.4rem;
    }

    .btn__group02 {
        margin-top: 64px;
    }

    .shop__btn02 {
        width: 232px;
        height: 52px;
        padding: 12px 24px;
    }

    .shop__move02 {
        font-size: 1.6rem;
        font-weight: 350;
        line-height: 1.5;
        letter-spacing: 1.92px;
    }

    .art__nav {
        display: flex;
        justify-content: space-between;
        margin-top: 48px;
        font-size: 1.4rem;
        font-family: "Shippori Mincho";
    }

    .art__nav a {
        color: #433931;;
        text-decoration: none;
        transition: opacity 0.4s ease;
    }

    .art__nav a:hover {
        color: #937257;
        opacity: 0.6;
    }

        .resize__img {
        width: 50%;
        height: auto;
    }
    
    .resize__imga {
        width: 75%;
        height: auto;
    }

}