@charset "UTF-8";

/*
TOPページ専用
*/

/*
カラーパレット
象牙色　#f8f4e6
アスパラガスグリーン　#dbebc4
*/

/*
mainVisual
*/
.mainVisual {
    width: 100vw;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mainVisual__catch {
    margin: 0;
    padding: 20px 0;
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: 0;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    background: rgba(0,0,0,0.3);
}
.mainVisual__image {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px), print {
    .mainVisual {
        height: 50vh;
    }
    .mainVisual__catch {
        bottom: 20%;
        width: 800px;
    }
    .mainVisual__catch br {
        display: none;
    }
    .mainVisual__image {
        width: 100%;
        object-fit: cover;
    }
}

/*
workList
*/
.work {
    text-align: center;
}
.work__catch {
    margin: 0 0 40px;
    font-size: 1.2em;
}
.workList {
    text-align: left;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-top: -20px;
}
.workList__item {
    max-width: 400px;
    margin: 20px auto 0;
    background: #f8f4e6;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.workList__thumb img {
    max-width: none;
    width: 100%;
}
.workList__date {
    margin: 0;
}
.workList__data {
    margin:20px;
}
.workList__data dt {
    font-weight: bold;
    font-size: 20px;
}
.workList__data dd {
    margin: 10px 0 0;
    line-height: 1.875;
}
.workList__btn {
    margin: 20px;
}
@media screen and (min-width: 768px), print {
    .workList {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content:space-between;
    }
    .workList__item {
        display: flex;
        flex-direction: column;
        margin: 20px 10px 0;
        width: calc((100% - 60px) / 3);
    }
    /* 最終行の調整用擬似要素 */
    /* .workList::after {
        content: "";
        display: block;
        width: calc((100% - 60px) / 3);
    } */
}