/**
 * ファシリテーターフロントページのスタイル
 */

/** ファシリテーター一覧 **/
/** ファシリテーター一覧アイテム **/
.common_bl_cardProf__teacher.teacher_bl_teacherListItem__thema_type1,
.np-wp-cp-teacher_bl_themaNode .teacher_bl_teacherListItem__thema_type1 {
  background-color: #cee7c0;
}

.common_bl_cardProf__teacher.teacher_bl_teacherListItem__thema_type2,
.np-wp-cp-teacher_bl_themaNode .teacher_bl_teacherListItem__thema_type2 {
  background-color: #d7e0f1;
}

.common_bl_cardProf__teacher.teacher_bl_teacherListItem__thema_type3,
.np-wp-cp-teacher_bl_themaNode .teacher_bl_teacherListItem__thema_type3 {
  background-color: #f6d8dd;
}



/** 写真 **/
.teacher_bl_imageContainer {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/** サブ写真 **/
.teacher_bl_imageContainer>img {
  width: 64px;
  height: 76px;
  object-fit: cover;
  position: relative;
}

/** トップ写真 **/
.teacher_bl_imageContainer>img.teacher_js_imageTop {
  width: 200px;
  height: 240px;
  order: -1;
}

/** サブ写真のふるまい **/
.teacher_bl_imageContainer>img:not(.teacher_js_imageTop):not([data-np-image-is-default="true"]):hover {
  cursor: pointer;
  opacity: .7;
}

/** 写真トップ表示時 */
.teacher_js_imageTopOn {
  animation: 0.08s np-cs_slidein;
}

/** 写真トップ非表示時 */
.teacher_js_imageTopOff {
  animation: 0.08s np-cs_slideout;
}

/** 写真スライドイン */
@keyframes np-cs_slidein {
  from {
    top: 8px;
  }

  to {
    top: 0;
  }
}

/** 写真スライドアウト */
@keyframes np-cs_slideout {
  from {
    bottom: 8px;
  }

  to {
    bottom: 0;
  }
}

/** ファシリテーター名 */
.teacher_bl_teacherName {
  font-size: 1.8rem;
  font-weight: bold;
}

/** 職務名 */
.teacher_bl_position,
.teacher_bl_birthplace {
  font-size: 1.6rem;
  font-weight: bold;
}

/*===============================================
●PC・タブレット用（897px以上）
===============================================*/
@media screen and (min-width:897px) {

  /** 写真・メインコンテンツのレイアウト */
  .teacher_bl_topLayout {
    display: flex;
    column-gap: 26px;
  }

  /** 写真 **/
  .teacher_bl_imageContainer {
    min-width: 200px;
    max-height: 320px;
    margin-left: 0;
    margin-right: 0;
  }

  /** メインコンテンツ */
  .teacher_bl_mainContents {
    width: 100%;
  }
}