@charset "UTF-8";

.page__ttl {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 80px;
	padding-bottom: 30px;
	border-bottom: 2px solid #fff;
	line-height: 1.4;
}

.page__ttl .font02 {
	font-size: 70%;
	margin-top: 0;
}

@media screen and (max-width: 960px) {
	.page__ttl {
		font-size: 24px;
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 560px) {

	.single-event .page__ttl {
		font-size: 8vw;
		margin-bottom: 30px;
	}
}

.js-image-modal-open {
	cursor: pointer;
	transition: all 0.3s;
}

.js-image-modal-open:hover {
	opacity: 0.5;
}

/* EXPERIENCEボタン */
.experience-button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	text-align: inherit;
	cursor: pointer;
}

.image-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	padding: 70px 30px 30px;
	visibility: hidden;
	opacity: 0;
	overflow-y: auto;
	background-color: rgb(0 0 0 / 75%);
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.image-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.image-modal__overlay {
	position: fixed;
	inset: 0;
	cursor: pointer;
}

.image-modal__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.image-modal__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
}

.image-modal__close {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background-color: #fff;
	color: #000;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

body.is-modal-open {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.image-modal {
		padding: 70px 15px 30px;
	}

	.image-modal__close {
		top: 15px;
		right: 15px;
	}
}