/* カテゴリー名と説明 */
.shinryo-category-info {
    margin-bottom: 20px;
    text-align: left;
}

/* h3の補足設定 */
.shinryo-category-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333333;
    position: relative;
    padding: .5em .7em .4em;
    border: 3px solid #71a9ba; /* 四方を囲む罫線 */
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    background: #fff; /* 背景色を指定（矢印が見やすくなるため） */
    border-radius: 0px; /* 角を丸くしたい場合 */
}
.shinryo-category-title::before,
.shinryo-category-title::after {
    position: absolute;
    left: 30px;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.shinryo-category-title::before {
    background-color: #71a9ba;
}
.shinryo-category-title::after {
    bottom: -11px;
    background-color: #fff;
}

.shinryo-category-description {
    font-size: 16px;
    color: #666;
    background: #eef2f3;
    padding: 1rem 1rem 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid #71a9ba;
    text-align: left;
}

/* 投稿一覧 */
.shinryo-post-list {
    margin: 0 0 3.5rem 0;
}

.shinryo-post-item {
}

.shinryo-post-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.shinryo-post-title {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    position: relative; /* ::beforeを使用するために相対位置を設定 */
}

.shinryo-post-link button {
    background-color: #71a9ba;
    color: #fff;
    padding: 0 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 9pt;
    font-weight: bold;
}

.shinryo-post-link button:hover {
    background-color: #005177;
}

/* 詳細コンテンツ */
.shinryo-post-content {
    display: none;
    margin-top: 10px;
}

/* 区切り線 */
.cosmetic-hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

@media (max-width: 768px) {
    .shinryo-post-title {
        width: 60vw;
    }
}
