@charset "UTF-8";
/* CSS Document */
.menu-btn{
	position: fixed;
	top:10px;
	right: 10px;
	height: 60px;
	width: 60px;
	    display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	background-color: rgba(55,161,200,1.00);
	    border-radius: 50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	   content: '';
    display: block;
    height: 3px;
    width: 25px;
	border-radius: 3px;
	background-color: aliceblue;
	position: absolute;	
	transition: all 0.5s;
}
.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: 40%;
	height: 100%;
	position: fixed;
	top: 0;
 left: 100%;
	/*leftの値を変更してメニューを画面外へ*/

	z-index: 99;
	background-color: aliceblue;
	transition: all 0.5s;
}	
#menu-btn-check:checked ~ .menu-content {
    left: 60%;
}
/*---------------------------------------*/
.hamburger_ul {
    width: min(90%, 350px);
    margin: 0 auto;
	padding: 68px 0 0 0;
}

.hamburger_ul li a{
	display: block;
	width: 100%;
	font-family: "bebas-neue-pro", sans-serif;
    font-size: clamp(3.2rem, 8.5vw, 4rem);

    color: rgba(14, 13, 13, 1.00);
	    padding: 5px 0;
}
.hamburger_ul li a:hover{
	opacity: 0.5;
	transition: 0.5s all;
	
}
.aida {
    padding: 0 0 45px 0;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (max-width:768px) {
.menu-content {
    width: 100%;

	
}
	#menu-btn-check:checked ~ .menu-content {
    left: 0;
}
	.hamburger_ul {
    width: min(50%, 350px);
		}
	.tel {
    padding: 25px 0 10px 0;
}
}


