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







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

#header {width: 100%;position: fixed;left: 0;top: 0;z-index: 980;background-color:#fff;}


/* タイトル全体のボックス */
ul.title {
    list-style: none;
    margin:0 1%;
	padding:15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* 左側タイトル */
.title_logo h1 {font-size:54px;color:#5F6C75;font-weight:500;}
.title_logo h1 span {display:block;font-size:14px;color:#3d8f7a; margin:0 0 0.5em 1em;}

/* 右側（電話番号） */
.title_tel p {margin: 0; padding-bottom:0.5em;}

/* 電話番号リンク */
.title_tel p a {color:#5F6C75; font-size:36px;font-family: 'ShipporiMincho',"serif";font-weight:400; margin-bottom:0.1em;}
.title_tel p a:first-child {margin-left: 0;}

/* アイコンと文字の間 */
.title_tel i {font-size:28px; margin-right:0.2em; color:#E07A84;}
.title_tel i a { margin-right:1em;}

/* 営業時間ボックス（背景色＋白文字） */
.title_tel .contact {padding:6px 10px;text-align:center;color:#fff;background-color:#E07A84;font-size:16px; display:block;}


@media screen and (max-width:1500px) {
.title_logo h1 {font-size:40px;}
.title_logo h1 span{font-size: 12px;}
.title_tel p a  {font-size:26px;}
.title_tel i {font-size:18px;}
.title_tel .contact {font-size:12px;}
}

@media screen and (max-width:1000px) {
.title_logo h1 {font-size:32px;}
.title_logo h1 span{font-size: 10px;}
.title_tel p a  {font-size:18px;}
.title_tel i {font-size:14px;}
.title_tel .contact {font-size:12px;}
}

@media screen and (max-width:768px) {
	
#header {width: 100%;height: 58px;position: fixed;border:0px;}
#header ul.title {margin:0;padding:0 0 0 0.5em;}
.title_logo {width:100%; text-align:left;}
.title_logo h1 {padding:10px 0;font-size:23px;font-weight:700;}
.title_logo h1 span {display:block;font-size:9px;margin:0 0 3px 2px;}
.title_tel p a,.title_tel i {font-size:24px;}

}














/*メニュー
========================================*/


nav.gnav {margin-top:10px;}

.gnav ul {
	width: 100%;
	margin:0 auto;
	display: flex;
	flex-wrap:wrap;
	justify-content: center; 
	background-color:#87C16F;
	padding:3px 1%;
}
.gnav > ul > li{
    width: auto;
	box-sizing:border-box;
}
.gnav > ul > li > a {
	font-size:16px;
	color: #FFF;
	display: block;
	text-align: center;
	box-sizing: border-box;
	margin:3px;
	padding:1px 10px;
	font-family: 'ZenKakuGothicNew',"Arial","sans-serif";font-weight:500;
}

.gnav ul li a:hover {
	color: #87C16F;
		background: rgba(255,255,255,0.95);
}

@media screen and (max-width:1500px) {
.gnav > ul > li > a {font-size:12px;margin:2px;padding:1px 5px;}		
}


@media screen and (max-width:1000px) {
.gnav > ul > li > a {font-size:10px;padding:1px 3px;}		
}


@media screen and (max-width:768px) {
/*menu*/
#menu {
	list-style-type : none;
	position : absolute;
	position: fixed;
	left : 0px;
	top : 0px;
	z-index : 990;
	display : none;
	box-sizing: border-box;
	width:100%;
	border-left: 0px;
	height: calc(auto - 60px);
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	background-color:rgba(130,198,23,0.95);

}

#menu li {
	display: block;
	width:100%;
	border-right:0px;
	height:auto;
	margin-bottom:2px;
}

#menu li a {

	text-decoration: none;
    width: 100%;
    display: block;
	padding: 10px 3%;
    box-sizing: border-box;
    height: auto;
    text-align: left;
    line-height: 1.5;
	font-size:16px;
	color:#FFF;
	font-family: 'ZenKakuGothicNew',"Arial","sans-serif";font-weight:500;
}
#menu li a:before{
	content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    margin-right: 0.5em;
	color:#5F6C75;
}
#menu li a:hover{
	opacity: 1;	
}

#menu li a:hover {
	color: #87C16F;
	background: rgba(255,255,255,0.95);
}


.gnav > ul > li > a {
	margin:0 3px 3px 0;
}


div#sp-icon {
	z-index : 999;
	width: 25px;
    height: 58px;
	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 : #87C16F;
	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;
}
}