:root {
	--brand-green: #2c5e43;
	--brand-green-dark: #1e4530;
}

.post-content h2,
.post-content h3,
.score p {
	font-family: sans-serif;
}

.col_2 {
	display: flex;
	gap: 1.5em;
	align-items: flex-end;
	margin-bottom: 1em;
}
.col_2 > * {
	flex: 1 1 0;
}
.col_2 img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ===== 共通テーブル基盤 ===== */
.schedule_table,
.golf_table,
.score_table {
	width: 100%;
	border-collapse: collapse;
	font-family: sans-serif;
	font-size: 14px;
	margin-bottom: 40px;
}

/* ===== 共通ヘッダー（日付行）===== */
.schedule_table thead th,
.golf_table .date_header {
	background-color: var(--brand-green);
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	padding: 10px 8px;
	letter-spacing: 0.08em;
	border-color: var(--brand-green-dark);
	border-bottom: 3px solid var(--brand-green-dark);
	text-align: center;
}

/* ===== 日程表 ===== */
.schedule_table th,
.schedule_table td {
	border: 1px solid #333;
	padding: 6px 10px;
	text-align: center;
	vertical-align: middle;
}
.schedule_table .sch_date {
	font-weight: bold;
	white-space: nowrap;
}
.schedule_table .sch_time {
	white-space: nowrap;
}
.schedule_table td:last-child {
	text-align: left;
}
.course_detail_table td:last-child {
	text-align: center;
}

/* ===== スタート表 ===== */
.golf_table th,
.golf_table td {
	border: 1px solid #333;
	text-align: center;
	padding: 4px;
	vertical-align: middle;
}
.golf_table th {
	background-color: #f2f2f2;
	font-weight: normal;
}
.golf_table .col_group {
	width: 4%;
}
.golf_table .col_time {
	width: 8%;
}
.golf_table .course_header,
.score_table .course_header {
	background-color: #e6e6e6;
	font-weight: bold;
	text-align: left;
	padding: 6px 10px;
}
.golf_table td.player_cell {
	padding: 0;
	width: 22%;
}
br.sp_br {
	display: none;
}
@media (max-width: 768px) {
	br.sp_br {
		display: block;
	}
}
.player_cell p {
	margin: 0;
	padding: 5px 6px;
}
.p_name {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
}
.p_info {
	font-size: 10px;
	border-top: 1px dashed #999;
}
.p_note{
	padding: 1rem;
	border: 1px solid #ccc;
}
.p_note ul{
	font-size: 14px;
	list-style: none;
	margin: 0;
}

/* ===== ギャラリー ===== */
.gallery_day {
	margin-bottom: 32px;
}
.gallery_day h3 {
	margin-bottom: 12px;
}
.gallery_grid a,
.gallery_swiper .swiper-slide a {
	display: block;
	line-height: 0;
}
.gallery_grid img,
.gallery_swiper .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
	cursor: pointer;
}
.gallery_caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 8px 6px;
	font-family: sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	background: rgba(0, 0, 0, 0.6);
}

/* 代表写真グリッド（基準2カラム、568px以下は1カラム） */
.gallery_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
@media (max-width: 568px) {
	.gallery_grid {
		grid-template-columns: 1fr;
	}
}
.gallery_grid li {
	position: relative;
	margin: 0;
}
.gallery_grid li:first-child {
	grid-column: 1 / -1;
}

/* その他の写真：Swiperスライダー */
/* Swiper本体(.swiper)はoverflow:hiddenが既定のため、外側にナビボタン用のラッパーを置く */
.gallery_swiper_wrap {
	position: relative;
	margin: 0 40px;
	--swiper-navigation-color: #333;
	--swiper-navigation-size: 14px;
}
.gallery_swiper_wrap .swiper-button-prev,
.gallery_swiper_wrap .swiper-button-next {
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.gallery_swiper_wrap .swiper-button-prev:hover,
.gallery_swiper_wrap .swiper-button-next:hover {
	background-color: var(--brand-green);
	border-color: var(--brand-green);
	--swiper-navigation-color: #fff;
}
.gallery_swiper_wrap .swiper-button-prev {
	left: -40px;
}
.gallery_swiper_wrap .swiper-button-next {
	right: -40px;
}
.gallery_swiper_wrap .swiper-button-prev.swiper-button-disabled,
.gallery_swiper_wrap .swiper-button-next.swiper-button-disabled {
	opacity: 0.3;
}
@media (max-width: 600px) {
	.gallery_swiper_wrap {
		margin: 0 32px;
	}
	.gallery_swiper_wrap .swiper-button-prev {
		left: -32px;
	}
	.gallery_swiper_wrap .swiper-button-next {
		right: -32px;
	}
}

/* ===== 成績表 ===== */
.score_table th,
.score_table td {
	border: 1px solid #333;
	padding: 8px 10px;
	text-align: center;
	vertical-align: middle;
}
.score_table thead th {
	background-color: var(--brand-green);
	color: #fff;
	font-weight: bold;
	border-color: var(--brand-green-dark);
	border-bottom: 3px solid var(--brand-green-dark);
}
.score_table .col_name {
	text-align: left;
}

/* ===== GLightbox 閉じるボタン拡大 ===== */
.glightbox-clean .gclose {
	width: 48px;
	height: 48px;
	top: 16px;
	right: 16px;
}
.glightbox-clean .gclose svg {
	width: 26px;
	height: auto;
}
@media (max-width: 768px) {
	.glightbox-clean .gclose {
		width: 44px;
		height: 44px;
		top: 10px;
		right: 10px;
	}
}

