@charset "UTF-8";
/* CSS Document */

.loadingIcon {
	display: flex;
	justify-content: center;
	height: 25vw;
	align-items: center;
}

.loadingIcon svg {
	transform: scale(250%);
	opacity: 0.5;
}

#h_event {
	display: flex;
	margin-bottom: 3em;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.eventImg {
	width: 50%;
	font-size: 0;
	background: #000;
	position: relative;
	z-index: 2;
}

.eventImg img {
	width: 100%;
}

#h_event::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	filter: blur(62px);
	scale: 1.3;
}

#h_event h1 {
	width: 50%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2.45vw;
	line-height: 1.3;
	position: relative;
	padding: 0 1em;
	margin: 0;
	z-index: 2;
}

/*#h_event h1::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	backdrop-filter: blur(100px);
}*/

#h_event h1 .date,
#h_event strong {
	display: block;
	position: relative;
	color: #fff;
	top: -3%;
}

#h_event .date {
	border-bottom: solid 1px #fff;
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-bottom: 0.4em;
	padding: 0 0.25em;
}

#h_event strong {
	margin-top: 0.2em;
	font-family: "motiva-sans", 'Hiragino Sans', YuGothic, "kozuka-gothic-pro", Meiryo, 'sans-serif';
	font-weight: 700;
}

#h_event.bright h1 * {
	color: #262626 !important;
	border-color: #262626 !important;
}

.article-body a {
	border-bottom: dotted 1px #666;
    position: relative;
    bottom: 0;
    transition: all ease-in 0.1s;
    font-weight: bolder;
	color: #d4704e;
	margin: 0 0.25em;
}

.article-body a * {
	text-decoration: none;
}

.article-body a[target="_blank"]::after {
	content: url("/common/images/icon_ex-link.svg");
	display: inline-block;
	width: 1.2em;
	position: relative;
	bottom: -0.18em;
	margin-left: 0.2em;
}


/* -------------------------
   記事本文内スタイル
--------------------------*/

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5 {
	margin: 1.2em 0;
}

.article-body h1 {
	font-size: 2.4em;
}

.article-body h2 {
	font-size: 2em;
}

.article-body h3 {
	font-size: 1.8em;
}

.article-body h4 {
	font-size: 1.6em;
}

.article-body h5 {
	font-size: 1.4em;
}



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

	#h_event {
		display: block;
	}

	#h_event::after {
		top: 20%;
	}

	.eventImg {
		width: 100%;
		text-align: center;
	}

	.eventImg img {
		width: 100%;
	}

	#h_event h1 {
		width: 100%;
		font-size: max(1.8rem, 3.2vw);
		padding: 0.75em;
		margin: 0;
		top: auto;
	}
}