<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*===================================
絵画ページ　CSS
===================================*/

.gallery {
	columns: 2;/* 段組みの数 */
	padding: 0 15px;
	margin: 50px 0 ;
}

.gallery li {
    margin-bottom: 50px;
	list-style:none;
}

/* lightbox / ギャラリー内のイメージは横幅100%にする */
.gallery img {
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}

/* サムネ　ホバー時の透過設定 */
.gallery li a:hover {
	opacity: 0.5;
	transition: 0.5s all;
}</pre></body></html>