@charset "utf-8";
/* 先行公開まま流用 */
.flowBox {
  margin-top: 32px;
  background-color: #FDFBEB;
  padding: 40px;
}
.flowBox .flowBox__q_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}
.flowBox .flowBox__q_wrap .flowBox__step {
  display: flex;
  flex-direction: column;
  background-color: #0AA365;
  border-radius: 8px;
  padding: 10px 17px 6px;
  font-family: 'Lato', sans-serif;
	font-weight: bold;
  color: #fff;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
}
.flowBox .flowBox__q_wrap .flowBox__step .step {
  font-size: 16px;
  line-height: 1;
}
.flowBox .flowBox__q_wrap .flowBox__step .num {
  font-size: 32px;
  line-height: 1.2;
}
.flowBox .flowBox__q {
  color: #0AA365;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
}
.flowBox .flowBox__a {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  gap: 56px;
}
.flowBox .flowBox__yes {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flowBox .flowBox__yes_text {
  font-size: 32px;
  font-weight: bold;
  color: #0AA365;
  line-height: 1.2;
  margin-bottom: 10px;
}
.flowBox .flowBox__yesArrow {
  position: relative;
  width: 32px;
  height: calc(100% - 84px);
  font-size: 20px;
  font-weight: bold;
  background: #0AA365;
  margin-bottom: 32px;
}
.flowBox .flowBox__yesArrow:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 56px;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background: url(/personal/assets/funds/internet_guide/images/triangle_green.svg) no-repeat;
}
.flowBox .flowBox__no {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flowBox .flowBox__noBox {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  width: 764px;
  margin-top: 32px;
}
.flowBox .flowBox__no_text {
  font-size: 32px;
  font-weight: bold;
  color: #BE105A;
  line-height: 1.2;
  margin-bottom: 10px;
}
.flowBox .flowBox__noArrow {
  position: relative;
  width: 32px;
  height: 70px;
  font-size: 20px;
  font-weight: bold;
  background: #BE105A;
  margin-bottom: 32px;
}
.flowBox .flowBox__noArrow:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 56px;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background: url(/personal/assets/funds/internet_guide/images/triangle_redpurple.svg) no-repeat;
}
.flowBox .flowBox__noBoxBody .nmlBtn {
  margin-top: 24px;
}
