@charset "utf-8";
/* CSS Document */
/* ----- header ----- */
header {
    width: 100%;
    height: 80px;
	background-color: #fff;
	opacity: .9;
    position: fixed;
    top: 0;
    margin-top: 0;
    box-sizing: border-box;
    z-index: 10;
	display:flex;
	flex-wrap:wrap; 
}
#logo {
	display: inline-block;
	float: left;
	width: 20%;
	height: 80px;
    padding: 20px 0 20px 2%;
	order: 1;
}
#logo img {
	width: 100%;
}
#navi {
	width: 60%;
	float: left;
	order: 2;
}
ul.gnavi {
	width: 100%;
	height: 80px;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: right;
    justify-content: right;
    -webkit-align-items: center;
    align-items: center;
}
ul.gnavi li {
	list-style: none;
	padding: 0 2%;
}

#reserve {
    width: auto;
    height: 40px;
	border-radius: 10px;
	background-color: #d83d8a;
	padding: .4em 2em;

}
#reserve a {
	color: #fff;
	}
ul.gnavi li a {
	color: #d83d8a;
	font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}
#login {
	width: 20%;
	height: 80px;
	float: right;
    padding: 25px 1% 20px 2%;
	order: 3;
}


#login .button-title {
    width: auto;
    height: 40px;
    /*border-radius: 30px;*/
	color: #d83d8a;
	font-weight: bold;
    background-color: #fff;
    text-align: center;
	/*padding: .5em 2em;*/
}
#login .button-title a {
	color: #fff;
}
#login .button-title:after {
    content: url(../images/icon_file_p.svg);
    display: inline-block;
    width: 15px;
    margin-left: 5px;
    vertical-align: -4px;
}
ul.gnavi li a:hover {
	border-bottom: #d83d8a 3px solid;
}

ul.gnavi::after{
  content: "";
  display: block;
  clear: both;
}
header .inner {
    display: none;
}

#menu-btn-check {
    display: none;
}

@media screen and (max-width: 1080px) {
	#logo {
		display: block;
		float: none;
		width: 100%;
		height: auto;
		padding: 10px 0 0 10px;
		order: 1;
	}
	#logo img {
		width: 20%;
		height: auto;
	}
	#navi {
		width: 72%;
	}
	ul.gnavi {
		width: 100%;
		height: auto;
	    justify-content: center;
		margin-left: 15px;
	}
	ul.gnavi li {
		list-style: none;
		padding: 0 10px;
		white-space: nowrap;
	}
	ul.gnavi li a {
		color: #d83d8a;
		font-size: 15px;
		font-weight: bold;
		text-decoration: none;
	}
	#login {
		width: 28%;
		height: auto;
		float: right;
		margin-top: -20px;
		padding: 10px 20px 0 0;
		order: 3;
	}
	}
@media screen and (max-width: 600px) {
	
	#logo {
		width: 100%;
		height: 85px;
		text-align: center;
		padding: 10px 0;
		line-height: 5;
	}
	#logo img {
		width: 50%;
	}
	#nav {}
	ul.gnavi {
		width: 100%;
		height: 80px;
		display: block;
		-webkit-justify-content: left;
		justify-content: left;
		-webkit-align-items: left;
		align-items: left;
	}

	.hamburger-menu {
		display: block;
	}
	.menu-btn {
		position: fixed;
		top: 10px;
		left: 10px;
		display: flex;
		height: 50px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: transparent;
		border:#5FA7C1 3px solid;
		border-radius: 10px;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #5FA7C1;
		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;
		right: 0;
		z-index: 80;
		background-color: #fff;
	}
	.menu-content ul {
		padding: 70px 10px 0;
	}
	.menu-content ul li {
		list-style: none;
	}
	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		font-weight:bold;
		text-align: center;
		box-sizing: border-box;
		color: #5FA7C1;
		text-decoration: none;
		padding: 1.5em 0;
		position: relative;
	}
	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: 100%;/*leftの値を変更してメニューを画面外へ*/
		z-index: 80;
		background-color: #fff;
		opacity: .9;
		transition: all 0.5s 0s ease;/*アニメーション設定*/
	}
	#menu-btn-check:checked ~ .menu-content {
		right: 0;/*メニューを画面内へ*/
	}
	#login .header-button {
		width: 70px;
		height: 70px;
		position: absolute;
		top: 3px;
		right: 10px;
		border-radius: 50px;
		border: 2px solid #D83D8A;
	}
	#login .button-inner {
		background-color: #D83D8A;
		width: 60px;
		height: 60px;
		border-radius: 40px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		-webkit- transform: translateY(-50%) translateX(-50%);
	}
	#login .button-title {
		font-size: 3vw;
		color: #fff;
		background-color: transparent;
		text-align: center;
		line-height: 1.2;
		padding: 0;
		white-space: nowrap;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		-webkit- transform: translateY(-50%) translateX(-50%);
	}
	#login .button-title:after,
	#login a.btn:after {
		content:"";
		width: 0;
    	margin-left: 0;
		vertical-align: 0;
	}
	
}
/* ----- header ----- */
