/* セクション全体のスタイル */

.blog-section {
    margin-top: 100px;
    margin-bottom: 150px;
    width: 100%;
    position: relative;
    overflow: visible;
    padding-bottom: 100px;
}


/* セクション全体のスタイル */

.blog-section {
    margin-top: 100px;
    margin-bottom: 150px;
    width: 100%;
    position: relative;
    overflow: visible;
    padding-bottom: 200px;
    box-sizing: border-box;
}


/* 背景スタイル */

.blog-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    z-index: -1;
    background-size: contain;
    box-sizing: border-box;
}

.blog-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('../../img/toshojuku_top_blog_PC.jpg') no-repeat center/cover;
    background-size: cover;
    z-index: -1;
    box-sizing: border-box;
}

.blog-container {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: left;
    max-width: 200px;
    margin-bottom: 20px;
    min-width:150px;
}

.blog-header .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.blog-header .section-header .icon {
    width: 12px;
    height: 12px;
    background-color: red;
    margin-right: 10px;
}

.blog-header .section-header .title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.blog-header .section-subtitle {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
}

.blog-header .section-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.blog-button {
    display: inline-block;
    margin-top: 0px;
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 50px;
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    background-color: white;
    /* 背景色を白に */
    border-radius: 10px;
    /* 角を丸く */
    padding: 20px;
    /* 内側に余白を追加 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* 少し影を追加して立体感を演出 */
    z-index: 10;
    /* 他の要素よりも手前に表示 */
}

.blog-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffc0cb;
    /* 境界線を1pxに */
    padding: 1rem 0;
}

.blog-item:last-child {
    border-bottom: none;
    /* 最後のアイテムはボーダーを削除 */
}

.blog-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 20px;
}

.blog-item .date {
    font-size: 0.9rem;
    color: red;
    margin-bottom: 5px;
}

.blog-item .title {
    font-size: 1rem;
    color: #000;
    font-weight: bold;
    text-align: left;
}

@media (min-width: 960px) {
    .blog-container {
        flex-direction: row;
    }
    .blog-header {
        margin-right: 2rem;
        margin-bottom: 0;
    }
    .blog-list {
        flex-grow: 1;
        margin-top: 0;
    }
}

@media (max-width: 960px) {
    .blog-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: url('../../img/toshojuku_top_blog_SP.jpg') no-repeat center/cover;
        background-size: contain;
        z-index: -1;
        box-sizing: border-box;
    }
    .blog-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}