.step__span {
  display: inline-block;
  color: #00baff;
  margin-right: 10px;
}
.directmail-btn {
  display: inline-block;
  color: #00baff;
  border: 2px solid #00baff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}
.directmail-btn-blue {
  display: inline-block;
  color: #fff;
  border: 2px solid #00baff;
  background-color: #00baff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}
.directmail-btn span {
    margin-right: 10px;
    transform: translateY(-5px);
    display: inline-block;
}
.directmail-btn .i.i-check2:before {
    content: "\EA2A";
    position: absolute;
    top: 3px;
    left: 3px;
}
/* フロー図：アンカー部分 */
.flow-link_inner {
  display: flex;
  gap: 30px;
  justify-content: start;
  align-items: baseline;
}
.flow-link_item.arrow_r {
  width: 173px;
  position: relative;
}
.flow-link_item.arrow_r::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 3px #4c4c4c;
  border-right: solid 3px #4c4c4c;
  transform: rotate(45deg);
  position: absolute;
  top: 83px;
  right: -15px;
}
.flow-link_item.arrow_r.arrow_r_yellow::after {
  border-top: solid 3px #00baff;
  border-right: solid 3px #00baff;
}
.flow-link_item_a {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.flow-link_item_a:hover{
  /* text-decoration: none!important; */
  text-decoration-color: #333!important;
  opacity: .7;
  cursor: pointer;
}
.flow-link_item_text {
  width: 165px;
  color: #333;
}
/* popup */
/* 背景の半透明オーバーレイ */
#modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  align-items: center;  /* 縦中央揃え */
  justify-content: center; /* 横中央揃え */
}

/* モーダル本体 */
#modal {
  background: #fff;
  width: 90%;
  max-width: 960px;
  height: 80vh;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

/* ヘッダー部分 */
#modalHeader {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: flex-end;
}

/* 閉じるボタン */
#closeBtn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* iframe部分 */
#modal iframe {
  flex-grow: 1;
  border: none;
  width: 100%;
  border-radius: 0 0 8px 8px;
  padding: 1rem;
}

/* 小画面時(スマホ)対応 */
@media (max-width: 480px) {
  #modal {
    height: 70vh;
    width: 95%;
    border-radius: 0;
  }
}


/* STEP1用CSS */
.step1-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}