/* タイトルのスタイル */

.zisseki-section .zisseki-title {
    font-size: 32px;
    color: #BD0013;
    font-weight: bold;
    letter-spacing: 6px;
    text-align: center;
}


/* 赤線のスタイル */

.zisseki-section .red-line {
    display: block;
    width: 100px;
    height: 2px;
    background-color: #BD0013;
    margin: 40px auto;
}

.zisseki-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 20px;
    padding-top: 0;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    /* 画像と説明を上下中央に配置 */
    justify-content: space-between;
    /* アイテム間のスペースを調整 */
}

.zisseki-section .container img {
    max-width: 100%;
    height: auto;
}

.zisseki-section .image {
    flex: 1;
    min-width: 300px;
}

.zisseki-section .description {
    flex: 1;
    padding: 20px;
    min-width: 300px;
    font-size: 17px;
    text-align: left;
}

.zisseki-section .description p {
    font-size: 18px;
}

.strong-point-list {
    margin-bottom: 15px;
}

.strong-point-list p {
    font-size: 40px;
    margin: 10px 0;
    font-weight: bold;
    margin-bottom: 0;
}


/* スマホ表示時のレイアウト */

@media (max-width: 768px) {
    .zisseki-section .container {
        flex-direction: column;
        text-align: center;
    }
    .zisseki-section .description {
        padding: 10px;
    }
    .zisseki-section .description p {
        font-size: 14px;
    }
    .strong-point-list p {
        font-size: 15px;
    }
}