@charset "UTF-8";
/* ------------------------------------------
 *  _color.scss
 *  色変数設定
 * ------------------------------------------ */
/*--- 共通カラー ---*/
/*--- biobankカラー ---*/
/*--- brainbankカラー ---*/
/*--- トビラページカラー ---*/
/* ------------------------------------------
 *  _breakpoint.scss
 *  ブレークポイント設定
 * ------------------------------------------ */
/* ------------------------------------------
 *  _z-index.scss
 *  z-index設定
 * ------------------------------------------ */
/* ------------------------------------------
 *  _func.scss
 *  関数設定
 * ------------------------------------------ */
/**********************************************************/
/**********************************************************/
/* ------------------------------------------
 *  _hover.scss
 *  mixin - ホバー定義
 * ------------------------------------------ */
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/**********************************************************/
/* ------------------------------------------
 *  _set.scss
 *  mixin - CSS簡易設定定義
 * ------------------------------------------ */
/* flexセット */
/* ------------------------------------------ */
/* inline-flexセット */
/* ------------------------------------------ */
/* gridセット */
/* ------------------------------------------ */
/* background-imageセット */
/* ------------------------------------------ */
/* 疑似クラスセット */
/* ------------------------------------------ */
/* position:absoluteセット */
/* ------------------------------------------ */
/* font-sizeセット */
/* ------------------------------------------ */
/* ------------------------------------------
*  _parts.scss
 *  mixin - パーツ定義
 * ------------------------------------------ */
/*--- 矢印 ---*/
/*--- 丸ボーダー ---*/
/*--- ボーダー ---*/
.about__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4rem 2rem;
}
.about__block__text {
  width: 60%;
}
.about__block__text .text {
  line-height: 1.8;
}
.about__block__image {
  width: calc(100% - 4rem - 60%);
}
@media screen and (max-width: 767.9px) {
  .about__block {
    flex-direction: column;
  }
  .about__block__text {
    width: 100%;
  }
  .about__block__image {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
  }
}
.about__staff .staff {
  display: grid;
  grid-template-columns: 14em 1fr;
  gap: 2.4rem;
}
.about__staff .staff:not(:last-child) {
  position: relative;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
}
.about__staff .staff:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 0.1rem;
  width: 100%;
  background-color: #D8DEE3;
  bottom: 0;
  top: initial;
  right: 0;
  left: 0;
}
.about__staff .staff__name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
 .about__staff .staff__position > li{
  position: relative;
  padding-left: 1.6rem;
  text-align: left;
}
.about__staff .staff__position > li::before {
  content: "";
  display: inline-block;
  margin-right: 2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #81C0FC;
  position: absolute;
  top: 0.8rem;
  left: -0rem;
}
@media screen and (max-width: 767.9px) {
  .about__staff .staff {
    grid-template-columns: 1fr;
     text-align: center;
  }
  .about__staff .staff__position {
    row-gap: 1.2rem;
    margin: 0 auto;
  }
  .about__staff .staff__position > li {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
  }
  .about__staff .staff__position > li::before {
    top: 0.6rem;
    display: none;
  }
  .about__staff .staff__position > li:not(:first-child) {
    position: relative;
    margin-top: 2rem;
  }
  .about__staff .staff__position > li:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: #81C0FC;
    position: absolute;
    top: -1.5rem;
    left: calc(50% - 0.6rem);
  }
}