html{
	margin: 0 auto;
	width: 100%;
	background-color: #6e1369;
	font-size: 16px;
}

a{
	color: #ffc107;
	font-weight: bold;
}


/* ヘッダー */
header{
	min-height: 150px;
	border: dashed #c545c0;
	background-color: #b362ad;
	color: white;
	max-width: 1200px;
	margin: 20px auto;
	box-sizing: border-box;
	padding: 20px;
}

header a{
	color: #ffccbc;
	font-size: 32px;
	font-weight: bold;
	text-decoration: none;
}


/* メインコンテンツ */
.Maincontents{
	width: 100%;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
	border: dashed #c545c0;
	background-color: #862884;
	color: white;
	padding: 10px;
	margin-bottom: 20px;
}

.Maincontents img{
	max-width: 100%;
	height: 100%;
	margin: 10px;
}

.Maincontents ul{
	margin: 10px 0;
}

.Maincontents li{
	display: inline-block;
}

.Maincontents li:nth-of-type(n+2):before{
	content: ">";
	padding: 0 5px;
}

.news{
	width: 100%;
	word-wrap: break-word;
	box-sizing: border-box;
	border: dashed #c545c0;
	border-radius: 13px;
	background-color: #ba6eb2;
	color: white;
	line-height: 150%;
	margin-bottom: 20px;
	padding: 10px;
}

.Maincontents h1, .Maincontents h2{
	box-sizing: border-box;
	border: dashed #c545c0;
	background-color: #bd6cbe;
	color: white;
	padding: 5px;
}

article{
	overflow: hidden;
}

article p{
	padding: 7px;
}


/* サブメニュー */
#secondCONTENT{
	width: 100%;
	box-sizing: border-box;
	border: dashed #c545c0;
	background-color: #b86cb4;
	color: white;
	line-height: 130%;
	padding: 10px;
	
}

#secondCONTENT h3{
	margin-bottom: 25px;
	padding: 5px 8px;
	background-color: #b86cb4;
	color: white;
	font-weight: bold;
	
}

#secondCONTENT ul{
	list-style: none;
	line-height: 1.8em;
	font-size: 14px;
	color: white;
	
}

#secondCONTENT li:before{
	content: "■";
}

/* フッター */
footer{
	border: dashed #c545c0;
	background-color: #b362ad;
	color: white;
	text-align: center;
	padding: 10px 0;
	max-width: 1200px;
	margin: 20px auto;
	box-sizing: border-box;
	padding: 65px 0;
}

footer a{
	color: #ffccbc;
	font-weight: bold;
	text-decoration: none;
}