/* --- 「うねめ通信」セクションのスタイル --- */
.news-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: #00695C; /* 緑系の色 */
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #00695C;
}

/* お知らせ記事カードのスタイル */
.news-card {
    display: block;
    background-color: white;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
    transition: box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
    overflow: hidden; /* 画像の角を丸くするため */
}
.news-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* shadow-xl */
    transform: translateY(-5px);
}

.news-card-image-wrapper {
    overflow: hidden;
}

.news-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s;
}
.news-card:hover .news-card-image {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.5rem;
    text-align: left;
}

.news-card-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: #1f2937; /* text-gray-800 */
    transition: color 0.3s;
}
.news-card:hover .news-card-title {
    color: #00695C;
}

.news-card-date {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-gray-500 */
    margin-top: 0.75rem;
}


/* 一覧へボタンのスタイル */
.news-view-more-btn {
    position: relative;
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    background-color: #EC008C;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 105, 92, 0.2);
}

.news-view-more-btn:hover {
    background-color: #EC008C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 105, 92, 0.3);
}

.news-character {
    position: absolute;
    top: -20px;
    right: -15px;
    font-size: 24px;
    opacity: 0;
    transform: scale(0.5) rotate(-30deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-view-more-btn:hover .news-character {
    opacity: 1;
    transform: scale(1) rotate(15deg);
}