/*
.ac>li {
    padding-bottom: 6px;
    list-style: none;
}
*/
.ac-label {
    cursor: pointer;
    position: relative;
    margin: 0 0 2rem;
    padding: 1.4rem;
    border-radius: 0.4rem;
    text-align: center;
    color: #fff;
    background: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.ac-label p {
    margin: 0 0.3em;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.ac-label span {
    font-size: 2em;
    transform: translateY(-0.03em);
}

.ac-label .only-pc {
    display: inline-block;
}

.ac-label .only-sp {
    display: none;
}

.ac-content {
    display: none;
    padding: 0 0 4rem;
}

.icon-wrap {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translatey(-50%);
    width: 45px;
    height: 45px;
}

.icon {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.icon:before,
.icon:after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.3s;
    background: #fff;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 2px;
    transform: translate(-50%, -50%);
}

.icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.icon.open:before {
    transform: translate(-50%, -50%) rotate(0deg);
}

@media screen and (min-width: 1px) and (max-width: 743px) {
    .ac-label {
        margin: 0 0 1rem;
        padding: 1.4rem 1rem;
        justify-content: flex-start;
    }

    .ac-label p {
        margin: 0 0 0 0.3em;
        font-size: 4.4vw;
        font-weight: 600;
        color: #fff;
    }

    .ac-label span {
        font-size: 1.4em;
        transform: translateY(-0.01em);
    }

    .ac-label .only-pc {
        display: none !important;
    }

    .ac-label .only-sp {
        display: inline-block;
    }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {}

@media screen and (min-width: 1025px) {
    .ac-label:hover {
        background: #ff7474;
    }
}