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

/*header
========================================*/

#header {
	width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 980;
}
#header .innr {
	margin: 0 auto;
	height:55px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header a {
	font-family: 'ZenMaruGothic',"Arial","sans-serif";
	font-weight:700;
}

.logo {
	float:left;
	width:50%;
}
.logo img {
	top:10px;
	padding-left:10px;
	width: auto;
	height:40px;
}

.contact_fix{
	display: flex;
	width: auto;
}

.contact_fix div {
	border:2px solid #FFFDBF;
	padding:4px 1em 0 1em;
	margin-left:10px;
	height:34px;
	width:100%;
	text-align:center;
	font-size:22px;
	top:5px;
}

.contact_fix i{
	color:#FFFDBF;
	margin-right:10px;
}

.contact_fix a {
	color:#FFFDBF;
}

.gnav {

}
.gnav ul {
	width: 96%;
	margin: 0 auto;
	display: flex;
	flex-wrap:wrap;
	margin-top:5px;
	justify-content: center; 
}
.gnav > ul > li{
    width: auto;
	box-sizing:border-box;
}
.gnav > ul > li > a {
	font-size:14px;
	color: #FF7690;
	display: block;
	text-align: center;
	box-sizing: border-box;
	background-color:#fff;
	border-radius:10px;
	margin:0 5px 3px 0;
	padding:2px 10px;
}



.gnav ul li a:hover {
	background-color:#FFFDBF;
	opacity:1;
}


@media screen and (max-width:768px) {
	
#header {
  width: 100%;
  position: fixed;
  border:0px;
}
.page #header{
	display:block;
}
#header .innr{
    width: 100%;
    height: 55px;
}

.logo img {
	top:10px;
	left:5px;
	width:200px;
	height:auto;
}

.contact_fix{
	position:fixed;
	right:0;
	width:120px;
	float:right;
}

.contact_fix div {
	width:45px;
	padding:4px 0;

}

.contact_fix div i {
	margin-right:0px;
}
.contact_fix div span {
	display:none;
}
/*menu*/
#menu{
	list-style-type : none;
	position: fixed;
	left : 0px;
	top : 0px;
	z-index : 990;
	display : none;
	box-sizing: border-box;
	width:100%;
	border-left: 0px;
	height: calc(100% - 60px);
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

	
	
#menu li {
	display: inline-block;
	width:49%;
	border-right:0px;
	height:auto;
	padding:0;
	margin:0 0 3px 0;
}

#menu li a {
	text-decoration: none;
    width: 98%;
    display: block;
	padding: 5px 3%;
    box-sizing: border-box;
    height: auto;
    text-align: left;
    line-height: 1.5;
	font-size:12px;
	color:#FF7690;
	border: solid 1px #FFD9DD;
}
#menu li a:before{
	content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin-right: 0.5em;
	color:#FF7690;
}
#menu li a:hover{
	opacity: 1;	
}

div#sp-icon {
	z-index : 999;
	width: 25px;
    height: 55px;
	position : absolute;
    right: 5px;
    top: 0px;
    padding: 0 12px;
}

div#sp-icon span,
div#sp-icon span:before,
div#sp-icon span:after {
	display : inline-block;
	width : 30px;
	height : 3px;
	background : #FFFDBF;
	transition-property : transform;
	transition-duration : 0.3s;
}

div#sp-icon span {
	position : absolute;
	left : 50%;
	top : 50%;
	transform : translate( -50%, -50% );
}

div#sp-icon span:before {
	content : "";
	position : absolute;
	transform : translateY( -10px ) rotate( 0deg );
}

div#sp-icon span:after {
	content : "";
	position : absolute;
	transform : translateY( 10px ) rotate( 0deg );
}


div.sp-close span {
	background : transparent !important;
}

div.sp-close span:before {
	transform : rotate( 45deg ) !important;
}

div.sp-close span:after {
	transform : rotate( -45deg ) !important;
}
}