@charset "UTF-8";

/******************************
pagesec-about-catch
******************************/
.pagesec-about-catch .txtbox {
  background: url(../../images/page/about/bg-pagesec-about-catch.webp) no-repeat center / cover;
  padding: 15rem 10rem;
}
.pagesec-about-catch .txtbox1 {
  background: rgba(38,22,0,.5);
  color: #fff;
  padding: 10rem 5rem;
  text-align: center;
}
.pagesec-about-catch .txtbox1 p {
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .pagesec-about-catch .txtbox {
    padding: 2rem 1rem;
  }
  .pagesec-about-catch .txtbox1 {
    padding: 2rem 1rem;
  }
  .pagesec-about-catch .txtbox1 p {
    line-height: 2;
  }
}

/******************************
pagesec-about-gallery
******************************/
.pagesec-about-gallery {
  /* background: url(../../images/page/about/bg-pagesec-about-gallery.webp) no-repeat center / cover; */
  position: relative;
}
.pagesec-about-gallery::before {
    background: #fff;
    content: '';
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.pagesec-about-gallery .imgbox {
  position: relative;
  z-index: 1;
}
/* 共通 */
#gallerysplide .splide__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem
}
#gallerysplide .box2 .imgbox:not(:last-of-type),
#gallerysplide .box4 .imgbox:not(:last-of-type),
#gallerysplide .box6 .imgbox:not(:last-of-type) {
  margin-bottom: 1rem;
}

/* 上段 */
#gallerysplide .imgbox {
  display: block;
  height: 500px;
  overflow: hidden;
}
#gallerysplide .imgbox img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .5s;
}
#gallerysplide .imgbox:hover {
  opacity: 1;
}
#gallerysplide .imgbox:hover img {
  transform: scale(1.1);
}
#gallerysplide .box1,
#gallerysplide .box3 {
  width: calc(35% - 1rem);
}
#gallerysplide .box2 {
  width: calc(30% - 1rem);
}
#gallerysplide .box2 .imgbox {
  height: calc(500px / 2 - .5rem);
}

/* 下段 */
#gallerysplide .box4 {
  width: calc(35% - 1rem);
}
#gallerysplide .box4 .imgbox {
  height: calc(500px / 2 - .5rem);
}
#gallerysplide .box5 {
  width: calc(46% - 1rem);
}
#gallerysplide .box6 {
  width: calc(19% - 1rem);
}
#gallerysplide .box6 .imgbox {
  height: calc(500px / 3 - .5rem);
}
@media screen and (max-width: 767px) {
  #gallerysplide .splide__list {
    flex-wrap: initial;
  }
  #gallerysplide .imgbox {
    height: 300px;
  }
  #gallerysplide .box2 .imgbox {
    height: calc(300px / 2 - .5rem);
  }
  #gallerysplide .box4 .imgbox {
    height: calc(300px / 2 - .5rem);
  }
  #gallerysplide .box6 .imgbox {
    height: calc(300px / 3 - .5rem);
  }
}