@charset "UTF-8";
@import url(common.css);
#news {
    padding: 100px 0;
    background: #f2f1ec;
    margin-bottom: 40px;
}
#news .sub-t {
    color: #ee3b2c;
}
.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.news-list li {
    font-family: 'Noto Sans JP',sans-serif;
    display: flex;
    gap: 1em;
    padding: 0.5em 0;
    border-bottom: 1px solid #ddd;
}

.news-title {
    display: flex;
    align-items: flex-end; /* 子要素を下揃えにする */
    gap: 0.5em;
}

.news-title .date {
    min-width: 100px;
    color: #666;
    font-size: 1.2em;
    vertical-align: top;
    align-self: stretch
}

.news-title p {
    font-size: 1.4em;
    text-decoration: none;
}

.news-list a:hover {
    text-decoration: underline;
}



/*===========================================================================*/
/*  media quary:1000px  */
/*===========================================================================*/
/*===========================================================================*/
/*  media quary:767px  */
/*===========================================================================*/
@media screen and (max-width: 767px) {
    #news {
        margin-top: 30px;
        padding: 70px 0;
    }
    #news .sub-t {
        margin-bottom: 40px;
    }
}
/*===========================================================================*/
/*  media quary:479px  */
/*===========================================================================*/
@media screen and (max-width: 479px) {
    .news-list li {
        display: block;
    }
    .news-title a {
        font-size: 1.1em;
        display: block;
    }
    .news-title {
        display: block;
    }
    .news-title .date {
        display: block;
    }
}
/*# sourceMappingURL=faq.css.map */
