.page-title-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 5;
    color: #fff;
}
.tagline-small {
    font-weight: 600;
    padding-bottom: 1rem;
}
.page-title-txt .main-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    background: none;
    padding: 0;
    color: #fff;
}
/* Header Section */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.container {
    padding: 5rem 0;
}
.title-all-color {
    font-size: 70px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #686D7C;
    display: inline;
    border-bottom: 2px solid #D5D7EC;
}
.title-small {
    font-size: 1.5rem;
    color: #686D7C;
    padding: 2rem 0;
}
.news-item {
    background: white;
    padding: 40px 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.sub-hero-bg img{
     background-position: center center;
    width: 100%;
    height: 100%;   
}
 .dot-br{
    border-bottom: 1px solid #eeeeee;
}
        .news-date {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .news-title {
            font-size: 1.3rem;
            font-weight: 500;
            color: #333;
            margin-bottom: 25px;
            padding-bottom: 15px;
        }

        .news-content {
            font-size: 0.95rem;
            color: #555;
            line-height: 2;
            margin-bottom: 25px;
        }
.news-image {
    width: 100%;
    max-width: 400px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: auto;
    object-fit: contain;
}

        .news-image:hover {
            transform: scale(1.02);
        }

        .news-image-wrapper {
            text-align: center;
            margin-top: 30px;
        }
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            padding: 10px 0 70px;
        }

        .page-btn {
            min-width: 50px;
            height: 48px;
            padding: 0 20px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            color: #666;
            font-size: 0.95rem;
            font-family: 'Noto Sans JP', sans-serif;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .page-btn:hover {
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
        }

        .page-btn.active {
            background: #A8A9B5;
            color: white;
            border-color: transparent;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .page-btn.prev-btn,
        .page-btn.next-btn {
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
            border-color: #d0d0d0;
            color: #555;
            font-weight: 500;
        }

        .page-btn.prev-btn:hover, .page-btn.next-btn:hover {
            background: #81828c;
            color: white;
            border-color: transparent;
        }


        .page-number {
            min-width: 48px;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 40px 15px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .news-item {
                padding: 30px 20px;
            }

            .news-title {
                font-size: 1.15rem;
            }

            .news-content {
                font-size: 0.9rem;
            }
            .header {
    text-align: center;
    margin-bottom: 0;
}
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .news-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .news-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .news-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .news-item:nth-child(3) {
            animation-delay: 0.3s;
        }

