<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/**********************************************/
/*Observation Results*/
/**********************************************/

/*コンテンツメニュー*/
.overview {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.overview-item {
    width: calc((100% / 2) - 60px);
    margin: 0 30px 50px;
}
.overview-item .item-img {
    background-color: #fff;
    border:1px #ddd solid;
}
.overview-item .item-img img {
    width:100%;
    max-width: 640px;
    height: 200px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}
.overview-item .item-txt {
    padding: 0 20px;
    margin-top: 10px;
}
.overview-item .item-txt h3 {
    margin: 20px 0 30px 0;
    line-height: 100%;
    text-align: center;
}


/*記事*/
.article {}

/*記事内ページトップへ戻る*/
.article .in-pagetop {
    text-align: right;
    margin-top: 40px;
}

/*画像*/
.article .figure {
    margin: 30px auto;
}
.article .figure~.article .figure {
    margin: 50px auto;
}
.article .figure figcaption {
    width: 90%;
    margin: 20px auto;
}


/*サムネイル*/
.results-list {}

.thumbnail-results {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.thumbnail-results li {
    width: calc((100% / 3) - 20px);
    margin: 0 10px 20px;
}

.thumbnail-results .thumbnail-img img {
    display: block;
    margin: 0 auto 10px;
    border-radius: 4px;
    /* height: 100px;
    object-fit: cover;
    overflow: hidden; */
}

.thumbnail-results .thumbnail-txt {}
.thumbnail-results a {
    display: block;
    padding: 10px;
    border-radius: 6px;
    color:#000;
    text-decoration: none;

    background:url("../images/icon_glass.svg") no-repeat 96% 96%;
    background-size: 20px;
    border: 1px #bdbdbd solid;
}
.thumbnail-results a:hover {
    background-color: #f5f5f5;
    transition: all .5s;
    box-shadow: 0px 0px 15px 0px #bbb;
}


/*ポップアップ：コメント*/
.lb-details {
    margin-top: 20px;
}
.lb-data .lb-caption {
    font-size: 1.4rem !important;
    font-weight: normal !important;
}




/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1280px) {
}

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

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

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

    .overview-item {
        width: 100%;
        margin: 0 0 20px;
        display: flex;
        flex-wrap: wrap;

        background-color: #f5f5f5;
        padding: 20px;
    }
    .overview-item .item-img {
        width: 140px;
        height: 140px;
        margin-right: 20px;
    }
    .overview-item .item-txt {
        width: calc(100% - 140px - 20px);
        padding: 0;
        margin-top: 0;
    }
    .overview-item .item-img img {
        max-width: 100%;
        height: 140px;
    }
    .overview-item .item-txt h3 {
        text-align: left;
        font-size: 1.8rem !important;
        margin: 20px 0 !important;
    }
    .overview-item .more {
        width: 100%;
        max-width: 160px;
        border-radius: 100px;
        padding: 5px;
        background-size: 8px;
    }

    .thumbnail-results li {
        width: calc((100% / 2) - 20px);
    }

    .article .figure~.article .figure {
        margin: 30px auto;
    }

}

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

    .overview-item {
        padding: 10px 10px;
    }
    .overview-item .item-img {
        width: 70px;
        height: 70px;
    }
    .overview-item .item-txt h3 {
        margin-top: 10px !important;
        font-size: 1.6rem !important;
    }
    .overview-item .item-txt {
        width: calc(100% - 70px - 20px);
    }
    .overview-item .item-img img {
        width: 70px;
        height: 70px;
    }
    .thumbnail-results li {
        width: 100%;
        margin: 0 0 30px 0;
    }
}
</pre></body></html>