@charset "UTF-8";
/*=======================================================
topのみ打ち消し
=======================================================*/
.ly_main {
  padding-top: 0;
}

/*=======================================================
ranking
=======================================================*/
.bl_ranking {
  padding-top: 0;
}
.bl_ranking_item.el_1 .bl_item_ttlWrapper {
  border-color: #f27827;
}
.bl_ranking_item.el_1 .bl_item_name {
  color: #f27827;
}
.bl_ranking_item.el_1 .bl_item_number {
  background: url("../images/top/crown_gold.svg") top center/contain no-repeat;
}
.bl_ranking_item.el_2 .bl_item_ttlWrapper {
  border-color: #808080;
}
.bl_ranking_item.el_2 .bl_item_name {
  color: #808080;
}
.bl_ranking_item.el_2 .bl_item_number {
  background: url("../images/top/crown_silver.svg") top center/contain no-repeat;
}
.bl_ranking_item.el_3 .bl_item_ttlWrapper {
  border-color: #f27827;
}
.bl_ranking_item.el_3 .bl_item_name {
  color: #f27827;
}
.bl_ranking_item.el_3 .bl_item_number {
  background: url("../images/top/crown_bronze.svg") top center/contain no-repeat;
}
.bl_ranking_item.el_1 .bl_item_ttlWrapper, .bl_ranking_item.el_2 .bl_item_ttlWrapper, .bl_ranking_item.el_3 .bl_item_ttlWrapper {
  padding-bottom: 0;
}
.bl_ranking_item.el_1 .bl_item_number, .bl_ranking_item.el_2 .bl_item_number, .bl_ranking_item.el_3 .bl_item_number {
  flex: 0 1 50px;
  height: 50px;
  padding: 10px 0 0;
  border-radius: 0;
}



/* 絞込みボタン */
.bl_search {
  position: relative;
  max-height: 4.5em; /* 約2行 ※行高により調整 */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.bl_search::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 2em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bl_search.is-open {
  max-height: none;
  overflow: visible;
}

.bl_search.is-open::after {
  content: none;
}

.p-filter__toggle {
  display: block;
  margin: 0 auto 40px;
  cursor: pointer;
  background: #f27827;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 200px;
  text-align: center;
  width: 100%;
  font-weight: 700;
  background: #1e293b;
}

@media screen and (max-width: 750px) {
  .bl_ranking_item.el_1 .bl_item_number, .bl_ranking_item.el_2 .bl_item_number, .bl_ranking_item.el_3 .bl_item_number {
    flex: 0 1 10vw;
    height: 10vw;
    padding: 2.6666666667vw 0 0;
  }

  .bl_search::after{
    top: 85px;
  }
  .p-filter__toggle{
    font-size: 20px;
  }
  .bl_search{
    margin-bottom: 10px;
  }
  .bl_search.is-open {
    margin-bottom: 4.2666666667vw;
  }
}
/* bold */
.hp_bold {
  font-weight: bold !important;
}
/* opacity1 */
.hp_opacity1 {
  opacity: 1 !important;
}
/* アクセントカラー */
.hp_color__blue {
  color: #1e293b!important;
  font-weight: 700;
}
.hp_bg__blue {
  background: linear-gradient(transparent 70%, #95ccff 70%);
  font-weight: 700;
}