@charset "utf-8";
/* CSS Document */

.event-note {
	margin: 0 0 20px;
	color: #1f6b33;
	font-weight: bold;
	line-height: 1.6;
	}

/* イベント一覧ここから */
.event-section {
	margin-top: 24px;
	}
	
/* 折りたたみ */
.event-group {
	margin-bottom: 24px;
	}
	
.event-group summary {
	padding: 14px 18px;
	background: #eeeeee;
	color: #222222;
	font-size: 1.35rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.04em;
	border: 1px solid #cccccc;
	border-radius: 6px;
	cursor: pointer;
	}

.event-group summary:hover,
.event-group summary:focus {
	background: #e2e2e2;
	}

.event-group summary:focus {
	outline: 3px solid #1f5f99;
	outline-offset: 3px;
	}	
	
.event-group[open] summary {
	margin-bottom: 20px;
	}
	
		
/* 一覧内容 */
.event-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	}
	
/* チラシ */	
.event-poster {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 8px;
	background: #ffffff;
	text-decoration: none;
	}
	
.event-poster:hover,
.event-poster:focus {
	opacity: 0.85;
	}
	
.event-poster:focus {
	outline: 3px solid #f56a00;
	outline-offset: 3px;
	}
	
.event-poster img {
	max-width: 100%;
	max-height: 900px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
	}