@charset "utf-8";

/* 見出し bg */
.child-1col__bg {
    background-image: url(../img/gallery/gallery-title.jpg);
    background-position: 50% 100%;
}

/* ---------------------------- */
/* 開催中の展示 */

.exhibition-lead {
    margin-bottom: 0;
}

/* ---------------------------- */
/* 終了した展示 */

.gallery-heading {
    margin-bottom: 24px;
}

.archive-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 24px;
    row-gap: 32px;
}

.archive-imgbox {
    margin-bottom: 8px;
}

.archive-title {
    font-size: var(--heading_3);
    font-family: var(--jp-font_1);
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}

.archive-desc,
.archive-date {
    font-family: var(--jp-font_2);
    font-weight: 400;
}

.archive-desc {
    font-size: var(--text_m);
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.archive-date {
    font-size: var(--text_s);
    letter-spacing: 0.05em;
}

/* ---------------------------- */
/* 470px～ */
@media screen and (min-width:470px) {
    .archive-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /*=======min-width:470px=======*/
}

/* ---------------------------- */
/* 800px～ */
@media screen and (min-width:800px) {
    .archive-list {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 32px;
        row-gap: 40px;
    }

    /*=======min-width:800px=======*/
}