.fl_r {
	float: right;
}
.fl_l {
	float: left;
}
.clfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/*-------------------------------------------------
|-  search-wrap
-------------------------------------------------*/
.search-wrap {
    width: 100%;
    max-width: 840px;
    margin-bottom: 10px;
}
.search-wrap__game {
    margin-bottom: 10px;
}
.search-ttl {
    margin-bottom: 10px;
    font-size: var(--font-size18);
}
.search-ttl__fs {
	font-size: var(--font-size13);
	display: block;
}
.search-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.search-list__item {
    margin: 0 5px 10px 0;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: var(--font-size15);
    text-align: center;
    border: 1px solid;
    cursor: pointer;
    transition: .3s;
    height: 33px;
    line-height: 33px;
}
.search-list__cate .search-list__item {
    padding: 0;
}
.search-list__item-game {
    min-width: 110px;
    padding: 0 10px;
}
.game .search-list__item {
    border-color: var(--color-01);
}
.game .search-list__item:hover,
.game .search-list__item.active {
    color: #fff;
    background: var(--color-01);
}
.game .search-list__item-category {
    border-color: #ffb200;
}
.game .search-list__item-category:hover,
.game .search-list__item-category.active {
    color: #fff;
    background: #ffb200;
}
.card .search-list__item {
    border-color: var(--color-02);
}
.card .search-list__item:hover,
.card .search-list__item.active {
    color: #fff;
    background: var(--color-02);
}
.hobby .search-list__item {
    border-color: var(--color-03);
}
.hobby .search-list__item:hover,
.hobby .search-list__item.active {
    color: #fff;
    background: var(--color-03);
}
.goods .search-list__item {
    border-color: var(--color-04);
}
.goods .search-list__item:hover,
.goods .search-list__item.active {
    color: #fff;
    background: var(--color-04);
}
.search-list__link {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: block;
}
.active .search-list__link {
    color: #fff;
}
.search-list__link:hover {
    color: #fff;
}
@media screen and (max-width: 767px){
    .search-wrap {
        margin-bottom: 35px;
    }
    .search-wrap__game {
        margin-bottom: 25px;
    }
    .search-ttl {
        margin-bottom: 15px;
        font-size: var(--font-size14);
    }
    .search-list__item {
        font-size: var(--font-size13);
    }
}
/*-------------------------------------------------
|-  product-wrap
-------------------------------------------------*/
.product-wrap {
    width: 100%;
    margin-bottom: 60px;
}
.product-wrap:last-child {
    margin-bottom: 0;
}
.product-ttl {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: var(--font-size20);
    border-bottom: 1px solid #231815;
    display: flex;
    align-items: center;
}
.product-txt {
    width: 100%;
    max-width: 880px;
    margin: 0 auto 10px;
}
.game .product-ttl__icon {
    width: 30px;
    margin-right: 10px;
}
.card .product-ttl__icon {
    width: 34px;
    margin-right: 10px;
}
.hobby .product-ttl__icon {
    width: 25px;
    margin-right: 10px;
}
.goods .product-ttl__icon {
    width: 22px;
    margin-right: 10px;
}
.st01 {
    fill: #231815;
}
.st2-1 {
	fill: #231815;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2px;
}
.st2-2 {
    fill: #fff;
}
.product-list {
    width: 100%;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
}
.product {
    width: calc(100% / 3 - 20px);
    max-width: 300px;
    margin: 60px 30px 0 0;
}
.product__body {
    position: relative;
    width: 100%;
    padding-top: 70%;
    border: 1px solid;
    box-sizing: border-box;
    overflow: hidden;
}
.game .product__body {
    border-color: var(--color-01);
}
.card .product__body {
    border-color: var(--color-02);
}
.hobby .product__body {
    border-color: var(--color-03);
}
.goods .product__body {
    border-color: var(--color-04);
}
.product__body-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: auto;
    transition: .5s;
}
.product__cate {
    min-width: 145px;
    margin: 10px 9px 0 0;
    padding: 0 10px;
    box-sizing: border-box;
    color: #fff;
    font-size: var(--font-size14);
    font-weight: 600;
    text-align: center;
    min-height: 28px;
    line-height: 28px;
}
.product__cate:nth-child(2n) {
    margin-right: 0;
}
.product__cate:last-of-type {
    margin-right: 0;
}
.game .product__cate  {
    background: var(--color-01);
}
.card .product__cate  {
    background: var(--color-02);
}
.hobby .product__cate  {
    background: var(--color-03);
}
.goods .product__cate  {
    background: var(--color-04);
}
.product__ttl {
    margin-top: 10px;
    color: #333;
    font-size: var(--font-size18);
    font-weight: 600;
    word-break: break-all;
}
@media screen and (min-width: 768px){
    .product:nth-child(-n+3){
        margin-top: 0;
    }
    .product:nth-child(3n){
        margin-right: 0;
    }
    .product__link:hover .product__body-img {
        transform: scale(1.1,1.1);
    }
}
@media screen and (max-width: 767px){
    .product-wrap {
        margin-bottom: 12px;
    }
    .product-ttl {
        margin-bottom: 20px;
		font-size: var(--font-size18);
        font-weight: 600;
    }
    .product-txt {
        font-size: var(--font-size13);
    }
    .product-list {
        padding-top: 13px;
    }
    .product {
        width: 47%;
        margin: 30px 6% 0 0;
    }
    .product:nth-child(-n+2){
        margin-top: 0;
    }
    .product:nth-child(2n){
        margin-right: 0;
    }
    .product__cate {
        width: 49%;
        min-width: auto;
        margin: 10px 1% 0 0;
        font-size: 11px;
        padding: 0;
    }
    .product__ttl {
        font-size: var(--font-size15);
    }
}
