/* column-post シングルページのスタイル */
.column-post-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* タイトル */
.column-post-single h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
}

/* 写真 */
.post-photo {
    margin-bottom: 40px;
    text-align: center;
}

.post-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* コンテンツラッパー */
.content-wrapper {
    margin-top: 30px;
}

/* コンテンツアイテム */
.content-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.content-item:last-child {
    border-bottom: none;
}

/* 小見出し */
.content-item h2 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

/* 本文 */
.sub-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .column-post-single {
        padding: 30px 15px;
    }
    
    .column-post-single h1 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .post-photo {
        margin-bottom: 30px;
    }
    
    .content-item h2 {
        font-size: 1.75rem;
    }
    
    .sub-content {
        font-size: 1.5rem;
    }
}