/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 07 2026 | 12:33:28 */
.mittu {
	margin-top:30px;
}

.mittu-h3 {
	margin: 20px 0;
	font-size: 2.4rem;
	font-weight: bold;
}

.mittu-txt {
	margin: 0 0 20px;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.8;
    letter-spacing: 0.14em;
    text-align: justify;
}

.image-flex {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.image-flex img {
  width: calc((100% - 24px) / 2);
  height: auto;
  display: block;
  cursor: zoom-in;
}

.image-flex--2 img {
  width: calc((100% - 24px) / 2);
}

.image-flex--3 img {
  width: calc((100% - 48px) / 3);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-modal__img {
  max-width: min(100%, 1000px);
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
}

.image-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .image-flex {
    gap: 16px;
  }

  .image-flex img {
    width: 100%;
  }
	
  .image-flex--2 img,
  .image-flex--3 img {
    width: 100%;
  }

  .image-modal {
    padding: 16px;
  }
}
