@charset "utf-8";

/* --------------------------------------
    一覧（テキストリスト）
 -------------------------------------- */

/* サムネイル画像 -------------------- */
.news-wrap .thumbnail {
    display: flex;
    gap: 0 var(--mp40);
    flex-wrap: nowrap;
}

.news-wrap .thumbnail .no-img {
    padding: 5px;
}

/* --------------------------------------
    一覧（サムネイルリスト）
 -------------------------------------- */
.thum-list .sbox-article .cont-box {
    width: 100%;
    display: block;
    transition: all 0.28s ease-out;
}

.thum-list .thumbnail .bdshadow {
    margin: 5px 0;
    background-color: var(--wht);

    /* filter: drop-shadow(0 0 10px rgb(0 0 0 / 6%)); */
    box-shadow: 0 0 10px rgb(0 0 0 / 6%);
    width: 120px;
}

.thum-list .sbox-article .cont-box:hover {
    opacity: 0.9;
}

/* サムネイル画像 -------------------- */
.thum-list .cont-box .photo-wrap {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
}

.thum-list .cont-box .photo-wrap img {
    display: block;
    width: 100%;
    transition: all 0.28s ease-out;
}

@media (min-width: 767px) {
    .thum-list .cont-box:hover .photo-wrap img {
        transform: scale(1.03);
    }
}

/* サムネイル画像がないとき */
.thum-list .cont-box .photo-wrap.no-img {
    background-color: var(--wht);
}

/* カテゴリ・日付・タイトル -------------------- */
.thum-list .sbox-article .txt-area {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    flex-flow: column;
    justify-content: center;
    gap: 9px;
    max-width: 780px;
    padding-right: 88px;
    position: relative;
    width: calc(100% - 120px - var(--mp40));
    display: flex;
}

.thum-list .sbox-article:first-child .txt-area {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.thum-list .sbox-article .txt-area .upper-stage {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.thum-list .sbox-article .txt-area .upper-stage .t-cat {
    display: inline-block;
    border: 1px solid var(--dgld);
    padding: 1px 15px;
    border-radius: 5px;
    font-size: var(--f-sz13);
    color: var(--dgld);
    line-height: 1;
}

.thum-list .sbox-article .txt-area .upper-stage .t-date {
    display: inline-block;
    padding-right: 10px;
    font-size: var(--f-sz14);
    letter-spacing: 0;
    color: var(--mgly);
    font-weight: 500;
    font-family: var(--f-int);
}

.thum-list .sbox-article .txt-area .sttl-news {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: var(--f-sz18);
    line-height: 1.5;
    color: var(--blk);
}

.thum-list .sbox-article .txt-area .arrow {
    top: 50%;
    right: 49px;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.thum-list .sbox-article .cont-box:hover .txt-area .arrow {
    right: 41px;
}

@media (max-width: 1200px) {
    .thum-list .sbox-article .txt-area {
        padding-right: 30px;
    }

    .thum-list .sbox-article .txt-area .arrow {
        right: 10px;
    }

    .thum-list .sbox-article .cont-box:hover .txt-area .arrow {
        right: 2px;
    }
}

@media (max-width: 640px) {
    .thum-list .sbox-article .txt-area {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .news-wrap .thumbnail {
        gap: 0 20px;
    }

    .thum-list .thumbnail .bdshadow {
        width: 18%;
    }

    .thum-list .sbox-article .txt-area {
        padding-right: 30px;
        width: calc(100% - 18% - 20px);
    }

    .thum-list .sbox-article .cont-box:hover .txt-area .arrow {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .thum-list .thumbnail .bdshadow {
        width: 80px;
    }

    .thum-list .sbox-article .txt-area {
        width: calc(100% - 80px - 20px);
    }

    .sec-news .btnarea .btn {
        margin: auto;
    }
}
