﻿@charset "utf-8";

/*#bodyWrap*/
#bodyWrap{
	position:relative;
	min-height:100vh;
	padding-bottom:213px;
	box-sizing:border-box;
	width: 100%;
}

.bodyWrap-top{
	/*
	background-image: url("../images/background_image.png");
	background-size: cover;	
	*/
}

/*header*/
#header{
	background:#157018;
	height: 90px;
}
#header .flex-items{
	display: flex;
    width: 90%;
    align-items: center;
    margin: 0 auto;
    height: 100%;
    justify-content: space-between;
}

#header .loginIcon{
	width:250px;
	text-align: right;
}

#header .inner{
	width: 90%;
	margin:auto;
	position:relative;
}

#header .logo{
	width:338px;
}

#header .logoAfterLogin{
	text-align: center;
	padding-top: 30px;
}

#header .button>a{
	display:block;
	position:absolute;
	cursor:pointer;
	right: 0;
	top: 26px;
	width: 114px;
	height: 40px;
	text-indent:-9999px;
}
/****
#header .button.login>a{
	background:url(/common/images/pc/login2.png) no-repeat left bottom;
}
#header .button.logout>a{
	background:url(/common/images/pc/logout.png) no-repeat left bottom;
}
****/
#header .button.login>a{
	background:url('../images/login2.png') no-repeat left bottom;
}
#header .button.logout>a{
	background:url('../images/logout.png') no-repeat left bottom;
}


/*headNavBox*/
#headNavBox{
	background:#4aa94f;
	height:100px;
	border-top:1px solid #fff;
}
#headNavBox>.inner{
	width: 100%;
	margin:auto;
}
#headNavBox .navList{
	width: 100%;
	box-sizing:border-box;
	height: 100px;
}
#headNavBox .navList:after{
	content:"";
	display:block;
	clear:both;
}
#headNavBox .navList>.item{
	float:left;
	border-right:1px solid #fff;
	box-sizing:border-box;
	height: 100%;
}
#headNavBox .navList.col6>.item{
	width: 9%;
}
#headNavBox .navList>.item.selected{
	position:relative;
}
#headNavBox .navList>.item.selected:after{
	content:"";
	display:block;
	position:absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background:#157018;
}
#headNavBox .navList>.item:hover{
	background:#157018;
}
#headNavBox .navList>.item>.itemInner{
	display:table;
	height: 100%;
	width: 100%;
}
#headNavBox .navList>.item>.itemInner>.text{
	display:table-cell;
	vertical-align:middle;
	text-align:center;
	text-decoration:none;
	color:#fff;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.3;
	cursor:pointer;
}

/*subNav*/
#headNavBox .subNavBase{
	position:relative;
}
#headNavBox .subNavBox{
	position: absolute;
	background: #ffffff;
	border: 1px solid #157018;
	top: 115px;
	padding:20px 30px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
	z-index:2000;
}
#headNavBox .subNavBox.off{
	display:none;
}
#headNavBox .subNavBox.on{
	display:block;
}
#headNavBox .subNavBox:after, .subNavBox:before {
	content: " ";
	position: absolute;
	pointer-events: none;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	height: 22px;
	left: 74px;
	width: 22px;
}
#headNavBox .subNavBox:after{
	background-color: #fff;
	top: -11px;
}
#headNavBox .subNavBox:before {
	background-color: #157018;
	top: -12px;
}
#headNavBox .subNavClose{
	position:absolute;
	right:10px;
	top:10px;
	width: 100px;
}

.navList {
	position: relative;
	height: 50px;
	margin: 0 auto;
}

.navList > li {
	float: left;
	height: 50px;
}

.navList > li a {
	display: block;
	color: #fff;
	line-height: 40px;
	text-decoration:none;
	text-align: center;
}

.navList > li a:hover {
	color: #999;
}

ul.navList__second-level {
	visibility: hidden;
	background:#4aa94f;
	opacity: 0;
	z-index: 1;
}

ul.navList__third-level {
	visibility: hidden;
	opacity: 0;
}

ul.navList__fourth-level {
	visibility: hidden;
	opacity: 0;
}

.navList > li:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
}

.navList__second-level li {
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.navList__second-level li a:hover {
	background-color: #157018;
	text-decoration:none;
}

/* floatクリア */
.navList:before,
.navList:after {
	content: " ";
	display: table;
}

.navList:after {
	clear: both;
}

.navList {
	*zoom: 1;
}
.navList > li.navList__single {
	position: relative;
}

li.navList__single ul.navList__second-level {
	top: 40px;
	width: 100%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

li.navList__single:hover ul.navList__second-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}

/*footer*/
#footer{
	padding:80px 0;
	background:#4aa94f;
	color:#fff;
	text-align:center;
/*text-align:left;*/

	position:absolute;
	bottom: 0;
	width: 100%;
}
#footer a{
	color:#fff;
	text-decoration:none;
}
#footer a:hover{
	color:#fff;
	text-decoration:underline;
}
#footer .logo{
	display:inline-block;
	vertical-align:bottom;
	margin-right: 10px;
}
#footer .copyright{
	display:inline-block;
	vertical-align:bottom;
}

/*contents*/
#contents{
padding-bottom: 80px;
}
#contents>.inner{
	width: 1024px;
	margin:auto;
}

/*breadcrumb*/
.breadcrumb{
	background:#f2f2f2;
	padding:15px 0;
}
.breadcrumb .inner{
	width: 1024px;
	margin:auto;
}
.breadcrumbList li{
	display:inline-block;
}
.breadcrumbList li>a{
	text-decoration: underline;
}
.breadcrumbList li>a:hover{
	text-decoration: none;
}

/*grid*/
.grid:after{
	content:"";
	display:block;
	clear:both;
}
.grid>.item{
	float:left;
}
.grid.col2>.item{
	width:50%;
}
.grid.col3>.item{
	width:33.33%;
}
.grid.col5>.item{
	width:20%;
}
.grid.col7>.item{
	width: 16%;
}
.grid.gridStyle1{
	margin-right:-13px;
}
.grid.gridStyle1>.item{
	padding-right:13px;
	margin-bottom:16px;
	box-sizing:border-box;
}
.grid.gridStyle2{
	margin-right:-18px;
}
.grid.gridStyle3{
	margin-right:-180px;
}

.grid.gridStyle2>.item{
	padding-right:18px;
	box-sizing:border-box;
}
.grid.gridStyle3>.item{
	padding-right:18px;
	margin-right: 20px;
	margin-bottom:30px;
	box-sizing:border-box;
}


/*boxLayout*/
.boxLayout1{
	margin-top: 60px;
}
.boxLayout2{
	margin-left: 35px;
	margin-right: 35px;
}
.boxLayout3{
	margin-top: 30px;
}
.boxLayout4{
	margin-top: 15px;
}
.boxLayout5{
	margin-right:-13px;
}
.boxLayout6{
	padding-right:13px;
	margin-bottom:15px;
	box-sizing:border-box;
}
.boxLayout7{
	width:700px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
.boxLayout8{
	width: 520px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
.boxLayout9{
	width: 280px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
.boxLayout10{
	margin-top: 45px;
	margin-bottom: 20px;
	padding-bottom: 45px;
	border-bottom: 1px solid #dadada;
}
.boxLayout11{
	padding-right: 30px;
}
.boxLayout12{
	width: 400px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
.boxLayout13{
	display: table;
}
.boxLayout14{
	display: table-cell;
	vertical-align: top;
}
.boxLayout15{
	display: table-cell;
	vertical-align: bottom;
}
.boxLayout16{
	width: 620px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
.boxLayout17{
	margin-top: 45px;
}




/*boxStyle*/
.boxStyle1{
	border:1px solid #4aa94f;
	padding: 30px;
}
.boxStyle2{
	border:2px solid #157018;
	border-radius: 8px;
	padding: 30px;
}
.boxStyle3{
	text-align: center;
}
.boxStyle4{
	padding:10px;
	background: #ffded8;
	box-sizing: border-box;
}
.boxStyle5{
	display:table;
	width: 100%;
	height: 100%;
}
.boxStyle6{
	text-align: right;
}
.boxStyle7{
	position: relative;
	height: 3.3em;
}

/*table*/
.tableStyle1{
	width: 100%;
	border-collapse: collapse;
}
.tableStyle1 thead{
	background: #f7f7f7;
}
.tableStyle1 thead th{
	font-weight: bold;
	/*white-space: nowrap;*/
	text-align: center;
}
.tableStyle1 th,
.tableStyle1 td{
	border: 1px solid black;
	padding: 15px;
}

/*table size*/
.tableSize5{width: 5%;}
.tableSize10{width: 10%;}
.tableSize15{width: 15%;}
.tableSize20{width: 20%;}
.tableSize25{width: 25%;}
.tableSize30{width: 30%;}
.tableSize35{width: 35%;}
.tableSize40{width: 40%;}
.tableSize45{width: 45%;}
.tableSize50{width: 50%;}
.tableSize55{width: 55%;}
.tableSize60{width: 60%;}
.tableSize65{width: 65%;}
.tableSize70{width: 70%;}
.tableSize75{width: 75%;}
.tableSize80{width: 80%;}
.tableSize85{width: 85%;}
.tableSize90{width: 90%;}

/*flexTable*/
.flexTable td{
	width: 50%;
}
.flexTable tr:first-child td:only-of-type{
	width: 100%;
}

/*buttonStyle*/
.buttonStyle1{
	display: table;
	background: #f2f2f2;
	border: none;
	border-bottom: 3px solid #ccc;
	color: #285c2b;
	width: 100%;
}
.buttonStyle2{
	background: #157018;
	border:none;
	border-bottom: 3px solid #105713;
	color: #fff;
	display: table;
	width: 100%;
}
.buttonStyle3{
	background: #157018;
	border:none;
	border-bottom: 3px solid #105713;
	color: #fff;
	display: table-cell;
	padding: 6px 12px;
	text-align: center;
	vertical-align: middle;
	width: 400px;
}
.buttonStyle4{
	position: absolute;
	top: 0;
	right: 0;
	width: 160px;
	height: 3em;
}

/*buttonInner*/
.buttonInner1{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
.buttonInner2{
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

/*buttonSize*/
.buttonSize1{
	height:4em;
}
.buttonSize2{
	height:3em;
	font-size: 18px;
	font-weight: bold;
}
.buttonSize3{
	height:2em;
	font-size: 12px;
}

/*pagination*/
.paginationWrap{
	height: 32px;
	position: relative;
	width: 100%;
}
.pagination{
	height: 32px;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%,0%);
	-moz-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	transform: translate(-50%,0%);
}
.pagination:after{
	clear: both;
	content: "";
	display: block;
}
.paginationBtn{
	border: 2px solid	#bfbfbf;
	bottom: 0;
	color: #bfbfbf;
	display: block;
	float: left;
	font-size: 16px;
	font-weight: bold;
	height: 28px;
	line-height: 28px;
	margin: auto 0;
	position: absolute;
	text-align: center;
	text-decoration: none;
	top: 0;
	width: 102px;
}
.paginationBtn.active{
	color: #157018;
}
.paginationNext{
	right: -118px;
}
.paginationPre{
	left: -118px;
}
.paginationList{
	white-space: nowrap;
}
.paginationList .paginationNumber{
	font-size: 16px;
	font-weight: bold;
	height: 28px;
	display: inline-block;
	line-height: 28px;
	text-align: center;
}
.paginationList .paginationNumber:not(:last-child){
	margin-right: 8px;
}
.paginationList .paginationNumber a{
	text-decoration: none;
}
.paginationList .paginationNumber span{
	border: 2px solid	#bfbfbf;
	color: #157018;
	display: block;
	padding: 0 10px;
}
.paginationList .paginationNumber > span{
	background: #e6e6e6;
	color: #000;
}

/*titleStyle*/
.titleStyle1{
	text-align:center;
	font-size: 24px;
	font-weight: bold;
}
.titleStyle2{
	color:#285c2b;
	font-size: 22px;
	line-height: 1.5;
	text-align:center;
}
.titleStyle3{
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom:#4aa94f solid 3px;
}
.titleStyle4{
	text-align:center;
	color:#157018;
	font-size: 18px;
	font-weight: bold;
}
.titleStyle5{
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 20px;
}
.titleStyle6{
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
}
.titleStyle7{
	color:#285c2b;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
}
.titleStyle8{
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

/*textSyle*/
.textStyle1{
	line-height: 1.5;
}
.textStyle2{
	line-height: 1.5;
}
.textStyle3{
	text-align:center;
	font-weight: bold;
	font-size: 18px;
}
.textStyle4{
	text-indent: -25px;
	padding-left: 25px;
}
.textStyle5{
	line-height: 1.8;
}
.textStyle6{
	text-align:center;
	font-weight: bold;
}
.textStyle7{
	text-align:center;
	font-size: 115%;
}
.textStyle8{
	text-indent: -1em;
	padding-left: 1em;
}
.textStyle9{
	font-weight: bold;
}
.textStyle10{
	text-indent: -1.7em;
	padding-left: 1.7em;
}
.textStyle11{
	color: #666666;
}

/*icon*/
.linkIcon:before{
	content:url('../images/link_icon.png');
	margin-right: 5px;
	position: relative;
	top: 3px;
}
.pdfIcon:after{
	content:"";
	background:url('../images/pdf_icon.png') no-repeat 0 0;
	background-size:contain;
	width: 31px;
	height: 31px;
	display:inline-block;
	margin-left: 5px;
	vertical-align: middle;
}
.pdfIcon2:before{
	content:"";
	background:url('../images/pdf_icon.png') no-repeat 0 0;
	background-size:contain;
	width: 31px;
	height: 31px;
	display:inline-block;
	margin-right: 8px;
	vertical-align: middle;
}

/*pageTop*/
.pageTopBtn{
	background-image: url(/common/images/pc/pagetop_icon.png);
	background-position: 18px 50%;
	background-repeat: no-repeat;
	padding-left: 21px;
}

/*form*/
.formStyle1{
	font-size: 18px;
	padding:10px 5px;
	background:#e8e8e8;
	width: 100%;
	box-sizing:border-box;
	border:none;
	border-top:2px solid #d1d1d1;
	border-left:2px solid #d1d1d1;
}

/*margin*/
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt65{margin-top: 65px;}

/*トップメニューレイアウト*/
.topMenuBox{
	width: 1025px;
	margin: 20px auto;
	margin-top: 60px;
}

.topMenuBox .menuList{
	visibility: hidden;
	background-color: #f2f2f2;
	opacity: 0;
	z-index: 1;
}

.topMenuBox .menuList li{
	border-left: none;
	border-bottom: 1px solid #ccc;
}

.topMenuBox .menuList li a{
	display: block;
	color: #285c2b;
	line-height: 40px;
	text-decoration:none;
	text-align: center;
}

.topMenuBox .menuList li a:hover{
	background-color: #e0e0e0;
	text-decoration:none;
}

li.navList__single ul.menuList{
	top: 40px;
	width: 100%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

li.navList__single:hover ul.menuList{
	top: 50px;
	visibility: visible;
	opacity: 1;
}

.menuBtn{
	display: none;	
}


/* slider */
/***/
.slider {
    padding-top: 20px; /*74px*/
    background-color: #fff;
    margin: 0 -5px;
    white-space: nowrap;
    letter-spacing: -0.4em; /*-0.4em*/
	width: 100%;	/*1000px*/
    margin-left:auto;
    margin-right:auto;
}
	@media screen and (min-width:768px) {
		.slider {
    		padding-top: 5px;	/*111px*/
		}
	}
.slider .item {
	display: inline;
	letter-spacing: normal;
	text-align: center;
	width: 100%;
}
.slider .flickity-page-dots {

}
.slider .flickity-page-dots .dot {
    background: #007c42;
}
.slider .slide_back{
	display: none;
}
img.slide {
    max-width: 100%;
    width: auto;
    height: 600px; /*300px 100% 600px*/
    vertical-align: bottom;
}


/*メニューボタン*/
.top-menu2{
	background: #006400;
	padding: 6px 6px;
	height: 50px;
}

.top-menu2 ul{
	display: flex;
	padding-inline-start:0px;
	height: 30px;
}

.top-menu2 ul li{
	border-left: 1px solid #fff;
	text-align: center;
	width: 33%;
	height: 40px;
}
.top-menu2 ul li:last-child{
	border-right: 1px solid #fff;
}

.top-menu2 ul li a{
	color: #fff;
	display: block;
	font-size: 18px;
	padding: 5px 0;
	text-decoration: none;
	width: 100%;
}

.top-menu2 ul li a img{
	width: 28.658%;
	height: auto;
	margin-bottom: 5px;
}

.top-menu2 hr{
	margin:3px;
	border:none;
	height:1px;
	background-color:#FFF;
}



/*ページTOPへボタン*/
#page-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    background-color: rgba(100,100,100,0.7);
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 20px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background-color: rgba(100,100,100,0.2);
}

/****/
.top-menu{
	background: #007d43;
	border-top: 3px solid #ecd146;
	padding: 6px 13px;
	width: 100%;
	height: 50px;
}
	@media screen and (min-width:768px) {
		.top-menu{
			padding: 12px;
		}
	}

.top-menu ul{
	display: flex;
}
	@media screen and (min-width:768px) {
		.top-menu ul{
			display: flex;
			max-width: 1000px;
			margin: 0 auto;
		}
	}

.top-menu ul li{
	border-left: 1px solid #fff;
	text-align: center;
	width: calc(100% / 3);
}
.top-menu ul li:last-child{
	border-right: 1px solid #fff;
}
.top-menu ul li a{
	color: #fff;
	display: block;
	font-size: 20px; /*13px*/
	padding: 5px 0;
	text-decoration: none;
	width: 100%;
}

.top-menu ul li a img{
	width: 28.658%;
	height: auto;
	margin-bottom: 5px;
}
	@media screen and (min-width:768px) {
		.top-menu ul li a img{
			width: 41px;
			height: 41px;
		}
	}

.menu-button{
	display:inline-block;
	background:#FFF;
	padding:10px 30px;
	text-align:center;
	margin:5px;
	border:1px solid;
	cursor:pointer;
	width:200px;
}

/* ADD(2021/11/15) */
.menu-title-h1{
	padding-left: 15%;
	font-size: 24px;
	
}
.menu-sub-title-p{
	padding-left: 15%;
	font-size: 18px;
	color: #696969;
}
.menu-btn-container{
	margin-top: 20px;
	margin-bottom: 30px;
}

/* ボタンを横に3つ表示する */
.slide-btn-link-area3{
	padding-top: 1%;
	padding-left: 2%;
	padding-right: 2%;
	padding-bottom: 1%;
	display: flex;
	justify-content: center;
}
.slide-btn-link3 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 60px;
	margin: 0 8px;
	position: relative;
	text-align: center;
	width: 16%;
}
	@media screen and (min-width:768px) {
		.slide-btn-link3 {
			height: 60px;
			width: 16%;
		}
	}
/*
.slide-btn-area .new-icon:before{
	content: "";
	background: url(../images/menu_icon_new.png) center center /contain no-repeat;
	position: absolute;
	width: 18px;
	height: 18px;
	top: 10%;
	left: 5px;
}
	@media screen and (min-width:768px) {
		article#menu-new .slide-btn-area .new-icon:before{
			width: 24px;
			height: 24px;
			top: 55%;
			left: 50px;
			margin-left:-20px;
		}
	}
*/
.slide-btn-link-area3 .slide-btn-link3{
	cursor: pointer;
}

.slide-btn-link3-a-on{
	width:100%;
	height:50px;
	text-decoration: none;
	background:#009900;
	text-align:center;
	color:#FFFFFF;
	font-size:15px;
	font-weight:bold;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	margin:auto;
}

.slide-btn-link3-a-on span{
	line-height:50px;
}

.slide-btn-link3-a-off{
	width:100%;
	height:50px;
	text-decoration: none;
	background:#FFFFFF;
	text-align:center;
	color:#000000;
	font-size:15px;
	font-weight:bold;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	margin:auto;
}

.slide-btn-link3-a-off span{
	line-height:50px;
}

.notification-container{
	background-color: #ffffff;
	margin-top: 2px;
}

.menu-link-a {
	text-decoration: none;
	text-align: left;
	border-radius: 4px;
	width: 100%;
	height:auto;
}

.menu-link-span {
	position: absolute;
	width: 100%;
	margin:auto;
	color: #333;
	background-position: 2% center;
	background-repeat: no-repeat;
	background-size: 25%;
	font-weight: bold;
	height:50px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.menu-link-div {
	position: relative;
 	height:100px;
	padding-left: 30%;
	border-top: 2px solid green;
	display:flex; /* ←これを指定 */
	align-items: center;  /* ←これを指定 */
}

.menu-link-div p {
	font-size: 14px;
}

.icon_pdf {
	padding-right: 20px;
    background-image: url('../images/icon_pdf.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px;
    text-decoration:underline;
	color:#285c2b;
}

h3{
	font-size: 200%;
	font-weight: 700;
	color: white;
	width:384px;
}
