.blog-card-custom {
    display: flex; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    overflow: hidden; 
    margin: 20px 0; 
    background-color: #fff;
}

.blog-card-custom .card-link {
    display: flex; 
    text-decoration: none; 
    color: #333; 
    width: 100%;
    padding: 10px;
    align-items: center;
}

.blog-card-custom .card-thumb {
    flex-shrink: 0; 
    width: 120px; 
    height: 120px; 
    margin-right: 15px;
}

.blog-card-custom .card-thumb img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 4px;
}

.blog-card-custom .card-text {
    flex-grow: 1;
}

.blog-card-custom .card-label {
    margin: 0 0 5px 0; 
    font-size: 10px; 
    color: #555; 
    text-transform: uppercase;
}

.blog-card-custom .card-title {
    margin: 0; 
    font-weight: bold; 
    font-size: 15px; 
    line-height: 1.4;
}

.follow-area {
  display: none !important;
}

/* Cocoonのフォローボタンエリアにあるホームアイコン（家マーク）を非表示にする */
.sns-buttons .follow-buttons-wrap .home-button {
    display: none !important;
}

/* 全体のはみ出しを防止するお守り */
.entry-content img,
.entry-content iframe,
.entry-content div {
    max-width: 100%;
    box-sizing: border-box;
}

/* ヘッダーのサイトタイトルとキャッチフレーズを非表示にする */
.header-container .site-name-text,
.header-container .tagline {
  display: none;
}


/* 記事内のボタンをマウスホバーした際の設定 */
.btn-wrap a:hover,
.wp-block-button__link:hover {
    color: #ffffff !important;    /* 文字色は白をキープ */
    background-color: #0080cc;    /* 背景色（お好みで） */
    opacity: 0.7;                 /* 0.9から0.7に下げて透明感をアップ！ */
    text-decoration: none !important;
    transition: 0.3s;             /* ふわっと変化させる（これを入れると綺麗です） */
}

/* 画像保存右クリック禁止 */
img {
pointer-events: none;
}