#feature-start {
  margin-top: -12px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#feature-start h3 {
  margin-bottom: 22px;
  text-shadow: -5px 5px rgba(0,0,0,0.25);
  font-weight: bold;
  font-family: "メイリオ", "Meiryo", sans-serif;
  line-height: 1.58;
  text-align: center;
}
#feature-start p {
  line-height: 1.85;
}

@media all and (-ms-high-contrast:none){
  #feature-start.img-installation {
    padding: 0;
    text-align: center;
  }
}



/* >>>>>>>>> 看板エリアの変更 ここから <<<<<<<<<< */
/*
  看板エリアの文字サイズ 背景色、看板エリアのサイズの変更について
  CSSでの色の指定は16進数になります。
  色の参考はこちらをご覧下さい → http://www.colordic.org/

  看板エリアのサイズを変更される場合は59行目のpaddingを適宜変更して頂く
  必要がございます。56行目からの記述はIE対応の記述になっております。
  IEのブラウザをご確認頂きながら、調整してください。
*/
#feature-start {
  min-height: 500px; /*看板エリアのサイズ*/
  color: #fff; /*看板エリアの文字色*/
  font-size: 17px;/*看板エリアの文字サイズ*/
  background: #e82b2f; /*看板エリアの背景色*/
}
#feature-start h3 {
  font-size: 49px; /*看板エリア見出し文字サイズ*/
  /*見出しの文字の色だけを変更されたい場合は
  color: #000（色を指定）;と指定してください。*/
}
/* IE対応 */
@media all and (-ms-high-contrast:none){
  #feature-start {
    display: block;
    padding: 150px 0 130px;
  }
}
/* >>>>>>>>> 看板エリアの変更 ここまで <<<<<<<<<< */



/*  ランキング・おすすめ商品
--------------------------------------------------- */

/* --------------------------------------------------------------------
-----------------------------------------------------------------------
  ▼▼▼ 共通CSS ▼▼▼
-----------------------------------------------------------------------
-------------------------------------------------------------------- */

.feature-ranking {
  padding: 110px 0 110px;
  box-shadow: inset 0 4px 25px rgba(0,0,0,0.29);
}
.feature-recommend {
  padding: 70px 0 100px;
  margin-bottom: 80px;
}

.description-txt {
  background-color: rgba(240,240,240,0.5);
  padding: 20px;
  border-radius: 5px;
  margin: 0 0 20px;
}
.feature-ranking .description-txt { margin: 0 0 40px;}

/* タイトルCSS */
.feature-ranking h3, .feature-recommend h3 {
  text-align: center;
  font-size: 28px;
  font-family: "メイリオ", "Meiryo", sans-serif;
  width: 87%;
  margin: 0 auto 50px;
  color: #333;
  position: relative;
}
.feature-ranking h3::before, .feature-recommend h3::before, 
.feature-ranking h3::after, .feature-recommend h3::after {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  top: 28px;
}
.feature-ranking h3::before, .feature-recommend h3::before {
  border-right: 60px solid;
  left: -50px;
}
.feature-ranking h3::after, .feature-recommend h3::after {
  border-left: 60px solid;
  right: -50px;
}
.feature-ranking h3 span, .feature-recommend h3 span {
  display: block;
  position: relative;
  padding: 12px 0 9px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.7);
  box-shadow: 0 3px 22px rgba(0,0,0,0.25);
  z-index: 1;
}
.feature-ranking h3 span::before, .feature-recommend h3 span::before, 
.feature-ranking h3 span::after, .feature-recommend h3 span::after {
  content: "";
  position: absolute;
  left: 0;
}
.feature-ranking h3 span::before, .feature-recommend h3 span::before {
  width: 100%;
  bottom: -38px;
  border: 19px solid transparent;
  border-top: 19px solid rgba(0,0,0,0.15);
}
.feature-ranking h3 span::after, .feature-recommend h3 span::after {
  width: 95%;
  right: 0;
  bottom: -20px;
  margin: 0 auto;
  border: 10px solid;
}

.feature-ranking ul li, 
.recommend-category-item-list ul li {
  float: left;
  margin-right: 10px;
  margin-bottom: 30px;
  position: relative;
}

.feature-ranking ul li .item-img, 
.recommend-category-item-list ul li .item-img {
  position: relative;
  overflow: hidden;
}
.feature-ranking ul li .item-img p, 
.recommend-category-item-list ul li .item-img p {
  position: absolute;
  right: 9px;
  bottom: 9px;
  text-align: right;
  font-size: 12px;
  line-height: 1.3;
}
.feature-ranking ul li .item-img p b, 
.recommend-category-item-list ul li .item-img p b {
  font-size: 20px;
  color: #e82b2f;
}
.feature-ranking ul li .item-img, 
.recommend-category-item-list ul li .item-img {
  width: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #fff;
}
.feature-ranking ul li p, .feature-recommend ul li p {
  line-height: 1.45;
  margin-top: 7px;
}
.feature-ranking ul li a, 
.recommend-category-item-list ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.recommend-category-item-list ul li:hover {
  opacity: 0.7;
}

.feature-ranking.frame ul li {
  background-color: rgba(255,255,255,0.4);
  border-radius: 0 0 3px 3px;
}
.feature-ranking.frame ul li p {
  padding: 0 10px 10px;
  min-height: 70px;
}
.feature-ranking.frame ul li .item-img p {
  padding: 0;
}
/* --------------------------------------------------------------------
-----------------------------------------------------------------------
  ▲▲▲ 共通CSS ▲▲▲
-----------------------------------------------------------------------
-------------------------------------------------------------------- */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

    ランキングの変更 ここから 

<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

  /*
    現在のランキングの背景色は円形のグラデーションになっております。
    グラデーションを変更されたい場合は、
    こちらをご利用いただくのが便利かと思います → http://grad3.ecoloniq.jp/

    グラデーションではなく、単色の背景色を指定されたい場合は
    background: #000（色を指定）;で変更していただけます。
  */

  .feature-ranking {
    background: -webkit-radial-gradient(50% 50%, circle, #ffdc49 0%, #ffa900 99%);
    background: -moz-radial-gradient(50% 50%, circle, #ffdc49 0%, #ffa900 99%);
    background: -ms-radial-gradient(50% 50%, circle, #ffdc49 0%, #ffa900 99%);
    background: radial-gradient(50% 50%, circle, #ffdc49 0%, #ffa900 99%);
  }
  .feature-ranking h3 span::after {
    border-color: #ffc92f; /*232~235行目で変更した背景色・グラデーションの場合は近い色を指定してください。*/
  }

  /* タイトルのリボン */
  .feature-ranking h3 span {
    color: #fff; /*文字色*/
    background-color: #e82b2f; /*リボン色*/
  }
  .feature-ranking h3::before, .feature-ranking h3::after {
    color: #e82b2f; /*244行目で変更したリボン色*/
    border-top: 28px solid #e82b2f; /*244行目で変更したリボン色*/
    border-bottom: 28px solid #e82b2f; /*244行目で変更したリボン色*/
  }
  /* 画像サイズ変更
     画像サイズを変更される場合

     画像サイズの幅を変更
     269行目 width: calc(100% / 5 - ( 10px * 4 / 5));を変更してください。
     271行目の.feature-ranking ul li:nth-child(5n)の(5n)も合わせて変更してください。
     ダミーより画像サイズを大きくされる場合は、
     width: calc(100% / 4 - ( 10px * 3 / 4)); (4n)
     width: calc(100% / 3 - ( 10px * 2 / 3)); (3n)

     ダミーより画像サイズを小さくされる場合は、
     width: calc(100% / 6 - ( 10px * 5 / 6)); (6n)
     width: calc(100% / 7 - ( 10px * 6 / 7)); (7n)

     画像サイズの高さを変更する場合
     273行目の画像サイズ（高さ）のheight: 195px;を変更してください。
  */
    .feature-ranking ul li {
      width: calc(100% / 5 - ( 10px * 4 / 5));
    }
    .feature-ranking ul li:nth-child(5n) { margin-right: 0;}
    .feature-ranking ul li .item-img {
      height: 195px; /*画像サイズ（高さ）*/
    }

  /* 商品名などのテキスト */
  .feature-ranking ul li p {
    font-size: 14px;
  }
  

/* >>>>>>>>> ランキングの変更 ここまで <<<<<<<<<< */


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

    おすすめ商品の変更 ここから 

<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

  .feature-recommend {
    background: #fff; /*背景色*/
  }
  .feature-recommend h3 span::after {
    border-color: #fff; /*292行目で変更した背景色*/
  }

  /* タイトルのリボン */
  .feature-recommend h3 span {
    color: #fff; /*文字色*/
    background-color: #e82b2f; /*リボン色*/
  }
  .feature-recommend h3::before, .feature-recommend h3::after {
    color: #e82b2f; /*301行目で変更したリボン色*/
    border-top: 28px solid #e82b2f; /*301行目で変更したリボン色*/
    border-bottom: 28px solid #e82b2f; /*301行目で変更したリボン色*/
  }

  /* >>>>>>>>> カテゴリ行・列の数量変更 ここから <<<<<<<<<< */
  /*
    1行のカテゴリ数（列）を変更したい場合は、

    328行目の width: calc(100% / 3 - ( 10px * 2 / 3));を変更してください。
    1行4カテゴリにされる場合 width: calc(100% / 4 - ( 10px * 3 / 4));
    1行5カテゴリにされる場合 width: calc(100% / 5 - ( 10px * 4 / 5));
    1行6カテゴリにされる場合 width: calc(100% / 6 - ( 10px * 5 / 6));

    332行目の.category-nav ul li:nth-child(3n)の
    (3n)も合わせて変更してください。
    1行4カテゴリにされる場合 (4n)
    1行5カテゴリにされる場合 (5n)
    1行6カテゴリにされる場合 (6n)

    行を増やされる場合のCSSの変更はございません。
  */
    .category-nav ul li {
      float: left;
      width: calc(100% / 3 - ( 10px * 2 / 3));
      margin-right: 10px;
      margin-bottom: 8px;
    }
    .category-nav ul li:nth-child(3n) {
      margin-right: 0;
    }
    /*カテゴリーページ内リンクボタン　色変更*/
    .category-nav ul li a {
      color: #fff; /*文字色を変更*/
      border: 2px solid #ff5a53; /*線色を変更*/
      background-color: #ff5a53; /*背景色を変更*/
    }
  /* >>>>>>>>> カテゴリ行・列の数量変更 ここまで <<<<<<<<<< */
  
  /* カテゴリータイトル */
  .feature-recommend h4 {
    font-size: 24px; /*文字サイズ*/
    color: #E84A5F; /*文字色*/
    background: #FECEA8; /*背景色*/
    border-bottom: 3px solid #E84A5F; /*線色*/
  }
  /* 画像サイズ変更
     画像サイズを変更される場合

     画像サイズの幅を変更
     368行目 width: calc(100% / 5 - ( 10px * 4 / 5));を変更してください。
     371行目の.recommend-category-item-list ul li:nth-child(5n)の(5n)と365行目の.recommend-category-item-list ul li:nth-child(5)の(5)も合わせて変更してください。
     ダミーより画像サイズを大きくされる場合は、
     width: calc(100% / 4 - ( 10px * 3 / 4)); (4n) (4)
     width: calc(100% / 3 - ( 10px * 2 / 3)); (3n) (3)

     ダミーより画像サイズを小さくされる場合は、
     width: calc(100% / 6 - ( 10px * 5 / 6)); (6n) (6)
     width: calc(100% / 7 - ( 10px * 6 / 7)); (7n)　(7)

     画像サイズの高さを変更する場合
     378行目の画像サイズ（高さ）のheight: 195px;を変更してください。
  */
    .recommend-category-item-list ul li {
      width: calc(100% / 5 - ( 10px * 4 / 5));
    }
    .recommend-category-item-list ul li:nth-child(6), 
    .recommend-category-item-list ul li:nth-child(5n) {
      margin-right: 0;
    }
    .recommend-category-item-list ul li:nth-child(5) {
      margin-right: 10px;
    }
    .recommend-category-item-list ul li .item-img {
      height: 195px;/*画像サイズ（高さ）*/
    }

  /* カテゴリ別おすすめ商品 1つ目の商品の画像サイズ*/
  .recommend-category-item-list ul li:nth-child(1) .item-img {
    width: 430px;
    height: 230px;
  }

  /* 商品名などのテキスト */
  .feature-recommend ul li p {
    color: #000; /*文字色*/
    font-size: 14px; /*文字サイズ*/
  }
  
  /* もっと商品を見るボタン */
  .more-items a {
    font-size: 21px; /* 文字サイズ */
    color: #fff; /* 文字色 */
    background-color: #E82B2F; /* ボタン色 */
    border: 2px solid #e82b2f; /* ボタン色 */
  }

/* >>>>>>>>> おすすめ商品の変更 ここまで <<<<<<<<<< */



.feature-ranking h3 span {
  padding: 4px 0 0;
}
.feature-ranking h3 span .crown {
  width: 0px;
  height: 0px;
  border-bottom: 35px solid #BFA930;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  position: absolute;
  top: -23px;
  left: 445px;
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}
.feature-ranking h3 span .crown:after {
  width: 0px;
  height: 0px;
  border-top: 13px solid transparent;
  border-bottom: 11px solid #FFE973;
  border-left: 29px solid #FFE973;
  border-right: 29px solid #FFD700;
  content: "";
  position: absolute;
  top: 9px;
  left: -29px;
}
.feature-ranking h3 span .crown i, 
.feature-ranking h3 span .crown i::before, 
.feature-ranking h3 span .crown i::after {
  background-color: #A68C00;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  content: "";
  position: absolute;
  top: 0px;
}
.feature-ranking h3 span .crown i {
  top: 3px; left: -32px;
}
.feature-ranking h3 span .crown i::before{
  top: -8px; left: 29px;
}
.feature-ranking h3 span .crown i::after{ left: 59px;}
.feature-ranking h3 span b { font-size: 38px; margin-right: 6px;}

.feature-recommend h4 {
  -webkit-font-smoothing: antialiased;
  padding: 20px 6px 15px;
  line-height: 1;
  margin: 0 0 25px;
  border-radius: 5px 5px 0 0;
  text-align: center;
}

/* カテゴリ別おすすめ商品の一番最初の商品だけスタイルを変更 */
.recommend-category-item-list ul li:nth-child(1) {
  float: none;
  width: 100%;
  margin-right: 0;
  margin-bottom: 30px;
}
.recommend-category-item-list ul li:nth-child(1) .item-wrap{
  float: left;
  margin-right: 27px;
}
.recommend-category-item-list ul li:nth-child(1) .item-img {
  background-size: auto 100%;
}

.feature-ranking ul { margin-top: 60px;}
/* ランキング 位スタイル */
.feature-ranking ul li .item-wrap::before {
  position: absolute;
  top: -31px;
  left: 0;
  font-size: 15px;
  font-weight: bold;
  z-index: 1;
}
.feature-ranking ul li:nth-child(n+4) .item-wrap::before { left: 5px;}
.feature-ranking ul li:nth-child(1) .item-wrap::before { content: "１位";}
.feature-ranking ul li:nth-child(2) .item-wrap::before { content: "２位";}
.feature-ranking ul li:nth-child(3) .item-wrap::before { content: "３位";}
.feature-ranking ul li:nth-child(1) .item-wrap::before, 
.feature-ranking ul li:nth-child(2) .item-wrap::before, 
.feature-ranking ul li:nth-child(3) .item-wrap::before {
  background-color: rgba(232, 43, 47, 0.85);
  padding: 6px 0 1px 44px;
  width: 46%;
  border-radius: 5px 5px 0 0;
  color: #fff;
}
.feature-ranking ul li:nth-child(1) .item-img, 
.feature-ranking ul li:nth-child(2) .item-img, 
.feature-ranking ul li:nth-child(3) .item-img { border-top: 2px solid rgba(232, 43, 47, 0.85);}

/*  王冠 -------------------------------- */
.feature-ranking ul li .item-wrap .crown {
  width: 0px; height: 0px;
  border-bottom: 14px solid #BFA930;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  position: absolute;
  top: -22px; left: 11px;
  z-index: 1;
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}
.feature-ranking ul li:nth-child(2) .item-wrap .crown {
  border-bottom: 14px solid #909090;
}
.feature-ranking ul li:nth-child(3) .item-wrap .crown {
  border-bottom: 14px solid #69433f;
}
.feature-ranking ul li .item-wrap .crown:after {
  width: 0px;
  height: 0px;
  border-top: 9px solid transparent;
  border-bottom: 5px solid #FFE973;
  border-left: 14px solid #FFE973;
  border-right: 14px solid #FFD700;
  content: "";
  position: absolute;
  top: 2px;
  left: -14px;
}
.feature-ranking ul li:nth-child(2) .item-wrap .crown:after {
  border-bottom: 5px solid #e0e0e0;
  border-left: 14px solid #e0e0e0;
  border-right: 14px solid silver;
}
.feature-ranking ul li:nth-child(3) .item-wrap .crown:after {
  border-bottom: 5px solid #8c4841;
  border-left: 14px solid #8c4841;
  border-right: 14px solid #5b1c15;
}
.feature-ranking ul li .item-wrap .crown span, 
.feature-ranking ul li .item-wrap .crown span::before, 
.feature-ranking ul li .item-wrap .crown span::after {
  background-color:#A68C00;
  border-radius:50%;
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  top: 0px;
}
.feature-ranking ul li:nth-child(2) .item-wrap .crown span, 
.feature-ranking ul li:nth-child(2) .item-wrap .crown span::before, 
.feature-ranking ul li:nth-child(2) .item-wrap .crown span::after {
  background-color:#909090;
}
.feature-ranking ul li:nth-child(3) .item-wrap .crown span, 
.feature-ranking ul li:nth-child(3) .item-wrap .crown span::before, 
.feature-ranking ul li:nth-child(3) .item-wrap .crown span::after {
  background-color:#69433f;
}
.feature-ranking ul li .item-wrap .crown span {
  top: -3px; left: -17px;
}
.feature-ranking ul li .item-wrap .crown span::before{
  top: -3px; left: 15px;
}
.feature-ranking ul li .item-wrap .crown span::after{ left: 30px;}

.feature-ranking ul li:hover .item-wrap {
  background-size: auto 110%;
}
.feature-ranking ul li:hover p { opacity: 0.7;}

.item-wrap {
  background: rgba(255,255,255,0.65);
  position: relative;
  color: #fff;
}
.feature-ranking ul li .item-wrap p, 
.feature-recommend ul li .item-wrap p {
  float: right;
  text-align: right;
  padding: 4px 6px;
  margin: 0;
  min-height: 0;
  color: #000;
}
.recommend-category-item-list ul li .item-img {
  border: 1px solid #eee;
}
.feature-recommend ul li .item-wrap p {
  background-color: #eee;
  width: 100%;
}
.item-wrap p b {
  font-size: 20px;
  color: #e82b2f;
}

/*  カテゴリ別おすすめ商品
------------------------------------------------- */
.recommend-category-item-list {
  margin: 100px 0 0;
}
#cat-01.recommend-category-item-list {
  margin-top: 0;
}
.category-nav {
  margin: 40px 0;
}
/*  カテゴリ別おすすめ商品
------------------------------------------------- */

.category-nav ul li a {
  display: block;
  text-align: center;
  padding: 10px 10px 22px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
  border-radius: 5px;
}
.category-nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  border: 5px solid transparent;
  border-top: 5px solid #fff;
  width: 5px;
  margin: 0 auto;
}
.category-nav ul li a:hover {
  background-color: rgba(255, 90, 83, 0.85);
}
.category-nav ul li a:hover::before {
  bottom: 4px;
}

/*  タイマー
------------------------------------------------- */
#timer-js {
  background-image: -ms-linear-gradient(top, #333333, #000000);
  background-image: -moz-linear-gradient(top, #333333, #000000);
  background-image: -webkit-linear-gradient(top, #333333, #000000);
  background-image: linear-gradient(top, #333333, #000000);
  color: #fff;
  padding: 32px 0 41px;
}
#timer-js p {
  font-size: 14px;
  margin-top: 12px;
  text-align: justify;
  text-justify: inter-ideograph;
}
#timer-js h4 {
  font-size: 31px;
  margin-right: 27px;
  margin-top: 0;
  display: inline-block;
  vertical-align: top;
}
#countdown {
  text-align: center;
  font-size: 43px;
  font-weight: bold;
  font-family: "メイリオ", "Meiryo", sans-serif;
}
#countdown span {
  margin-right: 18px;
  display: inline-block;
  vertical-align: top;
}
.day, .hou, .min, .sec, .mil {
  background-color: #fff;
  color: #000;
  padding: 15px 9px 8px;
  line-height: 1;
  border-radius: 8px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}
.moji {
  font-size: 42px;
  margin-top: 11px;
}
.mil, .timeEnd { margin-right: 0 !important;}
.timeEnd .day, .timeEnd .hou, .timeEnd .min, 
.timeEnd .sec, .timeEnd .mil { color: #f00;}

.more-items a {
  font-weight: bold;
  text-decoration: none;
  padding: 9px 0;
  display: block;
  text-align: center;
  border-radius: 5px;
  margin-top: 50px;
  box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,.3);
  width: 85%;
  margin: 30px auto 0;
}
.more-items a:hover {
  opacity: 0.75;
}

@media (max-width: 420px) {
  #feature-start { min-height: 0; padding: 40px 0 25px;}
  #feature-start.img-installation { padding: 0;}
  #feature-start h3 {
    font-size: 23px;
    margin-bottom: 10px;
    text-shadow: -2px 2px #a8171a;
  }
  #feature-start p { font-size: 13px;}
    
  .feature-ranking h3, .feature-recommend h3 {
    font-size: 23px;
    margin: 0 auto 25px;
  }
  .feature-ranking h3 span, .feature-recommend h3 span {
    padding: 8px 0 5px;
  }
  .feature-ranking h3 span { padding: 8px 0 5px;}
  .feature-ranking h3 span b { font-size: 100%;}
  .feature-ranking h3::before, .feature-recommend h3::before, .feature-ranking h3::after, .feature-recommend h3::after {
    border: 10px solid transparent;
    border-top: 18px solid #e82b2f;
    border-bottom: 18px solid #e82b2f;
    top: 21px;
  }
  .feature-ranking h3::before, .feature-recommend h3::before {
    border-right: 30px solid #e82b2f;
    left: -25px;
  }
  .feature-ranking h3::after, .feature-recommend h3::after {
    border-left: 30px solid #e82b2f;
    right: -25px;
  }
  .feature-ranking h3 span .crown {
    top: -31px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .feature-ranking h3 span::before, .feature-recommend h3 span::before, .feature-ranking h3 span::after, .feature-recommend h3 span::after { display: none;}

  .description-txt { padding: 10px;}

  .feature-ranking ul li, .recommend-category-item-list ul li {
    width: 48.5%;
  }
  .feature-ranking ul li:nth-child(2n) {
    margin-right: 0;
  }
  .feature-ranking ul li:nth-child(5), .recommend-category-item-list ul li:nth-child(5n) { margin-right: 10px;}
  .feature-ranking ul li:nth-child(1) .item-wrap::before, 
  .feature-ranking ul li:nth-child(2) .item-wrap::before, 
  .feature-ranking ul li:nth-child(3) .item-wrap::before { top: -31px; padding: 3px 0 1px 44px;}
  .feature-ranking ul li .item-wrap .crown { top: -22px;}
  .feature-ranking ul li:nth-child(3) .item-wrap::before { display: none;}
  .feature-ranking ul li:nth-child(3) .item-img { border-top: none;}
  .feature-ranking ul li:nth-child(3) .item-wrap .crown { display: none;}

  .feature-ranking { padding: 70px 0 40px;}

  .feature-recommend { padding: 70px 0 80px;}
  
  .feature-recommend h4 { font-size: 17px;}
  .category-nav { margin: 19px 0;}
  .category-nav ul li {
    width: 48.95%;
    margin-right: 7px;
  }
  .category-nav ul li:nth-child(2n) { margin-right: 0;}
  .category-nav ul li:nth-child(3) { margin-right: 7px;}
  .category-nav ul li a {
    font-size: 12px;
    padding: 10px 10px 22px;
  }
  .recommend-category-item-list ul li:nth-child(1) .item-wrap, 
  .recommend-category-item-list ul li:nth-child(1) .item-img {
    width: 100%;
    height: 210px;
    float: none;
    margin-right: 0;
  }
  .recommend-category-item-list ul li:nth-child(odd) {
    margin-right: 0;
  }

  

  .more-items a {
    width: 95%;
    margin-top: 10px;
    font-size: 18px;
  }

  #timer-js {
    padding: 17px 0 27px;
    text-align: center;
  }
  #timer-js h4 {
    font-size: 23px;
    text-align: center;
    margin: 0 0 5px;
    display: block;
  }
  #timer-js p {
    font-size: 12px;
    margin-top: 12px;
  }
  #countdown {
    font-size: 29px;
  }
  #countdown span {
    margin-right: 5px;
  }
  .day, .hou, .min, .sec, .mil {
    padding: 11px 5px 4px;
  }
  .moji {
    font-size: 18px;
    margin-top: 12px;
  }

  #top-scroll {
    display: block;
    right: 10px; bottom: 0;
  }
  #top-scroll a {
    padding: 12px 18px 10px !important;
    margin: 0;
    border-radius: 50% 50% 0 0;
    font-size: 11px;
    line-height: 1.45;
  }
  #top-scroll a::after { display: none;}
  #top-scroll a:hover { margin: 0;}

}
@media (max-width: 384px) {
  #feature-start {
    padding: 50px 0 45px;
  }
  .feature-recommend h4 {
    font-size: 15px;
  }
  #feature-start h3 { font-size: 20px;}
  #feature-start p {
    font-size: 12px;
    line-height: 1.5;
  }
  #timer-js p { font-size: 10px;}
  .feature-ranking ul li:nth-child(1) .item-wrap::before, 
  .feature-ranking ul li:nth-child(2) .item-wrap::before, 
  .feature-ranking ul li:nth-child(3) .item-wrap::before { width: 49%;}
}
@media (max-width: 375px) {
  .feature-ranking ul li, 
  .recommend-category-item-list ul li {
    width: 48%;
  }
  .feature-ranking ul li .item-img, .recommend-category-item-list ul li .item-img {
    height: 170px;
  }
  #countdown {
    font-size: 22px;
  }
}
@media (max-width: 320px) {
  
  #feature-start h3 { font-size: 18px;}
  #feature-start p {
    font-size: 11px;
    line-height: 1.5;
  }

  .feature-ranking {
    padding: 70px 0 30px;
  }
  .feature-recommend {
    padding: 45px 0 80px;
  }

  .feature-ranking h3, .feature-recommend h3 {
    font-size: 21px;
  }

  .feature-ranking ul li, 
  .recommend-category-item-list ul li {
    width: 48%;
    margin-bottom: 20px;
  }
  .feature-ranking ul li .item-img, .recommend-category-item-list ul li .item-img {
    height: 145px;
  }
  .category-nav ul li a { font-size: 10px;}
  .feature-ranking.frame ul li p { padding: 0 5px 10px;}

  .category-nav ul li { width: 48.8%;}
  .feature-recommend h4 {
    font-size: 15px;
    padding: 20px 7px 15px;
    margin: 0 0 10px;
  }

  #countdown { font-size: 18px;}
  #timer-js p { font-size: 10px;}
  .moji { font-size: 15px;}

  .feature-ranking ul li:nth-child(1) .item-wrap::before, 
  .feature-ranking ul li:nth-child(2) .item-wrap::before, 
  .feature-ranking ul li:nth-child(3) .item-wrap::before { width: 60%;}
}

.disnon { display: none;}
#top-scroll a { padding: 25px 34px;}


/* サイド特集バナー */
.feature-bnr {
  border: 1px solid #dedcdd;
  box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,0.65);
  position: relative;
  margin-bottom: 20px;
}
.feature-bnr a {
  display: block;
}
.feature-bnr span {
  position: absolute;
  top: 10px;
  right: 5px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  -ms-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: #fff100;
  background-color: #e9262c;
  padding: 0 6px;
  border-radius: 5px;
}
.feature-bnr span::after {
  content: "";
  border: 7px solid transparent;
  border-top: 7px solid #e9262c;
  position: absolute;
  top: 26px;
  right: 22px;
  -ms-transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}
.feature-bnr .side-bnr-img {
  width: 100%;
  height: 148px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -1;
}
.feature-bnr .side-bnr-img p {
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  font-weight: bold;
  padding: 5px 5px;
  font-size: 14px;
  text-align: center;
}
