@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 62.5%;
}
body {
  padding: 30px;
  background: rgba(165, 154, 153, 0.6);
  color: #333;
  font-size: 1.2rem;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
*,*::before, *::after {
  box-sizing: border-box;
}
a:link, a:visited, a:hover, a:active {
  color: #7c5119;
  text-decoration: none;
}


/* --------------------------------
 * item
 * -------------------------------- */
.item {
  width: 180px;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  padding: 8px;
  border-bottom: 3px solid;
  border-radius: 5px;
  background-color: rgba(255, 255, 240, 1);
}
.item .image {
  display: block;
  width: 100%;
}
.item .category {
  margin: 15px 9px 10px;
  color: #aaa;
  letter-spacing: 1px;
  font-family: "Trebuchet MS", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.item .category::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  border: 2px solid;
  border-radius: 50%;
  vertical-align: -5px;
}
.item .description {
  margin: 10px;
  line-height: 1.5;
}
.item > a {
  display: block;
  margin: -8px -8px -11px;
  padding: 8px 8px 11px;
  border-radius: inherit;
  color: #777;
  transition: all 0.3s;
}
.item > a:hover {
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
.item-paper,
.item-paper .category::before {
  border-color: #f4b3c2;
}
.item-wood,
.item-wood .category::before {
  border-color: #fbd26b;
}
.item-person,
.item-person .category::before {
  border-color: #aacf53;
}
.item-picture,
.item-picture .category::before {
  border-color: #a59aca;
}
.item-m {
  width: 364px;
}
.item-l {
  width: 732px;
}

/* --------------------------------
 * header
 * -------------------------------- */
.header {
  padding: 12px 0;
  border: dotted 4px rgba(165, 154, 153, 0.6);/*_*/
  text-align: center;
}
.logo {
  width: 136px;
  height: 155px;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.logo:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.nav {
  margin: 16px auto 10px;
}
.nav-item {
  margin-top: 10px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 1.3rem;
}
.nav-item a {
  display: inline-block;
}
.nav-item a::after {
  content: '';
  display: block;
  width: 0;
  margin: 2px auto 0;
  border-bottom: 1px solid #7c5119;
  transition: width 0.3s ease-in-out;
}
.nav-item a:hover::after {
  width: 100%;
}

/* --------------------------------
 * ImageLightbox
 * -------------------------------- */
#imagelightbox {
  position: fixed;
  z-index: 9999;
  -ms-touch-action: none;
  touch-action: none;
}
#imagelightbox-overlay {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#imagelightbox-overlay {
  -webkit-animation: fade-in 0.25s linear;
  animation: fade-in 0.25s linear;
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} 
 
.img_wrap{
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.img_wrap img{
  width: 100%;
  transition-duration: 0.5s;
}
.img_wrap:hover img{
  transform: scale(1.2);
  transition-duration: 0.5s;
}
