@charset "utf-8";

/*
************************************************************************
* header ヘッダー
************************************************************************
*/

/* ################################################################################################ */
/* ## PC                         ################################################################## */
/* ################################################################################################ */

#global-header-contents {
	position: fixed;
	height: 250px;
}
#logo {
	position: absolute;
	left: 2em;
	top: 2em;

	width: 200px;
	height: auto;
}

#header-btn {
	top: 250px;
	position: fixed;
	left: 1em;
}
#btn-reserve {
	border-left: 1px solid #707070;
	padding-left: 10px;

	position: fixed;
	bottom: 0;

	width: 60px;
	height: auto;
	background-color: #fff;

	transform: rotate(90deg) translateX(-120px);

	font-size: 2.4em;

	color: #FF6000;
}
#btn-reserve span {
	padding-left: 0.5em;
	border-left: 1px solid #707070;
}
#btn-reserve img {

}

#btn-menu {
	width: 90px;
	height: 90px;
	margin-bottom: 2em;
	cursor: pointer;
}
#btn-menu .circle {
	width: 100%;
	height: 100%;
	margin-bottom: 1em;
	border-radius: 9999px;
	border :1px solid rgba(112, 112,112,0.4);
	background-color: #fff;
	box-shadow: 7px 7px 6px 0px rgba(0,0,0,0.1);
}

#header-btn #btn-menu .circle > span {
	display: block;
	width: 50%;
	height: 2px;
	background-color: #707070;

	position: absolute;
	transform: translateX(-50%);

	transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: ease;
}
#header-btn #btn-menu .circle > span:nth-child(1) {
	top: 35%;
	left: 50%;
}
#header-btn #btn-menu .circle > span:nth-child(2) {
	top: 50%;
	left: 50%;
}
#header-btn #btn-menu .circle > span:nth-child(3) {
	top: 65%;
	left: 50%;
}

#header-btn.show #btn-menu .circle > span:nth-child(1) {
	transform: rotate(-45deg);
	left: 25%;
	top: 50%;
}
#header-btn.show #btn-menu .circle > span:nth-child(2) {
	display: none;
}
#header-btn.show #btn-menu .circle > span:nth-child(3) {
	transform: rotate(45deg);
	left: 25%;
	top: 50%;
}




/*　グローバルナビ　*/
#header-btn.init #global-navi {
	display: none;
}
#header-btn #global-navi {
	display: block;

	animation-name:navi-menu-off;
    animation-duration:1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
#header-btn.show #global-navi {

	animation-name:navi-menu-on;
    animation-duration:1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes navi-menu-on {
    0% {
        opacity: 0;
        transform: translate(-1000px, -1000px);
    }
    1% {
		transform: translate(0px, 0px);
		opacity: 0;
    }
    100%{
    	transform: translate(0px, 0px);
        opacity: 1;
    }
}
@keyframes navi-menu-off {
    0% {
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

#navi-menu {
	background-color: rgba(255, 255,255, 0.4);
	color: #FF6000;
	font-size: 2.4em;
	border-left: 1px solid #707070;
	padding: 1em;
}
#navi-menu li {
	margin: 0 0.25em;
	padding: 0;
	list-style: none;
}



/* ################################################################################################ */
/* ## TAB                        ################################################################## */
/* ################################################################################################ */
@media screen and (max-width:1200px) {
	#logo {
		left: 1em;
		top: 1em;
		width: 150px;
	}
	#header-btn {
		top: 170px;
	}
	#btn-menu {
		width: 60px;
		height:60px;
	}
}

/* ################################################################################################ */
/* ## スマホサイト用スタイル ###################################################################### */
/* ################################################################################################ */
@media screen and (max-width:640px) {
	#global-header-contents {
		height: 250px;
	}
	#logo {
		left: 1em;
		top: 1em;
		width: 30vw;
	}

	#header-btn {
		top: 40vw;
		left: 0.5em;
	}
	#btn-menu {
		width: 15vw;
		height: 15vw;
	}
	#btn-reserve {
		width: 10vw;
	}
	#btn-reserve img {
	}

}

