@charset "UTF-8";
/*
 * cmn_layout.css
 *
 */


/* !HTML5 elements
---------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{ display: block;}

/* !Reseting
---------------------------------------------------------- */
body {
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3" , "Hiragino Kaku Gothic ProN" , 'メイリオ' ,Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic" , Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	line-height: 2;
	color: #111;
}

@media screen and (max-width:1039px){
body {
	font-size: 15px;
}
}

@media screen and (max-width:767px){
body {
	font-size: 14px;
}
}

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, figure, figcaption
{ margin: 0; padding: 0;}

input, textarea
{ margin: 0; font-size: 100%;}

label
{ cursor: pointer;}

table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}

fieldset, img
{ border: 0;}

img
{ max-width: 100%; height: auto; vertical-align: top;}

address, caption, cite, code, dfn, em, th, var
{ font-style: normal; font-weight: normal;}

ol, ul
{ list-style: none;}

caption, th
{ text-align: left;}

h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: normal;}

q:after, q:before
{ content:'';}

a
{ cursor: pointer; }

a, input
{ outline: none; }

input, textarea
{ border-radius: 0; font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3" , "Hiragino Kaku Gothic ProN" , 'メイリオ' ,Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic" , Verdana, Arial, Helvetica, sans-serif;}

input[type="button"],input[type="submit"],input[type="reset"]
{ -webkit-appearance: none; appearance: none; background: none; border: none; padding: 0; cursor: pointer;}

abbr, acronym
{ border: 0;}
*
{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;}

/* !Clearfix
---------------------------------------------------------- */
.clearfix,
#contents,
.section
{
	display: block;
	min-height: 1%;
}
.clearfix:after,
#contents:after,
.section:after
{
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}
* html .clearfix,
* html #contents,
* html .section
{
	height: 1%;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
/* !Layout
---------------------------------------------------------- */
html { overflow-y: scroll;}
body { 
	text-align: left;
	position:relative;
}

/* !header
---------------------------------------------------------- */
#header {
	width:100%;
	padding:20px 20px;
	z-index:100;
	position:fixed;
	animation: header-animation 2s 1 ease ;
}
	#header div.inner {
		position: relative;
		width:100%;
		height:120px;
		background: rgba(255,255,255,1);
		border-radius: 12px;
		transition: .3s;
	}
	#header h1#headerLogo a,
	#header p#headerLogo a {
		display:block;
		position:absolute;
		width:208px;
		height:43px;
		background: url("../img/logo.png") 0 0 no-repeat;
		background-size: 208px 43px;
		text-indent:-9999px;
		top:60px;
		left:30px;
		z-index: 302;
		transition: .3s;
	}

@keyframes header-animation {
    0% {
		opacity:0;
        transform: translateY(-50px);
    }
    70% {
		opacity:0;
        transform: translateY(-50px);
    }
    100% {
		opacity:1;
        transform: translateY(0);
    }
}

@media screen and (max-width:1179px){
	#header h1#headerLogo a,
	#header p#headerLogo a {
		left:20px;
	}
}

@media screen and (max-width:1039px){
	#header div.inner {
		height:70px;
	}
	#header h1#headerLogo a,
	#header p#headerLogo a {
		top:13px;
	}
	
	#header .global_menu {
		z-index: 301;
	}
	#panel-btn {
		z-index: 400;
	}
	#header {
		z-index: 100;
	}
}

@media screen and (max-width:767px){
#header {
	padding:15px 15px;
}
	#header div.inner {
		height:60px;
	}
	#header h1#headerLogo a,
	#header p#headerLogo a {
		width:180px;
		height:37px;
		background: url("../img/logo.png") 0 0 no-repeat;
		background-size: 180px 37px;
		top:10px;
		left:15px;
	}
}

/* !sidebar
---------------------------------------------------------- */
.menuArea { /* メニュー全体のスタイル */
	width:100%;
	height:120px;
	position: relative;
}
.global_menu { /* メニュー全体のスタイル */
	position:absolute;
	width:100%;
	height:70px;
	font-size:0;
	color: #111;
	list-style: none;
	padding:0;
	display: flex;
	justify-content: flex-end;
	top:50px;
	right:10px;
	z-index: 301;
}
.global_menu li {
	display: inline-block;
	text-align:center;
	font-size:16px;
	font-weight: 700;
	position: relative;
}
.global_menu li a { /* 各項目のスタイル */
	display: block;
	font-weight: 700;
	padding: 0 18px;
	line-height: 70px;
	color: #111;
	letter-spacing: 0.04em;
	transition:.6s;
}
.global_menu li a:hover,
.global_menu li a.current {
	color: #65B401;
}
.child_menu > ul{
	width:100%;
}
.child_menu > ul > li{
	width:100%;
}
.child_menu > ul > li > a { /* 子項目のスタイル */
	font-size: 13px;
	font-weight: 500;
	text-align: left;
	height: 40px;
	line-height: 40px;
	color: #111;
	letter-spacing: 0;
	padding-left: 24px;
	position: relative;
}
.child_menu > ul > li > a span.arrow {
    position: absolute;
	display: block;
	width: 16px;
    height: 16px;
	background: #65B401;
	border-radius: 50%;
	top:50%;
	left:0;
	margin-top: -7px;
	transition:.2s;
}
.child_menu > ul > li > a span.arrow:before {
	content: "";
    width: 5px;
    height: 5px;
    border: 1px solid #FFF;
    position: absolute;
    box-sizing: border-box;
	border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    top: 50%;
    right: 5px;
}
.child_menu { /* 下層メニューのスタイル */
	width: 200px;
	position: absolute;
	top: 70%;
	left: 0;
	padding: 15px 0 15px 20px;
	background: #FFF;
	border-radius: 0 0 12px 12px;
	visibility: hidden;
	opacity: 0;
	transition:.6s;
}
.child_menu.contact {
	left: -54px;
}
.menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
	visibility: visible;
	top: 90%; /* 定位置に戻す */
	opacity: 1;
}
.child_menu a:hover {
	color:#FFF;
}

.sub_menu {
	position:absolute;
	width:100%;
	height:50px;
	font-size:0;
	background: #65B401;
	list-style: none;
	padding:0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-radius: 12px 12px 0 0;
	top:0;
	right:0;
	z-index: 301;
}
.sub_menu li {
	display: inline-block;
	position: relative;
}
.sub_menu li a {
	display: block;
	font-size:14px;
	font-weight: 600;
	padding: 0 15px;
	line-height: 50px;
	color: #FFF;
	letter-spacing: 0.04em;
	transition:.6s;
}
.sub_menu li:last-child a {
	font-size:14px;
	font-weight: 600;
	padding: 0 20px;
	line-height: 40px;
	color: #111;
	background: #FFF571;
	letter-spacing: 0.08em;
	border-radius: 8px;
	transition:.6s;
	margin-left: 15px;
	margin-right: 5px;
}
.sub_menu li a i {
	margin-right:0.5em;
}
.sub_menu li a:hover {
	color: #FFF571;
}
.sub_menu li:last-child a:hover {
	color: #F55523;
	background: #FFF;
}

a#panel-btn {
	display: none;
}

@media screen and (max-width:1179px){
.global_menu li {
	font-size:15px;
}
.global_menu li a {
	padding: 0 10px;
}

.child_menu.contact {
	left: -76px;
}
}

@media screen and (max-width:1039px){
.menuArea { /* メニュー全体のスタイル */
	width: 50%;
	height: 100%;
	position: fixed;
	top: 0;
	left: auto;
	right: -50%;
	color: #111;
	background: #DAEDC2;
	overflow-y:  auto;
	text-align: center;
	transition:.6s;
}
.global_menu {
	position: relative;
	width:100%;
	height: auto;
	justify-content: center;
	flex-wrap: wrap;
	padding: 100px 10% 0 10%;
	top:auto;
	right:auto;
}
.global_menu li {
	display: block;
	width:100%;
	font-size:16px;
}
.global_menu li a { /* 各項目のスタイル */
	display: block;
	padding: 0 ;
	line-height:60px;
	border-bottom:1px solid #B6DB87;
}
.global_menu li a:hover {
	color: #111;
}
.global_menu li a:hover.current {
	color: #65B401;
}
.menu a.parentLink {
	display:block;
	line-height:60px;
	color: #111;
	position: relative;
}
.menu a.parentLink:after {
	display: block;
	position: absolute;
	font: var(--fa-font-solid);
	font-size:12px;
 	content: "\f078";
	top:40%;
	right:10px;
}
.child_menu > ul{
	flex-wrap:wrap;
	width:100%;
}
.child_menu > ul > li{
	width:100%;
}
.child_menu > ul > li > a { /* 子項目のスタイル */
	font-size:14px;
	padding: 0 0 0 24px;
	height: 50px;
	line-height:50px;
	border-bottom:1px solid #B6DB87;
}
.child_menu { /* 下層メニューのスタイル */
	width: 100%;
	position:static;
	top: 0;
	left: 0;
	padding: 0;
	color: #FFF;
	background: none;
	visibility: visible;
	opacity: 1;
	transition: .6s top, .6s opacity;
}
.child_menu li {
	width:100%;
}
.menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
	visibility: visible; /* 下層メニューを表示 */
	top: 0; /* 定位置に戻す */
	opacity: 1;
}
	
.sub_menu {
	position:relative;
	width:100%;
	height:auto;
	font-size:0;
	background: none;
	padding:0 10%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	top:10px;
	right:auto;
	margin-bottom: 30px;
	z-index: 301;
}
.sub_menu li {
	display: inline-block;
	position: relative;
	width:30%;
}
.sub_menu li:nth-child(2) {
	width:40%;
}
.sub_menu li:last-child {
	width:60%;
	margin-top: 10px;
}
.sub_menu li a {
	display: block;
	width:100%;
	font-size:14px;
	font-weight: 500;
	padding: 0;
	text-align: center;
	line-height: 60px;
	color: #111;
	letter-spacing: 0.04em;
	transition:.6s;
}
.sub_menu li:last-child a {
	font-size:16px;
	font-weight: 600;
	padding: 0;
	line-height: 60px;
	color: #111;
	background: #FFF571;
	letter-spacing: 0.04em;
	border-radius: 8px;
	transition:.6s;
	margin-left: 0;
	margin-right: 0;
}
.sub_menu li a i {
	margin-right:0.5em;
}
.sub_menu li a:hover {
	color: #111;
}
.sub_menu li:last-child a:hover {
	color: #111;
	background: #FFF571;
}

	/* nav open */
	.open {
		overflow: hidden;
	}
	.open #overlay {
		display: block;
	}
	.open .menuArea  {
		-webkit-transform: translate3d(-100%,0,0);
		transform: translate3d(-100%,0,0);
		transition:.6s;
	}
	
	/* z-index */
	.menuArea {
		z-index: 301;
	}
	#panel-btn {
		z-index: 400;
	}
	#header {
		z-index: 100;
	}

a#panel-btn {
	width: 50px;
	height: 50px;
	display: block;
	float:right;
	position:fixed;
	top:30px;
	right:35px;
	z-index:400;
}
#panel-btn{
	display: inline-block;
	position: relative;
	width: 50px;
	height: 50px;
	background: #65B401;
	border-radius: 50%;
}
#panel-btn-icon{
	display: block;
	position: absolute;
	top: 60%;
	left: 50%;
	width: 20px;
	height: 2px;
	background:#FFF;
	margin: -6px 0 0 -10px;
	transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after{
	display: block;
	content: "";
	position: absolute;
	top: 60%;
	left: 0;
	width: 20px;
	height: 2px;
	background:#FFF;
	transition: .3s;
}
#panel-btn-icon:before{
	margin-top: -7px;
}
#panel-btn-icon:after{
	margin-top: 5px;
}
#panel-btn .close{
	background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after{
	margin-top: 0;
}
#panel-btn .close:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#panel-btn .close:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
}

@media screen and (max-width:767px){
.menuArea { /* メニュー全体のスタイル */
	width: 100%;
	right: -100%;
}
.global_menu {
	padding: 80px 15px 0 15px;
}
.global_menu li a { /* 各項目のスタイル */
	line-height:50px;
}
.menu a.parentLink {
	line-height:50px;
}
.child_menu > ul > li > a { /* 子項目のスタイル */
	height: 45px;
	line-height:45px;
}

.sub_menu {
	padding:0 15px;
}
.sub_menu li:last-child {
	width:70%;
	margin-top: 15px;
}
.sub_menu li a {
	line-height: 50px;
}
.sub_menu li:last-child a {
	font-size:16px;
	line-height: 60px;
}

a#panel-btn {
	width: 44px;
	height: 44px;
	top:23px;
	right:23px;
}
#panel-btn{
	display: inline-block;
	position: relative;
	width: 44px;
	height: 44px;
}
#panel-btn-icon{
	display: block;
	position: absolute;
	top: 60%;
	left: 50%;
	width: 20px;
	height: 2px;
	background:#FFF;
	margin: -5px 0 0 -10px;
	transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after{
	display: block;
	content: "";
	position: absolute;
	top: 60%;
	left: 0;
	width: 20px;
	height: 2px;
	background:#FFF;
	transition: .3s;
}
#panel-btn-icon:before{
	margin-top: -7px;
}
#panel-btn-icon:after{
	margin-top: 5px;
}
#panel-btn .close{
	background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after{
	margin-top: -1px;
}
#panel-btn .close:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
#panel-btn .close:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
}

/* !contents
---------------------------------------------------------- */
#contents {
	width:100%;
	position:relative;
}

.linkInPage {
	margin-top:-100px;
	padding-top:100px;
}

@media screen and (max-width:1039px){
.linkInPage {
	margin-top:-70px;
	padding-top:70px;
}
}

@media screen and (max-width:767px){
.linkInPage {
	margin-top:-60px;
	padding-top:60px;
}
}

/* !pageTop
---------------------------------------------------------- */
.pagetop {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 99;
}
	.pagetop a {
		display: block;
		width: 44px;
		height: 44px;
		background-color: #65B401;
		border-radius:50%;
		text-indent: -9999px;
		transition: all 0.2s ease;
		position: relative;
	}
		.pagetop a i.arrow {
			position: absolute;
			display: inline-block;
			width: 15.3px;
			height: 9.7px;
			transition: all 0.2s ease;
			top:17px;
			left:14px;
			z-index: 100;
		}
			.pagetop a i.arrow::before,
			.pagetop a i.arrow::after {
				content: "";
				position: absolute;
				top: 0;
				left: calc(50% - 1px);
				width: 2px;
				height: 12px;
				border-radius: 9999px;
				background-color: #FFF;
				transform-origin: 50% 1px;
			}
			.pagetop a i.arrow::before {
				transform: rotate(45deg);
			}
			.pagetop a i.arrow::after {
				transform: rotate(-45deg);
			}
			.pagetop a:hover i.arrow {
				top:13px;
			}
	
@media screen and (max-width:1039px){
			.pagetop a:hover i.arrow {
				top:17px;
			}
}

@media screen and (max-width:767px){
.pagetop {
	bottom: 10px;
	right: 10px;
}
	.pagetop a {
		width: 40px;
		height: 40px;
	}
		.pagetop a i.arrow {
			top:15px;
			left:12px;
		}
			.pagetop a:hover i.arrow {
				top:15px;
			}
}

/* !footer
---------------------------------------------------------- */
#footer {
	width: 100%;
	position:relative;
	background: #DAEDC2;
	padding:70px 50px 30px 50px;
	overflow:hidden;
}
	#footer div.inner {
		width:100%;
		max-width:1200px;
		display: flex;
		flex-wrap: wrap;
		margin:0 auto;
	}
		#footer div.inner div.left {
			width:40%;
		}
			#footer div.inner div.left a.footerLogo {
				display: block;
				width:200px;
			}
		#footer div.inner div.right {
			width:60%;
			display: flex;
		}
			#footer div.inner div.right ul.footerLinks {
				width:65%;
				display: flex;
				flex-wrap: wrap;
			}
				#footer div.inner div.right ul.footerLinks li {
					width:50%;
					line-height: 1.6;
					margin-bottom: 20px;
				}
				#footer div.inner div.right ul.footerLinks li:last-child {
					margin-bottom: 0;
				}
				#footer div.inner div.right ul.footerLinks li:nth-last-child(2) {
					margin-bottom: 0;
				}
					#footer div.inner div.right ul.footerLinks li a {
						font-size:16px;
						font-weight: 700;
						color: #111;
						transition:.6s;
					}
						#footer div.inner div.right ul.footerLinks li a:hover {
							color:#65B401;
						}
			#footer div.inner div.right ul.footerLinks2 {
				width:35%;
				padding-left:70px;
				border-left:1px solid #B6DB87;
			}
				#footer div.inner div.right ul.footerLinks2 li {
					line-height: 1.6;
					margin-bottom: 10px;
				}
				#footer div.inner div.right ul.footerLinks2 li:last-child {
					margin-bottom: 0;
				}
					#footer div.inner div.right ul.footerLinks2 li a {
						font-size:14px;
						color: #111;
						transition:.6s;
					}
						#footer div.inner div.right ul.footerLinks2 li a i {
							margin-right: 0.6em;
						}
						#footer div.inner div.right ul.footerLinks2 li a:hover {
							color:#65B401;
						}
		#footer div.inner p.copyright {
			width:100%;
			font-size:12px;
			margin-top: 20px;
		}

@media screen and (max-width:1039px){
#footer {
	padding:60px 30px 30px 30px;
}
		#footer div.inner div.left {
			width:35%;
		}
			#footer div.inner div.left a.footerLogo {
				width:180px;
			}
		#footer div.inner div.right {
			width:65%;
		}
			#footer div.inner div.right ul.footerLinks {
				width:70%;
			}
				#footer div.inner div.right ul.footerLinks li {
					width:50%;
					margin-bottom: 15px;
				}
				#footer div.inner div.right ul.footerLinks li:last-child {
					margin-bottom: 0;
				}
				#footer div.inner div.right ul.footerLinks li:nth-last-child(2) {
					margin-bottom: 0;
				}
					#footer div.inner div.right ul.footerLinks li a {
						font-size:14px;
					}
						#footer div.inner div.right ul.footerLinks li a:hover {
							color:#111;
						}
			#footer div.inner div.right ul.footerLinks2 {
				width:30%;
				padding-left:30px;
			}
				#footer div.inner div.right ul.footerLinks2 li {
					margin-bottom: 5px;
				}
				#footer div.inner div.right ul.footerLinks2 li:last-child {
					margin-bottom: 0;
				}
					#footer div.inner div.right ul.footerLinks2 li a {
						font-size:12px;
					}
						#footer div.inner div.right ul.footerLinks2 li a:hover {
							color:#111;
						}
		#footer div.inner p.copyright {
			font-size:11px;
		}
}

@media screen and (max-width:767px){
#footer {
	padding:50px 25px 30px 25px;
}
	#footer div.inner {
		flex-wrap: wrap;
	}
		#footer div.inner div.left {
			width:100%;
			margin-bottom: 30px;
		}
			#footer div.inner div.left a.footerLogo {
				margin: 0 auto;
			}
		#footer div.inner div.right {
			width:100%;
			flex-wrap: wrap;
		}
			#footer div.inner div.right ul.footerLinks {
				width:100%;
				display: flex;
				flex-wrap: wrap;
				margin-bottom: 20px;
			}
				#footer div.inner div.right ul.footerLinks li {
					width:50%;
					text-align: center;
					margin-bottom: 0;
				}
				#footer div.inner div.right ul.footerLinks li:last-child {
					margin-bottom: 0;
				}
				#footer div.inner div.right ul.footerLinks li:nth-last-child(2) {
					margin-bottom: 0;
				}
					#footer div.inner div.right ul.footerLinks li a {
						display: block;
						width:100%;
						height: 44px;
						font-size:14px;
						line-height: 44px;
					}
			#footer div.inner div.right ul.footerLinks2 {
				width:100%;
				padding-left:0;
				padding-top:15px;
				border-left:0;
				border-top:1px solid #B6DB87;
				display: flex;
				flex-wrap: wrap;
			}
				#footer div.inner div.right ul.footerLinks2 li {
					width:50%;
					margin-bottom: 0;
				}
					#footer div.inner div.right ul.footerLinks2 li a {
						display: block;
						width:100%;
						height: 44px;
						font-size:13px;
						line-height: 44px;
						color: #111;
						text-align: center;
					}
		#footer div.inner p.copyright {
			text-align: center;
		}
}

@media screen and (max-width:767px){
		#footer div.inner p.copyright {
			font-size:10px;
		}
}
