
body.open,
body:after {
    overflow: hidden;
}
.b-nav,
body:after {
    position: absolute;
}

.b-brand,
.b-link {
    margin-left: 0;
    text-decoration: none;
}
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    100% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: hidden;
    }
}
@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    100% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: hidden;
    }
}

#b-nav_text {
    position: absolute;
    top: 30px;
    right: 100px;
    letter-spacing: 25px;
    font-family: "freight-big-pro",Book Antiqua,sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fcfcf6;
    text-shadow: 0 0 1px #000;
    animation: fadeIn 5s ease 0s 1 normal;
    -webkit-animation: fadeIn 5s ease 0s 1 normal;

}
@keyframes fadeIn {
    /*「fadeIn」と名前をそろえる*/
    0% {
        opacity: 0;
    }
    /*アニメーション開始時は完全に透過*/
    100% {
        opacity: 1;
    }
    /*アニメーション終了時は透過しない*/
}

/*旧 Safari 用のベンダー処理*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.#b-nav_text {
    opacity: 0;
    transition: opacity 2.0s ease;
}
.is-loaded .#b-nav_text {
    opacity: 1;
    transition: opacity 2.0s ease;
}

#b-nav_text:hover {
    color: #b69e71;
    text-decoration: none;
}
* {
    box-sizing: border-box;
}
body:after {
    content: '';
    height: 100%;
    right: 0;
    top: 0;
    opacity: 0.8!important;
    padding: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100%;
}

.transitions {
    }

.transitions:hover {
    background-color: blue;
}

body.open:after {
    opacity: 1;
    visibility: visible;
}
.b-nav {
    z-index: 11;
}
.b-nav:not(.open) {
    visibility: hidden;
}
.b-nav li {
    color: #fff;
    list-style-type: none;
    padding: 0;
    text-align: left;
    -webkit-transform: translateX(250px);
    -ms-transform: translateX(250px);
    transform: translateX(250px);
	border-top: 1px dotted #fff;
}
.b-nav li:not(.open) {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
.b-nav li:not(.open),
.b-nav.open li {
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
}
.b-nav li:not(.open),
.b-nav.open li:hover{
    color: #ee4123!important;
}
.b-nav.open li img {
    height: 10vh;
}
.red {
    filter: invert(15%) sepia(95%) saturate(6932%) hue-rotate(358deg) brightness(95%) contrast(112%);
}
.b-nav li:first-child {
    padding-top: 0;
}
.b-nav.open {
    visibility: visible;
	z-index: 9999;
}
.b-nav.open li {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
	margin-bottom:5vh;
}
.b-link {
    background: 0 0;
    border-left: rgba(255,255,255,0)solid 2px;
    color: #fff;
    transition: all 0.4s ease;
    width: auto;
}
.b-link,
.b-menu {
    -webkit-transition: all 0.4s ease;
}
.b-link--active,
.b-link:hover {
    border-left: #fff solid 2px;
    padding-left: 30px;
}
.b-menu {
    background: #ee4123;
    border: 2px solid #fcfcf6;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 60px;
    padding-left: 15.5px;
    padding-top: 17.5px;
    position: absolute;
    width: 60px;
    z-index:9999;
    top: 0;
    right: 0;
    box-shadow: 0 0 1px #000;
    opacity: 0;
	animation: fadeIn 4s ease-out 4s 1 forwards;
    -webkit-animation: fadeIn 4s ease-out 4s 1 forwards;
}
	@keyframes fadeIn { /*「fadeIn」と名前をそろえる*/
		0% {opacity: 0} /*アニメーション開始時は完全に透過*/
		100% {opacity: 1;display: block;} /*アニメーション終了時は透過しない*/
	}

	/*旧 Safari 用のベンダー処理*/
	@-webkit-keyframes fadeIn {
		0% {opacity: 0}
		100% {opacity: 1;display: block;}
	}
.b-menu:hover {
    color: #102a3d;
}
.b-bun--bottom,
.b-bun--mid,
.b-bun--top {
    height: 2px;
    width: 25px;
}
.b-container.open .b-main,
.b-menu:hover {
    border: 2px solid #b69e71;
}
.b-bun {
    background: #fff;
    transition: all 0.4s ease;
}
.b-brand,
.b-bun {
    position: relative;
    -webkit-transition: all 0.4s ease;
}
.b-bun--top {
    top: 0;
}
.b-bun--mid {
    top: 8px;
}
.b-bun--bottom {
    top: 16px;
}
.b-brand {
    color: #fff;
    top: -21.43px;
    transition: all 0.4s ease;
    z-index: 13;
}
.b-container {
	width: 100vw;
    height: 100vh;
    position: absolute;
    top: 80px;
    right: 20px;
    animation: fadeIn 5s ease 0s 1 normal;
    -webkit-animation: fadeIn 5s ease 0s 1 normal;

}
@keyframes fadeIn {
    /*「fadeIn」と名前をそろえる*/
    0% {
        opacity: 0;
    }
    /*アニメーション開始時は完全に透過*/
    100% {
        opacity: 1;
    }
    /*アニメーション終了時は透過しない*/
}

/*旧 Safari 用のベンダー処理*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.b-container:hover:not(.open) .bun-bottom,
.b-container:hover:not(.open) .bun-mid,
.b-container:hover:not(.open) .bun-top {
    background: #2196f3;
}
.b-container.open .b-bun--top {
    background: #fff;
    top: 9px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.b-container.open .b-bun--mid {
    opacity: 0;
}
.b-container.open .b-bun--bottom {
    background: #fff;
    top: 5px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.b-container.open .b-brand {
    color: #fff;
}
/*# sourceMappingURL=burger.min.css.map */
