.new_topics ul,
.new_long_event ul {
	display: flex;
}

/* カテゴリーリンク */
.eventcat {
	display: flex;
	justify-content: center;
	column-gap: 8px;
}

a.all.selected {
	background-color: rgba(153, 153, 153, 0.2);
}
a.event-cycling.selected {
	background-color: rgba(150, 210, 215, 0.3);
}
a.retreat.selected {
	background-color: rgba(240, 180, 200, 0.3);
}
a.sports.selected {
	background-color: rgba(125, 200, 175, 0.2);
}
a.gourmet.selected {
	background-color: rgba(235, 105, 60, 0.2);
}
a.art-culture-history.selected {
	background-color: rgba(175, 105, 200, 0.2);
}
a.local.selected {
	background-color: rgba(255, 200, 65, 0.2);
}
a.others.selected {
	background-color: rgba(190, 190, 170, 0.3);
}

/* カレンダー全体 */
#calendar {
	width: 1240px;
	margin: 20px auto;
	/* border: 1px solid #ddd; */
}

/* カレンダーのul要素 */
#calendar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	vertical-align: top;
}

/* 曜日のli要素 */
li.days {
	text-align: center;
}

/* 曜日のspan要素 */
li.days span {
	display: inline-block;
	/* width: 14.28%; */
	width: 164px;
}

/* 日付のli要素 */
li.date {
	display: inline-flex;
	vertical-align: top;
	overflow: hidden;
	height: 220px;
}
li.date.toggle {
	overflow: auto;
	height: auto;
	min-height: 220px;
}

/* 日付のdiv要素 */
li.date div {
	position: relative;
	display: inline-block;
	/* width: 14.28%; */
	width: 149px;
	text-align: left;
	margin: 0 7.5px;
	padding: 0;
	padding-top: 10px;
	border-top: 1px solid #ddd;
}

li.date li {
}

li.date div div {
	margin: 0;
	padding: 0;
	border: none;
}

#calendar ul li span.sunday,
.modal-date .sunday {
	color: #da7772;
}

#calendar ul li span.saturday,
.modal-date .saturday {
	color: #7399ca;
}

/* カレンダーの中のイベント情報 */
.event-list-li {
	font-size: 12px;
}

.event-list-li figure img {
	width: 30px;
	height: 30px;
}

.event-list-li div:nth-child(2) {
	font-size: 10px;
}

.modal-taxonomy {
	/*color: #2c2a2a;*/
	color: #4ba0cd;
}




/* カテゴリーカラー設定 */

/* サイクリング */
.event-list-li .event-cycling,
.modal-taxonomy.event-cycling {
	color: #95d2d7;
}
/* リトリート */
.event-list-li .retreat,
.modal-taxonomy.retreat {
	color: #f0b4c8;
}
/* スポーツ、アクティビティ */
.event-list-li .sports,
.modal-taxonomy.sports {
	/*color: #00a3d1;*/
	color: #7dc84b;
}
/* グルメ、マルシェ */
.event-list-li .gourmet,
.modal-taxonomy.gourmet {
	/*color: #ea5504;*/
	color: #dc6e4b;
}
/* 芸術、文化、歴史 */
.event-list-li .art-culture-history,
.modal-taxonomy.art-culture-history {
	/*color: #43b149;*/
	color: #af69c8;
}
/* 地域の行事 */
.event-list-li .local,
.modal-taxonomy.local {
	/*color: #f5bc00;*/
	color: #ffc841;
}
/* そのほか */
.event-list-li .others,
.modal-taxonomy.others {
	/*color: #8f82bc;*/
	color: #bebeaa;
}



/* もっと見る */
.moredisp {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 35px 0 15px;
	text-align: center;
	font-size: 12px;
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0));
}

/* モーダルを開くボタン */
.modal-open {
	position: fixed;
	top: 50%;
	left: 50%;
	font-size: 16px;
	font-weight: bold;
	width: 300px;
	height: 60px;
	color: #fff;
	background: #000;
	border: none;
	cursor: pointer;
	translate: -50% -50%;
}

/* モーダルと背景の指定 */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(74, 77, 92, 70%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	box-sizing: border-box;
	z-index: 500;
}

/* モーダルの擬似要素の指定 */
.modal:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
	opacity: 1;
	visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 650px;
	width: 90%;
	max-height: 766px;
	height: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
	position: absolute;
	align-items: center;
	justify-content: center;
	top: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	color: #fff;
	background: #4a4d5c;
	border-radius: 50%;
	border: 3px solid #fff;
	cursor: pointer;
}

/* モーダルコンテンツのラッパー */
.modal-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	color: #4a4d5c;
	background: #fff;
	text-align: left;
	line-height: 1.8;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
	padding: 20px;
}

/* くわしく見る */
.modal-link {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 84px;
	background-color: #009ca5;
	text-align: center;
}

.modal-link a {
	display: block;
	color: #fff;
	line-height: 84px;
}

.modal-link a:hover {
	text-decoration: underline;
}

/* 前月、次月ボタン */
#prev-month,
#next-month {
	cursor: pointer;
}

/* @media only screen and (max-width: 768px) {
	a.event-modal {
		pointer-events: none;
	}
} */
