.eventtop img{
	vertical-align:top;
	width: 100%;
}

.eventtop {
	max-width: 855px;
	width: 100%;
	text-align: center;
	scroll-behavior: smooth;
	padding: 0;
	margin: 0 auto 30px;
}

.eventtop * {
	list-style: none;
	padding: 0;
	margin: 0;
}

.eventtop .pc-only {
	display: block;
}

.eventtop .sp-only {
	display: none;
}

.eventtop__contents {
	margin-bottom: calc(70 / 855 * 100%);
}

.eventtop__bnr {
	margin-bottom: calc(60 / 855 * 100%);
}

.eventtop__contents__ttl {
	margin-bottom: calc(30 / 855 * 100%);
}

/*続きを表示*/
.eventtop__js-more {
	position: relative;
	margin-bottom: calc(30 / 855 * 100%);
	padding-bottom: 100px;
}

.eventtop__js-more__content {
	position: relative;
	height: 500px;
	overflow: hidden;
}

.eventtop__js-more .is_open {
	height: auto!important;
}/* レスポンシブ時コンテンツの高さをautoに */

.eventtop__js-more__content::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	z-index: 1;
	background: linear-gradient( rgba(1,122,58,0) 0%, #fff 50%, #fff 100% );
}

.eventtop__js-more__item {
	display: flex;
    flex-wrap: wrap;
	gap: calc(15 / 855 *100%);;
}

.eventtop__js-more__item > li {
    width: calc(275 / 855 *100%);
}

.eventtop__js-more__item > li:nth-of-type(n+4) {
	margin-top: calc(15 / 855 *100%);
}

.eventtop__js-more__item img {
	width: 100%;
}

.eventtop__js-more__content.is_open:before {
	display: none;
}

.eventtop__js-more button{
	position: absolute;
	display: table;
	left: 50%;
	bottom: 0;
	margin: 0 auto;
	width: 320px;
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	border-radius: 10px;
	background-color: #000;
	transform: translateX(-50%);
	cursor: pointer;
	z-index: 1;
	transition: all .4s;
	border: none;
	padding: 15px 0;
}

/*-- --*/
@media screen and (max-width: 855px) {
	.eventtop {
		padding: 10px;
		margin-bottom: 20px;
	}

	.eventtop img {
		width: 100%;
		height: auto;
	}

	.eventtop .pc-only {
		display: none;
	}

	.eventtop .sp-only {
		display: block;
	}

	/* 続きを表示 */
	.eventtop__js-more {
		position: relative;
		padding-bottom: 60px;
	}

	.eventtop__js-more__content {
		height: 50vw;
	}

	.eventtop__js-more button{
		width: 200px;
		font-size: 14px;
		padding: 10px 0;
	}
}

