@charset "utf-8";
/* ///////////// 共通 ////////////// */
.swiper {
  z-index: 0 !important;
}
/* ページネーション */
.swiper_pagination_block {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1em 0 0 0;
}
.swiper-pagination {
  bottom: 1px !important;
  margin: 0 15px;
  position: relative !important;
  width: auto !important;
}
.swiper-pagination-bullet {
  background-color: transparent !important;
  background-image: url("../images/icon_swiper_default.svg") !important;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset !important;
  height: 1.5rem !important;
  opacity: 1 !important;
  width: 1.5rem !important;
}
.swiper-pagination-bullet-active {
  background-color: transparent !important;
  background-image: url("../images/icon_swiper_active.svg") !important;
  height: 1.5rem !important;
  width: 1.5rem !important;
}
.swiper-button-prev,
.swiper-button-next {
  height: 1.75rem;
  width: 1.75rem;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: inline-block;
  height: 1.75rem;
  margin: auto;
  width: 1.75rem;
}
.swiper-button-prev:after {
  background-image: url("../images/icon_swiper_prev.svg");
}
.swiper-button-next:after {
  background-image: url("../images/icon_swiper_next.svg");
}

/* /////////////////////////// */

.swiper_people {
  margin: 0 auto;
  max-width: 1892px;
  position: relative;
  width: var(--pc-contents-width);
}
@media screen and (max-width:767px) {
  .swiper_people {
    width: 95%;
  }
}
.people .swiper-wrapper {
  align-items: end;
}
.people .swiper-slide {
  align-items: flex-end;
  box-sizing: border-box;
  display: flex;
  max-width: 364px;
  text-align: center;
  transition: all 0.3s 0s ease;
  transform: scale(0.9);
  transform-origin: center bottom;
}
.people .swiper-slide-prev,
.people .swiper-slide-prev + .swiper-slide,
.people .swiper-slide-prev + .swiper-slide + .swiper-slide {
  transform: scale(1);
  transform-origin:center bottom;
}
.people .swiper-slide-prev {
  margin-right: 20px !important;
}
.people .swiper-slide-prev + .swiper-slide {
  margin-right: 20px !important;
}
.people .swiper-slide > a {
  align-items: flex-end;
  background-color: #000;
  color: #FFF;
  display: flex;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.people .swiper-slide > a img {
  height: auto;
  object-fit: cover;
  opacity: 0.6;
  width: 100%;
}
.people .swiper-slide-prev > a img,
.people .swiper-slide-active > a img,
.people .swiper-slide-next > a img {
  opacity: 1;
}
.people .swiper-slide dl {
  display: none;
}
.people .swiper-slide-prev dl,
.people .swiper-slide-active dl,
.people .swiper-slide-next dl {
  background: -webkit-linear-gradient(rgba(27,33,42,0) 0%, rgba(27,33,42,0.9) 28%, rgba(27,33,42,0.9) 100%);
  background: -o-linear-gradient(rgba(27,33,42,0) 0%, rgba(27,33,42,0.9) 28%, rgba(27,33,42,0.9) 100%);
  background: linear-gradient(rgba(27,33,42,0) 0%, rgba(27,33,42,0.9) 28%, rgba(27,33,42,0.9) 100%);
  bottom: 0;
  box-sizing: border-box;
  display: block;
  left: 0;
  position: absolute;
  text-align: left;
  z-index: 1;
  padding: 1.5em 1em 0.75em 1em;
  width: 100%;
}
.people .swiper-slide dt {
  font-size: 2rem;
}
.people .swiper-slide dd {
  font-size: 1.6rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width:1100px) {
  .people .swiper-slide dt {
    font-size: 1.6rem;
  }
  .people .swiper-slide dd {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .people .swiper-slide dl {
    padding: 0.5em;
  }
  .people .swiper-slide dt {
    font-size: 1.5rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/* /////////////////////////// */

.department .swiper-slide > a {
  align-items: flex-end;
  background-color: #000;
  display: flex;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.department .swiper-slide > a img {
  opacity: 0.6;
  width: 100%;
}
.department .swiper-slide dl {
  display: none;
}
.department .swiper-slide-active * {
  opacity: 1 !important;
}
.department .swiper-slide-active dl {
  background-color: #FFF;
  border-left: solid 12px var(--red);
  bottom: 10px;
  box-sizing: border-box;
  display: block;
  left: 0;
  position: absolute;
  text-align: left;
  z-index: 1;
  padding: 0.75em 1em;
  width: 90%;
}
.department .swiper-slide dt {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}
.department .swiper-slide dd {
  color: var(--dark-gray);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}