@charset "utf-8";

/*==========================
Slider
==========================*/

.slick-slider {
    overflow: hidden;
}

.mvSlider__item img {
  width: 100%;
  height: calc(var(--vh) * 100);
  object-fit: cover;
}

@keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1); /* 拡大率 */
    }
}
.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

.mv-dots
{
    position: absolute;
    bottom: 4%;
    z-index: +1; 

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.mv-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.mv-dots li button
{
    display: none;
}
.mv-dots li button:hover,
.mv-dots li button:focus
{
    outline: none;
}
.mv-dots li button:hover:before,
.mv-dots li button:focus:before
{
    opacity: 1;
}
.mv-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mv-dots li.slick-active button:before
{
    opacity: .75;
    color: white;
}

/* Slider sp */
@media screen and (max-width:910px) {
    .mvSlider__item img {
        height: calc(var(--vh) * 100);
        object-fit: cover;
    }
    .footer {
        margin-top: 0;
    }
}
/* Slider 910px *