@charset "utf-8";

body {
  margin: 0;
}
/* コンテンツ */
#contents {
	
  padding: 15px;
}
/* ギャラリー */
.gallery {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  font-size: 12px;
}
/* サムネイル（共通） */
.gallery .thumb {
  
  width: 26%;
  float: left;
  margin-right: 2%;
  margin-bottom: 1%;
  margin-top: 1%;
  
  overflow: hidden;
  position: relative;
}
/* サムネイル（3列目） */
.gallery .thumb:nth-child(3n) {
  margin-right: 0;
}
/* サムネイルのタイトル */
.gallery .thumb::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 100, 0, 0.9);
  color: #FFFFFF;
  padding: 0.2em 0.5em;
}
/* サムネイルの写真 */
.gallery img {
  width: 100%;
  display: block;
}
/* フロート解除 */
.clearfix::after {
  content: '';
  clear: both;
  display: block;
}
/* 大きな写真（通常時） */
#largeImg {
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 0 1px 1px rgba(0,0,0,0.3);
  box-sizing: border-box;
  position: fixed;
  top:320px;
  /* top: 37%;*/
  left: 40%;
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  transition: all 0.5s ease-in-out;
}
/* 大きな写真（表示時） */
#largeImg.active {
  width: 100%;
  max-width: 720px;
  /*max-width: 640px; */
  height: auto;
  opacity: 1;
}
