/* widget-bnrtop */
.widget-bnrtop {
    margin-top: 0;
  }

  /* top-ttl-h2 */
  .top-ttl-h2 {
    position: relative;
    margin: 0 0 1em;
  }
  
  /* top-nav */
  #top-nav {
    overflow: hidden;
    max-width: 710px;
    margin: 0 auto 50px;
    text-align: center;
  }
  #top-nav li {
    float: left;
    width: 92px;
    margin: 0;
    padding-right: 31px;
    padding-left: 0;
  }
  #top-nav li:last-child {
    padding-right: 0;
  }
  
    @media (max-width: 768px) {
      #top-nav {
      max-width: 366px;
      margin-bottom: 2em;
    }
    #top-nav li {
      margin-bottom: 15px;
      padding-right: 15px;
      padding-left: 15px;
    }
    #top-nav li:nth-child(4),
    #top-nav li:nth-child(5),
    #top-nav li:nth-child(6) {
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 480px) {
    #top-nav {
      max-width: 244px;
    }
    #top-nav li:nth-child(4) {
      margin-bottom: 15px;
    }
    #top-nav li:nth-child(5),
    #top-nav li:nth-child(6) {
      margin-bottom: 0;
    }
  }

/*************************
おすすめ商品・新着商品
*************************/
  .recommend-list,.new-item-list{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:24px 8px;
    justify-items: center;
  }

  @media screen and (max-width: 1024px) {
    .recommend-list,.new-item-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem .5rem;
      justify-items: center;
    }
  }

  .recommend-list__item,.new-item-list__item{
    list-style: none;
    font-weight: 600;
  }

  .recommend-list__item .price{
    margin-top: 1rem;
  }

  .recommend-list__sakka{
    font-size: 0.875rem;
  }

  .history-list{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap:8px;
  }

@media screen and (max-width:768px) {
  .history-list{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:1rem .5rem;
  }
}

  .recommend-list__item img, .new-item-list__item img,.history-list__item img{
    object-fit: contain;
    background: #f6f6f6;
    aspect-ratio: 1 / 1;
  }

  .recommend-list__left-line,.new-item-list__left-line{
    border-left: 1px solid #d7d7d7;
    padding-left: 8px;
    margin-top: 16px;
  }

/*************************
共通｜コンテンツ（3列）
*************************/
 .top-content{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
 }

 .top-content li{
  list-style:none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #EEEDED;
}

.top-content li a{
  text-align: center;
}

.top-content li .content-icon{
  width: 48px;
  height: 48px;
  text-align: center;
}

.top-content li span{
  display: block;
  font-weight: 600;
  color: #7a1c42;
}

@media screen and (max-width:599px) {
  .top-content{
    display: block;
    width: 92%;
    margin-left: 4%;
  }
  .top-content li{
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
  }
}

/*************************
作家を探す（SPのみ）
*************************/
@media screen and (max-width:768px){
  .widget-sakka{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:8px;
    justify-items: center;
    background: inherit;
  }
  .widget-sakka li{
    list-style:none;
  }
}