@charset "UTF-8";
/* Scss Document */
.pc {
  display: block;
}
@media (max-width: 834px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 834px) {
  .sp {
    display: block;
  }
}

#photo-gallery #intro h1 {
  font-size: 34px;
  line-height: 56px;
  margin-bottom: 0px;
  letter-spacing: 2px;
}
@media (max-width: 834px) {
  #photo-gallery #intro h1 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
  }
}

.page-box {
  padding: 0px;
}

/*==================================================
ギャラリーのためのcss
===================================*/
.gallery {
  margin: 0;
}

.gallery li {
  list-style: none;
  position: relative;
  width: 14.66%;
  margin: 0 1% 20px;
}
@media (max-width: 834px) {
  .gallery li {
    width: 31.33%;
    margin: 0 1% 10px;
  }
}

.gallery li a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery li a figure {
  margin: 0;
  position: relative;
  padding-top: 100%;
}
.gallery li a span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
  .gallery {
    -moz-columns: 3;
         columns: 3;
  }
}
@media only screen and (max-width: 768px) {
  .gallery {
    -moz-columns: 2;
         columns: 2;
  }
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tab-wrap:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #0086CF;
  display: block;
  order: -1;
}

.tab-label {
  color: #FFF;
  background: rgba(175, 175, 175, 0.5);
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px 0.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  font-size: 20px;
  border-top: solid 1px #FFF;
  border-left: solid 1px #FFF;
  border-right: solid 1px #FFF;
}
@media (max-width: 834px) {
  .tab-label {
    font-size: 13px;
  }
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #FFF;
}

/* アクティブなタブ */
.tab-switch:checked + .tab-label {
  background: #0086CF;
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: 0.5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 834px) {
  .tab-switch:checked + .tab-label + .tab-content {
    padding: 10px;
  }
}

/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}/*# sourceMappingURL=custom.css.map */