/* PDF.js Viewerのサイズを調整 */
.pdfjs-wrapper {
	width: 90%;
}
#pdfjs-viewer-skip {
	width: 100% !important;
}
.pdfjs-wrapper,
#pdfjs-viewer-skip {
	/* プラグインによってクラス名が異なる場合があるため調整 */
	height: auto !important; /* ショートコードのpx指定を無効化 */
	aspect-ratio: 3 / 4; /* ここで縦横比を固定（A4なら1/1.414など） */
	max-height: 90vh; /* スマホで画面からはみ出しすぎるのを防ぐ */
	margin: 0 auto 1em;
}

/* 中のiframeをラッパーいっぱいに広げる */
.pdfjs-wrapper iframe {
	width: 100% !important;
	height: 100% !important;
	min-height: 500px; /* PCでの最低限の高さ確保 */
}

/* スマホ用の微調整（必要に応じて） */
@media (max-width: 768px) {
	.pdfjs-wrapper {
		aspect-ratio: 1 / 1.5; /* スマホでは少し縦長にするなど */
		min-height: 400px;
	}
}
