.hero-main{
    position: relative;
    max-height: 800px;
    height: 100vh;
    padding-bottom: 160px;
}
.hero-main.bg-orange{
    color:#fff;
}
.hero-main-box{
    padding-top: 64px;
}
.hero-main.bg-orange .h1{
    color:#fff;
    font-size: 3.375rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -0.03em;
    margin: 0;
}

.hero-main-desc{
    margin-top: 36px;
    font-size: 1.375rem;
}
.hero-main-desc p{
    font-size:inherit;
}

.hero-main__footer{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 60px;
}
.hero-main__footer figure{
    padding: 5px;
    border-radius: 5px;
    width: 200px;
    margin: 0 auto;
    overflow: hidden;
}
.hero-main__footer figure img{
    width: 100%;
    height: auto;
}
.hero-main__headline-under{
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;

}
.hero-main-links__list{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--l-black);
    padding-top: 24px;
}
.anime-link__item{
    border: 1px solid var(--l-black);
    border-radius: 12px;
    padding: 6px 14px;
    color: var(--l-black);
    font-weight: 600;
    font-size: 3.375rem;
    margin: 10px;
    line-height: 1.36;
}
.anime-link__item a{
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}
.anime-link__item{
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
    animation: 1.2s linear 0s infinite alternate rotateLink;
}
.anime-link__item:nth-child(2n){
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    animation: 1.2s linear 0s infinite alternate rotateLink_reverse;
}
@media screen and (max-width:991px) {
    .hero-main{
        height: 100%;
        min-height: 100vh;
    }
}
@media screen and (max-width:767px) {
    .hero-main{
        min-height: 100vh;
        height: auto;
    }
    .hero-main.bg-orange .h1{
        font-size: 2.125rem;
    }
    .hero-main__headline-under{
        margin-top: 5px;
        font-size: 1.25rem;
    }

    .hero-main-desc{
        margin-top: 18px;
        font-size: 1.25rem;
    }
    .anime-link__item{
        font-size: 2.125rem;
        text-align: center;
    }
    .hero-main-desc p br{
        display: none!important;
    }
    .hero-main-links__list{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
    .hero-main__footer{
        bottom: 40px;
    }
    .hero-main-desc{
        padding-bottom: 20px;
    }
    .hero-main-box{
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

@keyframes rotateLink {
    0% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }
  }
  @keyframes rotateLink_reverse {
    0% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    100% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
  }