@charset "utf-8";

.solu_category {
    display: grid;
    gap: .6rem;
}

.solu_category>div {
    display: grid;
    gap: .2rem;
}

.solu_category h2::after {
    content: '';
    display: block;
    width: 1rem;
    height: .07rem;
    background: linear-gradient(to right, #94cfca, #e3e061);
    margin-top: .1rem;
}

.solu_category__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .2rem;
}

.solu_category__list li {
    background: #fff;
    border-radius: .12rem;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, .1);
}

.solu_category__list a {
    display: grid;
    min-height: 1.3rem;
    align-items: center;
    padding: .2rem .2rem 50px;
    background: #fff;
    position: relative;
    border-radius: .1rem;
    margin: .04rem;
}

.solu_category__list a::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url(../img/common/bg_ico.png) no-repeat top center / cover;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.solu_category__list a::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    bottom: 27px;
    right: 25px;
}

.solu_category__list li.is-hover {
    background: linear-gradient(to bottom, #e6de50, #cde7ab, #8acbcd);
}

.solu_category__list li.is-hover a {
    background: #f8f6d2;
}

.solu_category__list li.is-hover a::after {
    bottom: 24px;
}

.solu_result {
    display: grid;
    gap: .6rem;
    padding-top: 1.5rem;
    margin-top: -1.5rem;
}

.solu_result__ttl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: .1rem;
    text-align: center;
}

.solu_result__ttl::after {
    content: '';
    display: block;
    width: 100%;
    height: .07rem;
    background: linear-gradient(to right, #94cfca, #e3e061);
    margin-top: .1rem;
}

.solu_result__ttl h2 {
    color: #1a21a7;
}

.solu_result__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .4rem;
}

.solu_result__list a {
    display: grid;
    gap: .1rem;
    place-content: start;
    height: 100%;
}

.solu_result__list a figure {
    aspect-ratio: 1 / .5;
    overflow: hidden;
}

.solu_result__list a figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform .3s ease;
}

.solu_result__list a:hover figure img {
    transform: scale(1.05);
}

.solu_result__list a h2 {
    border-bottom: 1px solid #000;
    padding: 10px 40px 10px 0;
    position: relative;
}

.solu_result__list a h2::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url(../img/common/bg_ico.png) no-repeat top center / cover;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.solu_result__list a h2::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 17px;
    margin: auto;
}

.solu_result__list a:hover h2::after {
    right: 14px;
}

@media only screen and (max-width: 1024px) {
    .solu_result__ttl {
        align-items: center;
    }

    .solu_category {
        gap: 1rem;
    }

    .solu_category__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .solu_result__list {
        grid-template-columns: repeat(1, 1fr);
        gap: .8rem;
    }
}