.club {
    margin-top: 37px;
    padding-bottom: 162px;
}

.company__eye {
    width: 156px;
    margin-left: 51px;
}

/* 目の動き */
.anim-box.poyoyon2.is-animated {
    animation: poyoyon2 1.2s cubic-bezier(0.25, 1.25, 0.5, 1) forwards;
}

@keyframes poyoyon2 {
    0% {
        transform: scale(1) translateY(0);
    }

    10% {
        transform: scale(1.05, 0.95) translateY(5px);
        /* ぐにゃっと下へ */
    }

    25% {
        transform: scale(0.9, 1.1) translateY(-12px);
        /* 反発して上へ */
    }

    40% {
        transform: scale(1.08, 0.92) translateY(6px);
        /* 再び下へ軽く揺れる */
    }

    55% {
        transform: scale(0.97, 1.03) translateY(-4px);
        /* 小さく反発 */
    }

    70% {
        transform: scale(1.02, 0.98) translateY(2px);
    }

    100% {
        transform: scale(1) translateY(0);
        /* 元に戻る */
    }
}


.club__text-box {
    margin-top: 60px;
    margin-bottom: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.company__title01 {
    font-weight: 900;
}

.company__title::after {
    content: "";
    display: block;
    background-image: url(./image/company_border.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 152px;
    bottom: -12px;
    left: 0;
    aspect-ratio: 152 / 12;
}

.club__text {
    font-size: 20px;
}

.club__text01 {
    margin-top: 1em;
}

.company__box {
    width: 72.6%;
    margin: 0 auto;
    margin-bottom: 100px;
    margin-top: 68px;
}

.table__title {
    font-size: 26px;
    font-weight: 900;
}

.table__text {
    font-size: 26px;
    width: 73.4%;
}


.table__title,
.table__text {
    padding: 15px 0;
}

.table__box {
    border-bottom: 1px solid rgb(40, 98, 155, 0.65);
}

.company__button-container {
    display: flex;
    column-gap: 56px;
    justify-content: center;
}

.company__picture {
    animation: fuwafuwa 6s ease-in-out infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(3px, -6px) scale(1.02);
    }

    50% {
        transform: translate(-3px, -10px) scale(0.98);
    }

    75% {
        transform: translate(2px, -6px) scale(1.01);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}



@media (max-width:960px) {
    .club {
        margin-top: 10px;
    }

    .company__eye {
        width: 121px;
    }

    .section__title-box {
        row-gap: 10px;
        padding-bottom: 109px;
    }

    .club__text-box {
        margin-top: 40px;
    }

    .club__text {
        font-size: 18px;
    }

    .company__title::after {
        width: 101px;
        bottom: -9px;
        aspect-ratio: 101 / 9;
    }

    .company {
        padding-top: 50px;
    }

    .section__title-box {
        padding-bottom: 0;
    }

    .company__box {
        margin-top: 60px;
        width: 94%;
    }

    .table__title,
    .table__text {
        font-size: 20px;
    }

    .table__text {
        width: 74%;
    }
}

@media (max-width:768px) {
    .company__eye {
        width: 99px;
        margin-left: 30px;
    }

    .club {
        margin-top: 40px;
        padding-bottom: 73px;
    }

    .section__title-box {
        row-gap: 10px;
    }

    .club__text-box {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .club__text {
        font-size: 15px;
    }


    .company__title::after {
        content: "";
        display: block;
        background-image: url(./image/company_border-sp.png);
        background-position: left;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        width: 83px;
        bottom: -8px;
        left: 0;
        aspect-ratio: 83 / 8;
    }

    .table__title {
        font-size: 16px;
        padding: 0;
    }

    .table__text {
        font-size: 15px;
        padding: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .table__box {
        display: flex;
        flex-direction: column;
        row-gap: 15px;
    }

    .table__group {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .company__box {
        width: 100%;
        margin-bottom: 70px;
    }

    .footer {
        padding-top: 60px;
    }

}