@charset "UTF-8";
/*==================================================
ページタイトル
===================================*/

.pagettl-wrapper {
  background-color: #efeb94;
}

.pagettl {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 10px 0 10px;
}

@media all and (max-width: 768px) {
  .pagettl {
    width: 100%;
    padding: 14px 14px 0 14px;
  }
}

/*==================================================
photo-gallery
===================================*/
.gallery {
  max-width: 1640px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

@media all and (max-width: 768px) {
  .gallery {
    gap: 8px;
  }
}

.gallery li {
  width: calc(33.3% - 6px);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.63, 0.05, 0.17, 1);
}

@media all and (max-width: 768px) {
  .gallery li {
    width: calc(50% - 4px);
  }
}

@media all and (max-width: 480px) {
  .gallery li {
    width: 100%;
  }
}

.gallery li a {
  display: block;
}

.gallery img {
  width: 100%;
  height: auto;
}

.photo-gallery {
  padding: 40px 2.6%;
}

.secttl {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 36px;
  max-width: 62.5%;
}

@media all and (max-width: 768px) {
  .secttl {
    max-width: 98%;
  }
}

/* 背景色設定 */
.photo-gallery.is_01 {
  background-color: #c7e4f2;
}
.photo-gallery.is_02 {
  background-color: #fdf7cd;
}
.photo-gallery.is_03 {
  background-color: #d1f5cc;
}
.photo-gallery.is_04 {
  background-color: #facad8;
}
.photo-gallery.is_05 {
  background-color: #c8c6f5;
}
.photo-gallery.is_06 {
  background-color: #ffe5ac;
}
.photo-gallery.is_07 {
  background-color: #b2f5de;
}
.photo-gallery.is_08 {
  background-color: #fccfbb;
}
.photo-gallery.is_09 {
  background-color: #bddafc;
}
.photo-gallery.is_10 {
  background-color: #f4e0a1;
}
/*
.lightbox {
  top: 50% !important;
  transform: translateY(-50%);
} */

/*画像を出現させるアニメーションCSS*/
.flipLeft {
  -webkit-animation-name: flipLeft;
  animation-name: flipLeft;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
  perspective-origin: left center;
}

@-webkit-keyframes flipLeft {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipLeft {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/*# sourceMappingURL=photo.css.map */
