.Supervisor {
  background: radial-gradient(at 70% 50%, #736666 0, #432f2f 50%);
  width: 100%;
  height: 50vh;
  min-height: 410px;
  position: relative;
  overflow: hidden;
}
.Supervisor__photo {
  position: absolute;
  top: 15%;
  left: 50%;
  bottom: 0;

  clip: rect(0, auto, 400px, auto);
  transform: translateX(calc(80px - 50%));
  height: 90%;
  z-index: 1;
}
@media screen and (min-width: 750px) {
  .Supervisor__photo {
    left: 50%;
    transform: translateX(calc(180px - 50%));
  }
}

.Supervisor__bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
}

.Supervisor__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;

  width: calc(100% - 20px);
  max-width: 360px;
  height: 100%;
  z-index: 20;
}
@media screen and (min-width: 750px) {
  .Supervisor__inner {
    max-width: 600px;
  }
}

.Supervisor__content {
  position: absolute;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  padding: 7px 10px;

  font-family: "Noto Sherif JP", serif;
  color: #fff;
  line-height: 1.2em;

  z-index: 20;
}
@media screen and (min-width: 750px) {
  .Supervisor__content {
    top: 150px;
    left: 20px;
    bottom: auto;
  }
}
.Supervisor__paragraph:not(:first-child) {
  margin-top: 10px;
}

.SupervisorTitle {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 1.5rem;

  z-index: 20;
}
.SupervisorTitle__prefix {
  font-size: 1rem;
}
.SupervisorTitle__name {
  font-size: 3rem;
}
