@charset "UTF-8";
/* ------------------------------------------------------------
// requirements
------------------------------------------------------------ */
.requirements-table {
  margin-bottom: 80px;
}
.requirements-table .note {
  font-size: 14px;
  font-weight: 400;
}
.requirements-table .bold {
  font-weight: 700;
}
.requirements-table .-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .requirements-table {
    margin-bottom: 60px;
  }
  .requirements-table .-sp {
    display: block;
  }
}

.application-selection-talbe a {
  color: #0092e6;
}
.application-selection-talbe a:hover {
  text-decoration: underline;
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  /* 「内々定」の配置調整 */
}
.flow-list .flow-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  width: 80px;
  height: 80px;
  background: #0092e6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flow-list .final {
  font-weight: bold;
  color: #333;
  width: 60px;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .flow-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* 通常の横線（最後の一つ前以外） */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 15px;
  height: 2px;
  background: #333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 最後のボックス（内々定）の前だけ「ライン＋三角（矢印）」 */
.flow-item:nth-last-child(2)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 15px;
  height: 2px;
  background: #333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flow-item:nth-last-child(2)::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  border-left: 8px solid #333; /* 矢印の三角 */
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}