﻿@charset "UTF-8";

main {
	text-align: center;
}
.gallery-container {
	margin: 1em 0;
}
.gallery-selector {
	display: none;
}
.gallery-label {
	display: inline-block;
	box-sizing: border-box;
	width: 12em;
	margin: .2em;
	border: .1em solid #999;
	border-radius: .5em;
	padding: .9em;
	background-color: #ccc;
	white-space: nowrap;
}
.gallery-label:hover {
	background-color: #eee;
	cursor: pointer;
}
.gallery-selector:checked+.gallery-label {
	background-color: #fff;
	font-weight: bold;
	cursor: default;
}
.gallery-content {
	display: none;
	margin: 1em 0;
}
.gallery-content img {
	max-width: 100%;
	box-sizing: border-box;
	border: .1em solid #999;
}
#gallery-selector01:checked~#gallery-image01 {
	display: block;
}
#gallery-selector02:checked~#gallery-image02 {
	display: block;
}
#gallery-selector03:checked~#gallery-image03 {
	display: block;
}
#gallery-selector04:checked~#gallery-image04 {
	display: block;
}
/* 下側のラベル */
#gallery-selector01:checked~#gallery-label01 {
	background-color: #fff;
	font-weight: bold;
	cursor: default;
}
#gallery-selector02:checked~#gallery-label02 {
	background-color: #fff;
	font-weight: bold;
	cursor: default;
}
#gallery-selector03:checked~#gallery-label03 {
	background-color: #fff;
	font-weight: bold;
	cursor: default;
}
#gallery-selector04:checked~#gallery-label04 {
	background-color: #fff;
	font-weight: bold;
	cursor: default;
}
/* 地図ページ */
img.map {
	box-sizing: border-box;
	width: 100%;
	max-width: 500px;
	height: auto;
	border: .1em solid #999;
}
div.imgblock {
	float: left;
	box-sizing: border-box;
	width: 50%;
	padding: .5em;
}
div.month-end {
	clear: both;
}
@media screen and (min-width: 60em) {
	div.imgblock { width: 25%; }
}
