@charset "UTF-8";

/* ============================================================
   日々のようす（アーカイブ）Zen丸ゴシック・厚み・背景統一版
   ============================================================ */

.post-archive-page {
    background-color: #fcfaf5 !important;
    padding-bottom: 80px;
    font-family: 'Zen Maru Gothic', sans-serif !important;
}

/* 💡 ヒーローエリア（サイト共通の厚みとドット装飾） */
.post-hero {
    background-color: #e67e22; /* 濃いめのオレンジに統一 */
    background-image: radial-gradient(#efb68d 2px, transparent 2px);
    background-size: 25px 25px;
    color: #fff;
    padding: 100px 20px 80px;
    text-align: center;
    margin-bottom: 60px;
}

.post-hero h1 { 
    font-size: 34px; 
    font-weight: 900 !important; 
    margin-bottom: 15px; 
    letter-spacing: 0.05em;
}

.post-hero p { 
    font-size: 17px; 
    font-weight: 700 !important; /* 本文厚み */
}

.post-list-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 💡 グリッドレイアウト */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px; /* 余白を広げてゆとりを */
}

/* 💡 タイルアイテム（ガラス風カード） */
.post-tile-item {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #fff;
    border-radius: 30px; /* 角丸を強化 */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.05);
    transition: 0.3s ease;
    text-decoration: none !important; /* リンク下線消去 */
    display: block;
}

.post-tile-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(93, 64, 55, 0.1);
}

.post-tile-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background-color: #eee;
}

.post-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.post-tile-item:hover .post-tile-img img { 
    transform: scale(1.08); 
}

/* カード内のテキストエリア */
.post-tile-info { padding: 30px 25px; }

.post-tile-date {
    display: inline-block;
    font-size: 14px;
    color: #e67e22; /* オレンジ */
    font-weight: 900 !important;
    margin-bottom: 12px;
    background: #fff8f0;
    padding: 2px 12px;
    border-radius: 10px;
}

.post-tile-title {
    font-size: 19px;
    font-weight: 900 !important; /* 最大の厚み */
    color: #4a3728;
    line-height: 1.6;
    margin: 0;
}

/* 💡 ページネーション（厚みと丸みの強化） */
.pagination-area {
    margin-top: 80px;
    text-align: center;
}

.pagination-area .page-numbers {
    display: inline-block;
    padding: 12px 20px;
    margin: 0 6px;
    background: #fff;
    border-radius: 15px;
    color: #4a3728;
    font-weight: 900 !important;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.pagination-area .page-numbers.current {
    background: #e67e22;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.pagination-area .page-numbers:hover:not(.current) {
    background: #fdfaf5;
    transform: translateY(-2px);
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .post-hero { padding: 80px 20px 60px; }
    .post-hero h1 { font-size: 26px; }
    .post-grid { grid-template-columns: 1fr; gap: 30px; }
    .post-tile-info { padding: 25px 20px; }
    .post-tile-title { font-size: 17px; }
}