@charset "utf-8";
/* CSS Document */

.navi_wrap {
	display: flex;
	background: #161616;
    background-color: rgba(22, 22, 22, 0.4);
	color: #fff;
	justify-content: space-between;
	/*margin: 53px 0 0 90px;*/
	position: absolute;
	top:0px;
	left: 0px;
	width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
}

.navi_wrap_left {
    width: 25%;
    max-width: 340px;
	margin: 10px 0 0 30px;
}

.navi_wrap_left img {
	width: 100%;
}

.navi_wrap_right {
	width: 70%;
	max-width: 770px;
	display: flex;
	justify-content: space-between;
    align-items:center;
}

.navi_wrap_right li {
		padding: 10px 10px 10px 0px;
}

.navi_wrap_right li a:link {
  color: #fff;
}
.navi_wrap_right li a:visited {
  color: #fff;
}
.navi_wrap_right li a:hover {
  color: #e5e1d6;
	transition : 1s;
}
.navi_wrap_right li a:active {
  color: #e5e1d6;
	transition : 1s;
}

.navi_contact {
	background-color: #151131;
	padding: 10px 20px !important;
	margin-right:5%;
    opacity: 100% !important;
}


@media screen and (max-width: 900px){
    .navi_wrap_right {
        font-size: 90%;
    }
}



/*768px以下*/
@media screen and (max-width: 768px){
.navi_wrap {
	display: flex;
	background-color: rgba(22, 22, 22, 0.4);
	color: #fff;
	justify-content: space-between;
	/*margin: 53px 0 0 90px;*/
	position: fixed;
	top:0px;
	left: 0px;
	width: 100%;
	min-height: 60px;
}
	
.navi_wrap_left {
	max-width: 60%;
    width: 57%;
	margin: 10px 0 10px 10px;
}
	
.navi_wrap_right {
	width: 29%;
	display: block;
}
	
	
	
	
	
/*--------------------------------------
hamburger menu button
--------------------------------------*/

.hamburger-menu {
	z-index: 10;
	position: relative;
}

.menu-btn {
    position: absolute;/*default fixed　ここをfixedにするとスクロールしてもナビ位置固定*/
    top: -5px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
	cursor: pointer;
    /*background-color: #34527a;ハンバーガーボタン背景*/
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 2px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}




#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}




#menu-btn-check {
    display: none;
}




.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;/*default fixed*/
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 0px 10px 0;
    margin-top: 0px;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}




.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;/*default fixed*/
    top: 60px;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #380f36;
    transition: all 0.5s;/*アニメーション設定*/
}




#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}


}






