.hp-live-photos {
	display: block;
	width: min(100%, 760px);
	margin: 34px auto 0;
	clear: both;
	box-sizing: border-box;
}

.hp-live-photos--inline {
	margin-top: 26px;
	margin-bottom: 26px;
}

.hp-live-photo {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.hp-live-photo__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #080808;
}

.hp-live-photo__poster {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 140ms ease;
}

.hp-live-photo__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 140ms ease;
}

.hp-live-photo.is-playing .hp-live-photo__poster {
	opacity: 0;
}

.hp-live-photo.is-playing .hp-live-photo__video {
	opacity: 1;
}

.hp-live-photo__badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 7px;
	background: rgba(0, 0, 0, 0.58);
	color: #fff;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0;
	line-height: 1;
}

.hp-live-photo__caption {
	display: block;
	margin-top: 9px;
	color: #555;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5;
}

.hp-live-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(8, 8, 8, 0.94);
	opacity: 0;
	transition: opacity 160ms ease;
}

.hp-live-modal.is-open {
	display: flex;
	opacity: 1;
}

.hp-live-modal__figure {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 48px 74px;
	box-sizing: border-box;
}

.hp-live-modal__stage {
	position: relative;
	display: block;
	max-width: calc(100vw - 148px);
	max-height: calc(100vh - 148px);
	background: #000;
	box-shadow: 0 16px 52px rgba(0, 0, 0, 0.48);
}

.hp-live-modal__poster {
	display: block;
	max-width: calc(100vw - 148px);
	max-height: calc(100vh - 148px);
	width: auto;
	height: auto;
	object-fit: contain;
	transition: opacity 180ms ease;
}

.hp-live-modal__video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
	opacity: 0;
	transition: opacity 180ms ease;
}

.hp-live-modal.is-video-ready .hp-live-modal__poster {
	opacity: 0;
}

.hp-live-modal.is-video-ready .hp-live-modal__video {
	opacity: 1;
}

.hp-live-modal__pending {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 4px;
	margin-top: 20px;
	padding: 0;
	background: transparent;
	opacity: 1;
	pointer-events: none;
	transition: opacity 160ms ease, visibility 160ms ease;
	visibility: visible;
}

.hp-live-modal.is-video-ready .hp-live-modal__pending {
	opacity: 0;
	visibility: hidden;
}

.hp-live-modal__pending span {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.30);
	animation: hp-live-pending-dot 1.25s ease-in-out infinite;
}

.hp-live-modal__pending span:nth-child(2) {
	animation-delay: 0.16s;
}

.hp-live-modal__pending span:nth-child(3) {
	animation-delay: 0.32s;
}

@keyframes hp-live-pending-dot {
	0%,
	72%,
	100% {
		background: rgba(255, 255, 255, 0.28);
		transform: translateY(0) scale(1);
	}

	28% {
		background: rgba(255, 255, 255, 0.92);
		transform: translateY(-1px) scale(1.18);
	}
}

.hp-live-modal__caption {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.hp-live-modal__button {
	position: absolute;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.50);
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	transition: color 120ms ease;
}

.hp-live-modal__button:hover,
.hp-live-modal__button:focus {
	color: rgba(255, 255, 255, 0.94);
	outline: none;
}

.hp-live-modal__close {
	z-index: 5;
	top: 22px;
	right: 28px;
	width: 42px;
	height: 42px;
	font-size: 34px;
	font-weight: 200;
}

.hp-live-modal__arrow {
	z-index: 4;
	top: 0;
	bottom: 0;
	width: 92px;
	font-size: 62px;
	font-weight: 200;
}

.hp-live-modal__prev {
	left: 0;
}

.hp-live-modal__next {
	right: 0;
}

@media (max-width: 1240px) {
	body.single-post:has(.hp-live-photo) {
		overflow-x: hidden;
	}

	body.single-post:has(.hp-live-photo) #single_cont {
		float: none !important;
		width: min(100%, calc(100vw - 96px)) !important;
		max-width: 1180px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		box-sizing: border-box;
	}

	body.single-post:has(.hp-live-photo) .container {
		width: calc(100vw - 96px);
		max-width: calc(100vw - 96px);
		margin-left: auto;
		margin-right: auto;
		box-sizing: border-box;
	}

	body.single-post:has(.hp-live-photo) .single_left {
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	body.single-post:has(.hp-live-photo) h1.single_title,
	body.single-post:has(.hp-live-photo) .single_inside_content {
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		box-sizing: border-box;
	}

	.hp-live-photos {
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

@media (max-width: 760px) {
	body.single-post:has(.hp-live-photo) {
		overflow-x: hidden;
	}

	body.single-post:has(.hp-live-photo) #single_cont {
		width: min(100%, calc(100vw - 96px)) !important;
		max-width: 1180px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	body.single-post:has(.hp-live-photo) .container {
		width: calc(100vw - 96px);
		max-width: calc(100vw - 96px);
		margin-left: auto;
		margin-right: auto;
		box-sizing: border-box;
	}

	body.single-post:has(.hp-live-photo) .single_left {
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	body.single-post:has(.hp-live-photo) h1.single_title,
	body.single-post:has(.hp-live-photo) .single_inside_content {
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		box-sizing: border-box;
	}

	.hp-live-photos {
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin: 24px auto 0 !important;
	}

	.hp-live-modal__figure {
		padding: 54px 18px;
	}

	.hp-live-modal__stage,
	.hp-live-modal__poster {
		max-width: calc(100vw - 36px);
		max-height: calc(100vh - 136px);
	}

	.hp-live-modal__stage {
		box-shadow: none;
	}

	.hp-live-modal__pending {
		gap: 5px;
		margin-top: 18px;
	}

	.hp-live-modal__close {
		top: 10px;
		right: 12px;
	}

	.hp-live-modal__arrow {
		width: 48px;
		font-size: 44px;
	}
}

@media (max-width: 767px) {
	body.single-post:has(.hp-live-photo) .container {
		width: min(calc(100% - 32px), 760px);
		max-width: min(calc(100% - 32px), 760px);
	}

	body.single-post:has(.hp-live-photo) #single_cont,
	body.single-post:has(.hp-live-photo) .single_left,
	body.single-post:has(.hp-live-photo) h1.single_title,
	body.single-post:has(.hp-live-photo) .single_inside_content,
	body.single-post:has(.hp-live-photo) .hp-live-photos {
		width: min(calc(100vw - 32px), 760px) !important;
		max-width: min(calc(100vw - 32px), 760px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	body.single-post:has(.hp-live-photo) .header_bottom {
		border: 0 !important;
		padding: 16px 0 8px;
	}

	body.single-post:has(.hp-live-photo) .full_logo_cont,
	body.single-post:has(.hp-live-photo) .logo_cont {
		float: none;
		max-width: 220px;
	}

	body.single-post:has(.hp-live-photo) .full_logo_cont img,
	body.single-post:has(.hp-live-photo) .logo_cont img {
		display: block;
		width: auto;
		max-width: min(220px, 100%);
		height: auto;
	}

	body.single-post:has(.hp-live-photo) .slicknav_menu {
		max-width: 100%;
		box-sizing: border-box;
	}

	body.single-post:has(.hp-live-photo) h1.single_title {
		margin-right: 0;
		font-size: 18px;
		line-height: 1.45;
	}
}

@supports not selector(:has(*)) {
	body.single-post .container {
		max-width: calc(100vw - 96px);
	}

	@media (max-width: 767px) {
		body.single-post .container {
			width: min(calc(100% - 32px), 760px);
			max-width: min(calc(100% - 32px), 760px);
		}
	}
}
