@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400&display=swap');
@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}


/*************************************************

 wrapper

*************************************************/
#wrapper {
	overflow: hidden;
	color: #414141;
	font-size: 15px;
	line-height: 1.7;
	text-align: left;
}
#wrapper * {
	word-break: normal;
}
.wrap {
	max-width: 1110px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

@media only screen and (max-width:767px) {
	#wrapper {
		font-size: 12px;
	}
}



/*************************************************

 header

*************************************************/
#header {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 50%;
	max-width: 1110px;
	width: calc(100% - 20px);
	transform: translateX(-50%);
	background-color: #fff;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	z-index: 100;
}
#header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .sitelogo {
	padding: 20px;
	line-height: 0;
}
#header .sitelogo a {
	display: block;
}
@media only screen and (max-width:767px) {
	#header {
	}
	#header .inner {
		display: block;
	}
	#header .sitelogo {
		position: relative;
		padding: 0 15px;
		/*background-color: #fff;*/
		z-index: 90;
	}
	#header .sitelogo span {
		display: table;
		height: 50px;
	}
	#header .sitelogo a {
		display: table-cell;
		vertical-align: middle;
	}
	#header .sitelogo img {
		width: 50px;
	}
}





/*************************************************

 gNav

*************************************************/
#gNav {
	padding: 10px 15px 12px;
}
@media only screen and (max-width:767px) {
	#gNav {
		overflow-y: auto;
		position: fixed;
		top: 0;
		right: -10px;
		width: 228px;
		height: 100vh;
		padding: 0;
		z-index: 120;
		background-color: #414141;
		transform: translateX(100%);
		-webkit-overflow-scrolling: touch;
	}
	#gNav.ready {
		transition: transform 0.4s;
	}
	#gNav.on {
		transform: translateX(0);
	}
	#gNav .gnavInner {
		display: block;
		padding: 20px 0 40px;
		color: #fff;
	}
}


/* others
-----------------------------------*/
#gNav .others {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#gNav .others > * + * {
	margin-left: 35px;
}
#gNav .others a {
	display: block;
	color: #414141;
	font-size: 12px;
	text-decoration: none;
}
#gNav .others .lang {
	display: flex;
}
#gNav .others .lang li + li {
	margin-left: 13px;
}
#gNav .others .lang a {
	position: relative;
}
#gNav .others .lang a.on:before {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #99B1A8;
}
#gNav .others .lang a.on:after {
	position: absolute;
	top: 100%;
	left: 50%;
	display: block;
	content: '';
	margin-top: 2px;
	border-width: 3px 3px 0 3px;
	border-style: solid;
	border-color: #99B1A8 transparent transparent transparent;
	transform: translateX(-50%);
}
#gNav .others .gl a {
	position: relative;
	padding-left: 28px;
}
#gNav .others .gl a:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../images/common/ico_global.svg) no-repeat center center / contain;
	transform: translateY(-50%);
}
#gNav .others .contact a {
	position: relative;
	padding-left: 28px;
}
#gNav .others .contact a:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 20px;
	height: 14px;
	background: url(../images/common/ico_mail.svg) no-repeat center center / contain;
	transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
	#gNav .others {
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
	}
	#gNav .others > * + * {
		margin-left: 0;
	}
	#gNav .others .lang {
		width: 100%;
		margin-bottom: 20px;
		justify-content: center;
	}
	#gNav .others .gl,
	#gNav .others .contact {
		display: none;
	}
	#gNav .others .lang li + li {
		position: relative;
		padding-left: 13px;
	}
	#gNav .others .lang li + li:before {
		position: absolute;
		top: 5px;
		left: 0;
		display: block;
		content: '';
		width: 1px;
		height: 12px;
		background-color: #fff;
	}
	#gNav .others .lang a {
		color: #fff;
	}
}

#gNav .others .search {
	box-sizing: border-box;
	position: relative;
	width: 140px;
}
#gNav .others .search form {
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	padding-right: 27px;
	border-radius: 20px;
}
#gNav .others .search input {
	box-sizing: border-box;
	display: block;
	margin: 0;
	padding: 0 27px 0 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#gNav .others .search input[type="text"] {
	box-sizing: border-box;
	width: 100%;
	padding: 4px 10px;
	font-size: 12px;
	background-color: #F4F4F4;
}
#gNav .others .search input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	width: 27px;
	height: 100%;
	background:#009B64 url(../images/common/ico_lens.png) no-repeat center center / 13px auto;
	text-indent: -9999px;
	cursor: pointer;
}
@media only screen and (max-width:767px) {
	#gNav .others .search {
		width: 100%;
		margin: 0 0 20px;
	}
	#gNav .others .search form {
		max-width: 190px;
	}
	#gNav .others .search input[type="text"] {
		padding: 5px 15px;
		font-size: 14px;
		background-color: #fff;
	}
}


/* mainNavs
-----------------------------------*/
#gNav .mainNavs {
	margin-top: 15px;
}
#gNav .mainNavs > ul {
	display: flex;
	line-height: 1.4;
}
#gNav .mainNavs > ul > li {
	position: relative;
}
#gNav .mainNavs > ul > li + li {
	margin-left: 30px;
}
#gNav .mainNavs > ul > li > a,
#gNav .mainNavs > ul > li > div > a {
	position: relative;
	display: block;
	padding-right: 15px;
	color: #414141;
	font-size: 16px;
	text-decoration: none;
}
#gNav .mainNavs > ul > li > .acbtn {
	position: relative;
}
#gNav .mainNavs > ul > li > .acbtn .js-arw {
	position: absolute;
	top: 0;
	right: 0;
	width: 15px;
	height: 100%;
	cursor: pointer;
}
#gNav .mainNavs > ul > li > .acbtn .js-arw:before {
	position: absolute;
	top: 50%;
	right: 2px;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-right: #414141 solid 2px;
	border-bottom: #414141 solid 2px;
	transform: rotate(45deg);
	z-index: 2;
}
@media only screen and (max-width:1100px) {
	#gNav .mainNavs > ul > li > a,
	#gNav .mainNavs > ul > li > div > a {
		font-size: 11px;
	}
	#gNav .mainNavs > ul > li + li {
		margin-left: 10px;
	}
}
@media only screen and (max-width:767px) {
	#gNav .mainNavs {
		width: 100%;
		margin: 0 0 25px;
	}
	#gNav .mainNavs > ul {
		display: block;
	}
	#gNav .mainNavs > ul > li {
		position: relative;
		border-bottom: #767676 solid 1px;
	}
	#gNav .mainNavs > ul > li:first-child {
		border-top: #767676 solid 1px;
	}
	#gNav .mainNavs > ul > li + li {
		margin-left: 0;
	}
	#gNav .mainNavs > ul > li > a,
	#gNav .mainNavs > ul > li > div > a {
		padding: 12px 15px;
		font-size: 11px;
		color: #fff;
	}
	#gNav .mainNavs > ul > li > .acbtn .js-arw {
		width: 45px;
		border-left: #767676 solid 1px;
	}
	#gNav .mainNavs > ul > li > .acbtn .js-arw:before {
		right: auto;
		left: 50%;
		width: 11px;
		height: 1px;
		margin: 0 0 0 -5px;
		background-color: #fff;
		transform: rotate(0deg);
		border: none;
	}
	#gNav .mainNavs > ul > li > .acbtn .js-arw:after {
		position: absolute;
		top: 50%;
		left: 50%;
		display: block;
		content: '';
		width: 1px;
		height: 11px;
		margin-top: -5px;
		background-color: #fff;
	}
	#gNav .mainNavs > ul > li > .acbtn .js-arw.on:after {
		opacity: 0;
	}
}


/* dropNav */
#gNav .mainNavs .dropNav {
	box-sizing: border-box;
	position: absolute;
	top: 100%;
	left: 50%;
	display: none;
	width: 250px;
	padding-top: 15px;
	transform: translateX(-50%);
	line-height: 1.5;
}
#gNav .mainNavs .dropNav a {
	position: relative;
	display: block;
	font-size: 12px;
	text-decoration: none;
}
#gNav .mainNavs .dropNav > ul {
	padding: 15px 15px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}
#gNav .mainNavs .dropNav > ul > li + li {
	margin-top: 8px;
}
#gNav .mainNavs .dropNav > ul > li > a {
	padding-left: 15px;
	color: #000;
}
#gNav .mainNavs .dropNav > ul > li > a:before {
	position: absolute;
	top: 6px;
	left: 0;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	border-width: 2px;
	border-style: solid;
	border-color: #009B64 #009B64 transparent transparent;
	transform: rotate(45deg);
}
#gNav .mainNavs .dropNav > ul > li > ul {
	margin-left: 25px;
}
#gNav .mainNavs .dropNav > ul > li > ul a {
	color: #414141;
}
@media only screen and (max-width:767px) {
	#gNav .mainNavs .dropNav {
		position: static;
		width: auto;
		padding-top: 0;
		transform: translateX(0);
	}
	#gNav .mainNavs .dropNav > ul {
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		background-color: #555555;
	}
	#gNav .mainNavs .dropNav a {
		display: inline-block;
	}
	#gNav .mainNavs .dropNav > ul > li,
	#gNav .mainNavs .dropNav > ul > li > ul > li {
		border-top: #767676 solid 1px;
	}
	#gNav .mainNavs .dropNav > ul > li > a,
	#gNav .mainNavs .dropNav > ul > li > ul a {
		padding: 12px 15px;
		color: #fff;
		font-size: 11px;
	}
	#gNav .mainNavs .dropNav > ul > li > a:before {
		display: none;
	}
	#gNav .mainNavs .dropNav > ul > li > ul {
		margin-left: 0;
	}
	#gNav .mainNavs .dropNav > ul > li + li {
		margin-top: 0;
	}
	#gNav .mainNavs .dropNav a[target="_blank"] {
		position: relative;
		padding-right: 30px;
	}
	#gNav .mainNavs .dropNav a[target="_blank"]:after {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		content: '';
		width: 30px;
		height: 100%;
		background: url(../images/common/ico_blank.svg) no-repeat center center / 12px auto;
	}
}




/* sns
-----------------------------------*/
#gNav .sns ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
#gNav .sns li {
	margin: 0 5px;
}

/*************************************************

 spMenuClose

*************************************************/
#spMenuClose {
	position: fixed;
	top: 20px;
	right: -10px;
	padding-right: 250px;
	color: #fff;
	text-align: center;
	transform: translateX(100%);
	transition: transform 0.4s;
	z-index: 110;
	cursor: pointer;
}
#spMenuClose.on {
	transform: translateX(0);
}
#spMenuClose > div {
	position: relative;
	padding-top: 27px;
}
#spMenuClose > div:before,
#spMenuClose > div:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	content: '';
	width: 3px;
	height: 28px;
	margin-left: -1px;
	background-color: #fff;
}
#spMenuClose > div:before {
	transform: rotate(45deg);
}
#spMenuClose > div:after {
	transform: rotate(-45deg);
}
@media only screen and (min-width:768px) {
	#spMenuClose {
		display: none !important;
	}
}


/*************************************************

 overlay

*************************************************/
#overlay {
	position: fixed;
	top: 0;
	left: 50%;
	width: 150vw;
	height: 100vh;
	display: none;
	background-color: rgba(0,0,0,0.45);
	transform: translateX(-50%);
	z-index: 100;
}
@media only screen and (min-width:768px) {
	#overlay {
		display: none !important;
	}
}



/*************************************************

 hamburgerMenu

*************************************************/
@media only screen and (min-width:768px) {
	#hamburgerMenu {
		display: none;
	}
}
#hamburgerMenu {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50px;
	z-index: 100;
	cursor: pointer;
}
#hamburgerMenu .bdr {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 20px;
	margin: 0 auto;
	transform: translate(-50%,-50%);
}
#hamburgerMenu .bdr span,
#hamburgerMenu .bdr:before,
#hamburgerMenu .bdr:after {
	position: absolute;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #009B64;
}
#hamburgerMenu .bdr span {
	top: 50%;
	margin-top: -1px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
#hamburgerMenu .bdr:before {
	top: 0;
}
#hamburgerMenu .bdr:after {
	bottom: 0;
}
.open #hamburgerMenu .bdr:before {
	animation: menuAnime01 .4s forwards;
}
.open #hamburgerMenu .bdr:after {
	animation: menuAnime02 .4s forwards;
}
.open #hamburgerMenu .bdr span {
	opacity: 0;
}
.close #hamburgerMenu .bdr:before {
	animation: menuAnime01_close .4s forwards;
}
.close #hamburgerMenu .bdr:after {
	animation: menuAnime02_close .4s forwards;
}
#hamburgerMenu p {
	position: relative;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1;
}
#hamburgerMenu p span {
	display: block;
}
#hamburgerMenu p span:last-child {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	background-color: #fff;
	transition-property: opacity;
	transition-duration: 0.3s;
}
.open #hamburgerMenu p span:last-child {
	opacity: 1;
}

@keyframes menuAnime01 {
	50% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(0deg);
	}
	100% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(45deg);
	}
}
@keyframes menuAnime01_close {
	0% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(45deg);
	}
	50% {
		top: 50%;
		margin-top: -1px;
		transform: rotate(0deg);
	}
	100% {
		top: 0;
		transform: rotate(0deg);
	}
}
@keyframes menuAnime02 {
	50% {
		bottom: 50%;
		margin-top: 1px;
		transform: rotate(0deg);
	}
	100% {
		bottom: 50%;
		margin-top: 1px;
		transform: rotate(-45deg);
	}
}
@keyframes menuAnime02_close {
	0% {
		bottom: 50%;
		margin-top: 1px;
		transform: rotate(-45deg);
	}
	50% {
		bottom: 50%;
		margin-top: 1px;
		transform: rotate(0deg);
	}
	100% {
		bottom: 0;
		transform: rotate(0deg);
	}
}



/*************************************************

 footer

*************************************************/
#footer {
	position: relative;
	margin-top: 150px;
	padding: 50px 0 30px;
	border-top: #009B64 solid 4px;
	background-color: #F7F7F7;
	/*background-color: #404040;*/
	z-index: 10;
}
.commonBeneathBtn + #footer {
	margin-top: 0;
}
@media only screen and (max-width:767px) {
	#footer {
		margin-top: 100px;
		padding: 0 0 30px;
		border-top-width: 2px;
	}
}


/* pagetop
-----------------------------------*/
#pagetop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 80;
}
#pagetop > div {
	position: fixed;
	right: 20px;
	bottom: 20px;
	transform: translateY(100px);
	transition: transform 0.5s;
}
#pagetop.view > div {
	transform: translateY(0);
}
#pagetop.stop > div {
	position: absolute;
}
#pagetop a {
	position: relative;
	box-sizing: border-box;
	display: block;
	width: 45px;
	height: 45px;
	border: #009B64 solid 2px;
	border-radius: 50%;
	background-color: #fff;
}
#pagetop a:before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	border-style: solid;
	border-width: 2px 2px 2px 2px;
	margin: -2px 0 0 -4px;
	border-color: #009B64 transparent transparent #009B64;
	transform: rotate(45deg);
}
@media only screen and (max-width:767px) {
	#pagetop > div {
		right: 10px;
		bottom: 10px;
	}
	#pagetop a {
		width: 35px;
		height: 35px;
	}
}


/* footerNavs
-----------------------------------*/
#footer .footerNavs {
	display: flex;
	line-height: 1.5;
}
#footer .footerNavs .navBox {
	width: 28%;
}
#footer .footerNavs .navBox + .navBox {
	margin-left: 6%;
}
#footer .footerNavs .ttl {
	margin-bottom: 5px;
	color: #009B64;
	line-height: 1.5;
}
#footer .footerNavs .ttl a {
	position: relative;
	padding-left: 1em;
	display: block;
	color: #009B64;
	text-decoration: none;
}
#footer .footerNavs .ttl a:before {
	position: absolute;
	top: 7px;
	left: 0;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	border-width: 2px;
	border-style: solid;
	border-color: #009B64 #009B64 transparent transparent;
	transform: rotate(45deg);
}
#footer .footerNavs * + .ttl {
	margin-top: 40px;
}
#footer .footerNavs .ttl + .ttl {
	margin-top: 15px;
}
#footer .footerNavs .ttl .arw {
	display: none;
}
#footer .footerNavs .nav a {
	position: relative;
	font-size: 12px;
	text-decoration: none;
}
#footer .footerNavs .nav > li > a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #000;
}
#footer .footerNavs .nav > li > a:before {
	position: absolute;
	top: 6px;
	left: 0;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	border-width: 2px;
	border-style: solid;
	border-color: #009B64 #009B64 transparent transparent;
	transform: rotate(45deg);
}
#footer .footerNavs .nav > li > ul {
	margin-left: 25px;
}
#footer .footerNavs .nav > li > ul a {
	color: #414141;
}
@media only screen and (max-width:767px) {
	#footer .footerNavs {
		display: block;
		margin: 0 -15px;
	}
	#footer .footerNavs .navBox + .navBox {
		margin-left: 0;
	}
	#footer .footerNavs .navBox {
		width: auto;
	}
	#footer .footerNavs .ttl {
		position: relative;
		margin-bottom: 0;
		padding: 12px 15px;
		border-bottom: #DCDDDC solid 1px;
		cursor: pointer;
	}
	#footer .footerNavs .ttl .arw {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 40px;
		height: 100%;
		cursor: pointer;
		z-index: 3;
	}
	#footer .footerNavs .ttl .arw:before {
		position: absolute;
		top: 50%;
		right: 15px;
		display: block;
		content: '';
		width: 6px;
		height: 6px;
		margin-top: -5px;
		border-right: #ADADAD solid 2px;
		border-bottom: #ADADAD solid 2px;
		transform: rotate(45deg);
		transition: transform 0.3s;
		z-index: 2;
	}
	#footer .footerNavs .ttl .arw.on:before {
		transform: rotate(-135deg);
	}
	#footer .footerNavs .ttl.link:before {
		transform: rotate(-45deg);
	}
	#footer .footerNavs * + .ttl,
	#footer .footerNavs .ttl + .ttl {
		margin-top: 0;
	}
	#footer .footerNavs .ttl a {
		padding-left: 0;
	}
	#footer .footerNavs .ttl a:before {
		display: none;
	}
	#footer .footerNavs .nav {
		display: none;
		padding: 10px 15px 15px;
		background-color: #fff;
		border-bottom: #DCDDDC solid 1px;
	}
	#footer .footerNavs .nav a {
		position: relative;
		font-size: 12px;
		text-decoration: none;
	}
	#footer .footerNavs .nav > li + li {
		margin-top: 8px;
	}
	#footer .footerNavs .nav > li > a {
		display: block;
	}
	#footer .footerNavs .nav > li > a:before {
		position: absolute;
		top: 6px;
		left: 0;
		display: block;
		content: '';
		width: 4px;
		height: 4px;
		border-width: 2px;
		border-style: solid;
		border-color: #009B64 #009B64 transparent transparent;
		transform: rotate(45deg);
	}
}



/* footerSns
-----------------------------------*/
#footer .footerSns {
	margin-top: 30px;
}
#footer .footerSns ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#footer .footerSns li + li {
	margin-left: 10px;
}
@media only screen and (max-width:767px) {
	#footer .footerSns ul {
		justify-content: center;
	}
	#footer .footerSns li + li {
		margin-left: 20px;
	}
}



/* footerEnd
-----------------------------------*/
#footer .footerEnd {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
	line-height: 1.4;
}
#footer .footerEnd * {
	color: #fff;
}
#footer .footerEnd ul {
	display: flex;
	font-size: 12px;
}
#footer .footerEnd li + li {
	margin-left: 25px;
}
#footer .footerEnd a {
	display: block;
	color: #414141;
	/*color: #fff;*/
	text-decoration: none;
}
#footer .footerEnd .copyright {
	font-size: 12px;
}
@media only screen and (max-width:767px) {
	#footer .footerEnd {
		display: block;
		margin-top: 30px;
	}
	#footer .footerEnd ul {
		display: block;
		text-align: center;
		font-size: 11px;
	}
	#footer .footerEnd li + li {
		margin: 10px 0 0;
	}
	#footer .footerEnd .copyright {
		margin-top: 30px;
		text-align: center;
		font-size: 10px;
	}
}


/*************************************************

 each common style

*************************************************/


/* commonPageImage
-----------------------------------*/
.commonPageImage {
	padding-top: 80px;
	background: no-repeat center center / cover;
}
.commonPageImage .inTable {
	display: table;
	width: calc(100% - 40px);
	height: 210px;
	max-width: 1110px;
	margin: 0 auto;
}
.commonPageImage .cell {
	display: table-cell;
	vertical-align: middle;
}
.commonPageImage .title {
	color: #fff;
	font-size: 30px;
	font-weight: 500;
}
@media only screen and (max-width:767px) {
	.commonPageImage {
		padding-top: 50px;
	}
	.commonPageImage .inTable {
		height: 180px;
	}
	.commonPageImage .title {
		font-size: 24px;
	}
}


/* commonBreadcrumb
-----------------------------------*/
.commonBreadcrumb {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 30px);
	max-width: 1110px;
	margin: 15px auto 80px;
	font-size: 12px;
	line-height: 1;
}
.commonBreadcrumb li > * {
	position: relative;
	display: block;
	text-decoration: none;
}
.commonBreadcrumb li + li > * {
	margin-left: 0.5em;
	padding-left: 1em;
}
.commonBreadcrumb li + li > *:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '>';
}
.commonBreadcrumb li a,
.commonBreadcrumb li a:before {
	color: #A7A7A7;
}
@media only screen and (max-width:767px) {
	.commonBreadcrumb {
		margin: 5px auto 50px;
		font-size: 8px;
	}
	.commonBreadcrumb li {
		margin-top: 5px;
	}
}


/* commonWrap & commonSection
-----------------------------------*/
.commonWrap,
.commonSection {
	width: calc(100% - 30px);
	max-width: 1110px;
	margin-right: auto;
	margin-left: auto;
}

.commonSection {
	margin-top: 90px;
}
.commonSection .commonSection {
	width: 100%;
}
.commonGreenTitle + .commonSection,
.commonBreadcrumb + .commonSection {
	margin-top: 0;
}
@media only screen and (max-width:767px) {
	.commonSection {
		margin-top: 50px;
	}
}


/* commonBlackTitle
-----------------------------------*/
.commonBlackTitle {
	padding-bottom: 7px;
	color: #1A1311;
	font-size: 27px;
	line-height: 1.5;
	border-bottom: #DCDDDC solid 1px;
}
.commonBlackTitle.min {
	font-size: 24px;
}
.commonBlackTitle.minMB {
	margin-bottom: 25px;
}
.commonBlackTitle.position {
	position: relative;
	padding-left: 30px;
}
.commonBlackTitle.position .greenText {
	position: absolute;
	top: 0;
	left: 0;
	color: #009B64;
}
@media only screen and (max-width:767px) {
	.commonBlackTitle {
		padding-bottom: 5px;
		font-size: 18px;
	}
	.commonBlackTitle.min {
		font-size: 16px;
	}
	.commonBlackTitle.minMB {
		margin-bottom: 20px;
	}
}

/* commonGreenTitle
-----------------------------------*/
.commonGreenTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	padding-bottom: 7px;
	border-bottom: #DCDDDC solid 3px;
}
.commonGreenTitle span {
	display: block;
}
.commonGreenTitle .ttl {
	color: #009B64;
	font-size: 27px;
	line-height: 1.5;
}
.commonGreenTitle .btn a {
	position: relative;
	display: inline-block;
	padding-left: 17px;
	color: #009B64;
	font-size: 15px;
	text-decoration: none;
}
.commonGreenTitle .btn a:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -3px;
	border-width: 2px;
	border-style: solid;
	border-color: #009B64 #009B64 transparent transparent;
	transform: rotate(45deg);
}
.commonGreenTitle.minMB {
	margin-bottom: 25px;
}
@media only screen and (max-width:767px) {
	.commonGreenTitle {
		display: block;
		margin-bottom: 30px;
		padding-bottom: 0;
		border-bottom: none;
	}
	.commonGreenTitle .ttl {
		padding-bottom: 5px;
		font-size: 18px;
		border-bottom: #DCDDDC solid 2px;
	}
	.commonGreenTitle .btn {
		margin-top: 10px;
		text-align: right;
	}
	.commonGreenTitle .btn a {
		font-size: 12px;
	}
	.commonGreenTitle.minMB {
		margin-bottom: 20px;
	}
}


.commonGreenTitle.type02 {
	margin-bottom: 50px;
	border-color: #D0E3DC;
}
.commonGreenTitle.type02.minMB {
	margin-bottom: 25px;
}
.commonGreenTitle.type02 .ttl {
	font-size: 20px;
}
@media only screen and (max-width:767px) {
	.commonGreenTitle.type02 {
		margin-bottom: 25px;
	}
	.commonGreenTitle.type02.minMB {
		margin-bottom: 15px;
	}
	.commonGreenTitle.type02 .ttl {
		font-size: 16px;
	}
}


/* commonLimeBdrTitle
-----------------------------------*/
.commonLimeBdrTitle {
	margin-bottom: 25px;
	padding-bottom: 5px;
	font-size: 20px;
	border-bottom: #D0E3DC solid 3px;
}
.commonLimeBdrTitle.position {
	position: relative;
	padding-left: 1.3em;
}
.commonLimeBdrTitle.position .greenText {
	position: absolute;
	top: 0;
	left: 0;
	color: #009B64;
}
.commonLimeBdrTitle .ttl .numText01 {
	padding-right: 10px;
	color: #009B64;
}
@media only screen and (max-width:767px) {
	.commonLimeBdrTitle {
		margin-bottom: 20px;
		font-size: 15px;
	}
}


/* commonGreenDotTitle
-----------------------------------*/
.commonGreenDotTitle {
	margin-bottom: 20px;
	padding-bottom: 5px;
	color: #009B64;
	font-size: 18px;
	border-bottom: #A3A3A3 dotted 1px;
}
@media only screen and (max-width:767px) {
	.commonGreenDotTitle {
		margin-bottom: 15px;
		font-size: 14px;
	}
}



/* commonrLeftBdrTitle
-----------------------------------*/
.commonrLeftBdrTitle {
	position: relative;
	margin-bottom: 30px;
	padding: 0 0 12px 15px;
	font-size: 24px;
	line-height: 1.5;
	border-bottom: #DCDDDC solid 1px;
}
.commonrLeftBdrTitle.noneBdr {
	border-bottom: none;
}
.commonrLeftBdrTitle:before {
	position: absolute;
	top: 2px;
	left: 0;
	display: block;
	content: '';
	width: 5px;
	height: calc(100% - 14px);
	background-color: #009B64;
}
@media only screen and (max-width:767px) {
	.commonrLeftBdrTitle {
		margin-bottom: 20px;
		padding: 0 0 8px 11px;
		font-size: 16px;
	}
	.commonrLeftBdrTitle:before {
		position: absolute;
		top: 2px;
		left: 0;
		width: 3px;
		height: calc(100% - 10px);
	}
}




/* commonList01
-----------------------------------*/
.commonList01 li {
	border-bottom: #DCDDDC solid 1px;
}
.commonList01.typeDots li {
	border-bottom: #DCDDDC dotted 1px;
}
.commonList01 li.none {
	display: none;
}
.commonList01 li > * {
	display: table;
	width: 100%;
	padding: 15px 0;
	color: #414141;
	text-decoration: none;
	table-layout: fixed;
}
.commonList01 li > * > * {
	display: table-cell;
	vertical-align: middle;
}
.commonList01 li .date {
	width: 130px;
	text-align: center;
}
.commonList01 li .cat {
	width: 130px;
}
.commonList01 li .cat span {
	display: block;
	color: #fff;
	padding-bottom: 1px;
	font-size: 12px;
	text-align: center;
	background-color: #009B64;
}
.commonList01 li .txt {
	padding: 0 20px;
	font-size: 15px;
	display: table-cell;
}
.commonList01 li.pdf .txt::after {
	content: "";
	width: 22px;
	height: 22px;
	margin: 0 0 0 5px;
	display: inline-block;
	background: url(../images/common/ico_pdf.svg) no-repeat center center / contain;
	vertical-align: middle;
}
@media only screen and (max-width:767px) {
	.commonList01 li > * {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width:  auto;
		padding: 15px 10px;
		color: #414141;
	}
	.commonList01 li > * > * {
		display: block;
	}
	.commonList01 li .date {
		width: auto;
		margin-right: 15px;
		font-size: 12px;
		text-align: center;
	}
	.commonList01 li .cat {
		width: 130px;
		font-size: 11px;
	}
	.commonList01 li .cat span {
		padding-bottom: 1px;
		font-size: 10px;
	}
	.commonList01 li .txt {
		width: 100%;
		margin-top: 5px;
		padding: 0;
		font-size: 12px;
	}
}



/* commonList02
-----------------------------------*/
.commonList02 li {
	border-bottom: #DCDDDC solid 1px;
}
.commonList02 li > * {
	display: table;
	width: 100%;
	padding: 15px 0;
	color: #414141;
	font-size: 15px;
	text-decoration: none;
	table-layout: fixed;
}
.commonList02 li > * > * {
	display: table-cell;
	vertical-align: middle;
}
.commonList02 li .date {
	width: 130px;
	text-align: center;
}
.commonList02 li .cat {
	width: 6em;
	text-align: center;
}
.commonList02 li .txt {
	padding: 0 20px;
}
.commonList02 li .ico_pdf {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-left: 15px;
	background: url(../images/common/ico_pdf.svg) no-repeat center center / contain;
	vertical-align: middle;
}
.commonList02 li .ico_new {
	display: inline-block;
	margin-left: 15px;
	padding: 2px 4px;
	color: #fff;
	font-size: 12px;
	background-color: #F0414A;
	vertical-align: middle;
	line-height: 1;
}
@media only screen and (max-width:767px) {
	.commonList02 li > * {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width:  auto;
		padding: 15px 10px;
		color: #414141;
		font-size: 12px;
	}
	.commonList02 li > * > * {
		display: block;
	}
	.commonList02 li .date {
		width: auto;
		margin-right: 15px;
		font-size: 12px;
		text-align: center;
	}
	.commonList02 li .txt {
		margin-top: 5px;
		padding: 0;
		width: 100%;
	}
	.commonList02 li .ico_pdf {
		width: 14px;
		height: 14px;
		margin-left: 7px;
	}
	.commonList02 li .ico_new {
		margin-left: 7px;
		font-size: 10px;
	}
}



a.pdf:after {
	display: inline-block;
	content: '';
	width: 22px;
	height: 22px;
	margin-left: 13px;
	background: url(../images/common/ico_pdf.svg) no-repeat center center / contain;
	vertical-align: middle;
}
@media only screen and (max-width:767px) {
	a.pdf:after{
		width: 14px;
		height: 14px;
		margin-left: 7px;
	}
}


/* commonrRightBtn01
-----------------------------------*/
.commonrRightBtn01 {
	margin-top: 15px;
	text-align: right;
}
.commonrRightBtn01 a {
	position: relative;
	display: inline-block;
	padding-left: 17px;
	color: #009B64;
	font-size: 15px;
	text-decoration: none;
}
.commonrRightBtn01 a:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -3px;
	border-width: 2px;
	border-style: solid;
	border-color: #009B64 #009B64 transparent transparent;
	transform: rotate(45deg);
}
.commonrRightBtn01.top a:before {
	margin-top: -2px;
	border-color: #009B64 transparent transparent #009B64;
}
.commonrRightBtn01.bottom a:before {
	margin-top: -6px;
	border-color: transparent #009B64 #009B64 transparent;
}
@media only screen and (max-width:767px) {
	.commonrRightBtn01 a {
		font-size: 12px;
	}
}



/* commonIndexList01
-----------------------------------*/
.commonIndexList01 {
	overflow: hidden;
}
.commonIndexList01 > ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: -70px;
}
.commonIndexList01 > ul > li {
	box-sizing: border-box;
	width: 25%;
	margin-top: 70px;
	padding: 0 25px;
	border-right: #EDEEED solid 1px;
}
.commonIndexList01 > ul > li:nth-child(4n) {
	border-right: none;
}
.commonIndexList01 > ul > li p {
	padding-bottom: 15px;
	font-size: 14px;
}
.commonIndexList01 .ico {
	margin-bottom: 7px;
	line-height: 0;
	text-align: center;
}
.commonIndexList01 .title {
	display: table;
	width: 100%;
	margin-bottom: 15px;
	color: #009B64;
	font-size: 19px;
	line-height: 1.4;
	text-align: center;
}
.commonIndexList01 .title > * {
	display: table-cell;
	vertical-align: middle;
}
.commonIndexList01 .title a {
	position: relative;
	display: inline-block;
	padding-right: 16px;
	color: #009B64;
	text-decoration: none;
}
.commonIndexList01 .title a:before {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: #009B64 solid 2px;
	border-right: #009B64 solid 2px;
	transform: rotate(45deg);
}
.commonIndexList01 .title.gray,
.commonIndexList01 .title.gray a {
	color: #adadad;
}
.commonIndexList01 .grayBtns {
	margin-top: 15px;
}
.commonIndexList01 .grayBtns li + li {
	margin-top: 10px;
}
.commonIndexList01 .grayBtns a {
	position: relative;
	display: block;
	padding: 12px 23px 12px 12px;
	color: #414141;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
	background-color: #F7F7F7;
}
.commonIndexList01 .grayBtns a:before {
	position: absolute;
	top: 50%;
	right: 15px;
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	margin-top: -4px;
	border-top: #009B64 solid 1px;
	border-right: #009B64 solid 1px;
	transform: rotate(45deg);
}
.commonIndexList01 .grayBtns li.off a {
	color: #c6c6c6;
	pointer-events: none;
}
.commonIndexList01 .grayBtns li.off a:before {
	opacity: 0.4;
}
.commonIndexList01 .dotsBtns {
	margin-top: 15px;
}
.commonIndexList01 .grayBtns + .dotsBtns {
	margin-top: 0;
}
.commonIndexList01 .dotsBtns li + li {
	border-top: #C6C6C6 dotted 1px;
}
.commonIndexList01 .dotsBtns a {
	position: relative;
	display: block;
	padding: 12px 23px 12px 12px;
	color: #414141;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
}
@media only screen and (max-width:767px) {
	.commonIndexList01 > ul {
		display: flex;
		margin-top: -50px;
	}
	.commonIndexList01 > ul > li {
		width: 50%;
		margin-top: 50px;
		padding: 0 10px 0 0;
	}
	.commonIndexList01 > ul > li:nth-child(2n) {
		padding: 0 0 0 10px;
		border-right: none;
	}
	.commonIndexList01 > ul > li p {
		padding-bottom: 15px;
		font-size: 12px;
	}
	.commonIndexList01 .ico {
		margin-bottom: 7px;
	}
	.commonIndexList01 .ico img {
		max-width: 70%;
	}
	.commonIndexList01 .title {
		margin-bottom: 10px;
		font-size: 14px;
	}
	.commonIndexList01 .title a {
		padding-right: 12px;
	}
	.commonIndexList01 .title a:before {
		width: 5px;
		height: 5px;
		border-width: 1px;
	}
	.commonIndexList01 .grayBtns li + li {
		margin-top: 10px;
	}
	.commonIndexList01 .grayBtns a {
		padding: 10px 20px 10px 10px;
		font-size: 11px;
	}
	.commonIndexList01 .grayBtns a:before {
		right: 7px;
		width: 5px;
		height: 5px;
		margin-top: -4px;
	}
	.commonIndexList01 .dotsBtns a {
		padding: 10px 20px 10px 10px;
		font-size: 11px;
	}
}


/* commonGreenBtnSolo
-----------------------------------*/
.commonGreenBtnSolo a {
	box-sizing: border-box;
	position: relative;
	display: table;
	width: 100%;
	max-width: 540px;
	height: 60px;
	margin: 0 auto;
	padding: 0 20px;
	color: #fff;
	background-color: #009B64;
	text-align: center;
	line-height: 1.4;
	text-decoration: none;
}
.commonGreenBtnSolo a span {
	display: table-cell;
	vertical-align: middle;
}
.commonGreenBtnSolo a:before {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -3px;
	border-top: #fff solid 2px;
	border-right: #fff solid 2px;
	transform: rotate(45deg);
}
.commonGreenBtnSolo.left a {
	margin-left: 0;
	text-align: left;
}
@media only screen and (max-width:767px) {
	.commonGreenBtnSolo a {
		height: 50px;
		padding: 0 15px;
	}
	.commonGreenBtnSolo a:before {
		right: 15px;
	}
}

/* commonGrayBtnSolo
-----------------------------------*/
.commonGrayBtnSolo a {
	box-sizing: border-box;
	position: relative;
	display: table;
	width: 100%;
	height: 45px;
	margin: 0 auto;
	padding: 0 20px;
	color: #414141;
	font-size: 14px;
	background-color: #F7F7F7;
	line-height: 1.2;
	text-decoration: none;
}
.commonGrayBtnSolo a span {
	display: table-cell;
	vertical-align: middle;
}
.commonGrayBtnSolo a:before {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -3px;
	border-top: #009B64 solid 2px;
	border-right: #009B64 solid 2px;
	transform: rotate(45deg);
}
@media only screen and (max-width:767px) {
	.commonGrayBtnSolo a {
		height: 50px;
		font-size: 12px;
	}
	.commonGrayBtnSolo a:before {
		right: 15px;
	}
}



/* commonGreenBtns
-----------------------------------*/
.commonGreenBtns {
	overflow: hidden;
}
.commonGreenBtns .greenTxt {
	margin-bottom: 10px;
	color: #009B64;
	font-size: 15px;
}
.commonGreenBtns ul {
	display: flex;
	flex-wrap: wrap;
	margin: -6px -3px 0;
}
.commonGreenBtns li {
	box-sizing: border-box;
	width: 20%;
	padding: 6px 3px 0;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}
.commonGreenBtns li > * {
	position: relative;
	display: table;
	width: 100%;
	height: 40px;
	color: #414141;
	text-decoration: none;
	background-color: #D9EDE6;
}
.commonGreenBtns li > * > * {
	display: table-cell;
	vertical-align: middle;
}
.commonGreenBtns li > *:before {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	margin-top: -4px;
	border-bottom: #009B64 solid 1px;
	border-right: #009B64 solid 1px;
	transform: rotate(45deg);
}
.commonGreenBtns.links li > *:before {
	display: none;
}

@media only screen and (max-width:991px) {
	.commonGreenBtns li {
		width: 33.33333%;
	}
}
@media only screen and (max-width:767px) {
	.commonGreenBtns .greenTxt {
		font-size: 13px;
	}
	.commonGreenBtns li {
		width: 50%;
		font-size: 12px;
	}
	.commonGreenBtns li > *:before {
		right: 15px;
	}
}


/* col2 pc only */
@media only screen and (min-width:768px) {
	.commonGreenBtns.col2 ul {
		margin: -15px -15px 0;
	}
	.commonGreenBtns.col2 li {
		width: 50%;
		padding: 15px 15px 0;
	}
	.commonGreenBtns.col2 li > * {
		height: 50px;
	}
}
@media only screen and (max-width:767px) {
	.commonGreenBtns.col2 li {
		width: 100%;
	}
}

/* col3 pc only */
@media only screen and (min-width:768px) {
	.commonGreenBtns.col3 ul {
		margin: -15px -15px 0;
	}
	.commonGreenBtns.col3 li {
		width: 33.33333%;
		padding: 15px 15px 0;
	}
	.commonGreenBtns.col3 li > * {
		height: 50px;
	}
}
@media only screen and (max-width:767px) {
	.commonGreenBtns.col3 li {
		width: 100%;
	}
}


/* col4 pc only */
@media only screen and (min-width:768px) {
	.commonGreenBtns.col4 ul {
		margin: -15px -15px 0;
	}
	.commonGreenBtns.col4 li {
		width: 25%;
		padding: 15px 15px 0;
	}
	.commonGreenBtns.col4 li > * {
		height: 50px;
	}
}
@media only screen and (max-width:767px) {
	.commonGreenBtns.col4 li {
		width: 100%;
	}
}

@media only screen and (min-width:768px) {
	.commonGreenBtns.narrow ul {
		margin: -6px -3px 0;
	}
	.commonGreenBtns.narrow li {
		padding: 6px 3px 0;
	}
}






/* commonBeneathBtn
-----------------------------------*/
.commonBeneathBtn {
	margin-top: 100px;
	padding: 60px 0;
	text-align: center;
	background-color: #DFEAE6;
}
.commonBeneathBtn a {
	position: relative;
	display: table;
	width: 90%;
	max-width: 400px;
	height: 50px;
	margin: 0 auto;
	color: #000;
	font-size: 14px;
	text-align: center;
	background-color: #fff;
	text-decoration: none;
}
.commonBeneathBtn a:before {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	margin-top: -4px;
	border-top: #009B64 solid 2px;
	border-right: #009B64 solid 2px;
	transform: rotate(45deg);
}
.commonBeneathBtn a span {
	display: table-cell;
	vertical-align: middle;
}


/* commonNormalList01
-----------------------------------*/
.commonNormalList01 li {
	border-bottom: #DCDDDC solid 1px;
}
.commonNormalList01 li a {
	display: block;
	padding: 20px 15px;
	color: #000;
	font-size: 15px;
	text-decoration: none;
}
.commonNormalList01 li img {
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}
.commonNormalList01 li .ico_new {
	display: inline-block;
	margin-left: 15px;
	padding: 2px 4px;
	color: #fff;
	font-size: 12px;
	background-color: #F0414A;
	vertical-align: middle;
	line-height: 1;
}
@media only screen and (max-width:767px) {
	.commonNormalList01 li a {
		padding: 10px 10px;
		font-size: 12px;
	}
	.commonNormalList01 li .ico_new {
		margin-left: 7px;
		font-size: 10px;
	}
	.commonNormalList01 li img {
		width: 14px;
	}
}




/* commonTable01
-----------------------------------*/
.commonTable01 {
	margin-top: 50px;
}
.commonTable01 .inTtl {
	margin-bottom: 10px;
	font-size: 18px;
}
.commonTable01 > dl {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-bottom: #A3A3A3 dotted 1px;
}
.commonTable01 > dl:nth-of-type(1) {
	border-top: #C6C6C6 solid 1px;
}
.commonTable01 > dl > * {
	box-sizing: border-box;
	display: table-cell;
	vertical-align: middle;
	padding: 20px 15px;
	font-size: 14px;
}
.commonTable01 > dl > dt {
	width: 100px;
	background-color: #F7F7F7;
}
.commonTable01 > dl > dd {
	padding-left: 30px;
}
.commonTable01 a {
	color: #414141;
	text-decoration: none;
}
.commonTable01 a.map {
	position: relative;
	display: inline-block;
	padding-left: 12px;
	color: #009B64;
	text-decoration: none;
}
.commonTable01 a.map:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: '';
	width: 5px;
	height: 5px;
	margin-top: -3px;
	border-right: #009B64 solid 1px;
	border-top: #009B64 solid 1px;
	transform: rotate(45deg);
}
@media only screen and (max-width:767px) {
	.commonTable01 {
		margin-top: 30px;
	}
	.commonTable01 .inTtl {
		font-size: 14px;
	}
	.commonTable01:not(.spMaintain) > dl,
	.commonTable01:not(.spMaintain) > dl > *,
	.commonTable01:not(.spMaintain) > dl > dd {
		display: block;
	}
	.commonTable01 > dl > *,
	.commonTable01 > dl > dd {
		padding: 10px 15px;
		font-size: 12px;
	}
	.commonTable01:not(.spMaintain) > dl > dt {
		width: auto;
	}
}

/* commonTable02
-----------------------------------*/
.commonTable02 {
	margin-top: 40px;
}
.commonTable02 .inTtl {
	margin-bottom: 10px;
	font-size: 18px;
}
.commonTable02 table {
	box-sizing: border-box;
	width: 100%;
}
.commonTable02 th {
	padding: 5px;
	color: #fff;
	text-align: center;
	background-color: #414141;
	border: #C6C6C6 solid 1px;
}
.commonTable02 td {
	padding: 12px 16px;
	border-left: #C6C6C6 solid 1px;
	border-right: #C6C6C6 solid 1px;
	border-bottom: #C6C6C6 dotted 1px;
}
.commonTable02 tr:last-child td {
	border-bottom: #C6C6C6 solid 1px;
}
.commonTable02 .bg {
	background-color: #F7F7F7;
}
.commonTable02 .vtop {
	vertical-align: top;
}
@media only screen and (max-width:767px) {
	.commonTable02 {
		overflow-x: auto;
		margin-top: 30px;
		-webkit-overflow-scrolling: touch;
	}
	.commonTable02 .spScroll {
		width: 700px;
	}
}




/* commonSortlist
-----------------------------------*/
.commonSortlist {
	position: relative;
	margin-bottom: 50px;
	padding: 20px 160px 20px 145px;
	background-color: #F7F7F7;
}
* + .commonSortlist {
	margin-top: 50px;
}
.commonSortlist .ttl {
	position: absolute;
	top: 20px;
	left: 30px;
	color: #009B64;
	font-size: 16px;
	font-weight: 500;
}
.commonSortlist .list {
	display: flex;
	flex-wrap: wrap;
}
.commonSortlist .list li {
	margin-right: 40px;
	font-size: 16px;
}
.commonSortlist .list li label {
	position: relative;
	cursor: pointer;
}
.commonSortlist .list li input {
	position: absolute;
	width: 0;
	height: 0;
	display: none;
	opacity: 0;
}
.commonSortlist .list li span {
	position: relative;
	display: inline-block;
	padding-left: 28px;
}
.commonSortlist .list li span:before,
.commonSortlist .list li span:after {
	position: absolute;
	display: block;
	content: '';
}
.commonSortlist .list li span:before {
	box-sizing: border-box;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	border: #C9C9C9 solid 1px;
	border-radius: 3px;
	background-color: #fff;
}
.commonSortlist .list li span:after {
	top: 50%;
	left: 2px;
	transform: translateY(-60%);
	width: 15px;
	height: 15px;
	background: url(../images/common/ico_check.svg) no-repeat center center / contain;
	opacity: 0;
}
.commonSortlist .list li input:checked + span:after {
	opacity: 1;
}
.commonSortlist .btn {
	position: absolute;
	top: 50%;
	right: 25px;
	width: 120px;
	padding: 5px 0;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background-color: #009B64;
	border-radius: 3px;
	cursor: pointer;
	transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
	.commonSortlist {
		padding: 15px;
	}
	.commonSortlist .ttl {
		position: static;
		margin-bottom: 5px;
		font-size: 14px;
	}
	.commonSortlist .list {
		justify-content: space-between;
	}
	.commonSortlist .list li {
		width: 48.5%;
		margin: 10px 0 0;
		font-size: 12px;
	}
	.commonSortlist .list li span {
		padding-left: 23px;
	}
	.commonSortlist .btn {
		position: static;
		width: auto;
		margin-top: 20px;
		font-size: 14px;
		transform: translateY(0);
	}
}



/* commonPostDetail
-----------------------------------*/
.commonPostDetail .meta {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 15px 15px;
	align-items: center;
	border-bottom: #DCDDDC solid 3px;
	line-height: 1;
}
.commonPostDetail .meta .date {
	margin-right: 35px;
	font-size: 16px;
}
.commonPostDetail .meta .cat {
	width: 130px;
	padding: 5px 0;
	color: #fff;
	font-size: 12px;
	background-color: #009B64;
	text-align: center;
}
.commonPostDetail .detailTitle {
	margin: 20px 0 55px;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.4;
}
.commonPostDetail .inBody {
	max-width: 810px;
	margin: 60px auto;
	letter-spacing: 0.02em;
	line-height: 2;
}
.commonPostDetail .inBody:after {
	display: block;
	clear: both;
	height: 0;
	content: '';
}
.commonPostDetail .inBody h4 {
	margin-bottom: 5px;
	font-size: 133.3%;
	font-weight: 700;
}
.commonPostDetail .inBody h5 {
	margin-bottom: 5px;
	font-size: 108.3%;
	font-weight: 700;
}
.commonPostDetail .inBody p {
	margin-bottom: 1.5em;
}
.commonPostDetail .inBody ul,
.commonPostDetail .inBody ol {
	margin-bottom: 1.5em;
	padding-left: 2.5em;
}
.commonPostDetail .inBody li {
	margin-bottom: 0.3em;
}
.commonPostDetail .inBody ul li {
	list-style: disc outside;
}
.commonPostDetail .inBody ol li {
	list-style: decimal outside;
}
.commonPostDetail .inBody strong {
	font-weight: bold;
}
.commonPostDetail .inBody em {
	font-style: italic;
}
.commonPostDetail .inBody blockquote {
	display: block;
	margin: 15px 0;
	padding: 20px;
	background: #f5f5f5;
}
.commonPostDetail .inBody blockquote p {
	margin-bottom: 0;
}
.commonPostDetail .inBody .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.commonPostDetail .inBody .alignright {
	float: right;
	margin-left: 15px;
}
.commonPostDetail .inBody .alignleft {
	float: left;
	margin-right: 15px;
}
.commonPostDetail .inBody *:last-child {
	margin-bottom: 0;
}
.commonPostDetail .pager {
	padding-top: 50px;
	border-top: #DCDDDC solid 1px;
}
.commonPostDetail .pager .inner {
	box-sizing: border-box;
	position: relative;
	max-width: 810px;
	margin: 0 auto;
	padding: 0 130px;
}
.commonPostDetail .pager a {
	position: relative;
	display: block;
	font-size: 14px;
	text-decoration: none;
}
.commonPostDetail .pager .back {
	max-width: 400px;
	margin: 0 auto;
}
.commonPostDetail .pager .back a {
	padding: 15px 0;
	color: #414141;
	text-align: center;
	background-color: #F7F7F7;
}
.commonPostDetail .pager .back a:before {
	position: absolute;
	top: 50%;
	right: 25px;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -3px;
	border-top: #009B64 solid 2px;
	border-right: #009B64 solid 2px;
	transform: rotate(45deg);
}
.commonPostDetail .pager .prev,
.commonPostDetail .pager .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
.commonPostDetail .pager .prev a,
.commonPostDetail .pager .next a {
	padding: 0 20px;
	color: #009B64;
}
.commonPostDetail .pager .prev a:before,
.commonPostDetail .pager .next a:before {
	position: absolute;
	top: 50%;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -4px;
	transform: rotate(45deg);
}
.commonPostDetail .pager .prev {
	left: 0;
}
.commonPostDetail .pager .prev a:before {
	left: 2px;
	border-left: #009B64 solid 2px;
	border-bottom: #009B64 solid 2px;
}
.commonPostDetail .pager .next {
	right: 0;
	text-align: right;
}
.commonPostDetail .pager .next a:before {
	right: 2px;
	border-top: #009B64 solid 2px;
	border-right: #009B64 solid 2px;
}

@media only screen and (max-width:767px) {
	.commonPostDetail .meta {
		padding: 0 0 10px;
		border-width: 2px;
	}
	.commonPostDetail .meta .date {
		margin-right: 20px;
		font-size: 12px;
	}
	.commonPostDetail .meta .cat {
		width: 100px;
		padding: 5px 0;
		font-size: 10px;
	}
	.commonPostDetail .detailTitle {
		margin: 20px 0 35px;
		font-size: 18px;
	}
	.commonPostDetail .inBody {
		margin: 30px 0 40px;
	}
	.commonPostDetail .inBody .alignright,
	.commonPostDetail .inBody .alignleft {
		float: none;
		margin: 0 auto;
	}

	.commonPostDetail .pager a {
		font-size: 13px;
	}
	.commonPostDetail .pager .inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 86%;
		padding: 0;
	}
	.commonPostDetail .pager .back {
		max-width: auto;
		width: 100%;
		margin-top: 15px;
	}
	.commonPostDetail .pager .prev,
	.commonPostDetail .pager .next {
		position: static;
		width: 48%;
		transform: translateY(0);
	}
	.commonPostDetail .pager .prev a,
	.commonPostDetail .pager .next a {
		padding: 10px 20px;
	}
}




/* commonDotBdrList
-----------------------------------*/
.commonDotBdrList {
	overflow: hidden;
}
.commonDotBdrList > ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -45px;
	padding: 10px 0;
	border-top: #A3A3A3 dotted 1px;
	border-bottom: #A3A3A3 dotted 1px;
	line-height: 1.5;
}
.commonDotBdrList > ul > li {
	padding: 10px 0 10px 45px;
}
.commonDotBdrList a {
	position: relative;
	padding-right: 15px;
	color: #414141;
	text-decoration: none;
}
.commonDotBdrList a:before {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	content: '';
	width: 5px;
	height: 5px;
	margin-top: -3px;
	border-top: #009B64 solid 2px;
	border-right: #009B64 solid 2px;
	transform: rotate(45deg);
}




/* commonNumberTitle
-----------------------------------*/
.commonNumberTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	padding-bottom: 7px;
	border-bottom: #DCDDDC solid 3px;
}
.commonNumberTitle .ttl {
	display: block;
	color: #000;
	font-size: 20px;
	line-height: 1.5;
}
.commonNumberTitle .ttl .numText01 {
	padding-right: 10px;
	color: #009B64;
}
.commonNumberTitle .btn a {
	position: relative;
	display: inline-block;
	padding-left: 17px;
	color: #009B64;
	font-size: 15px;
	text-decoration: none;
}
.commonNumberTitle .btn a:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -3px;
	border-width: 2px;
	border-style: solid;
	border-color: #009B64 #009B64 transparent transparent;
	transform: rotate(45deg);
}
.commonNumberTitle.minMB {
	margin-bottom: 25px;
}

@media only screen and (max-width:767px) {
	.commonNumberTitle {
		display: block;
		margin-bottom: 30px;
		padding-bottom: 0;
		border-bottom: none;
	}
	.commonNumberTitle .ttl {
		padding-bottom: 5px;
		font-size: 18px;
		border-bottom: #DCDDDC solid 2px;
	}
	.commonNumberTitle .btn {
		margin-top: 10px;
		text-align: right;
	}
	.commonNumberTitle .btn a {
		font-size: 12px;
	}
	.commonNumberTitle.minMB {
		margin-bottom: 20px;
	}
}

/* PositionText
-----------------------------------*/
.PositionText {
	position: relative;
	margin-top: 20px;
	margin-left: 20px;
	padding-left: 25px;
}
.PositionText .GreenSubText {
	position: absolute;
	top: 0;
	left: 0;
	color: #009B64;
}
@media only screen and (max-width:767px) {
	.PositionText {
		margin-left: 0px;
		padding-left: 20px;
	}
}



/* commonrLeftBdrBox
-----------------------------------*/
.commonrLeftBdrBox {
	position: relative;
	margin-bottom: 20px;
	padding-left: 18px;
}
.commonrLeftBdrBox:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 3px;
	height: 100%;
	background-color: #009B64;
}
.commonrLeftBdrBox .commonrLeftBdrBoxTitle {
	display: block;
	font-size: 22px;
	line-height: 1.4;
}
.commonrLeftBdrBox .commonrLeftBdrBoxTitle + * {
	margin-top: 13px;
}
.commonrLeftBdrBox .commonrLeftBdrBoxLead {
	font-size: 15px;
}
@media only screen and (max-width:767px) {
	.commonrLeftBdrBox {
		margin-bottom: 15px;
		padding-left: 12px;
	}
	.commonrLeftBdrBox:before {
		width: 2px;
	}
	.commonrLeftBdrBox .commonrLeftBdrBoxTitle {
		font-size: 16px;
	}
	.commonrLeftBdrBox .commonrLeftBdrBoxTitle + * {
		margin-top: 13px;
	}
	.commonrLeftBdrBox .commonrLeftBdrBoxLead {
		font-size: 12px;
	}
}



/* commonNoteText
-----------------------------------*/
.commonNoteText {
	position: relative;
	padding-left: 45px;
}
.commonNoteText:before {
	position: absolute;
	top: -3px;
	left: 0;
	display: block;
	content: '';
	width: 37px;
	height: 32px;
	background: url(../images/common/ico_note.png) no-repeat center center / contain;
}
@media only screen and (max-width:767px) {
	.commonNoteText {
		padding-left: 40px;
	}
	.commonNoteText:before {
		width: 31px;
		height: 26px;
	}
}


/* commonNotearea
-----------------------------------*/
.commonNotearea {
	padding: 40px;
	font-size: 15px;
	background-color: #F7F7F7;
}
.commonNotearea .noteTtl {
	position: relative;
	margin-bottom: 20px;
	padding-left: 45px;
	color: #009B64;
	font-size: 18px;
}
.commonNotearea .noteTtl:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: '';
	width: 37px;
	height: 32px;
	background: url(../images/common/ico_note.png) no-repeat center center / contain;
	transform: translateY(-50%);
}
@media only screen and (max-width:767px) {
	.commonNotearea {
		padding: 20px;
		font-size: 12px;
	}
	.commonNotearea .noteTtl {
		margin-bottom: 15px;
		padding-left: 40px;
		font-size: 15px;
	}
	.commonNotearea .noteTtl:before {
		width: 31px;
		height: 26px;
	}
}


/* wp-pagenavi
-----------------------------------*/
.wp-pagenavi {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.wp-pagenavi .prev,
.wp-pagenavi .next {
	display: none;
}
.wp-pagenavi > * {
	box-sizing: border-box;
	display: block;
	margin: 5px;
	width: 35px;
	padding: 9px 0;
	color: #1A1311;
	font-weight: 16px;
	text-decoration: none;
	text-align: center;
	border: #DCDDDC solid 1px;
}
.wp-pagenavi span:not(.dots) {
	background-color: #F7F7F7;
}
@media only screen and (max-width:767px) {
	.wp-pagenavi > * {
		margin: 3px;
		width: 26px;
		padding: 7px 0;
		font-weight: 12px;
	}
}




/* commonArwlink
-----------------------------------*/
.commonArwlink {
	color: #414141;
}
.commonArwlink:after {
	display: inline-block;
	content: '';
	width: 0.4em;
	height: 0.4em;
	margin: 0 0 0.1em 0.3em;
	border-top: #009B64 solid 2px;
	border-right: #009B64 solid 2px;
	transform: rotate(45deg);
}



/* commonBlanklink
-----------------------------------*/
.commonBlanklink {
	display: inline-block;
	color: #414141;
}
.commonBlanklink:after {
	display: inline-block;
	content: '';
	width: 17px;
	height: 12px;
	margin-left: 0.3em;
	background: url(../images/common/ico_blank.svg) no-repeat center center / contain;
}





/* commonBlacklink
-----------------------------------*/
.commonBlacklink {
	color: #414141;
}


/* commonDotBdr
-----------------------------------*/
.commonDotBdr {
	border-bottom: #A3A3A3 dotted 1px;
}



/*************************************************

 commonDetailtype02

*************************************************/
.commonDetailtype02 .meta02 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 55px;
}
.commonDetailtype02 .title {
	margin-bottom: 55px;
	color: #009B64;
	font-size: 30px;
	font-weight: 500;
	text-align: center;
	line-height: 1.4;
}
@media only screen and (max-width:767px) {
	.commonDetailtype02 .meta02 {
		margin-bottom: 30px;
	}
	.commonDetailtype02 .title {
		margin-bottom: 30px;
		font-size: 18px;
	}
}

















