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

/* =================================================================
 * 
 *  INSTRUCTOR
 * 
 * ================================================================= */

/* mv
 * ====================== */

.mv {
  position: relative;
  padding-top: 74px;
  background-image: url(../../common/img/instractor-01.png);
  background-size: cover;
  background-position: 65% center;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .mv {
    padding-top: 120px;
    background-position: center;
  }
}

.mv__title {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  top: calc(50% + 37.5px);
  width: 90%;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .mv__title {
    width: clamp(700px, calc(334.6153846153846px + 32.05128205128205vw), 950px);
    top: calc(50% + 65px);
  }
}

.mv-discription {
  width: fit-content;
  margin-inline: auto;
  color: var(--color-white);
  font-size: var(--fontSize-s);
}

/* インストラクター
 * ====================== */

.instructor {
  border-bottom: solid 1px var(--color-primary);
}

.instructor__wrapper {
  max-width: 800px;
  margin-inline: auto;

  padding-bottom: 60px;
}

.instructor__message {
  margin-bottom: 40px;
  padding: 20px 0;
  font-size: var(--fontSize-m);
  line-height: 1.4;
  color: var(--color-important);
  border-top: solid 1px var(--color-important);
  border-bottom: solid 1px var(--color-important);
}

.instructor__mainItem {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .instructor__mainItem {
    flex-direction: row;
    margin-bottom: 40px;
  }
}

.instructor__mainItem > div:first-of-type {
  border-bottom: solid 1px var(--color-primary);
}

/* 名前 */
.instructor__name {
  font-size: var(--fontSize-l);
  text-align: center;
  border-bottom: solid 1px var(--color-primary);
}
@media screen and (min-width: 768px) {
  .instructor__name {
    text-align: left;
  }
}

/* 肩書 */
.instructor__mainQualifications {
  padding: 20px 0;
  font-size: var(--fontSize-s);
  border-bottom: solid 1px var(--color-primary);
}

/* 自己紹介 */
.instructor__introduction {
  padding: 20px 0;
  font-size: var(--fontSize-s);
}

.instructor__introduction > div {
  display: flex;
  margin-bottom: 10px;
}

.instructor__introduction > div:last-of-type {
  margin-bottom: 0;
}

.instructor__introduction > div dt {
  margin-right: 10px;
}

.instructor__introduction > div dd {
  flex: 1;
}

/* 写真 */
.instructor__img {
  text-align: center;
  flex: 1;
  max-width: 300px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .instructor__img {
    margin-inline: inherit;
  }
}

.instructor__img img {
  vertical-align: top;
  margin: 0;
}

.instructor__subItem {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .instructor__subItem {
    margin-bottom: 40px;
  }
}

.instructor__subItem:last-of-type {
  margin-bottom: 0;
}

.instructor__subItem-title {
  font-size: var(--fontSize-s);
  margin-bottom: 10px;
}
