@charset "UTF-8";

/* =========================================
   Column Page Specific Styles
   ========================================= */

/* Hero Section */
.hero-bg {
    background: linear-gradient(135deg, #f9f9f9 50%, #ffffff 50%);
}

.page-title {
    letter-spacing: 0.03em !important;
    font-family: 'Noto Serif JP', serif;
}

/* Article Card */
.article-card {
    transition: all 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.article-thumb {
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* 16:9 */
}

.article-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.1);
}

/* Category Label */
.cat-label {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid #333;
    color: #333;
    background: #fff;
    transition: all 0.3s;
}

/* Pagination */
.pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    color: #333;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.pagination-link:hover,
.pagination-link.is-current {
    background-color: var(--accent-color, #da4c1f);
    color: #fff;
    border-color: var(--accent-color, #da4c1f);
}

/* --- Article Detail Styles (記事詳細) --- */
.post-content h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.75rem;
    font-weight: bold;
    border-bottom: 2px solid var(--accent-color, #da4c1f);
    padding-bottom: 0.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: bold;
    border-left: 4px solid var(--accent-color, #da4c1f);
    padding-left: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
}

.post-content li {
    list-style: disc;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
}

/* スマホ調整 */
@media (max-width: 640px) {
    .post-content h2 { font-size: 1.4rem; }
    .post-content h3 { font-size: 1.2rem; }
}