/* --- 2カラム・コラムレイアウト --- */
.column-layout {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0px;
    align-items: flex-start;
}
/* 右：メインコンテンツ */
.column-main {
    flex: 1;
}

/* --- カテゴリー表題：タイトルのすぐ下に全幅ライン --- */
.category-header-simple {
    margin-bottom: 40px;
    /* 外枠の下線は消して、タイトル側の線にまとめます */
    border-bottom: none; 
    position: relative;
}

.category-title-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.0rem;
    color: #333;
    /* ラインとの間の余白 */
    padding-bottom: 15px; 
    /* 右カラムいっぱいに広がる濃いライン */
    border-bottom: 2px solid #064e3b; 
    /* タイトルを横幅いっぱい（100%）に広げてラインを端まで伸ばす */
    display: block; 
    width: 100%;
}
.category-intro-text {
    display: block;
    font-size: 0.95rem;
    color: #666;
    /* ラインのすぐ下にくるように余白を調整 */
    margin-top: 20px; 
    line-height: 1.6;
}


.entry-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 45px;
    color: #000;
}

.entry-content h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    margin: 60px 0 30px;
    padding-left: 15px;
    border-left: 4px solid #064e3b;
}

.entry-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

/* 知識ボックス（service.htmlのカード風） */
.knowledge-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 35px;
    margin-bottom: 30px;
}

.knowledge-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #064e3b;
    font-weight: 700;
}

/* 外部リンク用アイコン */
.external-links .sidebar-list a::after {
    content: "↗";
    font-size: 0.7rem;
    margin-left: 8px;
    color: #ccc;
}



/* --- 記事一覧のデザイン --- */
/* --- カテゴリーページ冒頭のスタイル --- */
.archive-intro {
    margin-bottom: 50px;
}

.category-main-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* 以前の archive-header（件数表示用）は削除または非表示でOKです */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-item {
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.post-link {
    display: block;
    padding: 30px;
    color: inherit !important;
}

.post-date {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

.post-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.post-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2行で省略（古いブラウザ用） */
    line-clamp: 2;         /* 2行で省略（最新の標準設定） */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: #064e3b;
    border-bottom: 1px solid #064e3b;
    padding-bottom: 2px;
}
