@charset "UTF-8";


h2.ttl {
  background-color: #4F9E4F;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
}
.to-list {
  background-color: #218DDA!important;
  background-image: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  text-shadow: none;
}
.to-list:hover {
  color: #fff;
}

/*▼カルーセル
-------------------------------------------*/
.swiper-slide > * {
  background-color: #E5FFE5;
  border-radius: 10px;
  font-size: 14px;
  padding: 20px;
  margin: 20px 20px 30px 20px;
  text-align: center;
}
.swiper-slide > * h3 {
  color: #287c28;
  font-size: 20px;
  font-weight: bold;
  margin-top: -30px;
  text-align: center;
}
.swiper-slide > * p {
  min-height: 5em;
  text-align: left;
  width: 226px;
  margin: 10px auto 5px auto;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  animation: none;
  opacity: 0!important;
}
.swiper-button-prev,
.swiper-button-next {
  animation: fadeIn 1s ease-in-out forwards;
  background-color: #4F9E4F;
  border-radius: 50%;
  /*display: block;*/
  height: 40px!important;
  line-height: 40px;
  /*position: relative;*/
  text-align: center;
  width: 40px!important;
}
.swiper-button-prev {
  left: 5px;
}
.swiper-button-next {
  right: 5px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  font-size: 0!important;
  height: 13px;
  left: 17px;
  position: absolute;
  top: 14px;
  width: 10px;
}
.swiper-button-prev:after {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  left: 13px;
}
.swiper-pagination-bullet-active {
  background: #4F9E4F!important;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px!important;
}