@charset "utf-8";

/* ニュース一覧*/
main {
    margin-top: 150px;
}

.newsimg {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px -5px rgba(138, 150, 165, 0.8);
}

.newstopic {
    display: flex;
    justify-content: left;
    border-bottom: 2px dotted #5C5C5C;
    padding: 20px 0;
}

.newstopic p {
    font-size: 1.8rem;
    padding: 20px 20px;
}

.date {
    font-weight: 600;
    border-radius: 8px;
}

.newstitle {
    color: #4b678b;
}

.newstitle:hover {
    text-decoration: underline 1px #8BACD7;
    color: #8BACD7;
}

@media screen and (max-width:1024px) {
    .newstopic {
        padding: 5px 0;
}

    .newsimg {
        display: none;
    }
}
