@charset "utf-8";


table {
  margin: auto;
}

.teacher_prof {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 40px;
}

.a_school .photo_back {
  position: absolute;
  flex-basis: 50%;
  width: 270px;
  height: 270px;
  background-color: var(--main-color);
  transform: rotate(0);
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
}

.a_school .photo_back.active {
  transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transition:0.3s;
}

.a_school .photo_front {
  position: relative;
}

.teacher_desc {
  flex-basis: 50%;
  text-align: left;
}

.teacher_license {
  font-size: 1.1rem;
  font-weight: 400;
}

.teacher_name {
  font-size: 1.5rem;
  font-weight: 400;
}

.teacher_desc dl {
  display: flex;
  flex-flow: row wrap;
}

.teacher_desc dt {
  flex-basis: 70%;
  padding: 5px 10px;
  font-size: 1rem;
  text-align: left;

}

.teacher_desc dd {
  flex-basis: 30%;
  padding:5px 10px;
  font-size: 1rem;
  text-align: right;
}

.schedule {
  margin-bottom: 40px;
}

.copy {
  margin: 20px auto 20px;
}

.career {
  margin: 0 auto 40px;
}

@media (max-width: 767px) {
  .a_school {
    padding: 0 5px 0;
  }

  .teacher_prof {
    flex-direction: column;
  }
  .a_school .photo_back {
    flex-basis: 100%;
  }
  .a_school .photo_front {
    margin-bottom: 20px;
  }

  .career {
    margin: 0 auto 40px;
    padding: 0 10px 0;
    text-align:justify;
/*    text-align-last:justify;*/
/*    text-justify:inter-ideograph*/
  }

}
