.rcd330-pnh__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 19px;
	height: 19px;
	margin-left: 6px;
	padding: 0;
	border: 1px solid #22a2c4;
	border-radius: 50%;
	background: #fff;
	color: #22a2c4;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	vertical-align: middle;
	cursor: pointer;
}

.rcd330-pnh__toggle:hover,
.rcd330-pnh__toggle:focus-visible {
	background: #22a2c4;
	color: #fff;
}

.rcd330-pnh__backdrop {
	position: fixed;
	z-index: 99998;
	inset: 0;
	background: rgba(15, 15, 22, 0.54);
}

.rcd330-pnh__dialog {
	position: fixed;
	z-index: 99999;
	top: 50%;
	left: 50%;
	box-sizing: border-box;
	width: min(92vw, 920px);
	max-height: 88vh;
	overflow: auto;
	transform: translate(-50%, -50%);
	padding: 24px;
	border: 1px solid #e1e1e1;
	border-radius: 10px;
	background: #fff;
	color: #333;
	box-shadow: 0 22px 54px rgba(15, 15, 22, 0.3);
}

.rcd330-pnh__backdrop[hidden],
.rcd330-pnh__dialog[hidden] {
	display: none !important;
}

body.rcd330-pnh-is-open {
	overflow: hidden;
}

.rcd330-pnh__dialog h3 {
	margin: 0 40px 16px 0;
	color: #222;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
}

.rcd330-pnh__dialog h4 {
	margin: 17px 0 9px;
	color: #222;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}

.rcd330-pnh__close {
	position: absolute;
	top: 11px;
	right: 13px;
	display: block;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 23px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}

.rcd330-pnh__table-wrap {
	margin: 10px 0 20px;
	overflow-x: auto;
}

.rcd330-pnh__table {
	width: 100%;
	min-width: 720px;
	margin: 0;
	border-collapse: collapse;
	background: #fff;
}

.rcd330-pnh__table th,
.rcd330-pnh__table td {
	padding: 15px 17px;
	border: 1px solid #e6e6e6;
	text-align: left;
	vertical-align: top;
	font-size: 14px;
	line-height: 1.5;
}

.rcd330-pnh__table thead th {
	background: #f4f8fa;
	color: #222;
	font-weight: 700;
}

.rcd330-pnh__table tbody th {
	width: 17%;
	color: #222;
	font-weight: 700;
}

.rcd330-pnh__image-note {
	margin: 0 0 12px;
	font-weight: 600;
}

.rcd330-pnh__images {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rcd330-pnh__image-link {
	display: block;
	color: #222;
	text-align: center;
	text-decoration: none;
	cursor: zoom-in;
}

.rcd330-pnh__image-link img {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 0 8px;
	border: 1px solid #e6e6e6;
	border-radius: 6px;
	background: #f8f8f8;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	transition: opacity 0.2s ease;
}

.rcd330-pnh__image-link:hover img,
.rcd330-pnh__image-link:focus img {
	opacity: 0.86;
}

.rcd330-pnh__image-link span {
	display: block;
	font-weight: 700;
}

.rcd330-pnh__notes {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #e6e6e6;
	font-size: 15px;
	line-height: 1.6;
}

.rcd330-pnh__notes p {
	margin: 0 0 13px;
}

.rcd330-pnh__callout {
	padding: 11px 13px;
	border-left: 3px solid #22a2c4;
	background: #f7fbfc;
}

.rcd330-pnh__notes a {
	color: #1688a7;
	font-weight: 700;
	word-break: break-word;
}

@media (max-width: 680px) {
	.rcd330-pnh__dialog {
		width: calc(100vw - 20px);
		max-height: 92vh;
		padding: 18px;
	}

	.rcd330-pnh__dialog h3 {
		font-size: 19px;
	}

	.rcd330-pnh__images {
		grid-template-columns: 1fr;
	}
}

