@charset "utf-8";
/* CSS Document */

body {
	font-size: 14px;
	line-height: 1.8;
	color: #333;
	font-family: 'Noto Sans JP',sans-serif,'hiragino kaku gothic pro', meiryo, 'ms pgothic', 'Font Awesome 5 Free';
	background: #fffff8;
}

a {
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}

p {
	width: 100%;
	line-height: 1.8;
}

li:hover,
a:hover,
a:hover:before,
a:hover:after {
	text-decoration: none;
}

li {
	list-style: none;
	font-size: 1rem;
}

ul.discList {
	width: 100%;
	margin: 0 0 20px 0;
	box-sizing: border-box;
}

ul.discList li {
	width: 100%;
	margin: 0 0 3px 0;
	line-height: 1.6;
	list-style: disc;
	list-style-position: inside;
	text-indent: -1em;
	padding-left: 2em;
	box-sizing: border-box;
}

_:lang(x)::-internal-media-controls-overlay-cast-button, ul.discList li {
	text-indent: -1.5em;
}

figure {
	width: 100%;
	margin: 0 0 30px 0;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

figure img {
	line-height: 1;
	vertical-align: bottom;
}

ol {
	width: 100%;
	margin: 0 0 30px 0;
	padding: 0 0 0 1.5rem;
}

ol li {
	margin: 0 0 5px 0;
	list-style-type: decimal;
	line-height: 1.4;
}

table {
	width: 100%;
	margin: 0 0 30px 0;
	border-top: solid 3px #127400;
	border-bottom: solid 3px #127400;
}

table th {
	padding: 5px 10px;
	border-bottom: solid 1px #127400;
	vertical-align: middle;
	font-size: 1rem;
}

table td {
	padding: 3px 10px;
	border-bottom: solid 1px #127400;
	text-align: center;
	vertical-align: middle;
	font-size: 1rem;
}

table.borderTable {
	margin: 0 0 15px 0;
	border: solid 2px #dfdfdf;
}

table.borderTable th {
	background: #eefaff;
	text-align: center;
	border: solid 1px #dfdfdf;
}

table.borderTable td {
	border: solid 1px #dfdfdf;
	text-align: left;
}

/*---------------------ヘッダー設定---------------------*/

header {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

header nav {
	width: 100%;
	position: fixed;
	top: 0;
	background: #fff;
	z-index: 10000;
	border-bottom: solid 1px #dfdfdf;
}

header nav ul.gNav {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

header nav ul.gNav li {
	width: auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

header nav ul.gNav li a {
	width: 100%;
	padding: 8px 15px;
	font-size: 1rem;
	font-weight: 500;
}

header nav ul.gNav li a.current,
header nav ul.gNav li a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
	color: #127000;
}

header .topImg {
	width: 100%;
	position: relative;
}

header .topImg figure {
	width: 100%;
	height: 500px;
	margin: 0;
}

header .topImg figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content header .topImg figure {
	height: 250px;
}

.content header .topImg h1 {
	height: 100%;
	max-height: 250px;
	top: auto;
	bottom: 0;
	left: 0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}

.content header .topImg h1 a {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}

header .topImg h1 {
	width: 100%;
	padding: 20px 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background: rgba(255,255,255,0.8);
	text-align: center;
	box-shadow: 0px 0px 5px #cfcfcf;
}

header .topImg h1 span {
	width: 100%;
	max-width: 1000px;
	display: inline-block;
	line-height: 1.4;
}

header .topImg h1 span.subTitle {
	margin: 0 0 10px 0;
	font-size: 1.4rem;
}

header .topImg h1 span.mainTitle {
	font-size: 1.8rem;
}

/*---------------------コンテンツ設定---------------------*/

main {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

main section {
	width: 100%;
	padding: 60px 0;
	text-align: center;
	border-bottom: solid 1px #dfdfdf;
}

main section:last-child {
	margin: 0 0 200px 0;
}

main section h2 {
	width: 100%;
	margin: 0 0 20px 0;
	font-size: 1.6rem;
	color: #127400;
	position: relative;
}

main section h2:after {
	content: '';
	width: 200px;
	height: 3px;
	display: inline-block;
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-image: -webkit-linear-gradient(left, transparent, #127400 40%, #127400 60%, transparent);
	background-image: linear-gradient(to right, transparent, #127400 40%, #127400 60%, transparent);
}

main section h3 {
	width: 100%;
	margin: 0 0 20px 0;
	padding: 7px 12px;
	text-align: left;
	font-size: 1.2rem;
	font-weight: 500;
	background-color: #127400;
	color: #fff;
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	text-shadow: 1px 1px 2px #333;
}

main section h3:before {
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.3;
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -280px;
	width: 500px;
	height: 500px;
}

main section h3:after {
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.3;
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -450px;
	width: 500px;
	height: 500px;
}

main section p {
	width: 100%;
	margin: 0 0 30px 0;;
	text-align: left;
	display: inline-block;
	font-size: 1rem;
}

main section p:last-of-type {
	margin: 0 0 60px 0;
}

.linkBtn {
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
}

.linkBtn a {
	width: 100%;
	padding: 8px 10px;
	display: flex;
	justify-content: center;
	color: #127400;
	font-size: 1rem;
	font-weight: bold;
	background: #eaffe6;
	border-radius: 5px;
	border: solid 2px #127400;
}

.linkBtn a:hover {
	color: #fff;
	background: #1fa94f;
	text-shadow: 0 0 2px #127400;
}

ul.newsList {
	width: 100%;
	margin: 0 0 60px 0;
}

ul.newsList li {
	width: 100%;
	padding: 15px 10px;
	display: flex;
	flex-wrap: wrap;
	border-bottom: dashed 1px #bdbdbd;
}

ul.newsList li:first-child {
	border-top: solid 1px #999;
}

ul.newsList li:last-child {
	border-bottom: solid 1px #999;
}

ul.newsList li a {
	width: 100%;
}

ul.newsList li p {
	margin: 0;
}

ul.newsList li time {
	width: 7rem;
	font-size: 1rem;
}

ul.newsList li time + p {
	width: calc(100% - 7rem);
}

ul.newsList li time + p a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

ul.newsList li time + p a:before {
	padding: 0 5px 0 0;
	content: '\f0da';
	font-weight: 900;
	color: #127400;
	display: inline-block;
}

ul.newsList li time + p a:after {
	content: none;
}

.breadcrumbs {
	width: 100%;
	margin: 0 0 30px 0;
	padding: 10px 0;
	font-size: 0.9rem;
	border-bottom: dashed 1px #cdcdcd;
}

.breadcrumbs ul {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
}

.breadcrumbs ul li {
	margin: 0 5px 0 0;
}

.breadcrumbs ul li a:hover {
	text-decoration: underline;
}

.breadcrumbs ul li:nth-child(n + 2):before {
	margin-right: 5px;
	content: '>';
	color: #333;
}

.breadcrumbs .home:before {
	margin-right: 5px;
	content: '\f015';
	font-weight: 900;
	display: inline-block;
	color: #333;
}

div.conWrap {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 50px;
}

div.conWrap h2 {
	width: 100%;
	margin: 0 0 30px 0;
	font-size: 1.6rem;
	color: #127400;
	position: relative;
	text-align: center;
}

div.conWrap h2:after {
	content: '';
	width: 200px;
	height: 3px;
	display: inline-block;
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-image: -webkit-linear-gradient(left, transparent, #127400 40%, #127400 60%, transparent);
	background-image: linear-gradient(to right, transparent, #127400 40%, #127400 60%, transparent);
}

div.conWrap h3 {
	width: 100%;
	margin: 0 0 20px 0;
	padding: 7px 15px;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: left;
	background-color: #127400;
	color: #fff;
	overflow: hidden;
	position: relative;
	border-radius: 5px;
	text-shadow: 1px 1px 2px #333;
}

div.conWrap h3:before {
	width: 500px;
	height: 500px;
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.3;
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -230px;
}

div.conWrap h3:after {
	width: 500px;
	height: 500px;
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.3;
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -400px;
}

div.conWrap h3:nth-of-type(2n):before {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	transform: rotate(145deg);
	bottom: -250px;
	right: auto;
	left: -170px;
}

div.conWrap h3:nth-of-type(2n):after {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	transform: rotate(45deg);
	bottom: -100px;
	right: auto;
	left: -100px;
}

div.conWrap h3:nth-of-type(3n):before {
	width: 300px;
	bottom: -200px;
	right: -100px;
}

div.conWrap h3:nth-of-type(3n):after {
	bottom: -100px;
	right: -320px;
}

div.conWrap h3:nth-of-type(4n):before {
	width: 180px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	transform: rotate(145deg);
	right: auto;
	left: 0;
	bottom: -250px;
}

div.conWrap h3:nth-of-type(4n):after {
	width: 250px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	transform: rotate(45deg);
	bottom: -100px;
	right: auto;
	left: 0;
}

div.conWrap h4 {
	width: 100%;
	margin: 0 0 20px 0;
	padding: 0 10px 10px 10px;
	text-align: left;
	font-size: 1.3rem;
	color: #127400;
}

div.conWrap h4 {
	position: relative;
}

div.conWrap h4:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	content: '';
	background-image: -webkit-repeating-linear-gradient(135deg, #127400, #127400 1px, transparent 2px, transparent 5px);
	background-image: repeating-linear-gradient(-45deg, #127400, #127400 1px, transparent 2px, transparent 5px);
	background-size: 7px 7px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

div.conWrap h5 {
	width: 100%;
	margin: 0 0 20px 0;
	text-align: left;
	font-size: 1.2rem;
	color: #127400;
}

div.conWrap h5:before {
	margin-right: 5px;
	content: '\f009';
	font-weight: 900;
	display: inline-block;
	color: #127400;
}

div.conWrap p + h2,
div.conWrap p + h3,
div.conWrap p + h4,
div.conWrap p + h5,
div.conWrap ul + h2,
div.conWrap ul + h3,
div.conWrap ul + h4,
div.conWrap ul + h5,
div.conWrap table + h2,
div.conWrap table + h3,
div.conWrap table + h4,
div.conWrap table + h5 {
	margin: 50px 0 20px 0;
}

div.conWrap p {
	width: 100%;
	margin: 0 0 30px 0;
	font-size: 1rem;
}

div.conWrap .questionnaireWrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 15px 30px;
	background: #fff5e2;
	border-radius: 10px;
}

div.conWrap .questionnaireWrap h3 {
	margin: 0 0 15px 0;
	padding: 5px 0 0 0;
	background: none;
	text-shadow: none;
	text-align: center;
	color: #333;
	font-size: 1.4rem;
	font-weight: bold;
}

div.conWrap .questionnaireWrap h3:before,
div.conWrap .questionnaireWrap h3:after {
	content: none;
}

div.conWrap .questionnaireWrap p {
	margin: 0 0 10px 0;
	font-size: 0.9rem;
}

div.conWrap .questionnaireWrap .contact__list {
	width: 100%;
	margin: 30px 0 20px 0;
	padding: 15px;
	background: #fff;
	border-radius: 5px;
}

div.conWrap .questionnaireWrap .contact__item {
	width: 100%;
	margin: 0 0 20px 0;
}

div.conWrap .questionnaireWrap .contact__item > label {
	width: 100%;
	margin: 0 0 5px 0;
	display: inline-block;
	font-size: 1rem;
	font-weight: bold;
}

div.conWrap .questionnaireWrap .contact__item div {
	width: 100%;
	margin: 0 0 5px 0;
	font-size: 1rem;
	display: inline-block;
}

div.conWrap .questionnaireWrap .contact__item div label {
	
}

div.conWrap .questionnaireWrap .contact__item div input[type=checkbox] {
	margin: 0 15px 0 5px;
	transform: scale(1.5);
}

div.conWrap .questionnaireWrap .contact__item div.others {
	display: flex;
	flex-wrap: wrap;
}

/*div.conWrap .questionnaireWrap .contact__item div.others span {
	width: 4.5rem;
}

div.conWrap .questionnaireWrap .contact__item div.others input {
	width: calc(100% - 4.5rem);
	padding: 3px 5px;
	border: 1px solid #999;
	box-sizing: border-box;
	background: #f2f2f2;
	display: inline-block;
}*/

div.conWrap .questionnaireWrap .submit-btn,
.skipBtn {
	width: 100%;
	max-width: 200px;
	margin: 30px auto 0;
}

div.conWrap .questionnaireWrap .submit-btn {
	max-width: 300px;
	margin: 30px auto 15px;
}

div.conWrap .questionnaireWrap .submit-btn input,
.skipBtn a {
	width: 100%;
	padding: 8px 5px;
	display: flex;
	justify-content: center;
	border: solid 1px #ccc;
	background: #fff;
	transition: 0.3s;
}

div.conWrap .questionnaireWrap .submit-btn input {
	padding: 15px 5px;
	font-weight: bold;
	font-size: 1rem;
	color: #fff;
	background: #127400;
	font-family: 'Noto Sans JP',sans-serif,'hiragino kaku gothic pro', meiryo, 'ms pgothic', 'Font Awesome 5 Free';
	letter-spacing: 2px;
}

div.conWrap .questionnaireWrap .submit-btn input:hover,
.skipBtn a:hover {
	background: #f1ffee;
}

div.conWrap .questionnaireWrap .submit-btn input:hover {
	color: #127400;
}

div.conWrap .questionnaireWrap .submit-btn input {
	cursor: pointer;
}

div.conWrap figure.img2column,
div.conWrap figure.img3column {
	width: 100%;
	margin: 0 0 30px 0;
	display: flex;
	flex-wrap: wrap;
}

div.conWrap figure.img2column img {
	width: calc(50% - 15px);
	max-height: 280px;
	margin: 0 30px 0 0;
	border: solid 1px #ebebeb;
	line-height: 1;
	vertical-align: bottom;
	object-fit: cover;
}

div.conWrap figure.img2column img:nth-child(2n) {
	margin: 0;
}

div.conWrap figure.img3column a {
	width: calc(33.3% - 12px);
	margin: 0 18px 18px 0;
}

div.conWrap figure.img3column a:nth-child(3n) {
	width: calc(33.4% - 12px);
	margin: 0 0 18px 0;
}

div.conWrap figure.img3column a img {
	width: 100%;
	max-height: 250px;
	border: solid 1px #ebebeb;
	line-height: 1;
	vertical-align: bottom;
	object-fit: contain;
}

div.conWrap ul.linkList1column,
div.conWrap ul.linkList2column,
div.conWrap ul.linkList3column,
div.conWrap ul.linkList4column {
	width: 100%;
	margin: 0 0 30px 0;
	display: flex;
	flex-wrap: wrap;
}

div.conWrap ul.linkList1column li,
div.conWrap ul.linkList2column li,
div.conWrap ul.linkList3column li,
div.conWrap ul.linkList4column li {
	width: calc(50% - 10px);
	margin: 0 20px 15px 0;
	display: flex;
}

div.conWrap ul.linkList1column li {
	width: 100%;
	margin: 0 0 20px 0;
}

div.conWrap ul.linkList3column li {
	width: calc(33.3% - 13px);
}

div.conWrap ul.linkList4column li {
	width: calc(25% - 15px);
}

div.conWrap ul.linkList2column li:nth-child(2n),
div.conWrap ul.linkList3column li:nth-child(3n),
div.conWrap ul.linkList4column li:nth-child(4n) {
	margin: 0 0 15px 0;
}

div.conWrap ul.linkList3column li:nth-child(3n) {
	width: calc(33.4% - 14px);
}

div.conWrap ul.linkList1column li a,
div.conWrap ul.linkList2column li a,
div.conWrap ul.linkList3column li a,
div.conWrap ul.linkList4column li a {
	width: 100%;
	padding: 8px 15px;
	border: solid 1px #999;
	color: #127400;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
}

div.conWrap ul.linkList1column li a:hover,
div.conWrap ul.linkList2column li a:hover,
div.conWrap ul.linkList3column li a:hover,
div.conWrap ul.linkList4column li a:hover {
	color: #fff;
	background: #127400;
}

div.conWrap ul.linkList1column li a:before,
div.conWrap ul.linkList2column li a:before,
div.conWrap ul.linkList3column li a:before,
div.conWrap ul.linkList4column li a:before,
div.conWrap ul.linkList1column li a:after,
div.conWrap ul.linkList2column li a:after,
div.conWrap ul.linkList3column li a:after,
div.conWrap ul.linkList4column li a:after {
	color: #127400;
	transition: 0.3s;
}

div.conWrap ul.linkList1column li a:hover:after,
div.conWrap ul.linkList2column li a:hover:after,
div.conWrap ul.linkList3column li a:hover:after,
div.conWrap ul.linkList4column li a:hover:after,
div.conWrap ul.linkList1column li a.directLink:hover:after,
div.conWrap ul.linkList2column li a.directLink:hover:after,
div.conWrap ul.linkList3column li a.directLink:hover:after,
div.conWrap ul.linkList4column li a.directLink:hover:after {
	color: #fff;
}

footer {
	width: 100%;
	padding: 40px 0;
	background: #002607;
}

.content footer {
	margin: 200px 0 0 0;
}

footer .footer {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

footer .footer ul.footerNav {
	width: 100%;
	margin: 0 0 30px 0;
}

footer .footer ul.footerNav li {
	width: 100%;
	text-align: center;
}

footer .footer ul.footerNav li a {
	width: 100%;
	color: #fff;
	font-size: 1rem;
}

footer .footer ul.footerNav li a:before {
	padding: 0 5px 0 0;
	content: '\f0da';
	font-weight: 900;
	color: #fff;
	display: inline-block;
}

footer .footer ul.footerNav li a:hover {
	text-decoration: underline;
}

footer .footer h1 {
	width: 100%;
	margin: 0 0 30px 0;
	text-align: center;
	text-shadow: 1px 1px 2px #333;
	font-weight: 500;
}

footer .footer h1 span {
	width: 100%;
	color: #fff;
	display: inline-block;
	line-height: 1.4;
}

footer .footer h1 span.subTitle {
	font-size: 1.1rem;
	margin: 0 0 5px 0;
}

footer .footer h1 span.mainTitle {
	font-size: 1.4rem;
}

footer .footer p.artifact,
footer .footer p.copyRight {
	width: 100%;
	text-align: center;
	font-size: 0.8em;
	color: #fff;
}

footer .footer p.artifact {
	margin: 0 0 20px 0;
}

@media screen and (max-width:768px) {
	
	.btn-gnavi {
		padding: 10px;
		position: fixed;
		top: 20px;
		right: 20px;
		width: 50px;
		height: 44px;
		z-index: 10001;
		box-sizing: border-box;
		cursor: pointer;
		-webkit-transition: all 400ms;
		transition: all 400ms;
		background: rgba(255,255,255,0.8);
	}
	
	.btn-gnavi span {
		position: absolute;
		width: 30px;
		height: 4px;
		right: 9px;
		background: #666;
		-webkit-transition: all 400ms;
		transition: all 400ms;
		z-index: 10002;
	}
	
	.btn-gnavi.open {
		width: 300px;
		height: 25px;
		padding: 20px 20px 40px;
		background: #127400;
		border-bottom: solid 1px #fff;
		top: 0px;
		right: 0;
	}
	
	.btn-gnavi span:nth-child(1) {
		top: 10px;
	}

	.btn-gnavi span:nth-child(2) {
		top: 20px;
	}
	
	.btn-gnavi span:nth-child(3) {
		top: 30px;
	}
	
	div.open span {
		background: #fff!important;
	}
	
	div.open span:nth-child(1) {
		transform: translateY(10px) rotate(-45deg);
		-webkit-transform: translateY(10px) rotate(-45deg);
		top: 10px!important;
	}
	
	div.open span:nth-child(2) {
		display: none;
	}
	
	div.open span:nth-child(3) {
		transform: translateY(-10px) rotate(45deg);
		-webkit-transform: translateY(-10px) rotate(45deg);
		top: 30px!important;
	}
	
	header nav ul.gNav {
		width: 300px;
		height: 100%;
		margin: 0;
		padding: 0;
		display: block;
		position: fixed;
		top: 60px;
		right: -500px;
		z-index: 10000;
		overflow-y: auto;
		background: rgba(0,0,0,0.2);
		-webkit-transition: all 0.01s;
		transition: all 0.01s;
	}
	
	header nav ul.gNav li {
		width: 100%;
	}
	
	header nav ul.gNav li a {
		padding: 10px 15px;
		background: #fff;
		border-bottom: solid 1px #127400;
	}
	
	header nav ul.gNav li:last-child a {
		border: none;
	}
	
	header nav ul.gNav li a.current,
	header nav ul.gNav li a:hover {
		text-decoration: none;
		background: #127400;
		color: #fff;
	}
	
	.scroll table {
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	
	header .topImg figure {
		height: 250px;
	}
	
	header .topImg h1 {
		height: 100%;
		max-height: inherit;
		top: auto;
		bottom: 0;
		left: 0;
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		display: flex;
		flex-wrap: wrap;
		align-content: center;
	}
	
	header .topImg h1 span.subTitle {
		font-size: 1.2rem;
	}
	
	header .topImg h1 span.mainTitle {
		font-size: 1.5rem;
	}
	
	main section h2 {
		font-size: 1.4rem;
	}
	
	main section h3 {
		font-size: 1rem;
	}
	
	main section p {
		font-size: 0.9rem;
	}
	
	.breadcrumbs ul li {
		font-size: 0.9rem;
	}
	
	div.conWrap ul.linkList3column li,
	div.conWrap ul.linkList3column li:nth-child(3n) {
		width: calc(50% - 10px);
	}
	
	div.conWrap ul.linkList3column li:nth-child(3n) {
		margin: 0 20px 15px 0;
	}
	
	div.conWrap ul.linkList4column li {
		width: calc(50% - 10px);
	}
	
	div.conWrap ul.linkList4column li:nth-child(4n) {
		margin: 0 20px 15px 0;
	}
	
	div.conWrap ul.linkList3column li:nth-child(2n),
	div.conWrap ul.linkList4column li:nth-child(2n) {
		margin: 0 0 15px 0;
	}
	
	div.conWrap .questionnaireWrap {
		padding: 8px 15px;
	}
	
	div.conWrap .questionnaireWrap h3 {
		font-size: 1.1rem;
	}
	
	div.conWrap .questionnaireWrap .contact__item > label {
		font-size: 0.9rem;
	}
	
	div.conWrap .questionnaireWrap .contact__item div {
		font-size: 0.8rem;
	}
	
	div.conWrap .questionnaireWrap .contact__item textarea {
		width: 100%;
	}
}

@media screen and (max-width:500px) {
	
	header .topImg figure,
	.content header .topImg figure {
		height: 150px;
	}
	
	header .topImg h1 {
		padding: 0 15px;
		text-align: left;
	}
	
	header .topImg h1 span.subTitle {
		font-size: 0.9rem;
		margin: 0 0 5px 0;
	}
	
	header .topImg h1 span.mainTitle {
		font-size: 1rem;
	}
	
	main {
		padding: 0 15px;
	}
	
	ul.newsList li time {
		width: 100%;
		margin: 0;
		text-align: left;
	}
	
	ul.newsList li time + p {
		width: 100%;
	}
	
	div.conWrap h2 {
		font-size: 1.3rem;
	}
	
	div.conWrap h3 {
		font-size: 1.2rem;
		font-weight: bold;
	}
	
	div.conWrap h4,
	div.conWrap h5 {
		font-size: 1.1rem;
	}
	
	div.conWrap p {
		font-size: 0.9rem;
		line-height: 1.6;
	}
	
	.breadcrumbs ul {
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.breadcrumbs ul {
		word-break: keep-all;
		white-space: nowrap;
	}
	
	.btn-gnavi {
		top: 15px;
		right: 10px;
	}
	
	.btn-gnavi.open {
		width: 100%;
	}
	
	header nav ul.gNav {
		width: 100%;
	}
	
	div.conWrap ul.linkList2column li,
	div.conWrap ul.linkList3column li,
	div.conWrap ul.linkList3column li:nth-child(2n),
	div.conWrap ul.linkList3column li:nth-child(3n),
	div.conWrap ul.linkList4column li {
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	div.conWrap figure.img2column img,
	div.conWrap figure.img3column img:nth-child(3n),
	div.conWrap figure.img3column img,
	div.conWrap figure.img3column a:nth-child(3n),
	div.conWrap figure.img3column a {
		width: calc(50% - 6px);
		margin: 0 12px 15px 0;
	}
	
	div.conWrap figure.img2column img {
		margin: 0 12px 0 0;
	}
	
	div.conWrap figure.img3column img:nth-child(2n),
	div.conWrap figure.img3column a:nth-child(2n) {
		margin: 0 0 15px 0;
	}
	
	footer .footer {
		padding: 0 15px;
	}
	
	footer .footer h1 span.subTitle {
		font-size: 0.9rem;
	}
	
	footer .footer h1 span.mainTitle {
		font-size: 1rem;
	}
	
}

/*---------------------ページトップボタン設定---------------------*/

#pageTop {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 0;
	bottom: -50px;
	z-index: 100;
}

#pageTop a {
	width: 50px;
	height: 50px;
	position: relative;
	display: block;
	background: #127400;
	text-decoration: none;
	opacity: 0.7;
}

#pageTop a:hover {
	opacity: 1;
}

#pageTop a:before {
	width: 25px;
	height: 45px;
	margin: auto;
	font-weight: 900;
	content: '\f106';
	font-size: 25px;
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	text-align: center;
}

/*---------------------共通設定---------------------*/

a.linkIcon:before,
.linkIconList a:before,
.linkList li a:before,
.linkList a li:before {
	margin-right: 5px;
	content: '\f0da';
	font-weight: 900;
	color: #333;
	display: inline-block;
}

a.directLink:after,
a[href$=".pdf"]:after,
a[href$=".doc"]:after,
a[href$=".docx"]:after,
a[href$=".xls"]:after,
a[href$=".xlsx"]:after,
a[href$=".ppt"]:after,
a[href$=".pptx"]:after {
	padding:0 5px;
	font-weight: 900;
	color: #333;
	display: inline-block;
}

a.directLink:after {
	content: '\f2d2';
}

a[href$=".pdf"]:after {
	content: '\f1c1';
}

a[href$=".doc"]:after,
a[href$=".docx"]:after {
	content: '\f1c2';
}

a[href$=".xls"]:after,
a[href$=".xlsx"]:after {
	content: '\f1c3';
}

a[href$=".ppt"]:after,
a[href$=".pptx"]:after {
	content: '\f1c4';
}

.linkIcon:hover:before,
.linkIconList a:hover:before,
.linkList li a:hover:before,
.directLink:hover:after,
a[href$=".pdf"]:hover:after,
a[href$=".doc"]:hover:after,
a[href$=".docx"]:hover:after,
a[href$=".xls"]:hover:after,
a[href$=".xlsx"]:hover:after,
a[href$=".ppt"]:hover:after,
a[href$=".pptx"]:hover:after {
	color: #333;
}

.linkIcon:hover {
	text-decoration: underline;
	text-underline-offset: 1px;
}

.noIcon:after {
	content: none!important;
}

.l:after,
.swiper-slide a::after {
	display: none;
}

.txtUline,
.a_txtUline {
	text-decoration: underline;
}

.txtGreen {
	color: #127400;
}

.talR,
.a_talR {
	text-align: right !important;
}
.talL,
.a_talL {
	text-align: left!important;
}
.talC,
.a_talC {
	text-align: center!important;
}

.mrgnT0,
.a_mrgnT0 {
	margin-top: 0px!important;
}
.mrgnB0,
.a_mrgnB0 {
	margin-bottom: 0px!important;
	margin-top: 0px;
}
.mrgnL0,
.a_mrgnL0 {
	margin-left: 0px!important;
}
.mrgnR0,
.a_mrgnR0 {
	margin-right: 0px!important;
}
.mrgnB5,
.a_mrgnB5 {
	margin-bottom: 5px!important;
}

.mrgnL5,
.a_mrgnL5 {
	margin-left: 5px!important;
}

.mrgnT10,
.a_mrgnT10 {
	margin-top: 10px!important;
}
.mrgnB10,
.a_mrgnB10 {
	margin-bottom: 10px!important;
}
.mrgnL10,
.a_mrgnL10 {
	margin-left: 10px!important;
}
.mrgnR10,
.a_mrgnR10 {
	margin-right: 10px!important;
}
.mrgnL15,
.a_mrgnL15 {
	margin-left: 15px!important;
}
.mrgnT20,
.a_mrgnT20 {
	margin-top: 20px!important;
}
.mrgnB20,
.a_mrgnB20 {
	margin-bottom: 20px!important;
}
.mrgnL20,
.a_mrgnL20 {
	margin-left: 20px!important;
}
.mrgnL30,
.a_mrgnL30 {
	margin-left: 30px!important;
}
.mrgnB30,
.a_mrgnB30 {
	margin-bottom: 30px!important;
}
.mrgnB40,
.a_mrgnB40 {
	margin-bottom: 40px!important;
}
.mrgnB50,
.a_mrgnB50 {
	margin-bottom: 50px!important;
}
.mrgnB80,
.a_mrgnB80 {
	margin-bottom: 80px!important;
}

.mrgn0pdng0,
.a_mrgn0pdng0 {
	margin: 0;
	padding: 0;
}
.mrgnR20,
.a_mrgnR20 {
	margin-right: 20px!important;
}
.mrgnT30,
.a_mrgnT30 {
	margin-top: 30px!important;
}
.padB0,
.a_padB0 {
	padding-bottom:0 !important;
}

.padT0,
.a_padT0 {
	padding-top:0 !important;
}

.padL0,
.a_padL0 {
	padding-left:0 !important;
}

.padR0,
.a_padR0 {
	padding-right:0 !important;
}

.type11,
.a_type11 {
	font-size: 78%;
}

.font12,
.a_font12 {
	font-size: 12px!important;
}

.font14,
.a_font14 {
	font-size: 14px!important;
}

.font16,
.a_font16 {
	font-size: 16px!important;
}

.font18,
.a_font18 {
	font-size: 18px!important;
}

.font20,
.a_font20 {
	font-size: 20px!important;
}

.font22,
.a_font22 {
	font-size: 22px!important;
}

.font24,
.a_font24 {
	font-size: 24px!important;
}

.font26,
.a_font26 {
	font-size: 26px!important;
}

.font28,
.a_font28 {
	font-size: 28px!important;
}

.font30,
.a_font30 {
	font-size: 30px!important;
}

.w30p {
	width: 30%!important;
}

.w65p {
	width: 65%!important;
}

.mw120 {
	width: 100%;
	max-width: 120px!important;
}

.floatR {
	float: right;
}

.floatL {
	float: left;
}