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

/* .newsList 一覧
 * --------------------------------------- */
#news .newsList p {
    margin-bottom: 0;
    text-align: left;
}


/*.head*/
#news .newsList .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#news .newsList h1 {
    margin-top: 0;
    margin-bottom: 50px;
}
#news .newsList .h1 {
    margin-bottom: 50px;
}
#news .newsList .link {
    font-size: 1.4rem;
}
#news .newsList .link i {
    margin-left: 10px;
}


/*.list01*/
#news .newsList .list01 {
    margin-bottom: 30px;
}
#news .newsList .list01 ul {
    display: flex;
    flex-flow: row wrap;
}
#news .newsList .list01 li {
    margin: 0 5% 5% 0;
    width: 30%;
}
#news .newsList .list01 li:nth-child(3n) {
    margin-right: 0;
}
#news .newsList .list01 li .img {
    margin-bottom: 15px;
}
#news .newsList .list01 li .img img {
    width: 100%;
}
#news .newsList .list01 li .info a {
    display: block;
}
#news .newsList .list01 li .date {
    color: #999;
}

@media screen and (max-width: 767px) {
    #news .newsList .list01 {
        flex-flow: column;
    }
    #news .newsList .list01 li {
        margin: 0 0 40px;
        width: 100%;
    }
    #news .newsList .list01 li .img {
        margin-bottom: 15px;
    }
}



/*.list02*/
#news .newsList .list02 {
    margin-bottom: 60px;
}
#news .newsList .list02 li {
    border-bottom: 1px solid #ebebeb;
}
#news .newsList .list02 li:first-child {
    border-top: 1px solid #ebebeb;
}
#news .newsList .list02 li a {
    display: flex;
    align-items: center;
    padding: 25px 5px;
}
#news .newsList .list02 li a:hover {
    background-color: #fcfcfc;
    opacity: 1;
}
#news .newsList .list02 li .date {
    color: #999;
    font-size: 1.5rem;
    width: 100px;
}
#news .newsList .list02 li p {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    #news .newsList .list02 li a {
        flex-flow: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    #news .newsList .list02 li a:hover {
        background-color: #fff;
    }
    #news .newsList .list02 li .date {
        width: 100%;
    }
}




/* .newsEach 各ページ
 * --------------------------------------- */
#news .newsEach .date {
    color: #999;
    font-size: 1.8rem;
    margin: 0;
}
#news .newsEach h1 span:not(:last-child)::after{
    content: "・";
}
#news .newsEach .date + h2 {
    margin-top: 0;
}
#news .newsEach .article figure:first-child {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    margin: 0 0 50px;
}
#news .newsEach .article figure:first-child img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    #news .newsEach .date {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    #news .newsEach .article figure:first-child {
        margin: 0 0 30px;
    }
}

.textlink a {
    position: relative;
    color: rgb(0, 132, 255);
    text-decoration: none;
    font-size: 1.2em;
}

.textlink a:hover {
    color: rgb(0, 132, 255);
}

.textlink a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 8px;
    background-color: rgba(0, 132, 255, 0.5);
    transition: width 0.3s;
}

.textlink a:hover::after {
    width: 100%;
}

</pre></body></html>