.section-internal-link .footer-page-list {
    box-sizing: border-box;
    transition: height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

@media (max-width: 1280px) {
    .section-internal-link .footer-page-list {
        overflow: hidden;
        height: 0px;
    }

    .section-internal-link .title-list {
        display: flex;
        position: relative;
        cursor: pointer;
        height: 46px;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.80);
        padding-top: 8px;
    }

    .section-internal-link .title-list:after {
        content: "";
        width: 14px;
        height: 14px;
        display: flex;
        background: url('/wp-content/uploads/2026/08/Symbol.svg');
        position: absolute;
        left: 0;
        top: 18px;
        z-index: 100;
        background-repeat: no-repeat;
        background-size: contain;
        transform: rotate(-180deg);
        transition: transform 0.4s ease;
    }

    .section-internal-link.active .title-list:after {
        transform: rotate(0deg);
    }
    
    .section-internal-link.active .footer-page-list {
        padding-bottom: 12px;
    }
}