/*2カラム用css*/
.wrapper{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    width: 100%;
    max-width: 1240px;
    column-gap: 0;
    margin: 0 auto;
    flex-grow: 1;
}

main{
    padding: 1rem;
}

aside{
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.supplement{
    font-size: 1.2rem;
}

/*右カラム*/
.category-link > a, .shiryo-kyosai a, .download a, .info a, .service a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6rem;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    line-height: 1.4;
}

.category-block{
    width: 100%;
    text-align: center;
    padding: 0 0 10px;
    margin: 0 auto 20px;
    border: 2px #0062b1 solid;
}

.category-link h3{
    display: flex;
    align-items: center;
    width: 100%;
    height: 5rem;
    margin-bottom: 10px;
    background-color: #0062b1;
}

.category-link h3 a{
    display: block;
    margin: 0 auto;
    color: #fff;
}

.category-link h3 a:hover{
    text-decoration: underline;
}

.category-link > a{
    color: #135cb5;
    background-color: #fff;
    border: 1px #0062b1 solid;
    margin: 10px 20px;
}

.category-link > a:last-child{
    margin-bottom: 0;
}

.category-link a.product{
    font-size: 2rem;
}

.category-link a.side-child{
    color: #e88db0;
}

.category-link a.side-life-new{
    color: #3e6ce3;
}

.category-link a.side-life{
    color: #5d97f1;
}

.category-link a.side-plus{
    color: #58c373;
}

.category-link a.side-matureage{
    color: #b688fe;
}

.category-link a.side-fire{
    color: #c5801d;
}

.shiryo-kyosai{
    width: 100%;
    margin: 0 auto 10px;
}

.shiryo-kyosai a{
    color: #fff;
    background-color: #4b89eb;
}

.download{
    width: 100%;
    margin: 0 auto 20px;
}

.download a{
    display: flex;
    flex-direction: column;
    color: #fff;
    background-color: #ff8900;
}

.shiryo-kyosai a:hover, .download a:hover{
    filter: brightness(1.1);
}

.info{
    width: 100%;
    margin: 0 auto 20px;
}

.info a{
    margin-bottom: 10px;
    color: #135cb5;
    background-color: #fff;
    border: 1px #135cb5 solid;
}

.info a:last-child{
    margin-bottom: 0;
}

.info img, .service img{
    width: 25px;
    height: 25px;
}

.service{
    width: 100%;
    margin: 0 auto 20px;
}

.service a{
    display: flex;
    flex-direction: column;
    color: #806943;
    background-color: #fff;
    border: 1px #806943 solid;
}

.category-link > a:hover, .info a:hover, .service a:hover{
    filter: brightness(0.95);
}

.service p{
    display: flex;
    justify-content: center;
}

.info img, .service img{
    margin-right: 5px;
}

/*960px以下*/
@media screen and (max-width: 960px){
    aside{
        padding: 0;
    }

    .wrapper{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .shiryo-kyosai, .download, .category-block, .info, .service{
        display: none;
    }
}
