@import url(https://fonts.googleapis.com/css?family=Ek+Mukta:200);
body{
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    margin: 0;
}
a,
a::after,
a::before{
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a,
a:hover,
a:focus,
a:active{
    outline: none;
    text-decoration: none;
}
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*
	header
----------------------*/
header{
	/*
    position: relative;
    */
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #f69624;
    padding: 8px 0;
    width: 100%;
    float: left;
    z-index: 20;
	box-shadow: -3px -1px 18px -10px;
}
.menu{
    position: relative;
    float: none;
    width: 100%;
}
.menu ul{
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
}
.menu ul li{
    float: left;
}
.menu ul li a{
    display: inline-block;
    margin: 5px;
    font-size: 15px;
    letter-spacing: 0.03em;
    color: #fff;
    position: relative;
    padding: 8px 15px;
    width: initial;
    font-weight: bold;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.menu ul li a:hover{
    opacity: 1;
}
.containers{
    width: 1170px;
    margin: 0 auto;
}
body .containers::after{
    -webkit-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    -moz-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    -ms-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    -o-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    position: fixed;
    content: '';
    width: 50px;
    height: 50px;
    float: left;
    top: 3px;
    right: 10.1%;
    transform: scale(0);
    border-radius: 50%;
    background-color:rgba(0,0,0,0.7);
}
body.open-menu .containers::after{
    transform: scale(0);
    opacity: 1;
    visibility: visible;
}
.logo{
    top: -5px;
    color: #333;
    left: 0;
    position: absolute;
    text-transform: uppercase;
}
.logo img{
    width: 150px;
}
.hamburger-menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0px;
    margin: auto;
    width: 40px;
    height: 60px;
    cursor: pointer;
    right: 10px;
    z-index: 10;
}
.bar,
.bar::after,
.bar::before {
    width: 40px;
    height: 3px;
}
.bar {
    position: relative;
    transform: translateY(25px);
    background: #333;
    transition: all 0ms 300ms;
    top: 6px;
}
.bar.animate {
    background: rgba(255, 255, 255, 0);
}
.bar::before,
.bar::after {
    position: absolute;
    background: #333;
    content: '';
    left: 0;
}
.bar::before {
    bottom: 10px;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.bar::after {
    top: 10px;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.bar.animate::after {
    background: #fff;
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.bar.animate::before {
    background: #fff;
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.resize-message{
    margin: 40vh auto 0;
    display: table;
}
.resize-message span{
    text-transform: uppercase;
    text-align: center;
    display: block;
    color: #666;
}
.resize-message span i{
    font-size: 30px;
}
@media (max-width: 1199px){
    body.open-menu .containers::after {
        transform: scale(80);
        background-color:rgba(0,0,0,0.7);
        visibility: visible;
    }
    .containers{
        width: 750px;
    }
    header{
        height: 57px;
    }
    .hamburger-menu {
        opacity: 1;
        visibility: visible;
    }/*
    .logo{
        z-index: 11;
    }*/
    .menu ul{
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        visibility: hidden;
        z-index: 99;
        padding: 0;
        position: fixed;
        margin: 20vh auto 0;
        list-style: none;
        display: table;
        left: 50px;
        right: 0;
        width: 270px;
    }
    body.open-menu .menu ul{
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
        visibility: visible;
        opacity: 10;
        left: 0;
    }
    .menu ul li{
        width: 100%;
        float: left;
    }
    .menu ul li a{
		opacity: 1;
		color: #fff;
        font-weight: 600;
        font-size: 20px;
        display: table;
        margin: 5px auto;
    }

    .containers{
        padding: 0 15px;
        width: 100%;
    }
    body .containers::after{
        top: 3px;
        right: 11px;
    }
}
.topImg{
	width: 90%;
	max-width: 900px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease-out, background 1s ease-out;
  z-index: 11;
}

