/*
Theme Name: SLICE BAR Theme
Author: SLICE 1947 Inc.
Description: Corporate site theme for SLICE 1947
Version: 1.2
*/

/* --- WordPress固有のクラス調整 --- */
.wpcf7-spinner { position: absolute; }
.wpcf7-not-valid-tip { color: #b89b5e; font-size: 0.8rem; margin-top: 0.5rem; display: block; }
.wpcf7-response-output { margin-top: 2rem; padding: 1rem; border: 1px solid #b89b5e; font-size: 0.9rem; text-align: center; }

/* --- ページネーション (一覧ページ) --- */
.pagination .page-numbers {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888; font-family: 'Cinzel', serif; font-size: 0.8rem;
    transition: all 0.3s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    border-color: #b89b5e; color: #b89b5e; background: rgba(184, 155, 94, 0.1);
}
.pagination .dots { border: none; }


/* --- 記事本文スタイル (.entry-content) --- */
/* ここで投稿ページの読みやすさを調整します */

.entry-content {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif; /* 明朝体で統一 */
    font-weight: 400;
    line-height: 2.0; /* 行間を広げて読みやすく */
    color: #e5e5e5;   /* 真っ白すぎない読みやすい色 */
    font-size: 1rem;
}

/* 見出し H2 */
.entry-content h2 {
    font-size: 1.75rem; /* 約28px */
    font-weight: 700;
    color: #ffffff;
    margin-top: 4rem;    /* 上の余白を大きく */
    margin-bottom: 2rem; /* 下の余白 */
    padding-bottom: 1rem;
    border-bottom: 1px solid #b89b5e; /* ゴールドの下線 */
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* 見出し H3 */
.entry-content h3 {
    font-size: 1.4rem; /* 約22px */
    font-weight: 600;
    color: #e6cf9c; /* 明るいゴールド */
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #b89b5e; /* 左側にアクセントライン */
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* 見出し H4 */
.entry-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* 段落 */
.entry-content p {
    margin-bottom: 2rem; /* 段落ごとの間隔 */
}

/* 強調 (太字) */
.entry-content strong, 
.entry-content b {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(transparent 70%, rgba(184, 155, 94, 0.2) 70%); /* マーカー風 */
}

/* リスト (箇条書き) */
.entry-content ul {
    list-style: disc;
    margin-left: 1.5em;
    margin-bottom: 2rem;
    color: #d1d1d1;
}
.entry-content ol {
    list-style: decimal;
    margin-left: 1.5em;
    margin-bottom: 2rem;
    color: #d1d1d1;
}
.entry-content li {
    margin-bottom: 0.8rem;
    padding-left: 0.5em;
}

/* 引用 */
.entry-content blockquote {
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    border-left: 2px solid #b89b5e;
    background: rgba(255, 255, 255, 0.03);
    font-style: italic;
    color: #bbb;
}

/* 画像 */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    opacity: 0.95;
}

/* リンク */
.entry-content a {
    color: #b89b5e;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s, opacity 0.3s;
}
.entry-content a:hover {
    color: #fff;
    opacity: 0.8;
}

/* スマホ調整 */
@media (max-width: 768px) {
    .entry-content {
        font-size: 0.95rem;
        line-height: 1.9;
    }
    .entry-content h2 {
        font-size: 1.4rem;
        margin-top: 3rem;
    }
    .entry-content h3 {
        font-size: 1.2rem;
        margin-top: 2.5rem;
    }
}


/* --- 記事ナビゲーション (PREV/NEXT) --- */
.post-navigation a {
    color: #666; 
    font-family: 'Cinzel', serif; 
    transition: color 0.3s;
    font-size: 0.8rem;
}
.post-navigation a:hover { 
    color: #b89b5e; 
}