.staff_training_list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem auto;
  @media screen and (min-width:1000px) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.staff_training_list li{
  border: solid 1px #2282c5;
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0;
  @media screen and (min-width:1000px) {
    padding: 1.5rem;
  }
}
.staff_training_list h3{
  color: #2282c5;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  @media screen and (min-width:1000px) {
    font-size: 1.5rem;
  }
}
.staff_training_list h3 span{
  color: #FFF;
  background-color: #2282c5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  @media screen and (min-width:1000px) {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.staff_list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  @media screen and (min-width:1000px) {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.staff_name{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin: 1rem auto;
  @media screen and (min-wdith:1000px) {
    gap: 2rem;
  }
}
.staff_name li:first-child{
  color: #FFF;
  background-color: #2282c5;
  font-weight: 900;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
.staff_name li:last-child{
  text-align: right;
}
.staff_name li:last-child span{
  font-weight: 900;
  margin-right: 1rem;
}
.staff_status{
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 1rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #CCC;
  @media screen and (min-width:1000px) {
    gap: 2rem;
  }
}
.staff_status li:first-child{
  color: #2282c5;
}
.staff_comment{
  margin-top: 1rem;
  line-height: 150%;
}

/* スライダー設定 */

.tu-slider {
  min-height: 308px;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.tu-slider__track {
  display: flex;
  transition: transform .35s ease;
}

.tu-slider__slide {
  min-width: 100%;
}

.tu-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.tu-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1rem;
  display: flex;
}

.tu-slider__arrow--prev {
  left: 12px;
}

.tu-slider__arrow--next {
  right: 12px;
}

.tu-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.tu-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.tu-slider__dots button.is-active {
  background: #333;
}
.noimage{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 1rem;
}