﻿@charset "utf-8";

/* イラスト */
.gallery{
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
.gallery a{
	display: inline-block;
	position: relative;
}
.gallery a:after{
	position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 bottom: 0;
	content: "";
	box-sizing: border-box;
	border: 2px solid rgba(0, 0, 0, 0);
	transition: .3s ease-in-out;
}
.gallery a:hover:after{
	border: 2px solid rgba(0, 0, 0, .3);
}
.gallery img{
	margin: 0;
	vertical-align: bottom; /* 謎の余白を消す */
}
.gallery a:hover img{
	opacity: 1;
}
.gallery img{
	max-width: 100%;
	height: auto;
}
/* 別窓アイコン */
/* a[target="_blank"]:after{
   content: url(../top/blank.gif);
   width:10px;
   height:10px;
   margin:5px;
}
*/

.caption{ margin: 2em auto 4em auto; max-width: 800px; } /* キャプション */
.caption2{ margin: 0 auto 4em auto; max-width: 400px; } /* ログのキャプション */
.caption3{ margin: 0 auto 4em auto; text-align: center; max-width: 680px; } /* ログのキャプション（中央寄せ） */