@charset "utf-8";
/* CSS Document */


.p-info-post-content h3 {
    color: #b60081;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.bold-text {
    font-weight: bold;
}

table.table-normal {
    margin: 0 0 50px;
    width: 55%;
}

table.table-normal td,
table.table-normal th {
    width: 33.3%;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border-collapse: collapse;
    border: 1px solid #c8c8c8;
}

table.table-normal th {
    background-color: #ddd;
    font-weight: bold;
    vertical-align: middle;
}

table.table-5cell {
    margin: 0 auto 50px;
    width: 100%;
}

table.table-5cell td,
table.table-5cell th {
    width: 20%;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border-collapse: collapse;
    border: 1px solid #c8c8c8;
}

table.table-5cell th {
    background-color: #ffe290;
    font-weight: bold;
    vertical-align: middle;
}

.annotation-text {
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.annotation-text::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

.dot-text {
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.dot-text::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
}

.num-indent {
    display: block;
    margin-left: 3rem;
    list-style-type: decimal;
}

.num-indent li {
    display: revert;
}

p.tab-text-box {
    display: inline-block;
    /*padding: 0 0 1.5rem 2rem;*/
    padding: 0 0 0 2rem;
}

.tab-text-box {
    counter-reset: number 0;
}
.tab-text-box .num-text {
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}
.tab-text-box .num-text::before {
    counter-increment: number 1;
    content: counter(number)".";
    position: absolute;
    top: 0;
    left: 0;
}

.p-info-post-content img {
    width: 100%;
}


@media screen and (max-width: 600px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    table.table-normal {
        margin: 0 auto 30px;
        width: 95%;
    }

    table.table-5cell {
        display: block;
        margin: 0 auto 30px;
        width: max-content;
    }

    table.table-5cell .last td:last-child {
        border-bottom: solid 1px #ccc;
        width: 100%;
    }

    table.table-5cell th,
    table.table-5cell td {
        border-bottom: none;
        display: block;
        width: 100%;
    }

    table.table-5cell td {
        font-size: 4.5vw;
    }

    .num-indent {
        margin-left: 2rem;
    }

    p.tab-text-box {
        display: block;
        margin: auto;
        padding: 0 0.5rem 1.5rem;
    }
}