@charset "UTF-8";
/* CSS Document */
/* ===================================================
	全称セレクタ
======================================================*/
*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	font-style: normal;
}

/* ===================================================
	グーグルフォントを指定したCSS
======================================================*/
.cabin-sketch-bold {
	font-family: "Cabin Sketch", sans-serif;
	font-size: 100px;
	font-weight: 700;
	font-style: normal;
}

body{
	background: linear-gradient(#7ae0bd, #ade0b6);
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}


/* ===================================================
	ヘッダー
======================================================*/
div header{
	color: #fff;
	text-align: center;
	margin: 30px;
}

div h1{
	color: #fff;
	text-align: center;
	text-shadow: 3px 3px 3px #438a71;
	margin: 30px;
	
}

div header h2#header_h2{
	color: #fff;
	text-align: center;
	text-shadow: 3px 3px 3px #438a71;
	margin: auto;
	
}

nav ul{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

nav ul li{
	margin-left: 50px;
}

nav ul li a{
	color: #5a5a5a;
	font-size: 30px;
	text-decoration: none;
}

div header p#header_date{
	color: #fff;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	text-shadow: 3px 3px 3px #438a71;
	margin: 10px;
}

/*=====================================================
	メイン画像
======================================================*/
.main_image{
	width: 1000px;
	height: auto;
	border-radius: 33px;
	margin: 20px;
	align-items: center;
}

/*=====================================================
	メインコンテンツ
======================================================*/
#contents_title{
	color: #fff;
	font-size: 35px;
	margin: 30px;
}

#contents2{
	color: #5a5a5a;
	font-size: 30px;
	margin: 50px 0 30px 0;
}

#contents3{
	color: #5a5a5a;
	font-size: 25px;
	margin: 30px 0 30px 0;
	text-align: center;
}

/*=====================================================
	イベントプログラム
======================================================*/
#program{
	color: #5a5a5a;
	font-size: 30px;
	margin: 50px 0 20px 0;
}

table{
	color: #5a5a5a;
	background-color: #fff;
	border: 2px solid #000;
	border-collapse: collapse;
	margin: 0 auto;
}

thead{
	font-size: 20px;
	background-color: #aea8d5;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	padding: 5px;
}

th,td{
	border: 2px dashed #000;
	border-right: 2px dashed #000;
	padding: 10px 30px;
}

tr:nth-child(2n){
	background-color: #E4F8F3;
}

tfoot{
	background-color: #E4F8F3;
}
/* ===================================================
	フッター
======================================================*/
footer{
	width: 100%;
	height: 50px;
	background-color: #bee7dd;
	margin: 0 auto;
	margin-top: 50px;
}

footer p{
	text-align: center;
	padding: 20px;
}

