@charset "UTF-8";

main{
    color:var(--font);
    padding-top: 10vh;
}

h2.title {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
}

h2.title::after {
    content: '';
    display: block;
    height: 5px;
    width: 10rem;
    background: #d0bea2;
    margin: 1rem 1rem 1rem 0;
}

h3.title {
    padding: 0.4em 0.5em;
    color: #494949;
    border-left: solid 5px var(--black);
    font-size:1.3rem;
    margin:1.5rem auto;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 1rem;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.news-list li {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.news-list li:hover {
    background-color: #f9f9f9;
}

.news-list li a {
    text-decoration: none;
    color: var(--font);
    display: block;
}

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

.news-list li .date {
    font-size: 1rem;
    color: #9ca3af;
}

.news-list li .news-title {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.news-list li .news-detail {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #666666;
}