@charset 'UTF-8';

/*　横並びを回避　*/
.top-slider,
.artist1-slider {
  opacity: 0;
  transition: opacity .3s linear;
}
.slick-initialized{
  opacity: 1;
}
/* slider */
.top-slider-f{
    margin-bottom: 4em;
}
.top-slider{
}
.top-slider .thumb{
    border: none;
    position: relative;
    height: calc(100vh - 200px);
}
.top-slider .info{
    position: absolute;
    color: var(--color_w);
    z-index: 999;
    left: 5%;
    bottom: 5%;
    background-color: transparent;
    width: 100%;
}
.top-slider .thumb .info .cat{
    background-color: var(--color_w);
    padding: 5px 10px;
    color: var(--color_b);
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 5px;
}
.top-slider .info a{
    text-decoration-line: none;
}
.top-slider .thumb .info h3{
    font-size: 2rem;
    margin-top: 0.2em;
    filter: drop-shadow(2px 4px 6px black);
}
.top-slider .thumb .info a .about{
    color: var(--color_w);
    height: 40px;
    line-height: 27px;
    margin:0.5em 0 1em;
    padding: 5px 0;
    border-radius: 3px;
    font-size: 1.2rem;
}
.top-slider .thumb .info .about img{
    width: 30px;
    height: 30px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
    object-position:center;
    filter: brightness(0) invert(1);
}
.top-slider .thumb .info a:hover .about{
    color: var(--color_main1);
    background-color: rgba(255,255,255,0);
}
.top-slider .thumb .info a:hover .about img{
    filter: invert(29%) sepia(56%) saturate(6864%) hue-rotate(13deg) brightness(99%) contrast(101%);
}
.top-slider .thumb img{
    width: 100%;
    height: 100%;
    aspect-ratio:16 / 9;
    object-fit: cover;
    object-position: center -100px;
    opacity: 0.7;
}
.top-slider .tag a,
.top-slider .tag{
    color: var(--color_w);
    font-size: 0.9rem;
}
.top-slider .tag:hover a,.top-slider .tag:hover{
    color: var(--color_main1);
    transition: 0.3s;
}

/* BAR*/
.dots-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 20px;
}

.dots-bar li {
    width: 8px;
    height: 2px;
    border-radius: 2px;
    margin: 0 5px;
    background:var(--color_gray2);
    cursor: pointer;
}
.dots-bar li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.dots-bar li:hover,
.dots-bar li.slick-active {
    background: var(--color_w);
}
.dots-bar li.slick-active{
    width: 15px;
    height: 2px;
}
.dots-bar li{
    list-style-type: none;
}


/*　TOP小スライダー　*/
/* 矢印使用しない時は非表示 */
.slick-list {
  margin: 0 -10px;
}
.slick-slide {
  margin: 0 10px;
}

.top-f .slick-prev.slick-disabled:before{
  opacity: 0 !important;
}

.artist1-slider .slick-list{
    overflow: visible;
}
/*矢印*/
.slick-next,.slick-prev{
  filter: brightness(0) invert(1);
}
.slick-prev{
    z-index: 999;
}


/*センタリング削除*/
.top-f .slick-track{
  margin-left: unset;
}
/*メインスライダーのみセンタリング*/
.top-slider .slick-track{
  margin-left: auto;
}
.popular-entry-card-thumb img,
.artist1-slider img{
    opacity: 1;
    width: 100%;
    border-radius: 15px;
}
.popular-entry-card-thumb img:hover,
.artist1-slider img:hover{
    opacity: 1;
    transition: 0.3s;
}


/*480px以下*/
@media screen and (max-width: 480px){
    .top-slider .info{
        left: 0;
        bottom: 0;
        width: 100%;
    }
    .top-slider .thumb .info h3{
        font-size: 1.5rem;
        margin-top: 0.4em;
    }
    .top-slider .thumb .info .about img{
        width: 20px;
        height: 20px;
    }
    .slick-slide {
        margin: 0 5px;
    }
  .artist1-slider { 
      position: relative;}
  .artist1-slider-inner-box li { margin-right: 15px; }
  .artist1-slider .slick-list { padding-right: 20%; }
  .artist1-slider .slick-slide img{
    width: 100%;
    height: 100%;
    aspect-ratio:2 / 4;
    object-fit: cover;
    object-position: center top;
    opacity: 0.7;
}
}