/* news-section全体 */
.news-section {
    max-width: 900px;
    margin: 0 auto 0 auto;
    padding: 160px 0 0 0;
    text-align: center;
    background: #fff;
}

.news-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}
h3 {
  margin: 0;
}
.news-list {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    gap: 48px 48px;
    margin: 0 auto;
    max-width: 1100px;
}
.news-card {
    width: 260px;
    background: none;
    text-align: left;
    margin-bottom: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}
.news-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: translateY(-10px) scale(1.03);
}
.news-card a {
    text-decoration: none;
}
.news-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #888;
    border-radius: 0;
    margin-bottom: 0.7em;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.3em;
}
.news-label {
    display: inline-block;
    font-size: 0.95em;
    padding: 2px 10px;
    border-radius: 2px;
    color: #fff;
    letter-spacing: 0.08em;
}
.label-yellow { background: #F6B94A; }
.news-date {
    font-size: 0.95em;
    color: #888;
}
.news-desc {
    font-size: 1em;
    color: #222;
    margin-top: 0.2em;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 0.05em;
}
footer {
    padding-top: 160px;
}

/* レスポンシブ */
@media (max-width: 1000px) {
.news-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    }
.news-card {
    width: 45vw;
    min-width: 180px;
    max-width: 320px;
    }
}
@media (max-width: 500px) {
    /* .section-title {
      font-size: 3rem;
    } */
    .news-card {
      width: 90vw;
      min-width: 0;
    }
} 