@charset "utf-8";

/*--------------------------
	共通の設定/=iPhone 320px(縦)からの設定 /
-------------------------- */
#hamburger .h_span{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
#hamburger .h_span span{
    position: absolute;
    width: 100%;
    height: 4px;/*線の太さ*/
    background-color: #695636;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
#hamburger .h_span span:nth-child(1) {
    top:0;
}
#hamburger .h_span span:nth-child(2) {
    top:10px;
}
#hamburger .h_span span:nth-child(3) {
    top:20px;
}
#hamburger .h_span.open span:nth-child(1){
    background-color: #695636;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}
#hamburger .h_span.open span:nth-child(2),#hamburger .h_span.open span:nth-child(3){
    top: 6px;
    background-color :#695636;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}
#h_nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(207,223,222,0.9);
    box-sizing: border-box;
    z-index: 2;
    padding-top: 60px;
    transition: .3s;
}
#h_nav.open{
    right: 0px;
    z-index: 11;
}
#h_nav .h_nav_menu{
    width: 100%;
    height:100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
#h_nav .h_nav_menu li{
    display: block;
    /*padding-right: 30px;*/
    margin-bottom: 50px;
    font-weight: bold;
}
#h_nav .h_nav_menu li a{
    color: #695636;
    text-decoration: none;
}
/*--------------------------
	タブレット / iPad 768px(縦)から1023pxまでの設定 /
-------------------------- */
@media screen and (min-width: 768px){
.h_span{
    display: none;
}
#h_nav{
    right: 0;
    height: 120px;
    background-color: rgba(207,223,222,0.9);
}    
#h_nav .h_nav_menu{
    display: flex;
    flex-direction: row;
    max-width: 320px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    margin-top: 50px;
    margin-right: 50px;
}
#h_nav .h_nav_menu li{
    padding-right: 30px;
}
#h_nav .h_nav_menu li a{
    color: #695636;
}
#h_nav .h_nav_menu li a:hover{
    color: #999;
}
}
/*--------------------------
	PC /1024px以上の設定/
-------------------------- */
@media screen and (min-width:1024px) {
#h_nav .h_nav_menu{
    margin-right: 80px;
}
}