.child_table {
    max-width: 600px;
    width: 100%;
}

.naka_table td {
    text-align: center;
}

.join_ul li,
.child_ul li {
    padding-bottom: 0.5em;
}

ol {
    list-style-type: none;
    counter-reset: number;
    /* カウンターを初期化 */
}

ol li {
    position: relative;
    padding-left: 1.5em;
}

/* beforeでカウンターを作成 */
ol li::before {
    content: counter(number);
    counter-increment: number;
    padding: 0 0.275em;
    position: absolute;
    top: 0;
    left: 0;
}

/* afterで○を作る */
ol li::after {
    content: '';
    /* 配置を調整 */
    position: absolute;
    display: block;
    top: 0.75em;
    left: 0;
    transform: translateY(-50%);
    /* ○を作る */
    width: 1.2em;
    height: 1.2em;
    border: 2px solid #000;
    border-radius: 50%;
}

.child_ul {
    margin-left: 1.5em !important;
}

.section_naka_ttl_icon {
    height: 1.4em;
}

.naka_left {
    width: 100%;
}

.con_y p {
    margin-bottom: 1em;
}

/* 20250612 */
.txt_ind1 {
    margin-top: 0.5em;
    text-indent: -1em;
    padding-left: 1em;
}

/* 20250623 */
.txt_ind2 {
    display: inline-block;
    text-indent: 1em;
}

.txt_ind2 a {
    font-size: 1.3em;
    text-decoration: underline;
    color: blue;
}

.txt_ind2 a.normal-size {
    font-size: 1em;
}

.txt_ind2 a:visited {
    color: blue;
}

.txt_ind2 a:hover {
    color: black;
    text-decoration: none;
}

@media screen and (max-width:1024px) {
    .naka_left {
        float: left;
        width: 95%;
    }
}