
/*-------------------/////////////////犬舎////////////////----------------*/
.kennel {
  width: 100%;
  background: linear-gradient(to bottom, #f7f6f5 45%, #bedee1 60%, #f7f6f5 75%, #f7f6f5 100%);
}

.kennel-wrapper {
  width: 100%;
  display: block;
}
@media screen and (min-width: 960px) {
  .kennel-wrapper {
    display: flex;
    align-items: flex-start;
  }
}

.kennel-left-panel {
  position: relative;
  top: 0;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  margin: 0 auto;
  padding: 5% 11% 3rem 11%;
  background: #f0f0f0;
  box-sizing: border-box;
}
.kennel-left-panel p {
  font-size: 0.8rem;
}
.kennel-left-panel h2 {
  font-family: cursive;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 960px) {
  .kennel-left-panel {
    position: sticky;
    width: 50vw;
    margin: 4rem 0 auto 0;
    padding: 12rem 6rem 6rem 6rem;
  }
  .kennel-left-panel h2 {
    font-family: cursive;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .kennel-left-panel p {
    font-size: 0.85rem;
  }
}

.kennel-right-panel {
  display: block;
  width: 100%;
  padding: 0 5%;
}
@media screen and (min-width: 960px) {
  .kennel-right-panel {
    width: 50vw;
    padding: 2rem 6rem;
    box-sizing: border-box;
  }
}
.kennel-right-panel .image-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.kennel-right-panel .image-block-caption {
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .kennel-right-panel .image-block-caption {
    margin-bottom: 60px;
  }
}
.kennel-right-panel .image-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.kennel-right-panel img {
  width: 100%;
  border-radius: 8px;
}

/*staff*/
.staff {
  display: block;
}
.staff .staff-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 5%;
}
.staff .staff-introduce {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.staff .staff-introduce p {
  font-size: 0.8rem;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .staff .staff-introduce {
    width: -moz-max-content;
    width: max-content;
  }
}
.staff .staff-slider {
  width: 94%;
  margin: 1rem auto;
}
.staff .staff-slider img {
  width: 90vw;
  height: auto;
}
@media screen and (min-width: 960px) {
  .staff .staff-slider img {
    width: auto;
    height: calc(100vh - 100px);
  }
}
.staff .staff-slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}
.staff .staff-slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}
