/* CSS Document */

#eventRefined{
	display: flex;
	justify-content: center;
	padding: 2em 0;
	overflow: hidden;
	& div+div{
		margin: 0;
	}
	& ul{
		display: flex;
		flex-wrap: wrap;
		margin: -0.3em;
		list-style: none;
	}
	& li{
		margin: 0.3em;
	}
	& a{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 2.6em;
		width: 5em;
		background: var(--color-theme);
		border-radius: 2.6em;
		color: #fff;
		text-decoration: none;
		line-height: 1em;
		&:hover{
			opacity: 0.8;
		}
	}
	& .lsc-current-page{
		background: #ccc !important;
		pointer-events: none;
	}
}

#pagenation{
	padding-bottom: 0;
	}

/* 使用していない
#sideYm{
	margin-top: 1.5em;
	& ul{
		list-style: none;
	}
	& li{
		padding: 0.5em;
		border-bottom: 1px solid var(--color-theme);
		&.active{
			& a,
			& a:hover{
				color: var(--color-theme);
				fill: var(--color-theme);
			}
		}
	}
	& li+li{
		margin-top: 0.5em;
	}
	& a{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: inherit;
		fill: #BDCCD4;
		text-decoration: none;
		line-height: 1.4em;
		&:hover{
			opacity: 0.8;
			color: var(--color-theme);
			fill: var(--color-theme);
		}
	}
	& i{
		display: flex;
		align-content: center;
		margin-right: 0.5em;
	}
	& svg{
		width: 1em;
		height: 1em;
	}
}
*/

.headNavi{
	font-size: 90%;
	}

.sightWrap {
	padding-top: 3em;
	}

.parkingInfo{
	& dl{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		grid-gap: 1em;
		@media (min-width: 768px) {
			justify-content: end;
		}
	}
	& dt{
		position: relative;
		width: 100%;
		font-weight: bold;
		@media (min-width: 768px) {
			width: auto;
		}
		&:after{
			content: "：";
		}
	}
	& dd{
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		grid-gap: 0.5em;
		position: relative;
		&:after{
			content: "";
			aspect-ratio: 1;
			width: 1.5em;
			height: auto;
			background: var(--icon-light) center / contain no-repeat;
		}
		&:nth-of-type(2){
			&:after{
				background: var(--icon-during) center / contain no-repeat;
			}
		}
		&:nth-of-type(3){
			&:after{
				background: var(--icon-high) center / contain no-repeat;
			}
		}
	}
}

.tableScroll{
	font-size: 90%;
	text-align: left;
	word-break:break-all;
	}

.table{
	& td{
		&[data-congested]:before{
			content: "";
			display: block;
			aspect-ratio: 1;
			width: 2.5em;
			height: auto;
			margin: auto;
			background: var(--icon-light) center / contain no-repeat;
		}
		&[data-congested="during"]:before{
			background: var(--icon-during) center / contain no-repeat;
		}
		&[data-congested="high"]:before{
			background: var(--icon-high) center / contain no-repeat;
		}
	}
	& ul{
		display: flex;
		flex-wrap: wrap;
		align-self: stretch;
		list-style: none;
		order: 1;
	}
	& li{
		margin: 0 0.25em 0 0;
		padding: 0.15em 0.5em;
		background: var(--color-theme);
		color: #fff;
		font-size: 90%;
	}
	.new{
		background: rgba(232,0,127,0.7);
	}
	.cancel{
		background: rgba(128,0,0,0.8);
	}
}


		
/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
.eventList{
	& dl+dl{
		margin-top: 2em;
	}
}
.sightWrap{
	padding-top: 5em;
	}
.tableScroll{
	overflow-x: scroll;
	overflow-y: hidden;
	border: 1px solid #ccc;
	& table{
		width: auto;
		margin: -1px;
	}
	& th,
	& td{
		white-space: nowrap;
	}
}	
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下横向き*/
}
@media (max-width: 767px) and (orientation:portrait), (max-width: 575px) and (orientation:landscape) {
/*767px以下縦向き, 575px以下横向き*/
}
@media (min-width: 768px), (min-width: 576px) and (max-width: 767px) and (orientation:landscape) {
/*576px～767px横向き, 768px以上,*/
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 576px) and (max-width: 767px) and (orientation:landscape) {
/*576px～767px横向き, 768px～991px*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
.eventList{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
.eventList{}
	.eventList dl{
		width: calc(50% - 0.75em);
		}
	.eventList dl:nth-of-type(n+3){
		margin-top: 1.5em;
		}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
.eventList{}
	.eventList dl{
		width: calc(50% - 1em);
		}
	.eventList dl:nth-of-type(n+3){
		margin-top: 2em;
		}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}
		



