

/* image */

.img-right {
    float: right;
    margin: 35px 0 0 23px;
    border-radius: 10px;

    + .article_paragraph {
        padding-top: 30px;
    }
}

.img-left {
    float: left;
    margin: 35px 23px 0 0;
    border-radius: 10px;

    + .article_paragraph {
        padding-top: 30px;
    }
}

.image_1 {
    width: 960px;
    margin-top: 32px;
}

.hla-image {
    width: 960px;
    margin-top: 24px
}

/* table */

table.matrix_diagram {
    margin-top: 24px;
    background-color: #F2F2F2;
    width: 100%;
    border-collapse: collapse;
}

table.matrix_diagram,
table.matrix_diagram th,
table.matrix_diagram td {
    border: 1px solid #CECECE;
}

table.matrix_diagram tr th:first-child {
    width: 120px;
}

table.matrix_diagram tr th {
    width: 280px;
}

table.matrix_diagram td {
    background-color: white;
}

table.matrix_diagram tr {
    vertical-align: top;
}

.matrix_diagram_heading {
    font-size: 18px;
    color: #2E6AAE;
    margin-top: 42px;
    width: 100%;
}

.matrix_diagram_table_heading {
    color: #273C4B;
    text-align: left;
    text-indent: 10px;
    font-weight: 600;
    line-height: 50px;
}

.matrix_diagram_table_list {
    list-style-type: none;
    margin-top: 10px;
}

.matrix_diagram_table_list_item {
    color: #273C4B;
    text-align: left;
    margin-left: 20px;
    margin-right: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    box-sizing: border-box;
    position: relative;
}

.matrix_diagram_table_list_item::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2E6AAE;
    display: block;
    position: absolute;
    top: 12px;
    left: -14px;
}

/* reference */

#reference {
    box-sizing: border-box;
    width: 960px;
    margin-bottom: 130px;
}

.reference_container {
    padding: 40px 40px 46px 40px;
    background-color: white;
}

#reference h4.reference {
    margin: 0;
    font-size: 14px;
    color: #273C4B;
    font-weight: 700;
}

#reference p.reference {
    margin-top: 8px;
    font-size: 14px;
    color: #273C4B;
    font-weight: 500;
}

#reference h4.reference + p.reference {
    margin-top: 4px;
}

#reference a.reference {
    color: #2E6AAE;
}

.background-image {
    position: relative;
    height: 0;
    display: flex;
    justify-content: center;
}

.background-image .pc {
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    z-index: -1;
}

.background-image .sp {
    display: none;
}
h1.article_heading + h2.article_heading{
    padding-top: 16px;
    margin-top: 40px;
}

#patient_profile {
    .patient_profile {
        margin: 56px auto;
        padding: 40px;
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 0 3px 6px rgba(49, 44, 44, .1);

        .profile_contents {
            display: flex;
            justify-content: space-between;
            gap: 36px;

            img {
                width: 300px;
                height: 300px;
                border-radius: 20px;
            }

            .text {
                .profile {
                    position: relative;
                    font-size: 20px;
                    font-weight: 400;
                    color: #2E6AAE;
                    padding: 10px;
                    background-color: rgba(46, 106, 174, .1) ;
                    border-radius: 5px;
                    margin-bottom: 23px;
                }

                .name {
                    display: block;
                    font-size: 18px;
                    font-weight: 400;
                    color: #2E6AAE;
                    padding: 0 5px;
                    margin-bottom: 20px;
                }

                .dashed-note {
                    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
                                    linear-gradient(180deg, #CACED1 1px, transparent 1px);
                    background-size: 8px 100%, 100% 2.5em;
                    line-height: 2.5em;
                    padding-bottom: 1px;

                    p {
                        font-size: 14px;
                        font-weight: 400;
                        padding: 0 5px;
                    }
                }
            }
        }
    }
}

#patient_box {
    margin-bottom: 120px;
    .patient_box {
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 0 3px 6px rgba(49, 44, 44, .1);
        .profile_box_contents {
            padding: 40px 40px 60px;

            .title {
                position: relative;
                font-size: 24px;
                font-weight: bold;
                color: #2E6AAE;
                padding-bottom: 20px;
                margin-bottom: 25px;

                &::before,
                &::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    height: 4px;
                    border-radius: 6px;
                }

                &::before {
                    width: 100%;
                    background-color: #EDF3F7;
                }

                &::after {
                    left: 0;
                    width: 100px;
                    background-color: #2E6AAE;
                }
            }
        }
    }
}

.onlyPC {
    display: block;
}

