@charset "utf-8";

/*sp_fixed_nav*/
.sp_fixed_nav {
    display: none;
}
@media screen and (max-width: 768px) {
    .search {
        display: none !important;
    }
    #content_goto {
        display: none !important;
    }
    .sp_fixed_nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        background: #f5dce8;
        z-index: 10;
        opacity: 0;
        animation: fadeIn 1s both 2s;
    }
    .sp_fixed_nav_img {
        height: 40px;
        display: inline-block;
    }
    .sp_fixed_nav_text {
        text-align: center;
        font-size: 10px;
        font-weight: 700;
    }
    .sp_fixed_nav__item > a {
        text-decoration: none;
        margin: 8px 0;
        display: block;
        line-height: 1.2;
        border-right: 1px dashed #183383;
    }
    .sp_fixed_nav__item:last-of-type > a {
        border-right: none;
    }
    #footer_wrapp {
        padding-bottom: 100px;
    }
    @keyframes fadeIn{
        0% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
    }
}