/*
======================================
 	Reset Style
======================================
*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	background: transparent;
}
html {
	height: 100%;
}
body {
	line-height: 1;
	height: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.reader{
	width:620px;
	margin:5px 0px;
	padding:10px;
	background: #eee;
}
.reader img{
	width:112px;
	float:left;
	vertical-align:top;
	margin-right:10px;
}
.reader p{
	font-size: 10px;
	line-height: 1.6em;
	margin:0;
	padding:0;
}



/*
======================================
	Base Style
======================================
*/
html {
}
body {
	background: #bcbdc0;
	font: 14px/20px 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Arial,sans-serif;
	/* font: 12px/18px 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',Arial,sans-serif; */
	color: #333;
}
a {
	color: #196BC7;
	text-decoration: none;
}
a:hover {
	color: #196BC7;
	text-decoration: underline;
}
.clear{
	clear: both;
	line-height: 0;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {min-height: 1px;}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
::-moz-selection {
	background: #ffff00;
	color: #333;
}
::selection {
	background: #ffff00;
	color: #333;
}
#GlobalWrapper {
	width: 960px;
	margin: 0 auto;
}
#GlobalWrapper #mobile-head {
	position: relative;
	z-index: 9900;
}
#GlobalWrapper #login {
	position: relative;
	z-index: 9800;
	display: none;
}
#GlobalHeader {
	position: relative;
	padding: 25px 45px 20px 45px;
	background: #fff;
	z-index: 9700;
}
#GlobalHeader a {
	position: absolute;
	top: 40px;
	right: 45px;
	display: block;
	padding: 10px 30px;
	background: #f7a81b;
	border-radius: 5px;
	-moz-border-radius:  5px;
	-webkit-border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #005daa;
}
#GlobalHeader a:hover {
	background: #fbc533;
	color: #0077da;
	text-decoration: none;
}
#nav-toggle {
	display: none;
	position: absolute;
	right: 10px;
	top: 9px;
	width: 30px;
	height: 26px;
	cursor: pointer;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #005daa;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}
#GlobalNavi ul li {
	float: left;
	width: 160px;
}
#GlobalNavi ul li a {
	display: block;
	background: #e7e7e8;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	color: #58585a;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-o-transition: all .25s ease;
}
#GlobalNavi ul li a:hover {
	background: #005daa;
	color: #fff;
	text-decoration: none;
}
#GlobalNavi ul li.report {
	display: none;
}
#GlobalMain {

}
#GlobalContents {
	background: #fff;
	padding: 25px;
}
#GlobalFooter {
	padding: 15px 0 40px;
	background: #e7e7e8;
	text-align: center;
}
#GlobalFooter ul {
	margin-bottom: 30px;
}
#GlobalFooter ul li {
	display: inline;
	margin-right: 25px;
}
#GlobalFooter ul li a {
	font-size: 12px;
	font-weight: bold;
	color: #58585a;
}
#GlobalFooter ul li a:hover {
	color: #005daa;
	text-decoration: none;
}
small {
	font-size: 11px;
	line-height: 13px;
	color: #58585a;
}

@media screen and (max-width: 640px) {
	#GlobalWrapper {
		width: 100%;
		margin: 0 auto;
	}
	#GlobalWrapper #login {
		display: block;
		background: #e1e1e1;
		padding: 10px;
	}
	#GlobalWrapper #login a {
		display: block;
		width: 45%;
		padding: 3px 15px;
		background: #f7a81b;
		border-radius: 5px;
		-moz-border-radius:  5px;
		-webkit-border-radius: 5px;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		color: #005daa;
	}
	#GlobalHeader {
		position: relative;
		/*height: 45px; */
		padding: 10px 15px 10px 15px;
		background: #fff;
		border-bottom: 1px solid #e1e1e1;
	}
	#GlobalHeader h1 {
		text-align: center;
	}
	#GlobalHeader h1 img {
		width: 90%;
		height: auto;
	}
	#GlobalHeader a {
		display: none;
	}
	#GlobalHeader a:hover {
		background: #fbc533;
		color: #0077da;
		text-decoration: none;
	}
	#GlobalNavi {
		display: none;
		border-top: 4px solid #005daa;
		background: #333;
		width: 100%;
		text-align: center;
		padding: 0;
	}
	#nav-toggle {
		display: block;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	.open #GlobalNavi {
		/*-moz-transform: translateY(441px);
		-webkit-transform: translateY(441px);
		transform: translateY(441px); */
	}
	#GlobalNavi ul li {
		float: none;
		width: 100%;
	}
	#GlobalNavi ul li a {
		display: block;
		border-top: 1px solid #eee;
		border-bottom: 1px solid #ddd;
		background: #e7e7e8;
		width: 100%;
		padding: 10px 0;
		text-align: center;
		font-weight: bold;
		color: #58585a;
		-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
		-o-transition: all .25s ease;
	}
	#GlobalNavi ul li a:hover {
		background: #005daa;
		color: #fff;
		text-decoration: none;
	}
	#GlobalMain {

	}
	#GlobalMain img {
		width: 100%;
		height: auto;
	}
	#GlobalContents {
		background: #fff;
		padding: 25px 10px;
	}
	#GlobalFooter {
		padding: 15px 0 40px;
		background: #e7e7e8;
		text-align: center;
	}
	#GlobalFooter ul {
		display: none;
	}
	small {
		font-size: 11px;
		line-height: 13px;
		color: #58585a;
	}
}



/*
======================================
	Share Style
======================================
*/
#head {
	font-size: 18px;
	line-height: 22px;
	color: #fff;
}
#head ul:after {
	display: block;
	content: "";
	clear: both;
}
#head ul li {
	float: left;
	width: 74%;
	background: #d91b5c;
	padding: 10px 20px;
	text-align: right;
}
#head ul li.back {
	width: 26%;
	padding: 0;
	text-align: center;
}
#head ul li.back a {
	display: block;
	background: #89002f;
	padding: 10px 20px;
	text-decoration: none;
	color: #fff;
}
#head ul li.back a:hover {
	background: #f03a79;
}
#main {
	float: left;
	width: 650px;
}
#main2 {
	width: 910px;
}
#side {
	float: right;
	width: 240px;
}
#side .banner ul {
	margin-top: 25px;
}
#side .banner ul li {
	margin-bottom: 5px;
}
#side .banner ul li img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
h3 {
	margin-bottom: 15px;
	font-size: 18px;
	color: #005daa;
}
#members h3,
#report h3 {
	color: #d91b5c;
}
@media screen and (max-width: 640px) {
	#head {
		font-size: 16px;
		line-height: 22px;
		color: #fff;
	}
	#head ul:after {
		display: block;
		content: "";
		clear: both;
	}
	#head ul li {
		float: none;
		width: 100%;
		background: #d91b5c;
		padding: 5px 20px;
		text-align: center;
	}
	#head ul li.back {
		width: 100%;
		padding: 0;
		text-align: center;
	}
	#head ul li.back a {
		display: block;
		background: #89002f;
		padding: 10px 20px;
		font-size: 18px;
		text-decoration: none;
		color: #fff;
	}
	#head ul li.back a:hover {
		background: #f03a79;
	}
	#main {
		float: none;
		width: 100%;
	}
	#main2 {
		width: 100%;
	}
	#side {
		margin-top: 15px;
		float: none;
		width: 100%;
	}
	#side .pageplugin .fb-page {
		width: 100% !important;
	}
	#side .banner ul {
		margin-top: 25px;
	}
	#side .banner ul:after {
		display: block;
		content: "";
		clear: both;
	}
	#side .banner ul li {
		float: left;
		width: 50%;
		margin-bottom: 5px;
		padding: 5px;
	}
	#side .banner ul li img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}
}



/*
======================================
	Top Style
======================================
*/
#top .pageplugin {
	float: left;
	width: 500px;
}
#top .information {
	float: right;
	width: 390px;
}
#top .information h2 {
	margin-bottom: 3px;
	font-size: 18px;
	color: #005daa;
}
#top .information .map {
	border: 2px solid #ddd;
	margin-top: 15px;
	padding: 10px;
}
#top .information .map #googlemap {
	width: 100%;
	height: 300px;
}
#top .information .map iframe {
	width: 100%;
	height: 300px;
}
#top .banner {
	clear: both;
	padding-top: 30px;
}
#top .banner ul {
	text-align: center;
}
#top .banner ul li {
	display: inline;
	margin: 0 3px 6px 3px;
}
#top .banner ul li img {
	width: 19.0%;
	height: auto;
	vertical-align: top;
}
@media screen and (max-width: 640px) {
	#top .pageplugin {
		float: none;
		width: 100%;
	}
	#top .information {
		margin-top: 15px;
		float: none;
		width: 100%;
	}
	#top .information h2 {
		margin-bottom: 3px;
		font-size: 16px;
		color: #005daa;
	}
	#top .information .map {
		border: 2px solid #ddd;
		margin-top: 15px;
		padding: 10px;
	}
	#top .information .map #googlemap {
		width: 100%;
		height: 300px;
	}
	#top .banner {
		padding-top: 15px;
	}
	#top .banner ul {
		text-align: center;
	}
	#top .banner ul li {
		display: block;
		float: left;
		width: 50%;
		margin: 0;
		padding: 5px 2.5px 0;
	}
	#top .banner ul li img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}
}



/*
======================================
	Greeting Style
======================================
*/
#greeting img {
	display: block;
	margin: 0 auto 20px;
}
#greeting p {
	margin-bottom: 15px;
}
#greeting p.name {
	margin-bottom: 5px;
	text-align: right;
}
#greeting table {
	margin: 0 0 15px 15px;
}
#greeting table th {
	text-align: left;
}
#greeting dl {
	margin-top: 40px;
}
#greeting dl dt {
	font-weight: bold;
	color: #099;
}
#greeting dl dd ol {
	margin-left: 35px;
}
#greeting dl dd ol li {
	list-style-type: decimal;
	padding: 3px 0;
}

@media screen and (max-width: 640px) {
	#greeting img {
		display: block;
		margin: 0 auto 20px;
		width: 100%;
		height: auto;
	}
}



/*
======================================
	Overview Style
======================================
*/
#overview p.name {
	margin-bottom: 5px;
	text-align :right;
}
#overview table {
	margin-top: 30px;
	width: 100%;
	border-spacing: 1px;
	border-collapse: separate;
	background: #ddd;
}
#overview table caption {
	padding-bottom: 5px;
	font-size: 12px;
	line-height: 16px;
	text-align: right;
}
#overview table th {
	background: #e6e5d8;
	border: 1px solid #fff;
	padding: 5px 10px;
	vertical-align: middle;
}
#overview table td {
	background: #fff;
	padding: 5px 10px;
}
#overview table td table,
#overview table td table th,
#overview table td table td {
	background: none;
	width: auto;
	margin: 0;
	padding: 0;
	border: none;
	font-weight: normal;
	text-align: left;
}
#overview table td table td {
	padding-left: 20px;
	text-align: right;
}
#overview table td table td.alignleft {
	text-align: left;
}

@media screen and (max-width: 640px) {
	#overview table th {
		display: block;
	}
	#overview table td {
		display: block;
		padding: 10px;
	}
	#overview table td table th,
	#overview table td table td {
		display: table-cell;
	}
}



/*
======================================
	Committee Style
======================================
*/
#committee p.lastupdate {
	margin-bottom: 5px;
	text-align: right;
	font-size: 11px;
	line-height: 13px;
}
#committee table {
	margin-bottom: 30px;
	width: 100%;
	border-spacing: 1px;
	border-collapse: separate;
	background: #ddd;
}
#committee table caption {
	padding: 5px;
	border: 1px solid #ddd;
	border-bottom: none;
	background: #f7a81b;
	font-weight: bold;
}
#committee table thead th {
	padding: 5px 10px;
	background: #e6e5d8;
	border: 1px solid #fff;
}
#committee table tbody th {
	padding: 5px 10px;
	background: #fff;
	border: 1px solid #fff;
	vertical-align: middle;
	color: #099;
}
#committee table tbody td {
	padding: 5px 10px;
	background: #fff;
	border: 1px solid #fff;
	vertical-align: middle;
	text-align: center;
}
#committee table td table {
	border-spacing: 0;
	border-collapse: collapse;
	background: #fff;
	width: 100%;
	margin: 0;
	border: none;
}
#committee table td table th {
	width: 8%;
	padding: 3px 0;
	border: none;
	color: #333;
}
#committee table td table td {
	width: 42%;
	padding: 3px 0;
	border: none;
	text-align: left;
}
#committee table tbody td span {
	display: block;
	margin-top: 5px;
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
	color: #005daa;
}
#committee table tbody td em {
	display: block;
	font-size: 10px;
	font-weight: normal;
	line-height: 14px;
}
#committee table.c2 th {
	width: 50%;
}
#committee table.c3 th {
	width: auto;
}
#committee table.c3 td.group {
	text-align: center;
}

@media screen and (max-width: 640px) {
	#committee table th {
		padding: 5px;
		font-size: 12px;
		line-height: 16px;
		vertical-align: middle;
	}
	#committee table thead th {
		font-size: 11px;
	}
	#committee table tbody td {
		font-size: 12px;
		line-height: 16px;
		padding: 5px;
		text-align: center;
	}
	#committee table tbody td span {
		font-size: 11px;
		font-weight: bold;
		line-height: 16px;
		color: #005daa;
	}
	#committee table tbody td.group {
		width: 30%;
	}
	#committee table tbody td.people {
		width: 45%;
	}
	#committee table.c3 td table {
		width: 100%;
	}
	#committee table.c3 td table th {
		clear: both;
		float: left;
		width: 25%;
		text-align: right;
	}
	#committee table.c3 td table td {
		float: left;
		width: 75%;
		display: block;
		text-align: left;
		white-space: nowrap;
	}
}




/*
======================================
	Member Style
======================================
*/
#member ul.list {
	display: flex;
	flex-wrap: wrap;
}
#member ul.list li {
	flex-basis: 210px;
	max-width: 210px;
	margin-bottom: 10px;
	padding-bottom: 40px;
	/*border: 1px solid #ddd;*/
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-o-transition: all .25s ease;
}
#member ul.list li:nth-child(3n-1) {
	margin: 0 0 10px;
}
#member ul.list li img {
	width: 100%;
	height: auto;
}
#member ul.list li span {
	display: block;
	margin-top: 8px;
	padding: 0 10px;
	font-size: 12px;
	line-height: 16px;
	color: #333;
}
#member ul.list li em {
	display: block;
	padding: 0 10px;
	font-size: 11px;
	color: #666;
}
#member ul.list li strong {
	display: block;
	padding: 0 10px;
	font-size: 16px;
	color: #01B4E7;
}
#member ul.list a {
	text-decoration: none;
}
#member ul.list a:hover li {
	z-index: 100;
	box-shadow:0px 0px 6px 3px #c9c9c9;
	-moz-box-shadow:0px 0px 6px 3px #c9c9c9;
	-webkit-box-shadow:0px 0px 6px 3px #c9c9c9;
}
@media screen and (max-width: 640px) {
	#member ul.list {
		flex-direction: column;
	}
	#member ul.list li {
		flex: none;
		max-width: 100%;
		width: 100%;
		margin-bottom: 0;
		padding-bottom: 0;
		margin: 5px 0;
		/*border-top: 1px solid #ddd;
		border-right: 1px solid #ddd;
		border-bottom: none;
		border-left: 1px solid #ddd;*/
	}
	#member ul.list li:after {
		display: block;
		content: "";
		clear: both;
	}
	#member ul.list li:nth-child(3n-1) {
		margin: 5px 0;
	}
	#member ul.list li:nth-child(2n) {
		margin: 5px 0;
	}
	#member ul.list li img {
		float: left;
		width: 100px;
		height: auto;
	}
	#member ul.list li span,
	#member ul.list li em,
	#member ul.list li strong {
		margin-left: 110px;
		padding: 0;
	}
	#member ul.list li span {
		padding-top: 14px;
	}
	#member ul.list a:hover {
		text-decoration: none;
	}
}





/*
======================================
	Meeting Style
======================================
*/
#meeting p.refresh a {
	display: block;
	width: 60%;
	margin: 30px auto;
	padding: 10px 30px;
	background: #005daa;
	border-radius: 5px;
	-moz-border-radius:  5px;
	-webkit-border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
#meeting p.refresh a:hover {
	background: #0077da;
	color: #fff;
	text-decoration: none;
}
#meeting table {
	width: 100%;
	border-spacing: 1px;
	border-collapse: separate;
	background: #ddd;
}
#meeting table th {
	background: #e6e5d8;
	border: 1px solid #fff;
	padding: 3px 10px;
	vertical-align: middle;
	font-size: 12px;
	line-height: 16px;
}
#meeting table td {
	background: #fff;
	padding: 5px 10px;
	vertical-align: middle;
}
#meeting table td.month,
#meeting table td.day,
#meeting table td.youbi,
#meeting table td.no {
	width: 20%;
	text-align: center;
}
#meeting table td.month,
#meeting table td.day,
#meeting table td.youbi,
#meeting table td.no,
#meeting table td.txt {
	border-bottom: 4px solid #ddd;
}
#meeting table td.month span {
	font-size: 12px;
	line-height: 16px;
	color: #099;
}
@media screen and (max-width: 640px) {
	#meeting table td {
		padding: 5px;
	}
	#meeting table td.month,
	#meeting table td.day,
	#meeting table td.youbi,
	#meeting table td.no,
	#meeting table td.txt {
		white-space: nowrap;
	}
}



/*
======================================
	Enter Style
======================================
*/
#enter p {
	margin-bottom: 15px;
}
#enter p.login a {
	display: block;
	width: 60%;
	margin: 30px auto;
	padding: 10px 30px;
	background: #f7a81b;
	border-radius: 5px;
	-moz-border-radius:  5px;
	-webkit-border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #005daa;
}
#enter p.login a:hover {
	background: #fbc533;
	color: #0077da;
	text-decoration: none;
}
#enter p.refresh a {
	display: block;
	width: 60%;
	margin: 30px auto;
	padding: 10px 30px;
	background: #005daa;
	border-radius: 5px;
	-moz-border-radius:  5px;
	-webkit-border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
#enter p.refresh a:hover {
	background: #0077da;
	color: #fff;
	text-decoration: none;
}



/*
======================================
	Report Style
======================================
*/
#report .search_form {
	background: #e6e5d8;
	padding: 15px;
}
#report .search_form p {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #d5d4c8;
}
#report .search_form input[type="text"],
#report .search_form input[type="submit"] {
	width: 20%;
	font: 14px/20px 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',Arial,sans-serif;
}
#report .search_form input[type="radio"] {
	margin-top: -3px;
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
#report strong.result {
	display: block;
	margin-top: 20px;
	padding: 5px 10px;
	background: #099;
	color: #fff;
}
#report ul.lists {
	margin-top: 15px;
	border-top: 1px dotted #ddd;
}
#report ul.lists li {
	border-bottom: 1px dotted #ddd;
}
#report ul.lists li a {
	position: relative;
	display: block;
	padding: 8px 10px 8px 25px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#report ul.lists li a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 0;
	height: 0;
	margin: -3px 0 0 0;
	border-top: 6px solid #005daa;
	border-left: 6px solid transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#report ul.lists li a:hover {
	padding-left: 35px;
	background: #f2f1f0;
	text-decoration: none;
	font-weight: bold;
	color: #005daa;
}
#report ul.lists li a:hover:after {
	left: 20px;
}

@media screen and (max-width: 640px) {
	#report .search_form span {
		display: block;
	}
}



/*
======================================
	Report / Detail Style
======================================
*/
#wisywig table.photos {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
#wisywig table.photos td {
	width: 33.3%;
	padding: 0 10px;
	text-align: center;
}
#wisywig table.photos td img {
	max-width: 100%;
	height: auto;
	margin-bottom: 5px;
	vertical-align: top;
}
#wisywig .photo-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin-bottom: 25px;
}
#wisywig .photo-list li {
	width: 49%;
	margin-top: 35px;
	text-align: center;
}
#wisywig .photo-list li:nth-of-type(1),
#wisywig .photo-list li:nth-of-type(2) {
	margin-top: 0;
}
#wisywig .photo-list li:nth-of-type(2n-1) {
	margin-right: 1%;
}
#wisywig .photo-list li:nth-of-type(2n) {
	margin-left: 1%;
}
#wisywig .photo-list li img {
	max-width: 100%;
	height: auto;
	margin-bottom: 5px;
	vertical-align: top;
}
#wisywig .box strong.title {
	display: block;
	margin: 20px 0 10px;
	padding: 5px 10px;
	background: #099;
	color: #fff;
}
#wisywig .box p {
	margin-top: 10px;
}
#wisywig .attendance table {
	width: 100%;
	border-spacing: 1px;
	border-collapse: separate;
	background: #ddd;
}
#wisywig .attendance table th {
	width: 14%;
	background: #e6e5d8;
	border: 1px solid #fff;
	padding: 3px 10px;
	vertical-align: middle;
	font-size: 12px;
	line-height: 16px;
}
#wisywig .attendance table td {
	background: #fff;
	padding: 5px 10px;
	text-align: center;
	vertical-align: middle;
}
#wisywig .program {
	border: 2px solid #099;
	margin-top: 15px;
	padding: 15px;
}
#wisywig .program strong.title {
	display: block;
	margin-bottom: 5px;
	padding: 5px 0;
	font-size: 16px;
	color: #099;
}


@media screen and (max-width: 640px) {
	#wisywig table.photos td {
		display: block;
		width: 100%;
		padding-bottom: 10px;
		text-align: center;
	}
	#wisywig table.photos td img {
		width: 100%;
		height: auto;
	}
	#wisywig .photo-list {
		display: block;
	}
	#wisywig .photo-list li {
		width: 100%;
		margin-top: 15px;
	}
	#wisywig .photo-list li:nth-of-type(1),
	#wisywig .photo-list li:nth-of-type(2) {
		margin-top: 15px;
	}
	#wisywig .photo-list li:nth-of-type(2n-1),
	#wisywig .photo-list li:nth-of-type(2n) {
		margin-left: 0;
	}
	#wisywig .attendance .scroll{
		overflow: auto;
		white-space: nowrap;
	}
	#wisywig .attendance .scroll::-webkit-scrollbar{
		height: 5px;
	}
	#wisywig .scroll::-webkit-scrollbar-track{
		background: #f1f1f1;
	}
	#wisywig .scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
	#wisywig .attendance thead th {
		white-space: nowrap;
	}
}















/*
======================================
	Blog Style
======================================
*/
#members ul.lists {
	margin-top: -15px;
}
#members ul.lists li {
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}
#members ul.lists li > a {
	position: relative;
	display: block;
	padding: 8px 5px;
	font-size: 24px;
	line-height: 28px;
}
#members ul.lists li > a:hover {
	text-decoration: underline;
	font-weight: bold;
	color: #005daa;
}
#members ul.lists li p {
	margin: 10px 0 10px 7px;
	font-size: 14px;
	line-height: 14px;
	color: #666;
}
#members ul.lists li p span a {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #666;
	line-height: 14px;
}
#members ul.lists li a.more {
	display: inline;
	padding: 0 7px;
	font-size: 14px;
}
#members #pagenavi {
	margin: 40px 0 60px;
}
#members #pagenavi ul {
	display: table;
	width: 100%;
}
#members #pagenavi ul li.prev {
	width: 50%;
	display: table-cell;
	text-align: center;
}
#members #pagenavi ul li.next {
	width: 50%;
	display: table-cell;
	text-align: center;
}
#members #pagenavi ul li a {
	padding: 10px 50px;
	border-radius: 5px;
	-moz-border-radius:  5px;
	-webkit-border-radius: 5px;
	background: #005daa;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}
#members #pagenavi ul li a:hover {
	background: #0077da;
}
#members #side .categories {
	margin-bottom: 15px;
}
#members #side .categories strong {
	font-size: 18px;
	line-height: 22px;
}
#members #side .syuho {
	margin-bottom: 30px;
}
#members #side .syuho a {
	display: block;
	background: #f7a81b;
	border-radius: 5px;
	-moz-border-radius:  5px;
	-webkit-border-radius: 5px;
	padding: 20px 10px;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	text-decoration: none;
	color: #005daa;
}
#members #side .syuho a:hover {
	background: #fbc533;
	color: #0077da;
}
#members #side .categories ul {
	margin-top: 15px;
	border-top: 1px solid #ddd;
}
#members #side .categories ul li {
	border-bottom: 1px solid #ddd;
}
#members #side .categories ul li a {
	position: relative;
	display: block;
	padding: 8px 10px 8px 15px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#members #side .categories ul li a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 0;
	margin: -3px 0 0 0;
	border-top: 6px solid #005daa;
	border-left: 6px solid transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#members #side .categories ul li a:hover {
	padding-left: 25px;
	text-decoration: none;
	font-weight: bold;
	color: #d91b5c;
}
#members #side .categories ul li a:hover:after {
	left: 10px;
	border-top: 6px solid #d91b5c;
}
#members #side .categories ul li ul {
	margin-top: 0;
}
#members #side .categories ul li ul li {
	padding-left: 30px;
}
#members #side .categories ul li ul li:last-child {
	border-bottom: none;
}
#members #blog {
	overflow: hidden;
}
#members #blog h2.page-title {
	padding: 8px 0;
	font-size: 24px;
	line-height: 28px;
	color: #005daa;
}
#members #blog p.date {
	margin: 10px 0 40px;
	font-size: 14px;
	line-height: 14px;
	color: #666;
}
#members #blog p.date span a {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #666;
	line-height: 14px;
}
#blog h3 {
	font-size: 18px;
	line-height: 24px;
	margin: 20px 0 10px;
	padding: 10px 0;
	color: #01b4e7;
}
#blog h4 {
	font-size: 16px;
	line-height: 22px;
	margin: 20px 0 10px;
	color: #009999;
}
#blog h5 {
	font-size: 14px;
	line-height: 20px;
	margin: 20px 0 10px;
	color: #872175;
}
#blog h6 {
	margin: 40px 0 15px;
	color: #ff7600;
}
#blog em {
	font-style: italic;
}
#blog p {
	margin-bottom: 15px;
}
#blog .alignright {
	float: right;
	margin: 0 0 10px 20px;
}
#blog .alignleft {
	float: left;
	margin: 0 20px 10px 0;
}
#blog .aligncenter {
	display: block;
	margin: 15px auto;
}
#blog dl {
	margin: 15px 0;
}
#blog dt {
	font-weight: bold;
	padding: 5px 10px;
	border-bottom: 1px dotted #ddd;
}
#blog dd {
	padding: 5px 10px 20px 10px;
}
#blog ul {
	margin: 15px 0;
	margin-left: 20px;
}
#blog ul li {
	list-style-type: disc;
}
#blog ol {
	margin: 15px 0;
	margin-left: 25px;
}
#blog ol li {
	list-style-type: decimal;
}
#blog pre {
	margin: 15px 0;
	padding: 20px;
	border: 5px solid #ddd;
}
#blog blockquote {
	margin: 15px 0;
	padding: 20px 20px 5px 20px;
	background: #f2f1f0;
}
@media screen and (max-width: 640px) {
	#members ul.lists li > a {
		position: relative;
		display: block;
		padding: 8px 5px;
		font-size: 18px;
		line-height: 22px;
	}
	#members ul.lists li p {
		margin: 10px 0 10px 7px;
		font-size: 12px;
		line-height: 12px;
		color: #666;
	}
	#members #blog {
		border-bottom: 2px solid #ddd;
		padding-bottom: 40px;
		margin-bottom: 20px;
	}
	#members #blog h2.page-title {
		padding: 8px 0;
		font-size: 20px;
		line-height: 24px;
		color: #005daa;
	}
	#members #blog p.date {
		margin: 10px 0 40px;
		font-size: 12px;
		line-height: 12px;
		color: #666;
	}
	#members #blog p.date span a {
		margin-left: 10px;
		padding-left: 10px;
		border-left: 1px solid #666;
		line-height: 14px;
	}
	#blog h3 {
		font-size: 18px;
		line-height: 24px;
		margin: 20px 0 10px;
		padding: 10px 0;
		color: #01b4e7;
	}
	#blog h4 {
		font-size: 16px;
		line-height: 22px;
		margin: 20px 0 10px;
		color: #009999;
	}
	#blog h5 {
		font-size: 14px;
		line-height: 20px;
		margin: 20px 0 10px;
		color: #872175;
	}
	#blog h6 {
		margin: 40px 0 15px;
		color: #ff7600;
	}
	#blog em {
		font-style: italic;
	}
	#blog p {
		margin-bottom: 15px;
	}
	#blog img {
		width: 100%;
		height: auto;
	}
	#blog .alignright {
		float: none;
		display: block;
		margin: 15px auto;
	}
	#blog .alignleft {
		float: none;
		display: block;
		margin: 15px auto;
	}
	#blog .aligncenter {
		display: block;
		margin: 15px auto;
	}
	#blog dl {
		margin: 15px 0;
	}
	#blog dt {
		font-weight: bold;
		padding: 5px 10px;
		border-bottom: 1px dotted #ddd;
	}
	#blog dd {
		padding: 5px 10px 20px 10px;
	}
	#blog ul {
		margin: 15px 0;
		margin-left: 20px;
	}
	#blog ul li {
		list-style-type: disc;
	}
	#blog ol {
		margin: 15px 0;
		margin-left: 25px;
	}
	#blog ol li {
		list-style-type: decimal;
	}
	#blog pre {
		margin: 15px 0;
		padding: 20px;
		border: 5px solid #ddd;
	}
	#blog blockquote {
		margin: 15px 0;
		padding: 20px 20px 5px 20px;
		background: #f2f1f0;
	}
}