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

* {
	text-decoration: none;
}

/*
.nav ul {
	display: flex;
	justify-content: space-around;
	width: 100%;
	height: auto;
	text-align: center;
	margin: 0;
	background:#999;
}
.nav li {
	list-style-type: none;
	min-width: 160px;
	width: 20%;
	height: auto;
	font-size: 1rem;
	list-style: none;
}
nav li a {
	display: block;
	color: #fff;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	transition: all 0.5s;
}
*/
/*
.nav li a:hover {
	background:#555;
	color: #ccc;
}
*/

.check {
	display: none;
}
.menu-btn__text {
	display: none;
}
/*
section{
	width: 100%;
	height: 1200px;
	background: #F8C2C3;
}
section:nth-child(odd){
	background: #5EB5C3;
}
*/

.drawer-menu a {
	color: #fff;
}

/*@media (max-width: 800px) {*/
.wrapper {
/*	padding: 0 8px;*/
	width: 100%;
}
.nav {
	background-color: #dfddda;
}
.nav ul {
	display: block;
	background: rgba(0,0,0,0);
}
.nav li {
	list-style-type: none;
	width: 100%;
	height: auto;
	padding: 10px 5px;
/*	font-size: 16px;*/
	list-style: none;
}	
        
nav {
    margin-top: 0;        
}
    
/*2022.07.26 斎藤が追記*/    
nav {
    margin-top: 0;        
}
/*斎藤追記終わり*/

    
/* drawer menu */
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
/*	right: 0;*/
	right: -100%;
/*    transform: rotateY(90deg);*/
	max-width: 300px;
	width: 100%;
	height: 100%;
/*2022.07.26 斎藤が追記*/    
	padding: 200px 0;
/*    padding: 400px 0;*/
/*斎藤追記終わり*/
	background: rgba(240,248,255,.9);
/*	background: rgba(255,197,58,0.70);*/
	transition-property: all;
	transition-duration: .5s;
	transition-delay: 0s;
	transform-origin: right center;
	opacity: 0;
}

.drawer-menu li {
	text-align: center;
	margin: 0 auto;
	width: 200px;
}

.drawer-menu li a {
	display: block;
	font-size: 20px;
	color: rgba(70,70,70,.9);/*文字色*/

	transition: all .8s;
	margin: 0 auto;
	padding-bottom: 10px;

}

.drawer-menu li a:hover {
/*	color: #1a1e24;*/
	color: rgba(150,150,150,.9);
	background: rgba(0,0,0,.5);
	border-bottom: 1px solid rgba(150,150,150,.9);
}

/* checkbox */
.check {
	display: none;
}

/* menu button - label tag */
.menu-btn {
	position: fixed;
	display: block;
	top: 24px;
	right: 25px;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
}
.m-btn{
    position: fixed;
	display: block;
	top: 10px;
	right: 15px;
    width: 60px;
    height: 60px;
    background: rgba(200,228,255,.9);/*ボタン背景色*/
    border-radius: 5px;
/*2022.07.26 斎藤追記*/
    z-index: 99;
/*斎藤追記終わり*/
    }

.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 40px;
	height: 2px;
	background: rgba(150,150,150,.5);/*バー背景色*/
	transition: all .5s;
	transform-origin: left top;
}

.bar.middle {
	top: 15px;
	opacity: 1;
}

.bar.bottom {
	top: 30px;
	transform-origin: left bottom;
}

.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: rgba(0,0,0,.5);;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
}

.menu-btn:hover .bar {
	background: #999;
}

.menu-btn:hover .menu-btn__text {
	color: #999;
}

.close-menu {
	position: fixed;
	top: 0;
	right: 300px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url("../img/cross.png"),auto;
	transition-property: all;
	transition-duration: .3s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}

/* checked */
.check:checked ~ .drawer-menu {
	transition-delay: .1s;
	transform: none;
	opacity: 1;
	z-index: 2;
	right: 0;
}

.check:checked ~ .contents {
	transition-delay: 0s;
	transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;

}
.check {
	display: none;
}

.check:checked ~ .m-btn .menu-btn .bar.top {
	width: 56px;
	transform: rotate(45deg);
/*2022.07.26 斎藤が追記*/    
    top: -4px;
/*斎藤追記終わり*/
}

.check:checked ~ .m-btn .menu-btn .bar.middle {
	opacity: 0;
}

.check:checked ~ .m-btn .menu-btn .bar.bottom {
	width: 56px;
/*2022.07.26 斎藤が追記*/    
/*	top: 40px;*/
    top: 36px;
/*斎藤追記終わり*/
	transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
	transition-duration: .1s;
	transition-delay: .1s;
	background: rgba(0,0,0,.2);
	visibility: visible;
	opacity: 1;
	z-index: 3;
}

	.check:checked ~ .drawer-menu li a {
		background: rgba(0,0,0,0);
		border: none;
		border: solid 1px rgba(0,0,0,0);

	}
	
	.check:checked ~ .drawer-menu li a:hover {
		border-bottom: 1px solid #fff;
        /*2022.07.26 斎藤が追記*/
        border-radius: 0px;
        /*斎藤追記終わり*/
	}

    
    
	.drawer-menu__telButton {
		padding-top: 50px;
		text-align: center;
		margin: 0 auto;
		width: 70%;
	}
	
	.drawer-menu__telButton img {
		width: 100%;
	}
/*}*/


@media(max-width:375px) {
	.m-btn{
		right: 10px;
	}
	
	.menu-btn {
		right: 20px;
	}
}