@charset "utf-8";


/*===============
var(--)
=================*/
:root {
	--inner-width: 900px;
	--bg-color : #fff799;
	--color1: #c2da75;
	--color2: #ea6172;
	--color3: #72af2d
	
}

/*===============
base
=================*/

* { box-sizing: border-box; }
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
form,input,p,th,td {
margin:0;
padding:0;
}  
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 0%;
	line-height: 0%;
	vertical-align: bottom;
    width: 100%;
    height: auto;	
}



html {
	overflow-y: scroll;
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;	
}
body{
	font-size:1.6rem; /* =16px */

	/* font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;*/
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;	
	font-style: normal;

	line-height: 1.8;
	background-color: var(--bg-color);

	color: #333333;
	margin: 0; padding: 0;
	overflow-x:hidden;
	font-feature-settings: "palt" 1;
}
@media screen and (max-width: 768px) {
	body {
		font-size:1.4rem;/* 14px*/
		background-image:none;
	}
}
@media screen and (max-width: 640px) {
	html {
		scroll-padding-top: 65px;	
	}	
	html,
	body { 
		overflow-x: hidden; max-width: 100%; }
	}

a:link,
a:visited,
a:active{
	color: #333;
	text-decoration: underline;
}

a:hover{
	text-decoration: underline;
}

/* 横幅が768px以上で、電話番号リンクは無効 */
@media (min-width: 768px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}


ul,ol{
list-style: none;
}

/*clearfix*/
.clearfix:after,
.recruit_p:after
{  
visibility:hidden;/*見えなくする*/ 
height:0;/*見えなくする*/
display: block;/*block要素にする*/
font-size: 0;  
content: " ";  
clear: both;  

}  
* html .clearfix             { zoom: 1; } /* IE6 */  
*:first-child+html .clearfix { zoom: 1; } /* IE7 */





/*ページネーション*/
div.pagination {
	clear:both;
	padding:20px 0;
	position:relative;
	font-size:11px;
	line-height:13px ;
	background:none;
	margin:10px 0 20px;
	vertical-align: middle;
}

div.pagination span, .pagination a {
	display:block;
	float:left ;
	margin: 2px 2px 2px 0 ;
	padding:6px 9px 5px 9px ;
	text-decoration:none;
	width:auto ;
	color:#fff ;
	background: #666 ;
}

div.pagination a:hover{
	color:#fff ;
	background: #fdcd1a;
}

div.pagination .current{
	padding:6px 9px 5px 9px ;
	background: #fdcd1a;
	color:#fff ;
}

/* reCAPTCHAマーク　非表示 */
.grecaptcha-badge { visibility: hidden; }



/*---------------------------------------------------------------------------
　header .inner
---------------------------------------------------------------------------*/
/*==============================
.inner
================================*/

header {
	background-color: var(--color1);
    width: 100%;
	margin: 0 auto;
    padding: 0;
    line-height: 1;
    position: sticky;
	top: 0;
	z-index: 9999;
}


header .inner {
	position: relative;
	width: 100%;
	max-width:  var(--inner-width);
	height: 50px;
	margin: 0 auto;
	padding: 0 0;
}


header #mobile-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
	header { min-width:auto; }
	header .inner { 
		height: 60px;
		margin: 0 auto 0;
	}
	header .inner .logo img {
		max-width: 200px; height: auto;
	}	
}


/*==============================
#global-nav
================================*/
#global-nav > ul {
	margin: 0;
    list-style: none;

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
#global-nav {
	width: 100%;
}
#global-nav > ul {
	width: 100%;
	display: flex;
}
#global-nav > ul > li {
    display: inline-block;
	width: 15%;
	text-align: center;
	box-sizing: border-box;
	font-size: 1.0em;
	white-space: nowrap;
	position: relative;
	border-right: solid 1px var(--bg-color);
	
}
#global-nav ul li.home {
	background-color: var(--color2);
	color: #fff;
}
#global-nav ul li.download {
	width: 25%;
}
/* #global-nav ul li::before {
	content: '';
	display: block;
	width: 1px;
	height: 150%;
	background: #999;
	position: absolute; left: -15px; top: -25%; 
}*/
#global-nav ul li a {
	width: 100%; height: 100%; display: block;
	transition:all .3s;
	font-weight: bold;
	text-decoration: none;
	line-height: 50px;
}
#global-nav ul li.home a {
	color: #fff;
}
#global-nav ul li a:hover {
	text-decoration: underline;
}


#global-nav ul li a > img {
	width: 100%; height: auto; display: block;
	transition: 0.2s ;
}



#global-nav ul ul{
	display: block;
}


/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
#global-nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:30px;
	z-index: 4;
    /*形状を指定*/
	background:rgba(0,98,163,0.95);
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
#global-nav li.has-child li a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding:20px 35px;
	transition:all .3s;	
	/* border-bottom:solid 1px rgba(255,255,255,0.6); */
}
#global-nav li.has-child li a:hover {
	background:rgba(0,0,0,0.2);
}

#global-nav li.has-child li:last-child a {
	border-bottom:none;
}

/*hoverしたら表示*/
#global-nav li.has-child:hover > ul,
#global-nav li.has-child ul li:hover > ul,
#global-nav li.has-child:active > ul,
#global-nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}




/*==============================
Fixed
================================*/

/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    /* background: #fff;
    background: rgba(255,255,255,.95); */
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
	 box-shadow: 0 0 10px rgba(0,0,0,.5);
}
#top-head.fixed .inner { height: 50px; }

#top-head.fixed .header_right {
	display: none;
}
#top-head.fixed .inner .logo {
}


/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 101;
    padding: 5px 5px 0;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
	border-radius: 50vh;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 2px;
}
#nav-toggle span:nth-child(2) {
    top: 9px;
}
#nav-toggle span:nth-child(3) {
    top: 16px;
}
#nav-toggle span:nth-child(4) {
    top: 22px;
	font-size: 6.0px;
	text-align: center;
}

@media screen and (max-width: 1080px) {
    header,
    header .inner {
        width: 100%;
        padding: 0;
		height: 50px;
    }
    #top-head {
        top: 0;
        /* position: fixed; */
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
		height: 50px;
    }
    #mobile-head {
        width: 100%;
        height: 50px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        top: 10px;
        width: 50%;
    }
    #top-head.fixed .logo img,
    #top-head .logo img {
        width: 100%; height: auto;
    }	
	#top-head.fixed .inner { height: 60px; }
	#top-head.fixed .inner .logo {
	display: block;
	}
	#top-head .inner .logo a,
	#top-head .inner .logo img {
    width: 100%; height: auto;
		display: block;
	}
	#top-head .inner .logo img {
    width: 200px; height: auto;
		display: block;
	}
	#top-head .htel {
		display: none;
	}

    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        right: -100vw; top: 50px;
        /* background: rgba(147,189,81,0.98); */
		background: rgba(194,218,117,0.98);
        width: 100vw; height: 100vh;
        text-align: center;
        padding: 2em 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
		display: block;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
	
    #global-nav > ul > li {
        float: none;
        position: static;
		display: inline-block;
		width: 90%; max-width:none;
		height: auto;
		text-align: center;
		box-sizing: border-box;
		border-left: none; border-right: none !important;
		border-bottom: dotted 1px #fff;
		margin: 0 auto;
}

	
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
		width: 100%;
		display: block;
		color: #000;
		padding: 1em 20px;
		font-size: 14px;
		text-align: left;
		text-decoration: none;
		border-right: none !important;
    }
	#global-nav ul li.home {
		background-color: transparent;
		color: #000;
	}
	#global-nav ul li.download {
			width: 90%;
		}
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 10px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateX(-100vw);
        -webkit-transform: translateX(-100vw);
        transform: translateX(-100vw);
	}

}

/* .has-child ul　ドロップダウンメニュー */
@media screen and (max-width: 1080px) {

	#global-nav li.has-child ul {
		position: relative;
		left:0;
		top:0;
		width:100%;
		visibility:visible;/*JSで制御するため一旦表示*/
		opacity:1;/*JSで制御するため一旦表示*/
		display:block;/*JSで表示させるため非表示に*/
		transition:none;/*JSで制御するためCSSのアニメーションを切る*/
		background: rgba(0,0,0,0.5);
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;		
	}		
	#global-nav ul {
		display: block;
		margin: 0;
	}
	#global-nav li.has-child ul li { 
		width: 100% !important;
		position: relative;
	}
		#global-nav li.has-child ul li::before { 
			content: "";
			width: 10px; height: 10px;
			display: inline-block;
			border-left: solid 2px #fff;
			border-bottom: solid 2px #fff; 
			position: absolute; left: 20px; top: 10px;
	}
	#global-nav li.has-child ul li a {
		padding: 1em 20px 1em 40px !important;
	}
	
}



/*---------------------------------------------------------------------------
　footer
---------------------------------------------------------------------------*/

/* footer */
#footer { 
	width: 100%;
	margin: 1em auto 0;
	padding: 0;
	line-height: 1.5;
}
#footer .tbl_tel {
	width: 95%;
	max-width: var(--inner-width);
	margin: 0 auto;
}
#footer .tbl_tel caption {
	font-size: 1.5em;
	text-align: left;
}
#footer .tbl_tel .num {
	font-weight: 700;
	font-size: 4.0em;
}
#footer th {
	width: 20%;

}
#footer td {
	padding-left: 3%;

}
#footer .tbl_tel {
	font-weight: 500;

}
#footer .administrator {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.0em;
	margin: 1em auto 1em;
}
#footer .administrator img {
	width: 100px; height: auto;
	margin: 0 0 0 1em;
}
#footer .copy { 
	font-size: .9em;
	background-color: var(--color1);
	text-align: center; margin: 30px 0 0 0;
	padding: 5px 0;
}

@media screen and (max-width: 640px) {
	#footer .tbl_tel caption {
		font-size: 1.125em;
	}	
	#footer .tbl_tel .num {
		font-size: 2.0em;
	}
	#footer .tbl_tel td {
		font-size: .9em;
	}	
	#footer .administrator {
		font-size: 1.5em;
	}
	#footer .administrator img {
		width: 60px; height: auto;
	}	
}
