<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * EasyZoom core styles
 */
.easyzoom {
	position: relative;

	/* 'Shrink-wrap' the element */
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.easyzoom img {
	vertical-align: bottom;
}

.easyzoom.is-loading img {
	cursor: progress;
}

.easyzoom.is-ready img {
	cursor: crosshair;
}

.easyzoom.is-error  img {
	cursor: not-allowed;
}

.easyzoom-notice {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 150;
	width: 10em;
	margin: -1em 0 0 -5em;
	line-height: 2em;
	text-align: center;
	background: #FFF;
	box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
	position:absolute;
	z-index: 100;
	overflow: hidden;
	background: #FFF;
}

/**
 * EasyZoom layout variations
 */
.easyzoom--overlay .easyzoom-flyout {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	margin-left: 20px;
}

/*--追加CSS--*/
.easyzoom{
	margin: 1em 0 0 0;
}
.easyzoom.easyzoom--overlay&gt;a{
	display: block;
	position: relative;
}
.easyzoom.easyzoom--overlay&gt;a::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: url(../image/icon/icon_zoom01.png) no-repeat center center/100px;
	opacity: .66; */
	background: url(../image/icon/icon_zoom01.png) no-repeat center center/50px;
	opacity: .5;
	border: 7px outset #d7d7d7;;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.easyzoom--overlay .easyzoom-flyout img{
	width: auto;
	max-width: none;
	min-width: auto;
	height: auto;
	max-height: none;
	min-height: auto;
}
.-easyzoomTxt{
	display: none;
	padding: 0;
	margin: .5em 0 2em;
	text-align: center;
	width: 100%;
}
@media screen and (min-width:768px) {
	.-easyzoomTxt.-pcTxt{
		display: block;
		font-size: 11px;
		line-height: 1.4;
	}
}
@media screen and (max-width:767px) {
	.-easyzoomTxt.-spTxt{
		display: block;
		font-size: 11px;
		line-height: 1.4;
	}
	.easyzoom.easyzoom--overlay&gt;a::after{
		background: url(../image/icon/icon_zoom01.png) no-repeat center center/50px;
	}
}
/*--/追加CSS--*/</pre></body></html>