/* Notice Section Styling */
.notice-section-new{
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;

}
.content_tau_top-new .mainTtl-new {
    position: relative;
    font-family: 'Noto Sans JP';
    font-size: 30px;
    font-weight: 700;
    line-height: 43.44px;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 20px;
}
.notice-list-styled {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.notice-item {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.notice-item a:hover {
    text-decoration: none;
    background-color: #f4f4f4;
}

.notice-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.notice-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

.notice-content {
    flex: 1;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.notice-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.notice-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 3px rgba(255, 107, 107, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.notice-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
    }
}

@keyframes badge-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50%, 100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.notice-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

.notice-arrow {
    font-size: 28px;
    color: #2a66c6;
    font-weight: bold;
    margin-left: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notice-link {
        padding: 14px 16px;
    }

    .notice-date {
        font-size: 13px;
    }

    .notice-badge {
        font-size: 10px;
        padding: 2px 6px;
    }

    .notice-title {
        font-size: 14px;
    }

    .notice-arrow {
        font-size: 24px;
    }
}
