@charset "utf-8";

/* ======================================================
 * tejyun.css
 * ------------------------------------------------------
 * PConly
 * - Base
 * - Common
 * - Override
 * - Assist
 * - Parts
 * - Clearfix
 * Media Queries
 * Print
====================================================== */
/* ------------------------------------------------------
 * Common
------------------------------------------------------ */
* {line-height: 1.65;}

/* ------------------------------------------------------
 * Override
------------------------------------------------------ */

/* ------------------------------------------------------
 * Assist
------------------------------------------------------ */

/* ------------------------------------------------------
 * Parts
------------------------------------------------------ */
/* -----cont-flow ----- */
.cont-flow {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 35px;
}
.cont-flow .cont-flow_item {
  position: relative;
  text-align: center;
  width: calc(100% / 5);
}
.cont-flow .cont-flow_item::before,
.cont-flow .cont-flow_item::after {
  position: absolute;
  width: 50%;
  height: 2px;
  top: 16px;
  background-color: #f0f4f7;
  content: "";
  z-index: 1;
}
.cont-flow .cont-flow_item::before {
  left: 0;
}
.cont-flow .cont-flow_item:first-child::before {
  display: none;
}
.cont-flow .cont-flow_item::after {
  right: 0;
}
.cont-flow .cont-flow_item:last-child::after {
  display: none;
}
.cont-flow .cont-flow_number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto;
  font-size: 20px;
  border-radius: 99px;
  background-color: #f0f4f7;
  z-index: 2;
}
.cont-flow .cont-flow_item.cont-active .cont-flow_number {
  font-weight: bold;
  color: #fff;
  background-color: #005dbd;
}
.cont-flow .cont-flow_text {
  margin: 9px 10px 0;
  font-size: 14px;
  line-height: 1.5;
}
.cont-flow .cont-flow_item.cont-active .cont-flow_text {
  font-weight: bold;
  color: #005dbd;
}

/* ------------------------------------------------------
 * Clearfix
------------------------------------------------------ */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* ======================================================
 * Print
====================================================== */
@media print {
}