/* -------------------------------------------------------------------- */
/* ▼全ての共通デザインを記述 */
/* -------------------------------------------------------------------- */

/*タイトル*/
.title {
	margin: 14px 90px;
}

/*リンク装飾*/
a {
	decoration: none;
	transition: color 0.3s;
}
a:hover {
	color : #ff7043;
}

/*メニューの表記*/
#str_menu {
	display: block;
	position: absolute;
	margin-top: -14px;
	margin-left: 0;
}

/*通常領域*/
.area {
	width: 100%;
}

/*左右分ける領域*/
.leftbox {
	padding: 10px;
	margin: 0px;
}
.rightbox {
	padding: 10px;
	margin: 0px;
}
.rightbox img {
	width: 60%;
}

/*左右分けない場合の領域*/
.stdbox {
	padding: 10px;
	margin: 0px;
}

/*フッター調整*/
.footer_spacer {
	height: 80px;
}
.footer_spacer_l {
	height: 0;
}
.footer_spacer_r {
	height: 80px;
}

/*デザイン見出し*/
.Dec1:first-letter {
	font-size: 1.5em;
	color: #008000;
}
.Dec2:first-letter {
	font-size: 1.5em;
	color: #808000;
}

.Dec3 {
	color: #008000;
	padding-left: 0.5em;
	border-right: solid 3px #008000;
	border-bottom: solid 3px #008000;
	border-radius: 0.5em;/*角丸*/
	width: 2.5em;
}

.Dec4 {
	padding: 0.25em 0.5em;
	color: #008000;
	background: transparent;
	border-left: solid 5px #008000;
}



/*今後の予定テーブル*/
.uctable_right {
	float: none;
	width: 100%;
}
.uctable_left {
	display: none;
}
.uctable ul {
	display: table-row;
}
.uctable > ul > li {
	display: table-cell;
	padding: 5px;
	border-bottom: 1px solid #808000;
	width: 600px;
}
#uctable_cols_title {
	width: 25%;
	white-space: nowrap;
	text-align: center;
}

/*これまでの活動*/
.acttable_left {
	float: none;
	width: 100%;
}
.acttable_right {
	width: 100%;
}
.acttable_right ul {
	overflow: hidden;
	padding-left: 0;
	text-align: center;
}
.acttable_right ul li {
	display: inline-block;
	width: 25%;
	text-align: center;
}
.actmenu ul {
	overflow: hidden;
	padding-left: 0;
	text-align: center;
}
.actmenu ul li {
	display: inline-block;
	width: 98%;
	text-align: center;
}
.actmenu ul li img {
	width: 100%;
	max-width: 300px;
}

/*運営構成テーブル*/
.pdtable {
	margin: 0 auto;
	border-collapse: collapse;
	width: 90%;
}
.pdtable tr td {
	margin: 0;
	padding: 20px;
	width: 50%;
	white-space: nowrap;
}
.pdborder {
	border-bottom: 1px solid #808000;
}

/*メルマガサンプル領域*/
.mailmagazinesample {
	padding: 5px;
	background: #efffff;
}
.mailmagazinesample hr {
	border-top: 2px solid #8080ff;
}

/*お知らせ領域*/
.infomation {
	position: fixed;
	bottom: 90px;
	right: 1em;
	width: 80%;
	background: #ffffff;
	opacity: 0.9;
	border-radius: 15px;
	padding: 15px;
}

/* -------------------------------------------------------------------- */
/* ▼タブレットや狭い画面のPC用デザインとして付け足すデザインだけを記述 */
/* -------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
	
	/*タイトル*/
	.title {
		margin: 20px 20px;
	}

	/*メニューの表記*/
	#str_menu {
		display: none;
	}

	/*左右分ける領域*/
	.leftbox {
		float: left;
		width: 65%;
	}
	.rightbox {
		overflow: hidden;
	}
	.rightbox img {
		width: 100%;
	}

	/*フッター調整*/
	.footer_spacer_l {
		height: 80px;
	}
	.footer_spacer_r {
		height: 80px;
	}

	/*今後の予定テーブル*/
	.uctable_left {
		display: block;
		float: right;
		width: 30%;
	}

	/*これまでの活動*/
	.acttable_left {
		float: right;
		width: 80%;
	}
	.acttable_right ul li {
		width: 100%;
	}
	.actmenu ul li {
		width: 33%;
	}
	.actmenu ul li img {
		width: 100%;
		max-width: 300px;
	}


	/*お知らせ領域*/
	.infomation {
		width: 50%;
		max-width: 500px;
	}
	
}

/* ---------------------------------------------- */
/* ▼PC用デザインとして付け足すデザインだけを記述 */
/* ---------------------------------------------- */
@media screen and (min-width: 960px) {
	
	/*通常領域*/
	.area {
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
	}

	/*左右分ける領域*/
	.leftbox {
		width: 70%;
	}
	
	/*お知らせ領域*/
	.infomation {
		max-width: 768px;
	}

	/*これまでの活動*/
	.acttable_left {
		float: right;
		width: 80%;
	}
	.acttable_right ul li {
		width: 100%;
	}
	.actmenu ul li {
		width: 19%;
	}


}