.page-article {
    & h3 {
        font-weight: 600;
        position: relative;
    }

    & h3::before {
        display: block;
        position: absolute;
        font-size: 0.5em;
        top: 0.7em;
        left: -1.7em;
        content: "●";
        color: var(--color-font-orange);
    }

    & section:has(>h3:first-child) {
        border: 2px solid #EEE;
        border-radius: 10px;
        padding: 1.5em 2em;
        margin-top: 16px;
    }

    .payment-item {
        border: 1px solid var(--color-white);
        border-radius: 6px;
        padding: 12px;
        margin-top: 12px;

        & dt {
            font-size: 1.7rem;
            font-weight: 600;
            padding-left: 14px;

            position: relative;
        }

        & dt::before {
            display: inline;
            content: "・";
            color: var(--color-font-orange);

            position: absolute;
            font-size: 25px;
            top: 50%;
            transform: translateY(-50%);
            left: -9px;
        }

        & dd {
            margin-top: 6px;
            padding-left: 14px;
            line-height: 1.6;
        }

        & .fax {
            font-weight: 600;

            & span {
                font-family: "Inter", sans-serif;
            }
        }

    }

    & .amount-list {
        margin-top: 12px;
    }

    & .amount-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 12px;

        & span {
            font-family: "Inter", sans-serif;
        }

        & dt {
            font-weight: 400;
        }

        & dd {
            font-weight: 600;
            font-size: large;
            margin-right: 4px;
        }
    }

    & .amount-item:nth-of-type(odd) {
        background-color: rgba(var(--color-white-rgb), 0.5);
    }

    & .sct-list {
        margin-top: 12px;
    }

    & .sct-list>.sct-item+.sct-item {
        margin-top: 20px;
    }

    & .sct-item>dt {
        font-weight: 400;
        padding: 12px;
        background-color: rgba(var(--color-white-rgb), 0.5);
    }

    & .sct-item>dd {
        margin-top: 10px;

        & p {
            padding: 0 12px;
            margin-top: 0;
        }
    }

    & .sct-item {
        & ul {
            margin-top: 10px;
        }

        & li {
            padding: 0 12px;
            list-style: none;
        }

        & li::before {
            display: inline;
            content: "・";
        }
    }

    & .sct-item_list {
        padding: 0 10px;
        margin-top: 10px;

        & dt {
            font-weight: 600;
            margin-top: 10px;
        }

        & dt::before {
            display: inline;
            content: "・";
            color: var(--color-font-orange);
        }

        & dd {
            margin: 6px 0 0 14px;
        }
    }

}

.side-menu {
    @media (width < 1024px) {
        border-top: 1px solid var(--color-font-black);
        margin-top: 32px;
        padding-top: 32px;
        font-size: 1.3rem;
        color: var(--color-font-gray);
    }
}

.list {
    list-style: inside;
}

.img-r {
    width: auto;
    float: right;
}


@media (min-width: 1024px) {


    .page-article {
        & .amount-list {
            width: 60.5%;
        }

        & .sct-list>.sct-item+.sct-item {
            margin-top: 0;
        }

        & .sct-item {
            display: flex;
            justify-content: space-between;
            border-bottom: 2px solid transparent;

            & dt {
                width: 28%;
                margin: 0;
            }

            & dd {
                width: 69.9%;
                margin-top: 0;
                padding: 12px 0;
            }
        }

        & .sct-item_list {
            padding: 0;
            margin-top: 0;

            & dt,
            & dd {
                width: 100%;
            }
        }
    }

}

.responsive-img {
    max-width: 100%;
    width: auto;
    height: auto;
}