.footer {
    text-align: center;
    font-family: 'Zen Kaku Gothic New sans-serif';
    font-weight: 400;
    color: #333;
}

.footer img {
    vertical-align: bottom;
}

.footer__inner {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 80px;
}

.footer__item_wrapper {
    width: 50%;
    padding: 0 30px 60px 30px;
}

/* 「納屋橋キック」と「那古野キック」のロゴ */
.footer__gym_logo {
    width: 60%;
    height: auto;
}

.footer ul {
    list-style: none;
    padding-inline-start: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* 所在地とSNSアイコン */
.footer__text {
    text-align: left;
    width: 75%;
    font-size: 15px;
}

.footer__sns_list {
    display: flex;
    width: 25%;
    gap: 15px;
}

.footer__sns_list a {
    display: block;
    position: relative;
    width: 50%;
    transition: 0.4s;
}

.footer__sns_list a img {
    width: 100%;
    height: auto;
}

.footer__sns_list a:hover {
    opacity: 0.7;
}

.footer__sns_list_nagoyakick {
    justify-content: flex-end;
    padding-left: 15px;
}

/* Googleマップ */
.footer__gym_map {
    width: 100%;
    height: 320px;
    margin-top: 30px;
}

/* 「体験・予約・お問い合わせ」ボタン */
.footer__contact_bth {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: #06C755;
    border-radius: 14px;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 10px;
    font-size: 20px;
    font-family: 'Zen Kaku Gothic New sans-serif';
    transition: 0.4s;
}

.footer__contact_bth img {
    width: 15%;
    height: auto;
}

.footer__contact_bth:hover {
    opacity: 0.7;
}

/* 「GO TO WEBSITE」ボタン */
.bth__goto_website {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Zen Old Mincho';
    font-size: 26px;
    width: 93%;
    display: block;
    position: relative;
    padding: 5px 0;
    transition: 0.4s;
}

.bth__goto_website::after {
    content: "";
    position: absolute;
    width: 7%;
    right: -7%;
    top: 0;
    height: 100%;
    aspect-ratio: cos(30deg);
    clip-path: polygon(-1% -1%, 101% 50%, -1% 101%);
}

.bth__goto_website:hover {
    letter-spacing: 4px;
}

#goto_01,
#goto_01::after {
    background: #8D2523;
}

#goto_02,
#goto_02::after {
    background: #0D3871;
}

/* 白背景のナビメニュー */
.footer__menu {
    padding: 80px 25px;
    text-align: center;
    background-image: linear-gradient(0deg, #333 50%, #fff 50%);
}

.footer__menu_inner {
    background: #fff;
    padding: 20px;
    box-shadow: 5px 5px 20px #0000002c;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer__nav {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 50px 0 60px 0;
}

.footer__nav a {
    text-decoration: none;
    font-size: 20px;
    color: #333;
    display: block;
    position: relative;
}

.footer__menu_logo {
    width: 200px;
    height: auto;
}

.footer__copyright {
    color: #ffffff;
    font-family: 'Zen Kaku Gothic New';
    font-size: 20px;
    padding-top: 20px;
    margin-bottom: -40px;
}

.footer__copyright-br {
    display: none;
}

/* 「体験・予約・お問い合わせ」ボタンの文字サイズ調整 */
@media screen and (max-width:890px) {
    .footer__contact_bth {
        font-size: 2.3vw;
    }
}

/* 全体のレスポンシブ対応 */
@media screen and (max-width:767px) {
    .footer__gym_logo {
        width: 250px;
        height: auto;
    }

    .footer__gym_map {
        height: 250px;
    }

    .footer__inner,
    .footer__sns_list {
        flex-direction: column;
    }

    .footer__sns_list {
        width: 60px;
        align-items: flex-end;
    }

    .footer__item_wrapper {
        width: 100%;
    }

    .footer__contact_bth {
        font-size: 17px;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer__contact_bth img {
        width: 30px;
    }

    #goto_01,
    #goto_02 {
        font-size: 17px;
    }

    .footer ul {
        padding: 20px 0;
    }

    .footer__nav {
        flex-direction: column;
    }

    .footer__nav a {
        font-size: 16px;
    }

    .footer__sns_list_nagoyakick {
        padding-left: 0;
    }

    .footer__copyright {
        font-size: 14px;
    }

    .footer__copyright-br {
        display: block;
    }
}

@media screen and (max-width:380px) {
    .footer__contact_bth {
        font-size: 4vw;
    }
}