/*
 *  2026-01 FAQ
 */
html {
    font-size: 62.5%;
    overflow-x: hidden;
    overflow-y: scroll;
}

.faq-categories .fc-parent {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.faq-categories .fc-parent li {
    display: flex;
    width: calc(50% - 16px);
    border: 1px solid #EE96BD;
    border-radius: 20px;
    height: 160px;
    overflow: hidden;
}

.faq-categories .fc-parent li a {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center;
    color: #222222;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.faq-categories .fc-parent li a:hover {
    background: #FCECF3;
}

.faq-categories .fc-parent li a.st-active:after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 14px 10px 0 10px;
    border-color: #FFFFFF transparent transparent transparent;
    transform: rotate(0deg) translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 30px;
}

.faq-categories .fc-parent li a.st-active {
    background: #EE96BD;
    color: #FFF;
}

.faq-categories .fc-parent li .ttl {
    font-size: 3.2rem;
    font-weight: bold;
    display: flex;
    position: relative;
    margin-bottom: 12px;
    gap: 16px;
    align-items: center;
}

.faq-categories .fc-parent li .ttl img {
    display: block;
    width: 32px;
}

.faq-categories .fc-parent li a.st-active .ttl img {
    display: none;
}

.faq-categories .fc-parent li .ttl img.img-hover {
    display: none;
}

.faq-categories .fc-parent li a.st-active .ttl img.img-hover {
    display: block;
}

.faq-categories .fc-parent li .sub-ttl {
    width: 100%;
    text-align: center;
    padding-bottom: 0;
    font-size: 2rem;
    transition: 0.3s;
}

.faq-categories .fc-parent li a.st-active .sub-ttl {
    padding-bottom: 20px;
}

.faq-categories .fc-child {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    
}

.faq-categories .fc-child li {
    display: flex;
    width: calc(33.333% - (64px / 3));
    border: 1px solid #EE96BD;
    border-radius: 20px;
    height: 100px;
    overflow: hidden;
}

.faq-categories .fc-child li a {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    align-items: center;
    color: #222222;
    cursor: pointer;
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: bold;
    padding: 0 20px;
    transition: 0.3s;
    justify-content: space-between;
    line-height: 1.2;
}

.faq-categories .fc-child li a:hover {
    background: #FCECF3;
}

.faq-categories .fc-child li a > img {
    max-width: 40px;
}

.faq-categories .fc-child li a > span {
    width: calc(100% - 56px);
}




@media only screen and (max-width: 1140px) {
    .faq-categories .fc-parent li .ttl {
        font-size: 2.4rem;
    }

    .faq-categories .fc-parent li .sub-ttl {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .faq-categories .fc-child li a {
        font-size: 2rem;
    }

    .faq-categories .fc-child li {
        width: calc(50% - 16px);
    }
}

@media only screen and (max-width: 834px) {
    .faq-categories .fc-parent li .ttl img {
        width: 24px;
    }

    .faq-categories .fc-child li a > img {
        max-width: 26px;
    }

    .faq-categories .fc-child li a > span {
        width: calc(100% - 40px);
    }

    .faq-categories .fc-child {
        gap: 16px;
    }

    .faq-categories .fc-child li {
        width: calc(50% - 8px);
        height: 70px;
    }
    .faq-categories .fc-parent li {
        width: calc(50% - 8px);
    }
    .faq-categories .fc-child li a {
        padding: 0 16px;
    }

    .faq-categories .fc-parent li a {
        padding: 0 16px;
    }
    
}

@media only screen and (max-width: 640px) {
    .faq-categories .fc-child li {
        width: 100%;
    }

    .faq-categories .fc-parent li .ttl {
        display: block;
    }

    .faq-categories .fc-parent li .ttl img {
        display: block;
        margin: -20px auto 20px;
    }

    .faq-categories .fc-parent li {
        height: 190px;
    }

    .faq-categories .fc-parent li a.st-active .sub-ttl {
        padding-bottom: 0;
    }

    .faq-categories .fc-parent li a.st-active:after {
        bottom: 15px;
    }
}


