@charset "UTF-8";
/* =========================================================
   ご利用の流れ（p-flow）
   SP：アイコン上・本文下の縦積み / PC：アイコン左・本文右の2カラム
   ========================================================= */
.p-flow {
  position: relative;
  z-index: 0;
  padding: 30px 0 60px;
  /* 背景：共通の $gradient-light 不透明度60% */
}
@media only screen and (min-width: 992px) {
  .p-flow {
    padding: 60px 0 80px;
  }
}
.p-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  top: 100px;
  background: linear-gradient(90deg, #DEEBFF 0%, #E3FDFF 100%);
  opacity: 0.6;
}
@media screen and (min-width: 821px) {
  .p-flow::before {
    top: 160px;
  }
}

.p-flow__inner {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-flow__list {
  list-style: none;
}

/* ステップ（白カード）＋ カード間の点線コネクタ */
.p-flow__item {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(16, 31, 112, 0.06);
  border: 1px solid #A8BED1;
}
@media only screen and (min-width: 992px) {
  .p-flow__item {
    display: grid;
    grid-template-columns: 130px 1fr;
    padding: 0;
    padding: 40px 30px;
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 30px;
  /* 点線コネクタ（SP：中央 / PC：アイコン列の中央） */
}
@media only screen and (min-width: 992px) {
  .p-flow__item + .p-flow__item {
    margin-top: 40px;
  }
}
.p-flow__item + .p-flow__item::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  width: 4px;
  height: 28px;
  background-image: radial-gradient(circle, #0E63C4 1.5px, transparent 2px);
  background-size: 4px 8px;
  background-repeat: repeat-y;
  background-position: center;
  transform: translateX(-50%);
}
@media only screen and (min-width: 992px) {
  .p-flow__item + .p-flow__item::before {
    top: -40px;
    left: 86px;
    height: 40px;
  }
}

/* アイコン（PNGに青丸を含む） */
.p-flow__icon {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DCE4EE;
}
@media only screen and (min-width: 992px) {
  .p-flow__icon {
    align-items: center;
    margin-bottom: 0;
    justify-content: flex-start;
    border-bottom: none;
    /* 縦の区切り線（上下に余白） */
  }
  .p-flow__icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #DCE4EE;
  }
}
.p-flow__icon img {
  display: block;
  width: 60px;
  height: 60px;
}
@media only screen and (min-width: 992px) {
  .p-flow__icon img {
    width: 100px;
    height: 100px;
  }
}

/* 本文エリア */
@media only screen and (min-width: 992px) {
  .p-flow__body {
    padding: 0 0 0 40px;
  }
}

.p-flow__ttl {
  color: #0E63C4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 992px) {
  .p-flow__ttl {
    font-size: 24px;
  }
}

.p-flow__text {
  margin-top: 10px;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .p-flow__text {
    margin-top: 14px;
  }
}

/* 補足ボックス（Q&A／注意書き 共通の薄青背景） */
.p-flow__box {
  margin-top: 20px;
  padding: 10px;
  background-color: #EBFBFF;
  border-radius: 4px;
}
@media only screen and (min-width: 992px) {
  .p-flow__box {
    margin-top: 20px;
    padding: 20px;
  }
}

/* Q&A 行 */
.p-flow__qa {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p-flow__qa + .p-flow__qa {
  margin-top: 10px;
}

.p-flow__qa-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: #0E63C4;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (min-width: 992px) {
  .p-flow__qa-icon {
    width: 24px;
    height: 24px;
    margin-top: 3px;
    font-size: 12px;
  }
}

.p-flow__qa-text {
  color: #333;
}

.p-flow__qa--q .p-flow__qa-text {
  font-weight: 700;
}

/* 注意書きボックス（太字タイトル＋本文） */
.p-flow__box-ttl {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (min-width: 992px) {
  .p-flow__box-ttl {
    font-size: 16px;
  }
}

.p-flow__box-text {
  margin-top: 4px;
  color: #333;
}
/*# sourceMappingURL=flow.css.map */