@charset "utf-8";

/* ブレイクポイントを指定 */

/* @mixin sp {
    @media (max-width:600px){
        @content;
    } 
}
@mixin tb {
    @media (max-width:850px) {
        @content;
    }
} */

.category__title {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    color: #3d9c8d;
    line-height: 1.4;
    text-align: center;
}

.item__titleBox {
    margin-bottom: 4rem;
}

.item__titleBox span {
    font-size: 17px;
    color: #000;
    font-family: "Arimo";
}

/* カテゴリー */

.page__category__box {
    flex-wrap: wrap; /* 画面幅に合わせてカラム落ちさせる */
    display: flex;
    justify-content: center;
    align-items: top;
    max-width: 950px;
    margin: 0 auto;
}

.page__category__box .page__category__list {
    width: 180px;
    @media (max-width:1047px){
        width: 150px;
    }
    @media (max-width:387px){
        width: 140px;
    }
}

.page__category__list {
    border: 2px solid #b2b2b23b;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 180px;
    margin: 1rem;
    @media (max-width:1047px){
        width: 130px;
        margin: 0.2rem;
    }
}

.page__category__list:hover {
    border: 2px solid rgba(61, 156, 141, .2);
}

.page__category__list:after {
    content: "";
    display: block;
    width: 180px;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}

.page__category__list:before {
    content: "";
    display: block;
    width: 180px;
    height: 0;
    order: 1;
}

.page__category__ttl {
    text-align: center;
    margin-bottom: 20px;
    @media (max-width:1047px){
        font-size: 15px;
        margin-bottom: 15px;
    }
    @media (max-width:387px){
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.page__category__img {
    display: block;
    margin: 1rem auto;
    border-radius: 5px;
}

.cg__itemBox {
    background:rgba(61, 156, 141, .2);
    border-radius: 5px;
    margin: 15px;
}

.all__itemTitle {
    font-size: 15px;
    margin-top: 5rem;
    margin-bottom: 1.5rem;
}

.categoryAll__list {
    flex-wrap: wrap; /* 画面幅に合わせてカラム落ちさせる */
    display: flex;
    justify-content: space-between;
    align-items: top
}

.categoryAll__list .categoryAll__item {
    padding: 1rem;
    @media (max-width:1280px){
        width: 40%;
    }
    @media (max-width:950px){
        width: 50%;
    }
}

.categoryAll__list:after {
    content: "";
    display: block;
    width: 25%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}

.categoryAll__list:before {
    content: "";
    display: block;
    width: 25%;
    height: 0;
    order: 1;
}

.categoryAll__item {
    margin: 0 auto;
}

.categoryAll__item img {
    width: 220px;
    height: auto;
    @media (max-width:834px){
        width: 200px;
    }
    @media (max-width:722px){
        width: 180px;
    }
}

.item__dlist {
    max-width: 220px;
    text-align: left;
}


.item__title {
    font-weight: normal;
    margin-top: 0.5rem;
    font-size: 15px;
}

.item__price {
    font-size: 19px;
}



.selectColor__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 9%);
    column-gap: 1%;
    row-gap: 0.7em;
    justify-content: center;
    @media (max-width:769px){
        row-gap: 0.2rem;
    }
    @media (max-width:520px){
        row-gap: 0;
    }
}

.selectColor__item {
    display: block;
    text-align: center;
}

.selectColor__item:hover {
    opacity: .7;
}


.selectColor__item span {
    font-size: 16px;
    display: block;
    flex-direction: column;
    @media (max-width:1000px){
        font-size: 14px;
    }
}
.color__img {
    width: 80px;
}

.page__title {
    margin-bottom: 10px;
}

.color__sample {
    font-size: 19px;
    position: relative;
}

.color__sample::before {
    content: url(../image/color-sample.png);
    background-repeat: no-repeat;
    transform: scale(0.8);
    position: absolute;
    top: -0.5rem;
    left: -3rem;
}

.selectColor__container p {
    font-size: 14px;
    margin-top: 0.7rem;
    max-width: 800px;
    margin-left: -2.8rem;

}

.selectColor__box {
    display: flex;
    align-items: center;
    margin: 2rem 0 2.5rem 4rem;
    justify-content: space-between;
        @media (max-width:1548px){
            display: block;
            flex-direction: column;
            text-align: left;
        }
}