@charset "utf-8";
/* CSS Information========

Table of Contents:
 * photo gallery
========================== */

/* =======================
		main
========================== */
.index_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(102px, 1fr));
  gap: 10px;
  box-sizing: border-box;
  margin-top: 60px;
}
.index_list_item {
  border: 1px solid #ccc;
  background-color: #efefef;
  font-size: 1.2rem;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.index_list_item:hover,
.index_list_item.active {
  background-color: #000;
  color: #fff;
}
.panel-container {
  margin: 40px auto 60px;
}
.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.pswp-caption-content {
  display: block;
  margin: 5px;
  font-size: 1.1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: normal;
  word-break: auto-phrase;
  line-break: strict;
}
.gallery_item {
  cursor: pointer;
}
.gallery_item:hover {
  opacity: 0.75;
  text-decoration: none;
}
.gallery_item img {
  width: 100%;
}
.panel {
  display: none;
}
.panel.active {
  display: block;
}
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: unset;
}
@media only screen and (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
