@charset "utf-8";

/* 楽器人　index ====================================================*/

/*--------------------------------------------
 main
--------------------------------------------*/
/* slider
-------------------------*/
.main__slider {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    opacity: 0;
    transition: opacity .3s linear;
}
.main__slider.slick-initialized{
  opacity: 1;
}
.slick-track {
    display: flex;
    flex-wrap: nowrap;
}
.main__slider__item {
    padding: 0 6px;
    position: relative;
}
.main__slider__item__note {
    width: calc(100% - 12px);
    box-sizing: border-box;
    margin: 0 6px;
    border-radius: 0 0 30px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 25px 14px;
    color: #fff;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
}
.main__slider__item__note h1 {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 1px 2px 3px #000;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
.main__slider__item__note__sub {
    font-size: 18px;
    font-weight: bold;
    margin: 6px 0 0;
    padding: 0;
    text-shadow: 1px 2px 2px #000;
}
.main__slider__item > a {
    display: block;
    background-color: #000;
    border-radius: 30px;
}
.main__slider__item > a:hover{
	opacity: 0.8;
}
.main__slider__item img {
    border-radius: 30px;
}
.slick-slide {
    width: 640px;
    float: none;
}
.slick-slide:not(.slick-center) > .main__slider__item > a > img {
    opacity: 0.5;
}

/* Dots */
.slick-dots
{
    position: relative;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 66px;
    height: 4px;
    margin: 2px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 66px;
    height: 4px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 0.8;
}
.slick-dots li button:before{
    transform: skew(-30deg);
    display: block;
    line-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 66px;
    height: 4px;
    content: '';
    text-align: center;
    opacity: 1;
    background: #D8D8D8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    background: #FF154D;
}

/* arrow */
button{
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.slide-arrow{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    width: 54px;
    height: 54px;
    z-index: 10;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(0 0 0 / 30%);
    border-radius: 50px;
}
.prev-arrow{
    left: calc(50% - 298px);
    background-image: url(https://img.barks.jp/img/keywords/gakki_beat_index/usage/slick__arrow-left.svg);

}
.next-arrow{
    left: calc(50% + 298px);
    background-image: url(https://img.barks.jp/img/keywords/gakki_beat_index/usage/slick__arrow-right.svg);
}


.main__banner {
    width: 100%;
    max-width: 960px;
    text-align: center;
    margin: 30px auto;
}