/*===============================
MV
===============================*/
#mv {
	width: calc(100% - 0.60rem);
	border-radius: 0.20rem;
	height: 50vh;
	max-height: 3.00rem;
	position: relative;
	margin-left: 0.30rem;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 599px) {
	#mv {
		width: 100%;
		border-radius: 0;
		max-height: 1.50rem;
		margin-left: 0;
	}
}

/* キャッチ */
#mv .title {
	font-family: 'Shippori Mincho', serif;
	font-size: 0.48rem;
	letter-spacing: 0.10em;
	position: absolute;
	left: 1.00rem;
	top: 47%;
	transform: translateY(-50%);
	text-shadow: 0 0 16px #FFF, 0 0 16px #FFF, 0 0 16px #FFF, 0 0 16px #FFF;
}

@media screen and (max-width: 599px) {
	#mv .title {
		font-size: 0.24rem;
		letter-spacing: 0.075em;
		width: 100%;
		left: 0;
		text-align: center;
	}
}

#mv .top_deco01 {
	width: 2.50rem;
	height: 0.36rem;
	position: absolute;
	background-image: url(../common/img/mv_deco_red.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0.50rem;
	right: -0.40rem;
}

@media screen and (max-width: 599px) {
	#mv .top_deco01 {
		width: 1.00rem;
		height: 0.20rem;
		top: 0.10rem;
		right: -0.40rem;
	}
}

#mv .top_deco02 {
	width: 2.50rem;
	height: 0.36rem;
	position: absolute;
	background-image: url(../common/img/mv_deco_blue.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0.90rem;
	right: -0.90rem;
}

@media screen and (max-width: 599px) {
	#mv .top_deco02 {
		width: 1.00rem;
		height: 0.20rem;
		top: 0.30rem;
		right: -0.30rem;
	}
}

/*===============================
パンくず
===============================*/
#page_navi {
	padding: 0.20rem 0;
}

#page_navi .in {
	max-width: 100%;
}

#page_navi .list {
	display: flex;
}

@media screen and (max-width: 599px) {
#page_navi .list {
	white-space: nowrap;
	  overflow: hidden;
  text-overflow: ellipsis;
}
}

#page_navi .list .link {
	padding-right: 0.13rem;
	color: #111;
	font-size: 0.13rem;
	letter-spacing: 0.10em;
}

@media screen and (max-width: 599px) {
	#page_navi .list .link {
		padding-right: 0.10rem;
		font-size: 0.11rem;
		letter-spacing: 0.05em;
	}
	#page_navi .list .link.current {
					white-space: nowrap;
	  overflow: hidden;
  text-overflow: ellipsis;
	}
}

#page_navi .list .link a {
	text-decoration: none;
	color: #999;
}

#page_navi .list .link a:hover {
	color: #111;
}

#page_navi .list .link a::after {
	content: "";
	width: 0.20rem;
	height: 0.08rem;
	background-image: url(../common/img/icon_right_black.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
}

@media screen and (max-width: 599px) {
	#page_navi .list .link a::after {
		width: 0.15rem;
	}
}

/*============================
詳細ページ用ページ送り
============================*/
.entry_navi_wrap {
	width: 100%;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap.pc {
		display: none;
	}
}

.entry_navi_wrap .link {
	width: 25%;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link {
		width: 33.3%;
	}
}

.entry_navi_wrap .link a {
	display: block;
	padding: 0.30rem 0.15rem;
	text-decoration: none;
	font-size: 0.16rem;
	color: #111;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link a {
		padding: 0.20rem 0;
		font-size: 0.13rem;
	}
}

.entry_navi_wrap .link.preview a span::before {
	content: "";
	width: 0.40rem;
	height: 0.10rem;
	display: inline-block;
	background-image: url(../common/img/icon_arrow_black.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: rotate(-180deg);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link.preview a span::before {
		width: 0.20rem;
		height: 0.08rem;
	}
}

.entry_navi_wrap .link.preview a:hover span::before {
	margin-left: -0.10rem;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link.preview a:hover span::before {
		margin-left: 0;
	}
}

.entry_navi_wrap .link.next {
	text-align: right;
}

.entry_navi_wrap .link.next a span::after {
	content: "";
	width: 0.40rem;
	height: 0.10rem;
	display: inline-block;
	background-image: url(../common/img/icon_arrow_black.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link.next a span::after {
		width: 0.20rem;
		height: 0.08rem;
	}
}

.entry_navi_wrap .link.next a:hover span::after {
	margin-right: -0.10rem;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link.next a:hover span::after {
		margin-right: 0;
	}
}

.entry_navi_wrap .link.home {
	text-align: center;
}

.entry_navi_wrap .link.home a span::before {
	content: "";
	width: 0.16rem;
	height: 0.16rem;
	display: inline-block;
	background-image: url(../common/img/icon_list.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s;
	margin-right: 0.10rem;
	position: relative;
	top: 0.02rem;
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link.home a span::before {
		width: 0.13rem;
		height: 0.10rem;
		margin-right: 0.10rem;
		top: 0;
	}
}

.entry_navi_wrap .link.home a:hover span::before {
	transform: rotate(90deg);
	transform-origin: 50% 50%
}

@media screen and (max-width: 599px) {
	.entry_navi_wrap .link.home a:hover span::before {
		transform: none;
	}
}

/*============================
一覧ページ用ページ送り
============================*/
.wp-pagenavi {
	padding-top: 0.40rem;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

/* ページの基本設定 */
.wp-pagenavi .page {
	display: block;
	margin: 0 0.06rem;
	font-size: 0.16rem;
	padding: 0.10rem;
	font-family: 'Poppins', sans-serif;
	background-color: #666;
	color: #FFF;
	border: 1px solid #666;
	box-sizing: border-box;
	width: 0.40rem;
	text-decoration: none;
}

@media screen and (max-width: 599px) {
	.wp-pagenavi .page {
		display: none;
	}
}

.wp-pagenavi .page:hover {
	background-color: #E62413;
	border: 1px solid #E62413;
}

/* 現在のページ */
.wp-pagenavi .current {
	font-weight: 600;
	display: block;
	margin: 0 0.06rem;
	font-size: 0.16rem;
	padding: 0.10rem;
	font-family: 'Poppins', sans-serif;
	border: 1px solid #666;
	box-sizing: border-box;
	width: 0.40rem;
	background-color: #FFF;
}

@media screen and (max-width: 599px) {
	.wp-pagenavi .current {
		font-weight: 600;
		display: block;
		margin: 0 0.06rem;
		font-size: 0.14rem;
		padding: 0.10rem;
		font-family: 'Poppins', sans-serif;
		border: 1px solid #666;
		box-sizing: border-box;
		width: 0.40rem;
		background-color: #FFF;
	}
}

/* 次のページ・前のページ */
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
	display: block;
	margin: 0 0.06rem;
	font-size: 0.16rem;
	padding: 0.09rem 0.15rem 0.11rem;
	border: 1px solid #666;
	box-sizing: border-box;
	text-decoration: none;
	color: #111;
	background-color: #FFF;
}

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

	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .previouspostslink {
		display: block;
		margin: 0 0.06rem;
		font-size: 0.14rem;
		padding: 0.09rem 0.15rem 0.11rem;
		border: 1px solid #666;
		box-sizing: border-box;
		text-decoration: none;
		color: #111;
		background-color: #FFF;
	}
}

.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
	background-color: #E62413;
	border: 1px solid #E62413;
	color: #FFF;
}

/*============================
ビジュアル付き一覧ページ
============================*/
#event_list_wrap {
	padding-bottom: 1.00rem;
	position: relative;
}

#event_list_wrap::before {
	content: "";
	width: 100%;
	height: calc(100% - 2.00rem);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

@media screen and (max-width: 599px) {
	#event_list_wrap::before {
		content: "";
		width: 100%;
		height: calc(100% - 1.00rem);
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: -1;
	}
}


/* 記事一覧 */
#event_list_wrap .entry_list_wrap {
	padding-bottom: 0.60rem;
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap {
		padding-bottom: 0;
	}
}

#event_list_wrap .entry_list_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#event_list_wrap .entry_list_wrap .list .detail {
	width: 3.50rem;
	padding-bottom: 0.60rem;
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap .list .detail {
		padding-bottom: 0.30rem;
	}
}

#event_list_wrap .entry_list_wrap .list .detail a {
	display: block;
	text-decoration: none;
	color: #111;
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap .list .detail a {
		display: flex;
		flex-wrap: wrap;
	}
}

#event_list_wrap .entry_list_wrap .list .detail .ph_wrap {
	width: 100%;
	height: 2.30rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap .list .detail .ph_wrap {
		width: 1.30rem;
		height: 1.30rem;
		border-radius: 0.06rem;
	}
}

#event_list_wrap .entry_list_wrap .list .detail a .ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transition: all 0.3s;
}

#event_list_wrap .entry_list_wrap .list .detail a:hover .ph_wrap img {
	transform: scale(1.04);
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap .list .detail a .textbox {
		width: calc(100% - 1.30rem);
		box-sizing: border-box;
		padding-left: 0.15rem;
	}
}

#event_list_wrap .entry_list_wrap .list .detail a .title {
	font-size: 0.18rem;
	letter-spacing: 0.075em;
	font-weight: 700;
	line-height: 1.45;
	padding: 0.10rem 0;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap .list .detail a .title {
		font-size: 0.15rem;
		letter-spacing: 0.05em;
	}
}

#event_list_wrap .entry_list_wrap .list .detail a:hover .title {
	color: #E62413;
}

#event_list_wrap .entry_list_wrap .list .detail .category {
	padding-top: 0.20rem;
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap .list .detail .category {
		padding-top: 0;
	}
}

#event_list_wrap .entry_list_wrap .list .detail .category span {
	display: inline-block;
	border: 1px solid #111;
	padding: 0.04rem 0.10rem 0.07rem;
	border-radius: 0.20rem;
	font-size: 0.12rem;
	letter-spacing: 0.10em;
}

#event_list_wrap .entry_list_wrap .list .detail .date {
	font-size: 0.13rem;
	font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 599px) {
	#event_list_wrap .entry_list_wrap .list .detail .date {
		font-size: 0.12rem;
	}
}