
@charset "utf-8";

.el_container {
    background-color: #ffffff; /* 全体の背景を白に設定 */
    padding: 20px; /* 全体に適度な余白を設定 */
    margin           : 1.5em;
}

.el_content-wrapper p {
    color: #000000;
    line-height: 170%;
    margin: 5px 0;
}

.el_container p, .el_ability {
}
.el_image-wrapper {
    text-align: center;
    margin-bottom: 20px; /* 画像と表の間にスペースを追加 */
}

.el_main-image {
    max-width: 100%;
    height: auto;
}

.el_content-wrapper {
    background-color: #ffffff; /* 表全体の背景を白に設定 */
    border: 1px solid #000000; /* 表の外枠を1pxの黒で囲む */
    padding: 0;
    box-sizing: border-box;
}

/* 表のCSS */
.el_block {
    display: flex;
    border-bottom: 1px solid #000000; /* 各ブロックの下の線を1pxで統一 */
    width: 100%;
    box-sizing: border-box;
}

.el_block-a, .el_block-d {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    width: 100%; /* 横幅を100%に設定して線を端までつける */
    box-sizing: border-box;
}

.el_block-b, .el_block-c {
    display: flex;
    flex-wrap: nowrap;
    width: 100%; /* 横幅を100%に設定して線を端までつける */
    box-sizing: border-box;
    border-bottom: 1px solid #000000; /* 横線が確実に端まで届くように設定 */
}

.el_ability {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-left: 1px solid #000000;
    box-sizing: border-box;
    color: #000000;
}

.el_block-b .el_ability:first-child, 
.el_block-c .el_ability:first-child {
    border-left: none; /* 左端の列には左の線をつけない */
}

.el_block-b .el_ability:last-child, 
.el_block-c .el_ability:last-child {
    border-right: none; /* 右端のセルの右の線を削除して重複を避ける */
}

.el_block-d {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    width: 100%; /* 横幅を100%に設定して線を端までつける */
    box-sizing: border-box;
    border-bottom: none;
}
