.slick-dots li.slick-active button {
    border-color: #fff;
}
.slick-dots li button::before {
    background: #fff!important;
}
.text .local_pager {
  max-width: 270px;
}

.recommend-wrapper {
  justify-self: flex-start;
}

.mt-50 {
  margin: 50px 0 0!important;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 75%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 110;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  z-index: 50;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
  animation: bgOpenAnime 0.8s ease;
}

@keyframes bgOpenAnime {

  /* フェードイン */
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 950px;
  width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 12;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #000;
}

.modal-content ul li {
  text-indent: -2em;
  margin: 0 2em;
  font-size: 13px;
  padding: 0.3em 2em;
  line-height: 1.5;
}

/*モーダル内注釈選択時の背景色*/
.modal-content ul li.bgcolor {
  background-color: #ffe6e6;
}

a.modal-open:link {
  padding: 0 2px;
    color: #dc143c;
    text-decoration: underline;
    font-size: 13px;
    font-weight: bold;
  }
  
  a.modal-open:link:hover {
  opacity: 0.7;
  }


@media screen and (max-width: 769px) {
  .slick-dots li.slick-active button {
      border-color: #000;
  }
  .slick-dots li button::before {
      background: #000!important;
  }
  .text .local_pager li {
    padding: 7px 39px 4px;
  }
}
