@charset "Shift_JIS";
/* CSS Document */

/* -------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------------- */

html, body { margin:0; padding:0;}
*,
*::before,
*::after {box-sizing: border-box;}
body{
	font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3','MS PGothic';
	font-weight: 300;
	color:#303030;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	font-weight:normal;
	font-style:normal;
	font-size:100%;
	text-align:left;
}

dl, dt, dd{
	margin: 0;
	padding: 0;
	border: 0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}

ol, ul { list-style:none;}

blockquote:before,blockquote:after { content:""; }
a { outline:none; color: #208dc3; text-decoration: none;}
a:hover{
	opacity: 0.65;
}

input[type=search] {
	-moz-appearance:none;
	-webkit-appearance:none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
#pagetop{ position: fixed; bottom: 40px; right: 2%; z-index: 101; display: none;}
#pagetop img{ width: 90%;}

sup{font-size: 0.4em;}
sub{font-size: 0.4em;vertical-align: baseline;}
/* -------------------------------------------------------------------------------- */
/*	1. Document setup
/* -------------------------------------------------------------------------------- */

.common_header{
	width: 100%;
	z-index: 999;
	background: #fff;
}
@media screen and (max-width: 600px){
	.common_header{
		/*height: 80px;*/
	}
}

.sticky{
	position: sticky;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

#wrapper{
	text-align:left;
	font-size: 16px;
	clear: both;
}
.subpage_head{
	background: #eaf0f3;
	padding: 1em 0;
}
.headinfo{
	margin: 0 auto;
	padding: 0.5em;
	overflow: hidden;
}
.headinfo .headlogo{
	display: block;
	float: left;
	overflow: hidden;
	width: 70px;
	height: 50px;
}
.headinfo .headlogo a{display: block;}

.svg{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}



.subpage_head h1,
.subpage_head p{
	width: 90%;
	margin: 0.5em auto;
	font-family: 'Kosugi Maru', 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	font-size: 1.8rem;
	clear: both;
	display: block;
	padding: 0.5em 0;
	color: #666;
}

.subpage_head h1 span,
.subpage_head p span{
	display: block;
	font-size: 0.65em;
	padding: 0.1em 0.3em;
	color: #fff;
	background: linear-gradient(-135deg, #dfe8ec, #91a9b5);
	margin-top: 0.3em;
	border-radius: 2px;
    line-height: 1.3;
}

@media screen and (min-width: 980px) {
	.subpage_head h1 span,
	.subpage_head p span{
		display: inline-block;
		margin-left: 1em;
	}
}

li{list-style-type: none;}


/* pageBtn */
#pageBtn{
	background: #208dc3;
	border-radius: 4px;
	clear: both;
	width: 50px;
	height: 50px;
	z-index: 3;
	position: fixed;
	bottom: 10%;
	right: 5%;
	text-align: center;
}
#pageBtn i{
	padding-top: 25%;
	padding-bottom: 25%;
	font-size: 1.5em;
	text-indent: 0;
	color: #fff;
}




/* -----------------------------------------------
2. megamenu.js STYLE STARTS HERE
----------------------------------------------- */


.menu-container {
	clear: both;
	z-index: 999;
	width: 100%;
	margin: 0 auto;
	background: #000;
}

.menu{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	font-size:1.1rem;
}
@media screen and (min-width: 769px) {
	.menu{
		width: 90%;
	}
}

.menu-mobile {
	display: none;
}
.menu-dropdown-icon:before {
	display: none;
}

.menu > ul {
	display: flex;
	/*並び順*/
	/*
	flex-start：左寄せ（デフォルト）
	flex-end：右寄せ
	center： 中央寄せ
	space-between：残り余白の均等割
	space-around：左右余白 ＋ 均等割
	*/
	justify-content: space-around;
	margin: 0 auto;
	list-style: none;
	position: relative;
	/* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
	box-sizing: border-box;
}

/*
.menu > ul:before,
.menu > ul:after {
	content: "";
	display: table;
}
*/
.menu > ul:after {
	clear: both;
}

.menu > ul > li {
	background: #000;
	padding: 0.5rem 1.2vw;
	text-align: center;
	font-weight: bold;
	color: #fff;
	 justify-content: center;
	  align-items: center;
}
.menu > ul > li:first-of-type{
	width:1em;
	align-items: center;
}

.menu > ul > li a {
	color: #fff;
	text-decoration: none;
	display: block;
}
.menu > ul > li a i{
	margin: 0;
	padding: 0 0.5em;
	line-height: 1.5;
}


.menu > ul > li > ul {
	display: none;
	width: 100%;
	background: #000;
	opacity: 0.9;
	padding: 1em 0 1em 2em;
	position: absolute;
	z-index: 99;
	left: 0;
	margin: 0;
	list-style: none;
	box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
	content: "";
	display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
	margin: 0;
	padding-bottom: 0;
	padding-right: 1%;
	list-style: none;
	width: 24%;
	background: none;
	float: left;
}
.menu > ul > li > ul > p{
	background:  #208dc3;
	padding: 0.2em 0.5em;
	margin:0.5em 0;
	width: 95%;
	border-radius: 4px;
}
.menu > ul > li > ul > li a {
	color: #fff;
	padding: .2em 0;
	width: 95%;
	display: block;
	border-bottom: 1px solid #ccc;
}

.menu > ul > li > ul > li a:before{
	padding-right: 0.2em;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	content:"\f105";
	color: #3BACD6;
}
.menu > ul > li > ul > li > ul {
	display: block;
	padding: 0;
	margin: 10px 0 0;
	list-style: none;
	box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
	content: "";
	display: table;
}

.menu > ul > li > ul > li > ul:after {
	clear: both;
}

.menu > ul > li > ul > li > ul > li {
	float: left;
	width: 100%;
	padding: 5px 0 0;
	margin: 0;
}

.menu > ul > li > ul > li > ul > li a {
	border: 0;
}

.menu > ul > li > ul.normal-sub {
	width: 300px;
	left: auto;
	padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
	width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
	border: 0;
	padding: 0.2em 0;
}

@media only screen and (max-width: 768px) {
.menu > ul > li > ul.normal-sub > li a {
	padding: 0;
}
	.menu > ul {
		margin: 0 ;
		padding: 0;
	}
	.menu > ul > li {
		padding: 0.5rem 1.2vw;
	}
}

@media only screen and (max-width: 640px) {
	.menu a{color: #ffffff;}
	.menu-mobile {
		display: block;
		font-family: 'M PLUS 1p', sans-serif;
		font-weight: bold;
		padding: 0.5em 1em;
	}

	/* menu icon */
	.menu-mobile:after {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f0c9";
		font-size: 1.7rem;
		padding: 0 0 0 0.3em;
		float: right;
		position: relative;
		top: 50%;
	}

	.menu > ul {
		display: none;
	}
	.menu > ul > li {
		width: 100%;
		float: none;
		display: block;
		text-align: left;
		padding: 0.1em 0.5em;
	}
	.menu > ul > li a {
		padding: 0.25em 0.5em;
		width: 100%;
		display: block;
	}
	.menu > ul > li > ul {
			position: relative;
			padding: 0.5em 1em;
	}
	.menu > ul > li > ul.normal-sub {
			width: 100%;
            padding: 0.5em .8em;
	}
	.menu > ul > li > ul > li {
			float: none;
			width: 100%;
			margin-top: 0.5em;
	}
	.menu > ul > li > ul > li:first-child {
			margin: 0;
	}
	.menu > ul > li > ul > li > ul {
			position: relative;
	}
	.menu > ul > li > ul > li > ul > li {
			float: none;
	}
	.menu .show-on-mobile {
		display: block;
		width: 100%;
		padding: 1em;
	}

	.menu-dropdown-icon,
	.menu-dropdown-icon a{
			color: #fff;
	}
	.menu-dropdown-icon a{
		display: block:
		cursor: pointer;
	}

	/* plus icon */
	.menu-dropdown-icon:before {
		display: block;
	}

	.menu-dropdown-icon:before {
		content: "\f067";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		cursor: pointer;
		float: right;
		color: #fff;
		padding:  0.1em 0.5em 0 3em; 
	}
}/* End max-width: 640px */





/* -------------------------------------------------------------------------------- */
/*	3. layout common
/* -------------------------------------------------------------------------------- */
@media ( min-width : 600px ){
	.f_left{float: left;}
	.f_right{float: right;}
	.w100{width:100%}
	.w90{width:90%}
	.w80{width:80%}
	.w70{width:70%}
	.w60{width:60%}
	.w50{width:50%}
	.w40{width:40%}
	.w30{width:30%}
	.w20{width:20%}
	.w10{width:10%}
	.w200{width: 200px;}
	.w300{width: 300px;}
	.w330{width: 330px;}
	.w400{width: 400px;}
	.w500{width: 500px;}
	.w600{width: 600px;}
}
.mt10{margin-top:10px;}
.mt20{margin-top:20px;}
.mt30{margin-top:30px;}
.mr10{margin-right:10px;}
.mr20{margin-right:20px;}
.mr30{margin-right:30px;}
.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.ml10{margin-left:10px;}
.ml20{margin-left:20px;}
.ml30{margin-left:30px;}




/* PC 1024px以上
--------------------------------------------*/
@media screen and (min-width: 1024px) {

}


/* PC & タブレット
--------------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 1023px) {

}


/* -------------------------------------------------------------------------------- */
/*	4. Custom code
/* -------------------------------------------------------------------------------- */

.ext_link::after{
	padding-left: 0.5em;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	content:"\f35d";
	color: #a3d4e6;
}
.cb{
	clear: both;
	display: block;
	content: " ";
}
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

#logo{float: left;width:200px;}
#prof{float: right;font-size: 0.75em;}
#usearch form{
	float: right;
	clear: right;
	margin-top: 5px;
}

#main_columns{
    padding: 1em;
	margin:1em auto 100px;
}
#main_columns h1,
#main_columns p{padding:0.2em 0.5em;}

.breadcrumb{padding: 1em;line-height: 1.1em;}

@media screen and (min-width: 1024px) {
	#main_columns{
		padding: 1em 2em;
	}
}
/*
#sliders{
	width:100%;
	height: auto;
	margin:10px 0;
}

#sliders::after{display: block;}

.sp-bottom-thumbnails.sp-has-pointer {margin-top: 5px;}
.sp-bottom-thumbnails.sp-has-pointer .sp-thumbnail {top:0;}
.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail{background: #333;color: #333;}
.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail img{opacity: 0.4;}
.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail::before {display: none;}
.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail::after {display: none;}
*/
.see-more{
	padding: 2px 5px;
	background: #3BACD6;
	color: #fff;
	font-weight: bold;
	border-radius: 2px;
	margin-left: 0.5em;
}
.see-more::before{
	font-family: 'Font Awesome 5 Free';
	content:"\f105";
	font-weight: 900;
	padding-right: 0.2em;
}

.read_more{
	padding: 2px 5px;
	background: #3BACD6;
	color: #fff;
	font-weight: bold;
	border-radius: 2px;
	float: right;
	font-size: 0.8rem;
	margin: 0.5em 0 2em 0.5em;
}
.see-more a,
.read_more a{
	color: #fff;
}
.read_more::after{
	font-family: 'Font Awesome 5 Free';
	content:"\f105";
	font-weight: 700;
	padding-left: 0.3em;
}
.read_more a:hover{
	background: #3BACD6;
}

.read_more_y{
	padding: 2px 5px;
	background: #b49227;
	color: #fff;
	font-weight: bold;
	border-radius: 2px;
	float: right;
	font-size: 0.8rem;
	margin: 0.5em 0 2em 0.5em;
}
.see-more_y a,
.read_more_y a{
	color: #fff;
}
.read_more_y::after{
	font-family: 'Font Awesome 5 Free';
	content:"\f105";
	font-weight: 700;
	padding-left: 0.3em;
}
.read_more_y a:hover{
	background: #f7e687;
}


.arrow02::after,
.outlink::after{
	padding-left: 0.5em;
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
	content: "\f35d";
	color: #3bacd6;
}

.att::after{
	content:"※";
	vertical-align: top;
	color: #cc0000;
	font-weight: bold;
	font-size: 0.7em;
	padding-right: 0.5em;
}
.att_words{
	padding: 1em;
	font-size: 0.9rem;
	vertical-align: middle;
	color: #666;
}
.att_words::before{
	content:"※";
	color: #cc0000;
	font-weight: bold;
}

/* --------------------------------------------------------------------------------
見出しタグ
-------------------------------------------------------------------------------- */


h1,h2,h3,h4,h5,h6{
	clear: both;
	display: block;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	color: #666;
	line-height: 1.3;
	margin: 1rem 0.5rem 0.5rem;
}

h1{
	font-size: 1.65rem;
}

h2 {
	color: #555;
	font-size: 1.5rem;
	background: none;
}

h3 {
	font-size: 1.4rem;
}
h4 {
	font-size: 1.4rem;
	font-weight: bold;
	color: #6d8591;
	padding: 0.3em;
}

h5 {
	font-weight: bold;
	padding: 0.3em;
	font-size: 1.1rem;
	border-bottom: 4px solid #91a9b5;
}
.tag{
	padding: 2px 5px;
	background: #91a9b5;
	color: #fff;
	font-weight: bold;
	border-radius: 4px;
	font-size: 0.9rem;
	margin-left: 1em;
	display: inline-block;
}
.tag_b{
	padding: 2px 5px;
	background: #3BACD6;
	color: #fff;
	font-weight: bold;
	border-radius: 4px;
	font-size: 0.9rem;
	margin-left: 1em;
}

.tag_b a,
.tag a{color: #fff;}

span.year{
	display: inline-block;
	float: none;
	margin-left: 0;
	margin-right: 0.6em;
	background: #e2bb46;
	font-size: 0.75em;
}
.infolist h3{
	border-radius: 4px;
	font-size: 1.2rem;
	background: #79b0cc;
	color: #fff;
	padding: 0.3em;
}


.topics_ttl{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	line-height: 1.2;
	padding: 0.3em 0.6em;
	margin: 1em 0.2em 0.5em;
	border-radius: 6px;
	background: #91a9b5;
	color: #fff;
	font-size: 1.4em;
}
.newmark{
	font-weight: bold;
	padding: 2px 4px;
	background-color: #ffb100;
	color: #fff;
	font-size: 80%;
	margin-left: 5px;
	border-radius: 2px;
}
/* env */
.env_ind {margin: auto; }
.env_ind > div{
	display: inline-block;
	border-radius: 5px;
	line-height: 1.3;
	padding: 0.5em 1em;
	width: calc(93%/3);
	background: #f5f6f7;
	vertical-align: top;
	margin: 1%;
}

.env_ind > div:last-child{margin-right: 0;}

.env_name {font-size: 1.1em;}
.env_name sub,
.env_name sup{font-size: 0.6em;font-weight: bold;margin-right: 0.3em;}
.env_data{
	font-family:"Times New Roman";
	font-size:1.6em;
	font-weight: bold;
}
.env_date{ font-size: 0.75em;}

.env_ind_lnk{margin-top: 0.5em; font-size: 0.8em;}


/*
ecoterm
*/
.ecoterms{
	overflow: hidden;
}


.ecoterm_tag{
	margin: 0.5em 0;
	display: table;
	table-layout: fixed;
}
.ecoterm_tag li{
	display:  inline-block;
	vertical-align: middle;
}
.ecoterm_tag li a{
	display: block;
	margin:0.5em;
	padding: 0.3em 0.6em;
	background: #444;
	color: #fff;
}
.ecoterm_tag li a:hover{
	background: #999;
}

.et_search_box{
	margin: 1em;
}
.et_search_box form{float: left;}
.more_box{float: left;}
.more_box::after{
	display: block;
	clear: both;
}

.block_2p,
.block_3p,
.block_4p{
	margin: 1em 0;
	padding: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.block_2p > div{
	vertical-align: top;
	padding: 1%;
	width: calc(98%/2);
	background: #fff;
	align-self: flex-start;
}
.block_3p > div{
    vertical-align: top;
    padding: 1%;
    /* padding-left: 0; */
    width: calc(99%/3);
    background: #fff;
	align-self: flex-start;
}
.block_4p > div{
	vertical-align: top;
	display: inline-block;
	padding: 1em;
	width: calc(98%/4);
	background: #fff;
	align-self: flex-start;
}
.top_lib_lead{
	font-size: 0.9em;
	line-height: 1.4em;
	color: #666;
	margin-top: 1em;
	margin-bottom: 1em;
}
.block_2p > div:last-child,
.block_3p > div:last-child,
.block_4p > div:last-child{margin-right: 0;}

.top_lib_img{
	text-align: center;
	max-width:100%;
	display: block;
	margin: 0 auto;
}

/* 一覧へ */
.toindex {
	font-size: .8em;
	float: right;
}
.toindex:after{
	font-family: 'Font Awesome 5 Free';
	content: "\f138";
	font-weight: 700;
	padding-left: 0.3em;
	color: #3bacd6;
}

.toindex {
	font-size: .8em;
	float: right;
	color: #3bacd6;
}
/* 注目 */
.att_bnr li{
	display: inline-block;
	margin:0 0.5%;
}
/* 事業事例集バナー */

.bus_bnr{
	margin: 0 0 2em;
	width: auto;
	overflow: hidden;
}
.bus_bnr li{
	margin: 1%;
	float: left;
}
.bus_bnr li{
    overflow: auto;
    margin: 2% 1% 3%
}

.bus_bnr li img {
    width: 100%;
}
/* 広告枠 */


.ad_block li{
	display: inline;
	color: #666;
	margin-right: 20px;
	font-size: 0.8em;
}

.ad_block_txt{
	background: #f8f8f8;
	padding: 0.5em 1em;
	margin:1em 0;
	overflow: hidden;
}
.ad_block_txt li{
	line-height: 2em;
}

.ad_block_txt li:before{
	color: #ccc;
	padding-right: 0.5em;
	font-family: 'Font Awesome 5 Free';
	content:"\f105";
	font-weight: 900;
}


/* footer */
address{font-size: 0.85em; margin-top:1em;padding: 1em 0 0 1em; display: block;color: #fff;clear: both;}
.footer_nav {
overflow: hidden;
	width:100%;
	padding: 1em 0.5em;
	background-color: #444444;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}
.footer_nav li{
	font-size: 0.85em;
	text-indent: -0.7em;
	line-height: 1.3em;
	margin-bottom: 0.5em;
}
.footer_nav li::before{
	font-family: 'Font Awesome 5 Free';
	content:"\f105";
	font-weight: 900;
	margin-right: 0.2em;
}
.footer_nav a{
	color: #fff;
}

.f_colm{
	width: 16.5%;
	float: left;
	padding: 0 0.5%;
}
.f_category{
	font-size: 1.1em;
	font-weight: bold;
	padding-bottom: 0.5em;
}

/* /forest/about/ */
.imgbox{
	width: 700px;
	margin: 1em 0;
}
.img_largeL{
	width: 320px;
	float: left;
	margin-right: 20px;
}
.img_thumbR{
	float: left;
	margin-right: 10px;
}
.img_thumbR p{
	display: inline;
	vertical-align: top;
}


.tbl01 {border-collapse: collapse;width: 90%;margin: 1em auto;}
.tbl01 th,.tbl01 td {min-width: 6em;padding: 0.5em;border: 1px solid #aaa;vertical-align: top;text-align: left;}
.tbl01 th {width: 20%;background: #eee;}

@media only screen and (max-width:480px) {
	.tbl01 th,.tbl01 td {display: block;width: auto;border-bottom: none;}
	.tbl01 tr:last-child {border-bottom: 1px solid #aaa;}
}


@media screen and (max-width: 768px) {
	.img_largeL,
	.img_thumbR p,
	.img_thumbR img{
		float: none;
	}
}
caption{
	font-size: 1.2em;
	font-weight: bold;
}

.tbl02 {
    width: 98%;
	margin: 1em;
	border-collapse: collapse;
	border-spacing: 0;
}

.tbl02 th,
.tbl02 td {
	padding: 10px;
	border: 1px solid #ddd;
	min-width: 6em;
	vertical-align: top;
}

.tbl02 th {
	background: #eee;
}


@media screen and (max-width: 480px) {
	.tbl02 {
		width: 100%;
		text-align: left;
		margin:0;
	}

	.tbl02 th {
		display: block;
	}

	.tbl02 td {
		border: 1px solid #ddd;
		text-align: left;
		display: block;
	}
}


table.tbl03 {
	width:90%;
	margin:10px auto;
	border-right:#79b0cc solid 1px;
	border-collapse: collapse;
}
table.tbl03 thead th {
	background:#79b0cc;
	color:#FFF;
	padding:10px 15px;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
	width: 10%;
}
table.tbl03 thead th:last-child {
	border-right:#79b0cc solid 1px;
}
table.tbl03 th {
	background:#79b0cc;
	color:#FFF;
	padding:10px 15px;
	border-bottom:1px solid #fff;
	border-right: 1px solid #fff;
	vertical-align:top;
}
table.tbl03 th :last-child{
	border-right:#79b0cc solid 1px;
}
table.tbl03 tbody tr th:last-child  {
	border-right:#79b0cc solid 1px;
}
table.tbl03 tbody td {
	background:#FFF;
	padding:10px 15px;
	border-left:#79b0cc solid 1px;
	border-bottom:#79b0cc solid 1px;
	vertical-align:top;
}

@media screen and (max-width: 640px) {
	
	table.tbl03 {
		width:100%;
	}
	table.tbl03 thead {
		display:none;
	}
	table.tbl03 tbody th {
		display:block;
	}
	table.tbl03 tbody td {
		display:block;
	}
	table.tbl03 tbody td::before {
		content: attr(label);
		float: left;
		clear:both;
		font-weight:bold;
	}
	table.tbl03 tbody td p {
		padding-left:6em;
	}
}


.tbl04 th,
.tbl04 td {display: block;width: auto;border-bottom: none;}
.tbl04 tr:last-child {border-bottom: 1px solid #aaa;}

@media only screen and (min-width:481px) {
	.tbl04 {border-collapse: collapse;width: 90%;margin: 1em auto;}
	.tbl04 th,
	.tbl04 td {padding: 0.5em 1em;border: 1px solid #aaa;vertical-align: top;text-align: left;}
	.tbl04 th {width: 10%; white-space: nowrap;}
}






table.tbl05 {
	width:100%;
	margin:10px auto;
	border-collapse: collapse;
}
table.tbl05 thead th {
	padding:10px 15px;
	border-bottom:#ddd solid 1px;
	width: 10%;
	font-weight: bold;
}
table.tbl05 th a{
	font-weight: bold;
}
table.tbl05 thead th:last-child {
	
}
table.tbl05 tbody th {
	font-size: 1.2em;
	padding:10px ;
	border-bottom:#ddd solid 1px;
	vertical-align:top;
}
table.tbl05 tbody tr:last-child th {
	border-bottom:#ddd solid 1px;
}
table.tbl05 tbody td {
	background:#FFF;
	padding:10px;
	border-bottom:#ddd solid 1px;
	vertical-align:top;
}

@media screen and (max-width: 640px) {
	
	table.tbl05 {
		width:100%;
	}
	table.tbl05 thead {
		display:none;
	}
	table.tbl05 tbody th {
		display:block;
	}
	table.tbl05 tbody td {
		display:block;
	}
	table.tbl05 tbody td::before {
		content: attr(label);
		float: left;
		clear:both;
		font-weight:bold;
	}
	table.tbl05 tbody td p {
		padding-left:6em;
	}
}




.flex_list-box {
	width: 100%;
	border-bottom: 1px solid #ddd;
    padding:  10px;
    display: flex;
}
 
.flex_list-item {
    padding: 0.3em;
    margin:  10px; 
}
 
.flex_list-item:nth-child(1) {
    background-color: #fff;
	width:60%;
    flex-grow: 1;               /* 幅指定 */
}
 
.flex_list-item:nth-child(2) {
}
 
.flex_list-item:nth-child(3) {
}
 
.flex_list-item:nth-child(4) {
}
 
.flex_list-item:nth-child(5) {
}
 
.flex_list-item:nth-child(6) {

}
@media only screen and (min-width:780px) {
	.qalist{
		margin:1em;
	}
	.qalist dt{}
	.qalist dd{
		display: flex;
	}
}
/* -----------------------------------------------
Media Query
----------------------------------------------- */
/* 印刷用
--------------------------------------------*/
@media print{
.common_header{
		position: static;
	}
	.menu-container {
		position: static;
		height: 45px;
		z-index: 999;
		width: 100%;
		margin: 0 auto;
		background: #000;
		clear: both;
	}
}

	.f_category{pointer-events: none;}

/* タブレット 旧iPad
--------------------------------------------*/
@media screen and (max-width: 768px) {
/*	#sliders{
		overflow: hidden;
		width:100%;
		margin:20px auto;
	}
	#sliders img{
		max-width: 100%;
	}
*/
	#main_columns {
		width: 100%;
		margin: 1em 0;
		/* padding: 0.5em; */
	}
	img{max-width: 100%;}

	

}



/* Mobile
-------------------------------------------------- */
@media only screen and (min-width:769px) {
	.only_sp{display: none;}
}
@media only screen and (max-width: 480px) {
	.sp_hide{
		display: none;
	}
	img{
		max-width: 100%;
	}
/*	#sliders{
		overflow: hidden;
		width:100%;
		margin:7.5vw 0 0;
	}
	#sliders img{
		max-width: 100%;
	}
	.sp-thumbnails{display: none;}
*/
	#main_columns {
		width: 100%;
		margin: 1em 0;
		padding: 0 2vw;
	}

	#main_columns p.txt{
		margin:0.5em;
		padding: 0.1em;
	}
	.att_bnr li{
		width: 100%;
	}
	.att_bnr li img{
		width: 100%;
	}

	.subpage_head h1 span{
		display: block;
		margin-left: 0;
	}


	.bus_bnr{
		flex-wrap: wrap;
		display: flex;
		justify-content: space-around;
	}

	#main_columns p.cont {
		padding: 0.5em 1em;
	}

	.block_3p > div{
		width: 100%;
	}
	.env_ind{
		display: block;
	}
	.env_ind > div{
		width: 95%;
		display: block;
		margin: 0.5em auto;
	}
	
	.ad_block{
		padding: 0.5em 1em;
	}
	.ad_block li{
		display: block;
		width: 100%;
		text-align: center;
	}
	.more_box{
		float: none;
		clear: both;
		padding-top: 1em;
	}

	.att_bnr{
		text-align: center;
	}
	.bus_bnr li{
		margin: 0;
		padding: 0;
		width: 48%;
	}
	.bus_bnr li img{width: 100%;}

	.env_ind > div:last-child{
	margin-right: 0.5em ;}

	/* footer-menu */

	.footer_nav{}
	.f_colm{
		min-width: 50%;
		display: block;
		margin-right: 0;
	}


.flex-container {
	width: 100%;
	display: block;
	}


	.footer_nav li{
		line-height: 2;
		padding: 0.1em;
	}
	address{padding: 1em;}


/*
toggle menu
*/
.footer_menu {
	background: #444;
	max-width: 400px;
	margin: 0 auto;
	padding: 0;
}

.footer_menu a {
  display: block;
  padding: 10px;
	text-decoration: none;
	color: #fff;
  line-height: 1;
}

footer label {
  display: block;
  margin: 0 0 2px 0;
	padding :12px;
  line-height: 1;
	color :#fff;
  background :#303030;
	cursor :pointer;
}

.footer_menu input {
	display: none;
}

.footer_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer_menu li {
  max-height: 0;
  overflow-y: hidden;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

	#menu_bar01:checked ~ #links01 li,
	#menu_bar02:checked ~ #links02 li,
	#menu_bar03:checked ~ #links03 li,
	#menu_bar04:checked ~ #links04 li,
	#menu_bar05:checked ~ #links05 li,
	#menu_bar06:checked ~ #links06 li{
		max-height: 46px;
		opacity: 1;
	}

	.f_category{pointer-events: all;}
	.f_sub_category{display: none;}


}/* End max-width: 480px*/


.f_sub_category{
	padding-left: 1em;
}


/*
colors.cssより
------------------------------------------------------------------------ */

.lineh1 {background-color: #e8f2cc;}
.lineh2 {background-color: #EBA200;}

.line1 {background-color: #91a9b5;}
.line2 {background-color: #6eb117;}
.line3 {background-color: #bbbbbb;}
.line4 {background-color: #484878;}
.line5 {background-color: #65a215;}
.line6 {background-color: #d5ed00;}


.tc2 {background-color: #eff3f5;}
.tc3 {background-color: #d1e3eb;}
.tc4 {background-color: #cde0ea;}
.tc5 {background-color: #fafcd4;}
.tc6 {background-color: #eefaee;}
.tc7 {background-color: #eef8e5;}
.tc8 {background-color: #a8c671;}
.tc9 {background-color: #8abf00;}
.tc11 {background-color: #f7fac9;}
.tc12 {background-color: #c1b987;}

.rc1 {background-color: #4B8EAE;}
.rc2 {background-color: #CFE2EA;}

.f_right{float:right;
	display:block;}

a.rss-box, a.rss-box:link,
a.rss-box:visited{
	border:1px solid #fff;
	border-radius: 2px;
	background-color:#A10A0D;
	padding:2px 5px;
	font-size:12px;
	color:#FFFFFF;
	text-decoration:none;
	display: inline-block;
	margin-left: 1em;
	vertical-align: middle;
}
a.rss-box:hover{color:#fff;text-decoration:none;}

/* RSS */
.rssbox{
	width: 3em;
	border:1px solid #fff;
	border-radius: 4px;
	background-color:#A10A0D;
	padding:2px 5px;
	font-size:12px;
	color:#FFFFFF;
}
.rssbox span{
 text-align: right;

}
.rssbox,
.rssbox a:link,
.rssbox a:hover,
.rssbox a:visited{
	font-size:12px;
	color:#FFFFFF;
	text-decoration:none;
}
.rssbox:after{
	display: block;
	clear: both;
}

/* ------------------------------------------------------------------------ */

.flexbox2,
.flexbox3,
.flexbox4,
.flexbox5,
.flexbox6,
.flexbox7,
.flexbox8{
	justify-content: center;
 }
.item2,
.item3,
.item4,
.item5,
.item6,
.item7,
.item8{
	border-radius: 5px;
}

.item2 img,
.item3 img,
.item4 img,
.item5 img,
.item6 img,
.item7 img,
.item8 img{
	max-width: 100%;
	border-radius: 4px;
	padding: 5px;
}


@media ( min-width : 600px ){
	.flexbox2,
	.flexbox3,
	.flexbox4,
	.flexbox5,
	.flexbox6,
	.flexbox7,
	.flexbox8{
		justify-content: left;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.item2 a:hover,
	.item3 a:hover,
	.item4 a:hover,
	.item5 a:hover,
	.item6 a:hover,
	.item7 a:hover,
	.item8 a:hover{opacity: 0.6;}

	.item2 {width: calc(98% / 2);margin: 1em 0.5%;}
	.item3 {width: calc(98% / 3);}
	.item4 {width: calc(98% / 4);}
	.item5 {width: calc(98% / 5);}
	.item6 {width: calc(98% / 6);}
	.item7 {width: calc(98% / 7);}
	.item8 {width: calc(98% / 8);}
}
/*
	.item4 {
		border-radius: 5px;
		background: #fefefe;
		border:1px solid #eee;
		padding: 15px;
		margin: 1%;
		text-align: center;
	}
*/
@media ( max-width : 480px ){
	#wrapper{
		margin-top: 0.5vw;
	}
}






.list_box {
	display: flex;
	padding: 20px;
	align-items: flex-start;
}
.list_box:nth-child(even) {
	flex-direction: row-reverse;
}


.list_box img {
	margin: 0 20px 0 0;
}
.list_box:nth-child(even) img {
	margin: 0 0 0 20px;
}
.list_box h3 {
	font-size: 24px;
	margin-bottom: 10px;
}


.issued {
	font-size: 0.8em;
	color: #777777;
	text-align: right;
}

.news_title{
	clear: both;
	padding: 7px;
	font-size: 100%;
	border: none;
	background: #5d8e6b;
	color: #fff;
	margin: 0 0 1em;
}

.disc-list-min {
	margin: 1em 0.3em;
	padding-left: 2em;
}
.disc-list-min li{
	list-style-type: disc;
	margin-bottom: 0.5em;
	text-indent: 0;
}
.number-list {
	margin: 1em;
	padding: 0 1em;
}
.number-list>li{
	list-style-type: decimal;
	text-indent: 0;
	margin: 0.1em 0.5em 0.2em;
}


.sub_txt{
	margin:0.5em 1em;
}

.red{color: #bf1313;}

.newslist{
	line-height: 1.8em;
	padding: 0.5em;
	background: #fdfdfd;
	overflow: hidden;
}
.newslist dt {
    width: 6em;
    float: left;
    margin: 0;
    padding: 0 0 0 5px;
    font-weight: bold;
}
.newslist dd {
	position: relative;
	margin: 0 0 0.3em;
	padding: 0 5px 10px 8em;
	border-bottom: 1px dotted #ccc;
}
.infocategory {
	padding: 0 0.3em;
	text-align: center;
	background-color: #3bacd6;
	color: #fff;
	border-radius: 2px;
	margin-right: 5px;
}

@media screen and (min-width: 641px) {
	.exsearch{
		width: 50%;
		float: right;
	overflow: hidden;
	}
}



/*
form
*/






select{
	padding: 0.4em;
}


input[type="text"]{
	padding: 0.2em 0.3em;
	max-width: 100%;
}

.search_container input[type="text"]{
	border-radius: 2px;
	border: 1px solid #3bacd6;
	padding: 0.3em;
}

.search_container ::-webkit-input-placeholder {
	color: #3bacd6;
}



.exsearch{
	overflow: hidden;
	background: rgba(251, 252, 253, 0.85);
	padding: 0.5em;
	border: 2px solid #dfe8ec;
	border-radius: 4px;
	position: -webkit-sticky;
	position: sticky;
	top: 50px;
	margin-bottom: 1em;
}
.exsearch>.ex_box>form>div{
margin-bottom: 0.5em;
}
.exsearch>.ex_box>form>div.form_parts{
	margin: 0.5em 0.3em;
	float: left;
}
.exsearch>.ex_box>form>div input[type="text"] {
    margin: 1em;
    border-radius: 2px;
    border: 1px solid #3bacd6;
    padding: 0.3em;
}
.exsearch>.ex_box>form>div input[type="image"] {
    margin: 0.2em;
}

.exsearch>.ex_box>form>div ::-webkit-input-placeholder {
	color: #3bacd6;
}

.dic_search input[type="text"],
.search_container input[type="text"]{
	border-radius: 2px;
	border: 1px solid #3bacd6;
	padding: 0.5em 0.3em;
}

.dic_search ::-webkit-input-placeholder,
.search_container ::-webkit-input-placeholder {
	color: #3bacd6;
}
.dic_search{
	background: #3bacd6;
	border-radius: 4px;
	padding: 1em;
	margin: 2em;
}

.searchbox{
	float: right;
    border: 3px solid #3bacd5;
    border-radius: 6px;
    width: 11em;
    padding: 0.2em;
    text-align: center;
    margin: 0.5vw;
    font-size: 0.85em;
}
.form_btn{
	margin: 0.5em ;
	clear: left;
}

.form_btn li{
	float: left;
	padding: 2px 6px;
	border-radius: 3px;
	background: #79b0cc;
	margin: 1em 0.5em ;
}

@media screen and (min-width: 641px) {
	.ex_box{
		width: calc(100% - 12em);
		float: left;
	}
}



/* library_newlist */
.lib_ind {margin: auto; }
.lib_ind > div{
	display: inline-block;
	border-radius: 5px;
	line-height: 1.3;
	padding: 0.5em 1em;
	width: calc(93%/3);
	background: #fff;
	vertical-align: top;
	margin: 1%;
}

.lib_ind > div:last-child{margin-right: 0;}

@media only screen and (max-width: 640px) {
	.lib_ind{
		display: block;
	}
	.lib_ind > div{
		width: 95%;
		display: block;
		margin: 0.5em auto;
	}
}


/* Google Custom search */

.gsc-search-button-v2, .gsc-search-button-v2:hover, .gsc-search-button-v2:focus {
    border-color: #3bacd6 !important;
    background-color: #3bacd6 !important;
    background-image: none;
    filter: none;
}
input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus {
    border-color: #3bacd6 !important;
	    border-radius: 2px;
}

table.gsc-search-box{
    float: right;
    clear: right;
    margin-top: 5px;
	width: 280px !important;
	height: 20px;
}

.gsc-input-box {
    border: 1px solid #3bacd6 !important;
    background: #fff;
}

input#gsc-i-id1.gsc-input{

}
form table td#gs_tti50 {
	margin: 0!important;
	padding: 5px!important;
}

form table td {
    width: 60%;
    padding: 0!important;
}

