@charset "UTF-8";

/* help
---------------------------------------------------*/
dl.qa-list {
    background-color: var(--white-color);
    padding: 20px 40px;
}
dl.qa-list + dl.qa-list {
    margin-top: 20px;
}
dl.qa-list + .ttl-section {
    margin-top: 80px;
}
dl.qa-list dt {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 60px;
}
dl.qa-list dt .icon {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0, -50%);
    width: 24px;
    aspect-ratio: 1 / 1;
}
dl.qa-list dt .icon::before,
dl.qa-list dt .icon::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--font-color);
}
dl.qa-list dt .icon::before {
    width: 100%;
    height: 2px;
}
dl.qa-list dt .icon::after {
    width: 2px;
    height: 100%;
    transition: height 0.5s;
}
dl.qa-list dt.is-active .icon::after {
    height: 0;
}
dl.qa-list dt .q {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: 500;
    background-color: var(--btn-color);
    border-radius: 50%;
    margin-right: 20px;
}
dl.qa-list dt p {
    width: calc(100% - 60px);
    line-height: 1.4em;
    font-size: var(--font-size-m);
    font-weight: 500;
}
dl.qa-list dd {
    line-height: 1.75em;
    color: var(--primary-color);
    padding-top: 40px;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    dl.qa-list {
        padding: 3.125vw;
    }
    dl.qa-list + dl.qa-list {
        margin-top: 3.125vw;
    }
    dl.qa-list + .ttl-section {
        margin-top: 12.5vw;
    }
    dl.qa-list dt {
        padding-right: 9.375vw;
    }
    dl.qa-list dt .icon {
        right: 3.75vw;
        width: 3.75vw;
    }
    dl.qa-list dt .q {
        width: 12.5vw;
        margin-right: 3.125vw;
    }
    dl.qa-list dt p {
        width: calc(100% - 15.625vw);
    }
    dl.qa-list dd {
        padding-top: 6.25vw;
    }
}