@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 - パーツ定義
 * ------------------------------------------ */
/*--- 矢印 ---*/
/*--- 丸ボーダー ---*/
/*--- ボーダー ---*/
.general__text > .text {
  line-height: 1.8;
}
.general__image {
  margin-top: 4rem;
}
@media screen and (max-width: 767.9px) {
  .general__image {
    margin: 4rem auto 0;
    max-width: 50rem;
  }
}
.general__flow__block {
  width: 100%;
  background-color: #F8F8F8;
  position: relative;
  display: grid;
  grid-template: auto auto auto/calc(74% - 4rem) 26%;
  gap: 0 4rem;
  padding-left: 4rem;
}
.general__flow__block:not(:last-child) {
  margin-bottom: 6.8rem;
}
.general__flow__block:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: inherit;
  right: 0;
  bottom: -4.4rem;
  left: 0;
  margin: 0 auto;
  color: #3A78B8;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 2rem 2.5rem;
  border-top-color: currentColor;
  border-bottom: 0;
}
.general__flow__block .flow__step {
  background-color: #3A78B8;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.5rem;
  width: 12.5rem;
  height: 4rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.general__flow__block .flow__step .step {
  color: #FFFFFF;
  line-height: 1;
  font-weight: 400;
}
.general__flow__block .flow__heading {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.general__flow__block .flow__text {
  grid-column: 1/2;
  grid-row: 3/4;
  margin-bottom: 3.3rem;
}
.general__flow__block .flow__image {
  grid-column: 2/3;
  grid-row: 1/4;
  display: flex;
  padding: 3rem 4rem;
  background-color: #E1F0F9;
}
.general__flow__block .flow__image > img {
  object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .general__flow__block {
    gap: 0 2rem;
    grid-template: auto auto auto/calc(66% - 2rem) 34%;
    padding: 0 2rem 2rem 2rem;
  }
  .general__flow__block:not(:last-child) {
    margin-bottom: 6rem;
  }
  .general__flow__block:not(:last-child)::after {
    bottom: -4rem;
  }
  .general__flow__block .flow__step {
    grid-column: 1/3;
    grid-row: 1/2;
    justify-self: center;
  }
  .general__flow__block .flow__heading {
    grid-column: 1/3;
    grid-row: 2/3;
    font-size: 2rem;
  }
  .general__flow__block .flow__text {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  .general__flow__block .flow__image {
    grid-column: 2/3;
    grid-row: 3/4;
    padding: 0;
    background-color: transparent;
  }
  .general__flow__block .flow__image > img {
    object-fit: contain;
  }
}
.general__faq {
  background-color: #E1F0F9;
  padding: 8rem 0;
}
.general .p-faq__block .faq {
  background-color: #FFFFFF;
  padding: 4rem;
}
.general .p-faq__block .faq:not(:last-child) {
  margin-bottom: 3.2rem;
}
.general .p-faq__block .faq__question, .general .p-faq__block .faq__answer {
  max-width: 84rem;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4rem;
}
.general .p-faq__block .faq__question::before, .general .p-faq__block .faq__answer::before {
  display: inline-block;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}
.general .p-faq__block .faq__question {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.general .p-faq__block .faq__question::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 0.1rem;
  width: 100%;
  background-color: #D8DEE3;
  bottom: 0;
  top: initial;
  right: 0;
  left: 0;
}
.general .p-faq__block .faq__question::before {
  content: "Q";
  color: #DB1D13;
}
.general .p-faq__block .faq__question .text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
}
.general .p-faq__block .faq__answer::before {
  content: "A";
  color: #CAD8E1;
}
@media screen and (max-width: 767.9px) {
  .general .p-faq__block .faq {
    padding: 3rem 2rem;
  }
  .general .p-faq__block .faq:not(:last-child) {
    margin-bottom: 3.2rem;
  }
  .general .p-faq__block .faq__question, .general .p-faq__block .faq__answer {
    max-width: 100%;
    gap: 2rem;
  }
  .general .p-faq__block .faq__question::before, .general .p-faq__block .faq__answer::before {
    font-size: 3rem;
  }
  .general .p-faq__block .faq__question .text {
    font-size: 2rem;
  }
  .general .p-faq__block .faq__answer .text {
    font-size: 1.6rem;
  }
}
