@charset "utf-8";


/* セクション全体の余白と背景 */
.club-section {
	padding: 20px 0;
	background-color: var(--color-beg3);
}
.club-section .cinner {
	position: relative;
}
.club-section .cinner .club-bird {
	position: absolute;
	top: -80px;
	right: 0;
	padding-right: var(--sp-20);
}

/* 見出し画像 */
.club-section h3 {
	margin-bottom: 50px;
	width: 100%;
}

.club-section h3 img {
	width: min(46%, 480px);
	display: block;
}

/* --- グリッドレイアウト（PC版：3カラム） --- */
.club-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
}

.club-card {
	display: flex;
	flex-direction: column;
}

.club-card figure {
	margin: 0 0 20px 0;
}
.club-card figure img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.club-card .body h4 {
	font-weight: var(--fw-bold);
	border-bottom: 1px solid var(--color-bk);
	padding: 0 0 4px 0;
	margin: 0 0 4px 0;
}

.club-card .body p {
	line-height: 1.4;
	text-align: justify;
}



.sns_area {
	background: var(--color-beg5);
	border-top: 1px solid var(--color-bk);
	border-bottom: 1px solid var(--color-bk);
	padding: 40px;
	margin: 60px 0;
}

.sns_area h3 {
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	margin-bottom: 20px;
}
.sns_area h3 img {
	width: 55px;
}

.sns_area ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.sns_area li {
	width: 100%;
}





.year-section {
	padding: 20px 40px 40px 40px;
	background-color: var(--color-beg3);
}

.year-section h3 {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	text-align: center;
	margin-bottom: 20px;
}

.year-section .year-container {
	background: var(--color-wh);
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	align-items: stretch;
}

.year-section .year-photo {
	width: 40%;
}

.year-section .year-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.year-section .year-list-wrapper {
	width: 60%;
	padding: 40px;
	display: flex;
	align-items: grid;
	grid-template-columns: repeat(2, 1fr); /* PCは2列 */
	gap: 20px;
}

.year-section ul {
	flex: 1;
}

.year-section ul li {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}

/* 月の丸印 */
.year-section .month {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fz-16);
	font-weight: var(--fw-bold);
}
.year-section .month span {
	font-size: var(--fz-12);
}

.year-section ul p {
	font-size: var(--fz-16);
	font-weight: var(--fw-bold);
	padding-bottom: 0;
	line-height: 1.4;
}

/* --- 月ごとの色分け（画像の色味に合わせる） --- */
.m04, .m05, .m06 { background: #FFEFC1; } /* 春：黄色系 */
.m07, .m08, .m09 { background: #FFE4D9; } /* 夏：オレンジ系 */
.m10, .m11 { background: #D3E0C3; }       /* 秋：緑系 */
.m12, .m01, .m02, .m03 { background: #D8E8F0; } /* 冬：青系 */








/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* スマホ用 */
@media (max-width:769px) {



	.club-section {
		padding: 50px 0;
		margin-top: 100px;
	}
	
	.club-section .cinner .club-bird {
		top: -3%;
		width: 40%;
	}
	.club-section .cinner .club-bird img {
	}
	.club-section h3 {
			margin-bottom: 30px;
	}
	
	.club-section h3 img {
		max-width: 80%; /* スマホでは少し小さめに */
		width: 60%;
	}
	
	.club-grid {
			grid-template-columns: 1fr; /* 1列に固定 */
			gap: 40px;
	}
	
	.club-card .body h4 {
			font-size: 17px;
	}
	
	.club-card .body p {
			font-size: 14px;
	}


	.sns_area {
		padding: 40px 20px;
	}
	
	.sns_area h3 {
		font-size: var(--fz-20);
		font-weight: var(--fw-bold);
		margin-bottom: 20px;
	}
	.sns_area h3 {
		display: flex;
		line-height: 1.4;
	}
	.sns_area h3 img {
		width: 55px;
		margin-right: 10px;
	}
	
	.sns_area ul {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}





	.year-container {
		flex-direction: column;
	}
	.year-section .year-photo,
	.year-section .year-list-wrapper {
		width: 100%;
		flex-direction: column;
		gap: 0;
	}
	.year-section .year-list {
		grid-template-columns: 1fr; /* スマホは1列 */
	}
	.year-section .year-list-wrapper {
		padding: 30px 20px;
	}




}