/* 大カテゴリー見出し */
.categorylist h2 {
 margin: 2rem 0;
 padding: 8px;
 font-weight: bold;
 font-size: 1.8rem;
 color: #fff;
 background: #5fc2d9;
}
/* 小カテゴリー名 */
.categorylist_item {
 margin: 0 auto 30px;
 padding-bottom: 20px;
 width: 100%;
}
.categorylist_item ul {
 display: flex;
 flex-wrap: wrap;
 list-style: none;
}
.categorylist_item li {
 width: calc(100% / 4);
}
.categorylist_item li:nth-child(n+5) {
 margin-top: 2.3rem;
}
.categorylist_item a {
 position: relative;
 display: block;
 padding-left: 5px;
 text-align: left;
 font-size: 1.5rem;
 color: #444;
 width: 100%;
 text-decoration: none;
}
.categorylist_item p {
 font-size: 1.2rem;
 line-height: 1.5rem;
 color: #666;
}
.categorylist_item a:hover {
 opacity: .75;
 -webkit-transition: 0.3s ease-in-out;
 -moz-transition: 0.3s ease-in-out;
 transition: 0.3s ease-in-out; 
}
/* カテゴリー別　背景色 */
.categorylist h2.kitchenzakka {
 background: #86cca7;
}
.categorylist h2.fashion {
 background: #c1b4a4;
}
.categorylist h2.babykids {
 background: #bacc7b;
}
.categorylist h2.cosme {
 background: #ccb4d8;
}
.categorylist h2.gift {
 background: #edb87a;
}

@media screen and (max-width: 768px) {
/* 大カテゴリー見出し */
.categorylist_ttl {
 margin: 1.5rem 0 2.5rem;
 padding: 6px;
}
/* 小カテゴリー名 */
.categorylist_item li {
 width: 100%;
 margin-bottom: 1rem;
}
.categorylist_item li:nth-child(n+5) {
 margin-top: 0;
}
.categorylist_item a {
 padding-left: 13px;
}
.categorylist_item a:after {
 position: absolute;
 content: "\f054";
 top: 50%;
 right: 1em;
 margin-top: -.5em;
 line-height: 1;
 font-family: 'FontAwesome';
}
}