body {
    font-family: "klee one", serif;
    font-size: 16pt;
    line-height: 180%;
    background-image: url(./image/background.jpg);
    background-repeat: repeat;
    color: #4A4A3D;
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #4A4A3D;
    background-image: url(../image/bg_image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 32px;
    font-family: "Lora", serif;
}

.splash_container {
    margin-top: 250px;
}

.name_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2%;
}

.name {
    font-size: clamp(24px, 3vw, 32px);
}

.subname {
    font-size: clamp(14px, 3vw, 20px);
    font-family: "Lora", serif;
    margin-top: 8px;
}

.title {
    font-size: clamp(20px, 3vw, 24px);
}


/* メインビジュアル */
.mv {
    text-align: center;
}

.mv_image {
    width: 100%;
    height: auto;
}

.mv_sp_image {
    width: 100%;
    height: auto;
}

/* ステートメント */
.statement {
    background-image: url(./image/statement_back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 100px;
    margin: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
}

.statement_text {
    font-size: clamp(14px, 3vw, 20px);
    line-height: 300%;
    white-space: nowrap;
}

/* ニュース */
.news {
    background-color: #FFFFFF;
    padding: 2%;
}

.news_title {
    margin-bottom: 30px;
    font-size: clamp(16px, 3vw, 32px);
    font-family: "Lora", serif;
}

.news_link {
    width: 70%;
    overflow: hidden;
}

.news_link.latest {
    width: 75%;
}


.news_exhibitions_title {
    width: fit-content;
    font-size: clamp(14px, 3vw, 20px);
    line-height: 180%;
    margin: 20px 0px;
    border-bottom: solid 1px #4A4A3D;
    font-weight: 700;
}


.news_exhibitions_text {
    font-size: clamp(13px, 3vw, 16px);
    line-height: 180%;
}

.news_exhibitions_text.date {
    font-size: clamp(12px, 3vw, 16px);
}

.news_latest_container {
    display: flex;
    align-items: flex-end;
}

.news_status_on {
    border: 1px solid #4A4A3D;
    max-width: 117px;
    padding: 5px 10px;
    text-align: center;
    font-size: clamp(13px, 3vw, 16px);
    line-height: 180%;
}

.news_status_off {
    border: 1px solid #4A4A3D;
    max-width: 117px;
    padding: 5px 10px;
    font-size: clamp(13px, 3vw, 16px);
    background-color: #DDDDDD;
    text-align: center;
    line-height: 180%;
    margin-top: 15px;
}

.news_image_main {
    width: 100%;
    height: auto;
    filter: brightness(60%);
    transition: 0.5s;
}

.news_image_main:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

.news_latest_box {
    margin-left: 3%;
}

.news_past_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    column-gap: 2%;
}

.news_past_box {
    font-size: 16px;
}

.hover_box {
    overflow: hidden;
}

.past_image {
    width: 100%;
    height: auto;
}

.news_sp_image {
    width: 100%;
    height: auto;
    filter: brightness(60%);
    transition: 0.5s;
}

.news_sp_image:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

/* ワークス */

.works {
    text-align: center;
    margin-top: 130px;
    margin-bottom: 126px;
}

.works_image_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 45px;
    margin-bottom: 52px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.works_image {
    width: 100%;
    height: auto;
}

.drawings {
    text-align: center;
    margin-bottom: 120px;
}

.drawings_image_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 45px;
    margin-bottom: 52px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.drawings_image {
    width: 100%;
    height: auto;
}


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

    .splash_container {
        margin-top: 180px;
    }

    .mv {
        margin-top: 20px;
    }

    .statement {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        margin: 0px 0px;
    }

    .statement_text {
        padding: 0px;
        margin: 0px 0px;
        line-height: 300%;
    }


    .statement_text {
        writing-mode: vertical-rl;
    }

    .news_link {
        width: 100%;
    }

    .news_link.latest {
        width: 100%;
    }

    .news_latest_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .news_image_main {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .news_latest_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .news_sp_image {
        width: 100%;
    }

    .news_past_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .news_status_on {
        border: 1px solid #4A4A3D;
        max-width: 117px;
        padding: 5px 10px;
        line-height: 180%;
    }

    .news_status_off {
        border: 1px solid #4A4A3D;
        max-width: 117px;
        padding: 5px 10px;
        line-height: 180%;
    }

    .works_image_box {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 25px;
        padding-inline: 20px;
    }

    .drawings_image_box {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 25px;
        padding-inline: 20px;
    }

}