@charset "UTF-8";

/* Page Hero */
.page-hero {
    height: 300px;
    background-image: url('../images/news/top-img.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    position: relative;
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.page-hero-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-title-en {
    font-family: var(--font-en);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: normal;
}

.page-title-jp {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 20px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.breadcrumbs a {
    text-decoration: underline;
}

/* News Content */
.news-container {
    padding: 60px 0;
}

.news-list {
    max-width: 900px;
    margin: 0 auto 60px;
}

.news-item {
    border-bottom: 1px solid #eee;
}

.news-item:first-child {
    border-top: 1px solid #eee;
}

.news-item a {
    display: flex;
    align-items: center;
    padding: 25px 0;
    color: #333;
    transition: background-color 0.3s;
    position: relative;
}

.news-item a::after {
    content: ">";
    position: absolute;
    right: 10px;
    color: #ccc;
    font-family: var(--font-en);
}

.news-item a:hover {
    background-color: #f9f9f9;
}

.news-item time {
    font-family: var(--font-en);
    color: var(--secondary-color);
    width: 120px;
    flex-shrink: 0;
}

.news-title {
    font-size: 1rem;
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-en);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.pagination .current {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.pagination .dots {
    border: none;
}



/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 200px;
        margin-top: 60px;
    }

    .news-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-item time {
        width: auto;
    }



    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}