@charset "utf-8";
/*
 * commons css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
} /* end 600-959 */

@media (min-width: 960px) {
} /* 960- */

/* ---------------------------------------- common */

body { color: #555; }

ul.disc {
	list-style: outside disc;
	text-align: left;
	margin: 0 0 0 1.5em;
}
ol.decimal {
	list-style: outside decimal;
	text-align: left;
	margin: 0 0 0 1.5em;
}

p + p {
	margin: 1em 0 0;
}

strong {
	font-weight: 700;
	font-weight: bold;
}

h2,h3,h4 { 
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.6; 
	font-weight: 500;
}

.align-center { text-align: center; }
.align-left { text-align: left; }
.align-right { text-align: right; }
.coution { color: #ff7f50; }
.deco {
	color: #31b16a;
	text-decoration: underline;
}

@media (max-width: 599px) {
	
	#wrapper {
		font-size: 1.3rem;
		line-height: 1.8;
	}
	.inside + .inside { margin: 2em 0 0; }

	h2 {
		font-size: 2.0rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}
	
	h3 {
		font-size: 2.0rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}
	
	h4 {
		font-size: 1.6rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}

	h5 {
		font-size: 1.6rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}

} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
	
	#wrapper {
		font-size: 1.4rem;
		line-height: 1.9;
	}
	.inside + .inside { margin: 2.5em 0 0; }
	
	h2 {
		font-size: 2.2rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}
	
	h3 {
		font-size: 2.2rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}
	
	h4 {
		font-size: 1.8rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}
	
	h5 {
		font-size: 1.8rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}


} /* end 600-959 */

@media (min-width: 960px) {
	
	#wrapper {
		font-size: 1.5rem;
		line-height: 2;
	}
	.inside + .inside { margin: 3em 0 0; }

	h2 {
		font-size: 2.4rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}
	
	h3 {
		font-size: 2.4rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}
	
	h4 {
		font-size: 2.0rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}

	h5 {
		font-size: 2.0rem;
		line-height: 1.5;
		margin: 0 0 1em;
	}

} /* 960- */

/* ---------------------------------------- style */

.under-bar {
	color: #31b16a;
	text-align: center;
	margin: 0 0 2em;
}
.under-bar span {
	display: inline-block;
	font-weight: 500;
	padding: 0 0 .5em;
	position: relative;
}
.under-bar span::after {
	content: "";
	display: block;
	width: 4em;
	height: 4px;
	background: #31b16a;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.both-bar {
	color: #31b16a;
	border-top: 4px #efefef solid;
	border-bottom: 4px #efefef solid;
	font-weight: 500;
	text-align: center;
	padding: .5em 0;
	margin: 0 0 1.5em;
}

.under-bar i,
.both-bar i { margin: 0 .5em 0 0; }

.box-line {
	border-left: 8px #31b16a solid;
	background: #e6e6e6;
	font-weight: 500;
	padding: .5em .5em .5em .75em;
	margin: 0 0 1.5em;
}

.txt-gr { color: #31b16a; }

/* ---------------------------------------- common flex selectors */

@media (max-width: 599px) {

	/* flexs no setting */

} /* end -599 */

@media (min-width: 600px) {

	.flexs {
		display: -webkit-box;
		display: -webkit-flexbox;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}

	.flexs.wrap {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	
	.flexs.nowrap {
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	
	.flexs.justify {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	
	.flexs.justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}
	
	.flexs.align-center {
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
	}
	
	.flexs.row {
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction:row;
	}
	
	.flexs.row-reverse {
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction:row-reverse;
	}
	
	.flexs.column {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	
	.flexs.column-reverse {
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

} /* over 600 */

/* ---------------------------------------- fields ( with flexs ) */

@media (max-width: 599px) {

	.fields.flexs > figure { text-align: center; }
	.fields.flexs.row > figure + div,
	.fields.flexs.row > div + figure,
	.fields.flexs.row-reverse > figure + div,
	.fields.flexs.row-reverse > div + figure,
	.fields.flexs.column:not( .column-reverse ) > figure + div,
	.fields.flexs.column.column-reverse > div {
		margin: 1.75em 0 0;
	}
	

} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {

	.fields.flexs.row > figure,
	.fields.flexs.row-reverse > figure { width: 40%; }
	.fields.flexs.row > div,
	.fields.flexs.row-reverse > div { width: 56%; }
	
	.fields.flexs.column:not( .column-reverse ) > figure + div,
	.fields.flexs.column.column-reverse > figure {
		margin: 1.75em 0 0;
	}

} /* end 600-959 */

@media (min-width: 960px) {

	.fields.flexs.row > figure,
	.fields.flexs.row-reverse > figure { width: 40%; }
	.fields.flexs.row > div,
	.fields.flexs.row-reverse > div { width: 56%; }
	
	.fields.flexs.column:not( .column-reverse ) > figure + div,
	.fields.flexs.column.column-reverse > figure {
		margin: 1.75em 0 0;
	}

} /* 960- */

/* ---------------------------------------- archivelist */

.archivelist { border-top: 1px #ccc solid; }
.archivelist li {
	border-bottom: 1px #ccc solid;
	padding: 1.25em 0;
}
.archivelist figure { text-align: center; }
.archivelist li a p { color: #31b16a; }
.archivelist li a h3 { margin: 0; }
.archivelist li a > figure img { 
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

@media (min-width: 600px) {

	.archivelist li a {
		display: -webkit-box;
		display: -webkit-flexbox;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		padding: 0 2em 0 0;
		position: relative;
	}
	.archivelist li a::after {
		font-family: 'FontAwesome';
		content: "\f0da";
		color: #31b16a;
		font-size: 2.0rem;
		position: absolute;
		top: 50%;
		right: .5em;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.archivelist li a:hover h3 { color: #31b16a; }

} /* 960- */

@media (max-width: 599px) {

	.archivelist li a > figure { margin: 0 0 1.5em; }
	.archivelist li a > figure img { 
		width: 60%; 
		max-width: 240px;
	}
	.archivelist li a p { 
		font-size: 1.4rem; 
		line-height: 1;
		margin: 0 0 .75em;
	}
	.archivelist li a h3 { font-size: 1.6rem; }

} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {

	.archivelist li a > figure { width: 24%; }
	.archivelist li a > div { width: 72%; }
	.archivelist li a p { 
		font-size: 1.4rem; 
		line-height: 1;
		margin: 0 0 .5em;
	}
	.archivelist li a h3 { font-size: 1.7rem; }

} /* end 600-959 */

@media (min-width: 960px) {

	.archivelist li a > figure { width: 16%; }
	.archivelist li a > div { width: 80%; }
	.archivelist li a p { 
		font-size: 1.6rem; 
		line-height: 1;
		margin: 0 0 .5em;
	}
	.archivelist li a h3 { font-size: 1.8rem; }

} /* 960- */

/* ---------------------------------------- table */

table { width: 100%; }
table th { background: #f9f9f9; }

@media (max-width: 768px) {

	table { border-top: 1px #c8c8c8 solid; }
	table th,
	table td {
		border-bottom: 1px #c8c8c8 solid;
		text-align: left;
		padding: 0.75em;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	table.changeable th,
	table.changeable td {
		display: block;
	}

} /* end -768px */

@media (min-width: 769px) and (max-width:1048px) {

	table th,
	table td {
		border-top: 1px #c8c8c8 solid;
		border-bottom: 1px #c8c8c8 solid;
		text-align: left;
		vertical-align: middle;
		padding: 0.75em;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	table th { width: 25%; }

} /* end 769px-1048px */

@media (min-width: 1049px) {

	table th,
	table td {
		border-top: 1px #c8c8c8 solid;
		border-bottom: 1px #c8c8c8 solid;
		text-align: left;
		vertical-align: middle;
		padding: 0.75em;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	table th { width: 25%; }

} /* 1049px- */

/* ---------------------------------------- breadcrumbs */

@media (max-width: 599px) {

	#breadcrumbs { display: none; }

} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {

	#breadcrumbs {
		letter-spacing: -0.4em;
	}
	#breadcrumbs li {
		display: inline-block;
		letter-spacing: normal;
		font-size: 1.5rem;
	}
	#breadcrumbs a {
		color: #6cbc18;
	}
	.bread_crumb li:not(:last-child):after {
		font-family: 'FontAwesome';
		content : '\f105';
		color: #6cbc18;
		padding-left:10px;
		margin-right:10px;
	}

} /* end 600-959 */

@media (min-width: 960px) {

	#breadcrumbs {
		padding: 18px 0 60px;
	}

} /* 960- */

/* ---------------------------------------- pagelink */

.pagelink a {
	display: inline-block;
	color: #fff;
	background: #31b16a;
	line-height: 1;
	padding: 1em;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 2px 3px 4px 0 rgba(0,0,0,.25);
	box-shadow: 2px 3px 4px 0 rgba(0,0,0,.25);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.pagelink a::before {
	font-family: 'FontAwesome';
	content: "\f0da";
	margin: 0 4px 0 0;
}
.pagelink a:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
	position: relative;
	top: 1px;
	left: 1px;
}

@media (max-width: 599px) {

	.pagelink a {
		width: 100%;
		font-size: 1.4rem;
	}

} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {

	.pagelink a {
		min-width: 40%;
		font-size: 1.6rem;
	}

} /* end 600-959 */

@media (min-width: 960px) {

	.pagelink a {
		min-width: 30%;
		font-size: 1.8rem;
	}

} /* 960- */

