/**********************************/
/* メニューパーツ                   */
/**********************************/
/* 囲み枠を非表示 */
.fs-p-sideMenu .fs-pt-menu__heading--lv2{
    border-bottom: none; 
}

/* 囲み枠を非表示 */a
.fs-p-sideMenu .fs-pt-menu__heading--lv3{
    border-bottom: none;
}

/**********************************/
/* 商品詳細           */
/**********************************/

/* 商品一覧画面キャッチコピー非表示 */ 
.fs-c-productNameHeading__copy{ 
    display: none; 
}

/**********************************/
/* 商品グループ(メイン画面)           */
/**********************************/

/* 商品グループの件数を非表示 */
.fs-c-subgroup .fs-c-listControl{
     display: none;
}

/* 囲み枠を非表示 背景色を白に変更 文字色をリンクの色に変更 */
.fs-c-subgroup .fs-c-subgroupList__link{
	border-color: #ffffff;
    background: #999999;
    color: #ffffff;
}

.fs-c-subgroup .fs-c-subgroupList__link::after{
    color: #ffffff;
}

/**********************************/
/* インスタグラム                    */
/**********************************/
.insta_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 3vw 0 2vw;
}

.instagram_slider_items_2row .slick-arrow {
   display: none!important;
}

.insta_list img{
    width: 13vw;
    padding: 0 .25vw;
}

.instagram_slider_items_2row .slick-slide img {
  display: block;
  width: 17vw;
  max-width: 224px;
  height: 17vw;
  max-height: 224px;
  margin: 0 5px;
  position: relative;
  float: left;
  object-fit: cover;
  border: 1px solid #d7cfcc;
}

/**********************************/
/* レスポンシブ対応                  */
/**********************************/
.top_grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(100px, 1fr));
}
.topSNSitem {
    width: 100%;
    display: flex;
    padding: 5px;
    justify-content: center;
}
.top_item {
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}

/* PC用CSS（画面サイズ1200px以上） */
@media screen and (min-width: 1200px) {
    .morelink {
        font-size: 1.8rem;
        text-decoration: underline;
    }

	/* パーツキャッチコピー非表示 */ 
.fs-c-productName__copy{ 
    display: none; 
}

    .top-sns-item-pc{
        display: flex; !important;
    }
    .top-sns-item-sp{
        display: none; !important;
    }
}

/* タブレット用(画面サイズ480px以上1200px以下 */
@media screen and (min-width: 480px) and (max-width: 1200px) {
    .morelink {
        font-size: 1.6rem;
        text-decoration: underline;
    }

    .top-sns-item-pc{
        display: flex; !important;
    }
    .top-sns-item-sp{
        display: none; !important;
    }

    .instagram_slider_items_2row .slick-slide img {
        width: 20vw;
        height: 20vw;
        position: relative;
        object-fit: cover;
        border: 1px solid #d7cfcc;
    }
}


/* スマホ用（画面サイズ480px以下） */
@media screen and (max-width: 480px) {
    .morelink {
        font-size: 1.3rem;
        text-decoration: underline;
    }

	/* パーツキャッチコピー非表示 */ 
	.fs-c-productName__copy{ 
    display: none; 
	}

    .top_grid {
         grid-template-columns: repeat(3, minmax(100px, 1fr));
    }

    .top-sns-item-pc{
        display: none; !important;
    }
    .top-sns-item-sp{
        display: flex; !important;
    }

    .instagram_slider_items_2row .slick-slide img {
        width: 28vw;
        height: 28vw;
        position: relative;
        object-fit: cover;
        border: 1px solid #d7cfcc;
    }
}