@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------------------------

	capacity-common　容量から選ぶ

-----------------------------------------------------------------*/

.main-contents .h-type2 span {
    margin-right: 1rem;
}

.item-sort .sort-tag {
    display: flex;
}


/*------------------------------------------------------------------------------
  other-link
------------------------------------------------------------------------------*/
.main-contents .other-link {
    margin-bottom: 5rem;
}

.main-contents .other-link > section:not(:last-child) {
    margin-bottom: 3rem;
}

.main-contents .other-link .h-other {
    font-size: 2rem;
    color: #35333f;
    padding-bottom: 5px;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #35333f;
    text-align: center;
    font-weight: bold;
    letter-spacing: .08em;
}

.main-contents .other-link ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 1.5rem calc((100% - 840px) / 3);
}

.main-contents .other-link ul li {
    width: 210px;
}

.main-contents .other-link ul li a {
    display: block;
    padding: 3rem 2.5rem;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    background-image: linear-gradient(to top, #9ce8e1 0%, #219eea 100%);
}

.main-contents .other-link ul li a * { 
    display: block;
    font-weight: bold;
    color: #FFF;
}

.main-contents .other-link ul li a em {
    font-size: 2rem;
    margin-bottom: .5rem;
    letter-spacing: .08em;
    text-shadow: 1px 1px 5px rgba(14, 36, 112, 0.5);
}

.main-contents .other-link ul li a span {
    font-size: 1.4rem;
}

@media screen and (max-width: 810px) {
    .main-contents .other-link ul {
        gap: 1.5rem calc((100% - 92%) / 3);
    }

    .main-contents .other-link ul li {
        width: 23%;
    }
}


@media screen and (max-width: 480px) {
    .main-contents .other-link ul {
        gap: 1.5rem 3.5%;
    }

    .main-contents .other-link ul li {
        width: 48%;
    }
}

