@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__link .c-headSub {
  margin: 4rem 0 1.6rem;
  padding-top: 4rem;
  border-top: 0.1rem solid #CACACA;
}
.about__link .c-headSub:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.about__link ul > li:not(:last-child) {
  margin-bottom: 0.8rem;
}
