/* ----------------------------------------------

 * 導入

---------------------------------------------- */
.intro {
    margin-bottom: -26px;
}

/* ----------------------------------------------

 * 目次

---------------------------------------------- */
.toc {
    padding: 16px;
    color: #095DFA;
    background: var(--color_white);
}

.toc .index {
    color: var(--color_black);
    font-weight: var(--fontweight_bold);
}

.toc nav {
    max-height: fit-content;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
    .toc nav.closed {
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

.toc nav ul {
    margin: 0rem 1rem 1rem 1.5rem;
    padding: 1rem 0 0;
    
}

    .toc li {
        margin-bottom: 1rem;
        list-style-type: disc;
    }

/* 各セクション */
.policy_section {
}

.policy_section p {
    line-height: 1.6;
}


.policy_section ol {
    margin: 2rem 0.5rem 2rem 1.5rem;
    list-style: decimal;
    line-height: 1.6;
    letter-spacing: 0.05rem;
}

.policy_section ul {
    margin: 2rem 0.5rem 2rem 1.5rem;

    line-height: 1.6;
    letter-spacing: 0.05rem;
}

.policy_section li:not(:last-child) {
    margin-bottom: 1em;
}

.policy_section dl {
    margin: 1rem 0;
}
    .policy_section dt {
        margin-bottom: 0.5rem;
        font-weight: var(--fontweight_bold);
    }
    .policy_section dd {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {

    .policy_section ol,
    .policy_section ul {
        font-size: var(--fontsize_18);
    }

}



.policy_section .table_default {
    margin: 24px 0;
}
    .policy_section .table_default ul {
        list-style-type: disc;
        margin: 20px 0 20px 1.5rem;
    }

/* PC用判定 */
@media screen and (pointer: fine) and (hover: hover) and (orientation: landscape) and (min-width: 800px) and (min-height: 600px) {
    .policy_section .table_default {
        margin: 64px 0;
    }
    .policy_section .table_default th,
    .policy_section .table_default td {
        width: auto;
        
    }
        .policy_section .table_default th {
            padding-top: 64px;
            border: none;
        }
        .policy_section .table_default td {
            padding-bottom: 64px;
        }
}