@charset "UTF-8";

html {
    scroll-behavior: smooth;
}
/* カスタムCSS */
/* td:hover {
  background-color: red;
} */

body {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    word-break: break-all;
    overflow-wrap: break-word;
}

#app {
    flex: 1;
}

/* --------------  デザインCSS -------------- */


/*=============================================
bodyの中身が少なくてもfooter下に余白を設けない
footerが常に下にある状態にする。
============================================= */
/* body {
  font-family: 'Zen Old Mincho', serif;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
#GOLF {
  flex: 1;
} */

.wrapper2 {
    min-height: 100vh;
    position: relative;
    padding-bottom: 264px;
    box-sizing: border-box;
}

footer {
    background-color: #21B395;
    width: 100%;
}

footer small {
    color: #fff;
    font-size: 16px;
}

.footer_logo {
    width: 200px;
    background-color: #000000;
}

.footer li {
    display: inline-block;
    list-style: none;
}

.footer a {
    color: #fff;
}

ul {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

/* 上下線 */
.footer:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 45px;
    display: inline-block;
    width: 97%;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
}

.footer:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 45px;
    display: inline-block;
    width: 97%;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;

}

/* nav間の縦線 */
.footer_nav_ul li+li {
    position: relative;
}

.footer_nav_ul li+li ::before {
    position: absolute;
    content: "";
    height: 11px;
    width: 1px;
    background: rgb(187, 185, 185);
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.footer a:hover {
    color: #fff;
}

.footer_nav {
    justify-content: start;
}

.footer_nav_ul {
    height: 130px;
    align-items: center;
    display: flex;
}

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

.footer_nav_ul {
    padding-right: 20px;
    padding-left: 20px;
}


ul {
    position: relative;
    margin-bottom: 0rem;
}

/* footerのレスポンシブ（1195px以下） */
@media screen and (max-width: 1195px) {

    ul {
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .footer:before {
        content: '';
        position: absolute;
        width: 0%;
        height: 0px;
    }

    .footer:after {
        content: '';
        position: absolute;
        width: 0%;
        height: 0px;
    }

    /* 上下線 */
    .footer:before {
        display: none;
    }

    .footer:after {
        display: none;
    }

    .footer {
        flex-wrap: wrap;
    }

    nav.navbar.navbar-expand.footer {
        justify-content: center;
    }

    .icon {
        padding-right: 32px;
        padding-left: 32px;
        padding-top: 15px;
    }

    .footer_nav_ul {
        height: 30px;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 44px;
        padding-left: 0;
    }
}

/* footerのレスポンシブ（1143px以下） */
@media screen and (max-width: 1143px) {
    ul {
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .icon {
        padding: 0;
        padding-top: 17px;
    }

    .footer_nav_ul {
        height: 30px;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 44px;
        padding-left: 0;
    }
}

/* footerのレスポンシブ（991px以下） */
/* footer_navを縦並び */
@media screen and (max-width: 991px) {
    .header-top-logo {
        background-color: #fff;
    }

    /* .header-top-logo::after {
    background-size: 185%;
    background-position: 0px 0px;
  } */

    /* footer縦線消去 */
    .footer_nav_ul li+li {
        position: relative;
    }

    .footer_nav_ul li+li ::before {
        position: absolute;
        content: "";
        height: 0px;
        width: 0px;
    }

    .footer:before {
        content: '';
        position: absolute;
        width: 0%;
        height: 0px;
    }

    .footer:after {
        content: '';
        position: absolute;
        width: 0%;
        height: 0px;
    }

    /* 上下線消去 */
    .footer_nav_ul {
        position: relative;
        padding-top: 180px;
        padding-bottom: 150px;
    }

    .footer .footer_nav_ul {
        flex-direction: column;
        justify-content: center;
    }

    .icon {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .footer_nav_ul {
        padding-right: 0px;
    }

    nav.navbar.navbar-expand.footer {
        display: block;
    }

    .footer_logo {
        width: 190px;
        background-color: #000000;
    }

}

@media screen and (max-width: 390px) {

    .footer_nav_ul a {
        font-size: 14px;
    }

    footer small {
        color: #fff;
        font-size: 12px;
    }
}
