/* 出会い掲示板ページ用スタイル */

.hatten-content {
    margin: 0 auto;
}

/* ページタイトル */
.page-title {
    background-color: #ffffff;
    border-bottom: 2px solid #0099cc;
    display: flex;
    align-items: center;

}

.page-title::before {
    content: '';
    display: block;
    width: 12px;
    height: 30px;
    background-color: #0099cc;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 8px;
}

.page-title h2 {
    font-size: 16px;
    color: #0099cc;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

/* 注意喚起セクション */
.notice-section {
    background-color: #ffffff;

    border-bottom: 1px solid #d0d0d0;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.notice-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-section li {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

.notice-section li:last-child {
    margin-bottom: 0;
}

.notice-icon {
    color: #0099cc;
    font-weight: bold;
    margin-right: 4px;
}

.notice-section a {
    color: #0099cc;
    text-decoration: none;
}

.notice-section a:hover {
    text-decoration: underline;
}

/* 掲示板リスト */
.board-list {
    margin-bottom: 30px;
    background-color: #fff;
}

.board-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #e6e6e6;
    background-color: #ffffff;
    margin-bottom: 0;
    border-radius: 0;
    min-height: 100px;
}

.board-item:last-child {
    margin-bottom: 0;
}

.board-icon {
    display: block; /* サムネを表示 */
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    overflow: hidden;
    border: 1px solid #ddd;
    background-color: #fff;
}

.board-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.board-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}



/* シンプルなカテゴリラベル */
.item-label {
    display: inline-block;
    background-color: #0099cc;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.board-info h3 {
    font-size: 14px;
    margin: 0 0 6px 0;
    color: #0099cc;
    font-weight: bold;
}

.board-info a {
    color: #0099cc;
    text-decoration: none;
}

.board-info a:hover {
    text-decoration: underline;
}

.board-info p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.board-info p:last-child {
    margin-bottom: 0;
}

.board-links {
    font-size: 12px;
    color: #0099cc;
}

.board-links a {
    margin-right: 10px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .board-item {
        grid-template-columns: 80px 1fr;
        gap: 10px;
        padding: 10px;
    }

    .board-icon {
        width: 50px;
        height: 80px;
        font-size: 28px;
    }

    .board-info h3 {
        font-size: 13px;
    }

    .board-info p {
        font-size: 11px;
    }
}
