.search-wrap {
	font-family: sans-serif;
	margin: 20px;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

/* フォーム要素を横並びにする設定 */
form {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

/* 入力欄の共通スタイル */
input[type="month"],
input[type="text"] {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	color: #666;
	width: 350px;
}

input[type="month"]:focus,
input[type="text"]:focus {
/*	color: #222 !important;
	-webkit-text-fill-color: #222;
	caret-color: #222;*/
	color: #222 !important;
    outline: 4px dashed white;
}

/* Placeholder（薄い文字）のスタイル */
input::placeholder {
	color: #aaa;
	opacity: 1;
	/* Firefoxで薄くなるのを防ぐ */
}

.suchedule-header {
	text-align: center;
}

.evnets-wrap {
	margin-bottom: 60px;
	overflow: hidden;
}

.evnets-wrap h3 {
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 2px solid #fff;
	font-size: 1.625rem;
}

.event-card {
	display: flex;
	border-bottom: 2px solid #fff;
	list-style: none;
	padding-left: 0px;
	padding-bottom: 20px;
	margin-left: 0px;
	margin-bottom: 20px;
	gap: 20px;
}

.event-card .event-thumb {
	width: 30%;
	text-align: center;
}

.event-card .event-content {
	width: 55%;
}

.event-card .event-content h4 {
	font-weight: bold;
	font-size: 1.375rem;
	margin-top: 0px;
}

.event-card .envet-date {
	width: 15%;
}

.event-card .envet-date div {
	font-weight: bold;
	font-size: 1.125rem;
	padding-bottom: 10px;
}

.event-card .envet-date div span {
	white-space: nowrap;
}

.event-card .envet-date div::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background-image: url('/images/common/icon-calendar.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	vertical-align: middle;
}

.event-card .envet-date a {
	border: none;
	background-color: #0f7eaf;
	color: #fff;
	font-weight: bold;
	font-size: 1.125rem;
	width: 100%;
	display: block;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
}

.event-card .envet-date a:focus-visible {
    outline: 4px dashed white;
}

.main-visual {
	text-align: center;
}

.main-visual img {
	max-width: 100%;
}

.event-details {
	width: 60em;
	margin: auto;
	color: #fff;
	margin-top: 60px;
}

.event-details a {
	color: #149ED9;
}

.event-details a:focus-visible {
    outline: 4px dashed white;
}

.variable-width {
	text-align: center;
}

.variable-width,
.variable-width .slick-slide {
        margin: 0 5px;
}

@media screen and (max-width: 1180px) {
	.event-card {
		flex-wrap: wrap;
	}

	.event-card .event-thumb {
		width: 30%;
	}

	.event-card .event-content {
		width: 60%;
	}

	.event-card .envet-date {
		width: 100%;
	}

	.event-details {
		width: auto;
	}
}

@media screen and (max-width: 480px) {
	.event-card {
		flex-wrap: wrap;
	}

	.event-card .event-thumb {
		width: 100%;
	}

	.event-card .event-content {
		width: 100%;
	}

	.event-card .envet-date {
		width: 100%;
	}

	form div {
		width: 50%;
		text-align: center;
	}

	input[type="month"],
	input[type="text"] {
		width: 100%;
		font-size: 0.6875rem;
 	}

	.event-details {
		width: auto;
	}
}

/* === Slick Sliderのカスタマイズ === */

/* ドットの色を白に変更 */
.slider-common-style .slick-dots li button:before,
.slider-common-style .slick-dots li button .slick-dot-icon:before {
	color: white;
	opacity: 0.5;
	/* 通常時のドットの透明度 */
}

/* アクティブな（現在表示中のスライドに対応する）ドットの色 */
.slider-common-style .slick-dots li.slick-active button:before,
.slider-common-style .slick-dots li.slick-active button .slick-dot-icon:before {
	color: white;
	opacity: 1;
	/* アクティブなドットは不透明に */
}

/* 矢印の色を白に変更 */
.slider-common-style .slick-prev .slick-prev-icon:before,
.slider-common-style .slick-prev .slick-next-icon:before,
.slider-common-style .slick-next .slick-prev-icon:before,
.slider-common-style .slick-next .slick-next-icon:before,
.slider-common-style .slick-prev:before,
.slider-common-style .slick-next:before {
	color: white;
	font-size: 1.875rem;
	/* 矢印のサイズを少し大きくして見やすくする */
}

.slick-prev .slick-prev-icon:before {
	font-family: FontAwesome;
	content: "\f104";
}

.slick-next .slick-next-icon:before {
	font-family: FontAwesome;
	content: "\f105";
}

.mec-load-more-wrap {
	text-align: center;
}

.mec-load-more-button {
	width: 211px;
	padding: 16px;
	border-radius: 60px;
	font-size: 1rem;
	color: white;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif !important;
	background: #0f7eaf;
	text-align: center;
	margin: auto;
	cursor: pointer;
}

.mec-load-more-button:focus-visible {
    outline: 4px dashed white;
}

.back-to-list-wrap {
	width: 211px;
	padding: 16px;
	border-radius: 60px;
	font-size: 1rem;
	color: white;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif !important;
	background: #0f7eaf;
	text-align: center;
	cursor: pointer;
	margin: 60px auto 0 auto;
}
.back-to-list {
	color: white !important;
	text-decoration: none;
}
