/*------------------------------------------------スマホ用ページ用設定*/

.hamburger {
    padding: 12px 10px 0 0;
    width: 140px;
    position: fixed;
    top: 0px;
    right: 0px;
    border-radius: 0;
    z-index: 50000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;

    animation: hamburger 1s;
    -ms-animation: hamburger 1s;
    -webkit-animation: hamburger 1s;
    -moz-animation: hamburger 1s;



}

/*--------------スマホ用ページ用設定*/
@media screen and (max-width: 767px) {
    .hamburger {
        padding: 0;
        width: 110px;
    }

}
@keyframes hamburger {
    0% {
        right: -1450px;
    }

    100% {
        right: 0;
    }
}

.hamburger img {
    display: block;
    margin: 0;
    padding: 0;

}

a:link,
a:hover,
a:visited,
a:active {
    text-decoration: none;
}

.hamburger__icon {
    position: relative;
    margin: 0 auto;
}

.fat-nav {


    top: 0;
    right: 0;
    z-index: 9999;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.8);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

}



.fat-nav__wrapper {
    width: 100%;
    height: 100%;
    display: table;
    table-layout: fixed
}

.fat-nav.active {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}


.fat-nav ul {
    vertical-align: middle;
    font-size: 0;
    margin: 0 auto;
    padding: 200px 0 0 0;
    width: 95%;
}

.fat-nav li {
    display: inline-block;
    text-align: center;
    padding: 8px;
    font-size: 2em;
    width: 49%;
    margin: .5%;
}

/*
border: 1px solid #fff;
*/


.fat-nav li,
.fat-nav li a {
    color: #fff
}

.fat-nav li a {
    font-size: 30px;
    text-decoration: none
}

.fat-nav {
    font-family: pulpo-rust-75, serif;
    font-weight: 400;
    font-style: normal;
}



.nav_bnr {
    display: flex;
}


.nav_bnr div {
    width: 33.333%;

}

.nav_bnr img {
    width: 95%;
}


/*------------------------------------------------PC用ページ用設定*/
@media screen and (min-width: 768px) {


    .hamburger{
        display: none;

    }


/*--------------------------------------------------------end@media*/
}
