/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 29 2026 | 13:02:55 */
/*//////////////////////////////////
トップページの記事一覧（タイル状のレイアウト）のデザインとレスポンシブ表示
/*//////////////////////////////////

/* 1. 【重要】トップページ（.home）にいる時だけ、指定したIDの中身を小さくする */
.home #exclusive-top-tile-layout .listing-item a.title {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

.home #exclusive-top-tile-layout .listing-item .date,
.home #exclusive-top-tile-layout .listing-item .author {
    font-size: 0.85rem !important;
}

/* 2. タイルのレイアウト維持（これもトップページ限定にする） */
.home #exclusive-top-tile-layout {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

@media (max-width: 767px) {
    .home #exclusive-top-tile-layout {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* 3. カードの基本構造（ここもトップページ限定） */
.home #exclusive-top-tile-layout .listing-item {
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    float: none !important;
}

.home #exclusive-top-tile-layout .listing-item img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    float: none !important;
}


/* 1. 一覧ページ（アーカイブ）の「記事タイトル」だけを狙い撃ち */
.archive .entry-title a,
.archive .media-title a,
.archive .post-list-title a {
    font-size: 1.5rem !important; /* タイトルはこの大きさ */
    font-weight: bold !important;
}

/* 2. 「続きを読む」ボタンを元のサイズ（または少し小さめ）に固定 */
.archive .more-link,
.archive .vk_post_btn,
.archive .entry-readmore a {
    font-size: 0.9rem !important; /* ボタンの文字サイズを調整 */
    font-weight: normal !important;
    display: inline-block !important;
    padding: 5px 15px !important;
}

/* 3. 本文の抜粋テキストも元のサイズに維持 */
.archive .entry-excerpt,
.archive .entry-content p {
    font-size: 1rem !important;
}