@charset 'UTF-8';

/* 矢印 */
.slick-prev        { position:absolute; top:0; left: 0; bottom:0; z-index:4; display:block; width:60px; height:60px; margin:auto 0; border:none; cursor:pointer; background:url(../../img/common/wt/prev.svg) no-repeat center center #1a244b; transition:all 0.2s ease; background-size:36px; border-radius:30px; filter:drop-shadow(1px 1px 3px rgba(0,0,0,0.4)); }
.slick-next        { position:absolute; top:0; right:0; bottom:0; z-index:4; display:block; width:60px; height:60px; margin:auto 0; border:none; cursor:pointer; background:url(../../img/common/wt/next.svg) no-repeat center center #1a244b; transition:all 0.2s ease; background-size:36px; border-radius:30px; filter:drop-shadow(1px 1px 3px rgba(0,0,0,0.4)); }
.slick-prev:hover  { background-position:20% center; background-color:#262e54; }
.slick-next:hover  { background-position:80% center; background-color:#262e54; }

/* ドット */
.slick-dots                                { position:absolute; bottom:-40px; left:0px; z-index:2; width:100%; display:block; list-style:none; text-align:center; }
.slick-dots li                             { position:relative; width:20px; height:20px; margin:0; cursor:pointer; display:inline-block; }
.slick-dots li button                      { font-size:0; line-height:0; display:block; width:20px; height:20px; 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         { background:#1a244b; }
.slick-dots li button:before               { background:rgba(0,0,0,0.2); content:""; position: absolute; top:0; right:0; bottom:0; left:0; width:5px; height:5px; margin:auto; border-radius:50%; transition:all 0.2s ease; }
.slick-dots li.slick-active button:before  { animation:dots 0.5s ease forwards; }

@keyframes dots {
 0%    { width: 5px; height: 5px; background:#dddddd; }
 50%   { width:12px; height:12px; background:#ffcc00; }
 100%  { width: 5px; height: 5px; background:#190064; }
}