
/* ハンバーガーメニュー↓ */
	.hamburger-menu {
		display:none;
	}
	@media screen and (max-width:1050px) { 
		.hamburger-menu {
			display:block;
		}
	}
        .menu-btn {
        	
            position: fixed;
            top: 10px;
            right: 10px;
            display: flex;
            width: 60px;
            height: 60px;
            justify-content: center;
            align-items: center;
            z-index: 190;
            background-color: #2ca9e1;
            border-radius: 15px;
        }
        .menu-btn span,
        .menu-btn span::before,
        .menu-btn span::after {
            content: '';
            display: block;
            height: 3px;
            width: 25px;
            border-radius: 3px;
            background-color: #fff;
            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;
            top: 0;
            left: 100%;
            z-index: 80;
            background-color: #3484bb;
            transition: all 0.5s;
        }
        .menu-content ul {
            padding: 70px 10px 0;
        }
        .menu-content ul li {
            border-bottom: solid 1px #fff;
            list-style: none;
        }
        .menu-content ul li a {
            display: block;
            width: 100%;
            font-size: 15px;
            box-sizing: border-box;
            color: #fff;
            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 #fff;
            border-right: solid 2px #fff;
            transform: rotate(45deg);
            position: absolute;
            right: 11px;
            top: 16px;
        }
        #menu-btn-check:checked ~ .menu-content {
            left:30%;
        }

/* ハンバーガーメニュー↑ */


@media screen and (max-width:1050px) { 
    /*　画面サイズが480pxからはここを読み込む　*/
	.btn-contact {
		margin-right:80px;
		
	}
}




.contact-us2 {
	background-image:url("./images/p-15.jpg");
	background-size:cover;
	background-position:center center;
	height:300px;
	display:flex;
	justify-content: center;
  align-items: center;
}
.btn-contact2 {
	width:30%;
	display:block;
	margin:20px auto;
	background:#006934;
	color:#fff;
	font-weight:bold;
	text-align:center;
	font-size:2em;
	padding:10px;
}
.btn-contact2:hover {
	opacity:0.5;
}

@media screen and (max-width:1050px) { 
    /*　画面サイズが768pxからはここを読み込む　*/
	.btn-contact2 {
		width:70%;
		font-size:1.5em;
	}
}

