@charset "UTF-8";

/* design
------------------------------*/


.gallery01 {
  /* コンテナ */
  overflow: hidden;
  /* フェードモード時 共通調整 */
  /* コントローラー */
  /* 前へ / 次へボタン */
  /* スクロールバー */
  /* スライド */
  /* サムネイル */
  /* サムネイル アクティブ時 */
}
.gallery01 .swiper {
  max-width: 1000px;/* 720px */
  margin: auto;
}
.gallery01 .swiper-main {
  overflow: visible;
}
.gallery01 .swiper-thumb {
  padding-top: 8px;
}
.gallery01 .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.gallery01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.gallery01 .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;/* 62.5% */
}
.gallery01 .swiper-button-prev, .gallery01 .swiper-button-next {
  /* background-color: rgba(127,103,169,0.5); */
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .gallery01 .swiper-button-prev::before, .gallery01 .swiper-button-next::before {
    background-color: rgba(127,103,169,0.5);
    -webkit-box-shadow: var(--box-shadow-dark);
            box-shadow: var(--box-shadow-dark);
  }
}
@media only screen and (max-width: 1024px) {
  .gallery01 .swiper-button-prev::after, .gallery01 .swiper-button-next::after {
    border-color: #fff;
  }
}
.gallery01 .swiper-button-prev {
  right: calc(100% + 3.2rem);
}
@media only screen and (max-width: 1024px) {
  .gallery01 .swiper-button-prev {
    right: calc(100% - 6.2rem);/*- 3.2rem*/
  }
}
.gallery01 .swiper-button-next {
  left: calc(100% + 3.2rem);
}
@media only screen and (max-width: 1024px) {
  .gallery01 .swiper-button-next {
    left: calc(100% - 6.2rem);/*- 3.2rem*/
  }
}
.gallery01 .swiper-scrollbar {
  position: relative;
  margin-top: 1.6rem;
}
.gallery01 .swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  margin: auto;
  content: "";
  background-color: rgba(126,109,154,0.2);
}
.gallery01 .swiper-scrollbar-drag {
  height: 20px;
  padding: 8px 0;
  cursor: pointer;
  background-color: purple;
  background-clip: content-box;
}
@media only screen and (min-width: 1025px) {
  .gallery01 .swiper-scrollbar-drag:hover {
    background-color: red;
  }
}
.gallery01 .swiper-scrollbar-drag:active {
  background-color: rgba(126,109,154,1);
}
.gallery01 .slide {
  display: block;
  overflow: hidden;
}
.gallery01 .slide-media {
  padding-top: 62.5%;/*62.5%*/
  border-radius: 10px;
}
.gallery01 .slide-media img {
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery01 .slide-title {
	font-size: 1.8rem;
  color: rgba(126,109,154,1);
  font-weight: bold;
  line-height: 1.6;
  padding: 3.2rem 0 0.5rem;
}
.gallery01 .slide-caption {
	font-size: 1.6rem;	
	font-weight: normal;
  line-height: 1.6;
  padding-bottom: 1rem;
}
.gallery01 .thumb-media {
  padding-top: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 4px;
}
@media only screen and (min-width: 1025px) {
  .gallery01 .thumb-media:hover {
    -webkit-transform: translateY(-0px);/*(-8px)*/
            transform: translateY(-0px);/*(-8px)*/
  }
  .gallery01 .thumb-media:hover img {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.gallery01 .thumb-media img {
  height: calc(100% + 0px);/*calc(100% + 8px);*/
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(-0px);/*(-8px)*/
          transform: translateY(-0px);/*(-8px)*/
}
.gallery01 .swiper-slide-thumb-active {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0.5;
}
.gallery01 .swiper-slide-thumb-active .thumb-media {
  -webkit-transform: translateY(-3px);/*(-8px)*/
          transform: translateY(-3px);/*(-8px)*/
}
.gallery01 .swiper-slide-thumb-active .thumb-media img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}