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

.hamburgerIcon {
	vertical-align: middle;
	width: 1.5em;
	height:1.5em;"
}

#mobile-footer{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #a0d8ef;
	border: 1px solid #69F;
	padding: 0;
	background-image: url(http://kagayagolf.co.jp/img/img/png/0524_a01.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: auto 100px;
	opacity: 1;
}

h1 {
	font-size: 100%;
}

header {
	display: block;
}

.mobileWrapper {
	display: none;
}

#mobileInfo {
	display: none;
}

#footer {
	display: block;
}

#mobile-footer {
	display: none;
}



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

header {
	display: none;
}

#footer {
	display: none;
}

.mobileWrapper {
	display: block;
}

#mobileInfo {
	display: block;
}

#mobile-footer {
	display: block;
}

}

/* hamburgger menu */
.mobile-menu_check {
	display: none;
}

.mobileWrapper {
	position: relative;
	top: 0;
	left: 0;
	height: 2.5em;
	width :100%;
	background: #6CF;
}

/* switch on(menu open) */
.mobile-menu-switch {
	display: block;
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	width: 1.5em;
	height: 24px;
	background: #000;
	border-top: 10px solid #6cf;
	border-bottom: 10px solid #6cf;
	box-sizing: border-box;
	transition: all 0.4s;
	z-index: 2;
}

.mobile-menu-switch::before {
	content: '';
	position: absolute;
	width: 1.5em;
	height: 4px;
	background: #000;
	top: -10px;
	right: 0;
	transition: all 0.4s;
}

.mobile-menu-switch::after {
	content: '';
	position: absolute;
	width: 1.5em;
	height: 4px;
	background: #000;
	bottom: -10px;
	right: 0;
	transition: all 0.4s;
}

/* switch menu on/off */
.mobile-menu-wrapper {
	margin: 0;
	padding: 0;
	width :100%;
	height :auto;
	position: relative;
	left: -100%;
	transition: left 0.4s;
}

/* swith off(menu close) */
.mobile-menu_check:checked ~ .mobile-title {
/*	opacity: 1;
	transform: none;*/
}

.mobile-menu_check:checked ~ .mobile-menu-switch {
	background: #6cf;
}

.mobile-menu_check:checked ~ .mobile-menu-switch::before {
	transform: rotate(45deg);
	top: 0;
	right: 0;
/*	background: #fff;*/
	background: #000;
}

.mobile-menu_check:checked ~ .mobile-menu-switch::after {
	transform: rotate(-45deg);
	bottom: 0;
	right: 0;
	background: #000;
/*	background: #fff;*/
}

.mobile-menu_check:checked ~ .mobile-menu-wrapper {
	left: 0; /* menu start position */
	z-index: 999;
	height: 100%;
}

/* mobile menu list */
.mobile-list {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	list-style-type: none;
	margin: 0;
	background: #fff;
	color: #6cf;
	width: 100%;
}

.mobile-list li a {
	padding-top: 1em;
	padding-left: 1em;
	height: 4em;
/*  width: calc(100% - 2.5em);*/
	width: 100%;
	color: #000;
	display: block;
	overflow: hidden;
	text-decoration: none;
	border-bottom: 1px solid #6cf;
	border-right: 1px solid #6cf;
	z-index: 1;
	background: #fff;
}
