@charset "utf-8";

/* 共通
------------------------------------------ */
.event_top_wrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 40px;
	color: #333;
	line-height: 1.75;
}

.event_top_wrapper h1 {
	font-size: 24px;
	text-align: center;
}

.event_top_wrapper h2 {
	font-size: 16px;
	text-align: center;
}

.event_top_wrapper h3 {
	font-size: 14px;
}

.event_top_wrapper h4 {
	font-size: 12px;
}

.event_top_wrapper p {
	font-size: 14px;
}

.event_top_wrapper .link_button {
	display: block;
	width: fit-content;
	padding: 0 10px;
	margin: 10px auto 0;
	text-decoration: underline;
}

@media (min-width: 768px) {
	.event_top_wrapper {
		margin: 80px auto;
	}

	.event_top_wrapper h1 {
		font-size: 32px;
	}
}

/* タイトルエリア
------------------------------------------ */
.event_top_title {
	display: flex;
	width: 100%;
	flex-direction: column;
}

.event_top_title img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.event_top_title div {
	text-align: center;
}

@media (min-width: 768px) {
	.event_top_title {
		flex-direction: row;
		justify-content: center;
	}

	.event_top_title img {
		width: 55%;
		height: 300px;
		object-fit: cover;
		margin-bottom: 0;
	}

	.event_top_title div {
		width: 40%;
		margin: auto 0;
	}
}

/* newsエリア
------------------------------------------ */
.event_top_news {
	display: block;
	margin: 40px auto;
	width: 90%;
	max-width: 680px;
	height: auto;
}

.event_top_news h2 {
	text-align: left;
	color: #777;
}

.event_top_news div {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
}

.event_top_news div a {
	display: flex;
	align-items: center;
	font-size: 14px;
	padding: 10px;
	position: relative;
}

.event_top_news div a span {
	font-size: 12px;
	margin-right: 30px;
	color: #d6d6d6;
}

.event_top_news div a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 2%;
	transform: translateY(-50%);
	border-left: 5px solid #777;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}

.event_top_news div a:not(:first-child) {
	border-top: 1px solid #d6d6d6
}

.event_top_news div a:hover {
	background-color: #f6f6f6;
}

span.news_tag {
	display: inline;
	margin-left: 20px;
	font-size: 12px;
}


/* boxインフォエリア
------------------------------------------ */
.event_top_info {
	display: flex;
	flex-wrap: wrap;
}

.event_top_info ul {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 40px auto;
	border: 1px solid #d6d6d6;
}

.event_top_info ul li {
	width: 100%;
	box-sizing: border-box;
	margin: 0 5%;
	padding: 20px 0;
	text-align: center;
}

.event_top_info ul li:not(:first-child) {
	border-top: 1px solid #d6d6d6;
	line-height: 2;
}

.tel {
	font-size: 14px;
}

.mail a {
	text-decoration: underline;
}

.tel::before {
	font-family: "Font Awesome 5 Free";
	content: '\f095';
	font-weight: 900;
	padding: 0 8px 0 0;
}

.mail::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0e0';
	font-weight: 900;
	padding: 0 8px 0 0;
}

@media (min-width: 768px) {
	.event_top_info ul li {
		width: 50%;
		margin: 20px 0;
		padding: 0 5%;
	}

	.event_top_info ul li:not(:first-child) {
		border-top: none;
		border-left: 1px solid #d6d6d6;
	}
}

/* アーカイヴ(sub_menuは上書き分のみ)
------------------------------------------ */
.event_top_archive {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #777;
}

.enjoy_main_sub_menu {
	display: none;
}

.archive_list {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}

.archive_list li {
	position: relative;
	width: 48%;
	margin: 2% 1%;
	padding-bottom: 24px;
	border-bottom: 1px solid #777;
	transition: .2s;
}

.archive_list li img {
	width: 100%;
	min-height: 100px;
	object-fit: cover;
}

.archive_list h3 {
	margin: 10px 5px 0;
}

.archive_list h4 {
	position: absolute;
	right: 0;
	bottom: 0;
	color: #d6d6d6;
}

.archive_list li:hover {
	opacity: 0.8;
}

.archive_list.index h3 {
	font-size: 12px;
	margin-bottom: 0;
}

.archive_list.index p {
	margin: 0 5px;
	font-size: 12px;
}

@media (min-width: 768px) {
	.enjoy_main_sub_menu {
		display: block;
		width: 30%;
	}

	.sub_menu_category {
		line-height: 1;
	}

	.sub_menu_category a {
		font-size: 14px;
	}

	.archive_list {
		width: 70%;
		margin: 20px 0 auto auto;
	}

	.archive_list li {
		width: 31%;
		margin: 20px 1%;
	}

	.archive_list li img {
		min-height: 140px;
	}
}