@charset "utf-8";


/* スマートフォン用
--------------------------------------------------------------------------------------------------*/

@media screen and (max-width:767px){


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

#nav-drawer {
	position: fixed;
	z-index: 9999;
	top: 20px;
	right: 0;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display:none;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
	padding: 12px 12px 20px 12px;
	/*border-radius: 4px;*/
	background-color: #333;
}

.drawerMenuText {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 11px;
	padding-top: 19px;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 30px;/*長さ*/
	border-radius: 3px;
	background: #fff;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 80%;
	max-width: 400px;
	height: 100%;
	background: #fff;
	/*border-top: solid 6px #007bc3;*/
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	text-align: center;
}

.drawerLogo{
	padding: 30px 35px;
	background-color: #fff;
}

.drawerLogo img{
	width: 100%;
}

#drawerMenu li{
	border-bottom: solid 1px #fff;
}

.drawerMenuSubTitle{
	display: block;
	font-size: 14px;
	color: #fff;
	padding: 5px 0;
	background: #333;
}

#drawerMenu li a{
	display: block;
	padding: 15px 20px;
	color: #444;
	text-decoration: none;
	
}

#drawerMenu li a:hover{
	color: #fff;
}

.drawerMenu1 li a{
	background: #eee; 
}
.drawerMenu1 li a:hover{
	background: #00a0d1;
}

.drawerMenuS1 a{
	color: #fff !important;
	background: #00a0d1 !important;
}
.drawerMenuS1 a:hover{
	background: #00a0d1;
}

.drawerMenuS2 a{
	color: #fff !important;
	background: #00af83 !important;
}
.drawerMenuS2 a:hover{
	background: #00af83;
}

.drawerMenuS3 a{
	color: #fff !important;
	background: #e62f82 !important;
}
.drawerMenuS3 a:hover{
	background: #e62f82;
}


.drawerContact{
	padding: 20px;
	background: #00a0d1;
}

.drawerContact h4{
	font-size: 15px;
	color: #fff;
	font-style: normal;
	font-weight: normal;
	border-bottom: solid 1px #fff;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.drawerContact h4 img{
	width: 29px;
	padding-top: 10px;
}

.drawerContact h5{
	color: #fff;
	font-size: 18px;
	display: inline-block;
	margin-right: 10px;
}

.drawerTel{
	display: inline-block;
	margin-bottom: 10px;
}
.drawerTel a{
	font-size: 24px;
	color: #fff;
	font-style: normal;
	text-decoration: none;
}

.drawerInfoBtn a{
	color: #fff;
	display: block;
	text-align: center;
	padding: 10px;
	margin-top: 10px;
	border: solid 1px #fff;
}
.drawerInfoBtn a:hover{
	color: #007bc3;
	background-color: #fff;
}


/*ラベル*/
.accbox label {
    display: block;
	padding: 10px 20px;
	color: #fff;
    cursor :pointer;
    border-bottom: solid 1px #fff;
	background: #555;
}

/*ラベルホバー時*/
.accbox label:hover {
	color: #fff;
    background :#8ec31e;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    opacity: 1;
	transition: 0.5s;
}

/*アイコンを表示*/
.accbox label:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 10px;
	padding-top: 4px;
}

/*アイコンを入れ替える*/
.cssacc:checked + label:after {
    content: '\f106';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 10px;
	padding-top: 4px;
}


/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
	display: block;
	opacity: 0.6;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}



}
