* {
    transition: 0.5s ease;
}

body {
  font-family: 
    "Zen Maru Gothic",
    "Zen Kaku Gothic New",
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    "Meiryo",
    sans-serif;
    color: #13281D;
    letter-spacing: 1px;
}

a:hover {
    color: #57B482;
}
a._button:hover {
    filter: brightness(120%);
}

._font-kaku {
    font-family: "Zen Kaku Gothic New", sans-serif;
}
._font-hiragino {
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}
._font-maru {
    font-family: "Zen Maru Gothic", sans-serif;
}
@media (min-width: 1024px) {
    ._font-kaku-pc {
        font-family: "Zen Kaku Gothic New", sans-serif;
    }
    ._font-maru-pc {
        font-family: "Zen Maru Gothic", sans-serif;
    }
}

._btn-zoom {
    animation-duration: 2s;
    animation-delay: 0s;
    animation-name: kfScaleUpDown;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes kfScaleUpDown {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
    100% {
        transform: scale(1);
    }
}

._loadin {
    animation-duration: .25s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
._loadin._active {
    animation-name: kfLoadIn;
}
@keyframes kfLoadIn {
    0% {
        opacity: 0.1;
        transform: scale(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
._loadin._delay-05 {
    animation-delay: .05s;
}
._loadin._delay-1 {
    animation-delay: .1s;
}
._loadin._delay-15 {
    animation-delay: .15s;
}
._loadin._delay-2 {
    animation-delay: .2s;
}

._anime-mv {
    animation-name: kfYoYo;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes kfYoYo {
    0% {
        translate: 0 -2px;
    }
    50% {
        translate: 0 3px;
    }
    100% {
        translate: 0 -2px;
    }
}

._scrollin._up {
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
._scrollin._up._active {
    animation-name: kfScrollInUp;
}
@keyframes kfScrollInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
._scrollin._zoomin {
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
._scrollin._zoomin._active {
    animation-name: kfScrollZoom;
}
@keyframes kfScrollZoom {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
._scrollin._left {
    transform: translateX(-10px);
}
._scrollin._right {
    transform: translateX(10px);
} 
._scrollin._right._active,
._scrollin._left._active {
    transform: translateX(0);
    opacity: 1;
}
._scrollin._rotate._active {
    transform: scale(1) rotate(0);
    opacity: 1;
} 
._scrollin._rotateY._active {
    transform: rotateY(0) !important;
    opacity: 1;
}
._scrollin._delay-25 {
    animation-delay: .25s;
}
._scrollin._delay-5 {
    animation-delay: .5s;
}
._scrollin._delay-75 {
    animation-delay: .75s;
}
._scrollin._delay-100 {
    animation-delay: 1s;
}
@media (min-width: 1024px) {
    ._scrollin._delay-25-pc {
        animation-delay: .25s;
    }
    ._scrollin._delay-5-pc {
        animation-delay: .5s;
    }
}

.swiper-pagination {
    position: relative !important;
    overflow: visible !important;
    bottom: 0 !important;
    margin-top: 40px !important;
}
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #DCD7D0 !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
    transform: scale(1) !important;
    position: static !important;
}
.swiper-pagination-bullet-active {
    background-color: #57B482 !important;
}
@media (min-width: 1024px) {
    .swiper-slide {
        opacity: 0.75;
        transition: all .5s ease;
    }
    .swiper-slide-active {
        opacity: 1;
    }
    .swiper-pagination {
        margin-top: 35px !important;
    }
}

._accordion * {
    transition: initial;
}

._table-scrollbar::-webkit-scrollbar {
    height: 8px;
}
._table-scrollbar::-webkit-scrollbar-thumb {
    background: #57B482;
    border-radius: 5px;
}

._icon-swipe {
    animation-duration: 3s;
    animation-delay: 0s;
    animation-name: kfSwipeIcon;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
@keyframes kfSwipeIcon {
    0% {
        opacity: 1;
        translate: -45%;
    }
    20% {
        opacity: 1;
        translate: 30%;
    }
    40% {
        opacity: 0;
        translate: 30%;
    }
    60% {
        opacity: 1;
        translate: -45%;
    }
    80% {
        opacity: 0;
        translate: -45%;
    }
    100% {
        opacity: 0;
        translate: -45%;
    }
}

