@charset "UTF-8";
/* CSS Document */

/*Youtube表示*/
.movie {
    position: relative;
    width: 100%;
}
.movie:before {
    content:"";
    display: block;
    padding-top: 56.25%; /* 高さと幅の比を16:9に固定。9/16*100=56.25 */
}
.movie_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


ol.maru-num li {
  padding-left: 1.25em;
  position: relative;
}
ol.maru-num li:before {
  position: absolute;
  left: 0;
}
ol.maru-num li:nth-child(1)::before {
  content: "\02460";
}
ol.maru-num li:nth-child(2)::before {
  content: "\02461";
}
ol.maru-num li:nth-child(3)::before {
  content: "\02462";
}
ol.maru-num li:nth-child(4)::before {
  content: "\02463";
}

/* リハビリ部とは Mission / Vision / Value */
.rinen-table {
  display: table;
  width:100%;
  table-layout: fixed;
}
.rinen-table-row {
  display: table-row;
}
.rinen-title {
  display: table-cell;
  width: 70px;
  color: #f17ca1 !important;
}
@media screen and (min-width: 47.5em) {
  .rinen-title {
    width: 100px;
  }
}
.rinen-cell {
  display: table-cell;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1600px);
    transform: translateX(-1600px);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1600px);
    transform: translateX(-1600px);
  }
}

.top-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto auto 3em auto;
  height: 0;
  padding-top: 56.25%;
    position: relative;
}

.top-slider {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.top-slide.active {
  opacity: 1;
}
.top-slide picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 980px) {
  .top-slider-container {
    padding-top: 33.333%;
  }
}