@charset "UTF-8";
/* =====================
	募集要項
 ======================= */
.jobdescription {
  padding-bottom: 8.523%;
}

.jobdescription .jobdescription-dl {
  margin-bottom: 2.5em;
  background: var(--c_wht);
  border-radius: 0.5em;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(20%, auto) 1fr;
  grid-template-columns: minmax(20%, auto) 1fr;
}

.jobdescription .jobdescription-dl:last-child {
  margin-bottom: 0;
}

.jobdescription .jobdescription-dl dt {
  padding: 1em 2.5em;
  border-bottom: 2px solid #CBD5E4;
}

.jobdescription .jobdescription-dl dt:last-of-type {
  border-bottom-width: 0;
}

.jobdescription .jobdescription-dl dd {
  padding: 1em 2.5em;
  border-bottom: 2px solid #CBD5E4;
}

.jobdescription .jobdescription-dl dd:last-of-type {
  border-bottom-width: 0;
}

.jobdescription .jobdescription-dl-salary {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 2em auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 2em;
}

.flow {
  position: relative;
  padding: 5.682% 0 8.523%;
  margin-bottom: -8.523%;
  z-index: 2;
}

.flow:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_wht);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  border-radius: 0 0 2.5em 2.5em;
}

.flow .flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}

.flow .flow-list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 16.667%;
          flex: 0 1 16.667%;
}

.flow .flow-list-item-circle {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: var(--c_navy);
  border-radius: 50%;
  margin-bottom: 2.25em;
}

.flow .flow-list-item-circle:before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1em 0.5em 0 0.5em;
  border-color: var(--c_navy) transparent transparent transparent;
}

.flow .flow-list-item-circle-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flow .flow-list-item-num {
  line-height: 1.45;
  text-align: center;
  padding: 0 0.75em 0.5em;
  border-bottom: 3px solid var(--c_wht);
  color: var(--c_wht);
  margin-bottom: 0.8em;
}

.flow .flow-list-item-ttl {
  text-align: center;
  color: var(--c_yellow);
  font-size: 150%;
  line-height: 1.47;
}

.flow .flow-list-item-dot {
  margin: 0 auto 1.5em;
  position: relative;
  z-index: 2;
}

.flow .flow-list-item-dot:after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: var(--c_yellow);
  border: 3px solid var(--c_navy);
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.flow .flow-list-item-txt {
  line-height: 1.5;
}

.flow .flow-list-item:first-child .flow-list-item-dot:before {
  content: "";
  width: 100vw;
  height: 3px;
  background: var(--c_navy);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.flow .flow-list-item:last-child .flow-list-item-dot:before {
  content: "";
  width: 50%;
  height: 10px;
  background: var(--c_wht);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.flow .flow-staff {
  margin: 2.5em 0;
  text-align: center;
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  .jobdescription {
    padding-bottom: 75px;
  }
  .jobdescription .jobdescription-dl {
    margin-bottom: 40px;
    border-radius: 8px;
    display: block;
  }
  .jobdescription .jobdescription-dl dt {
    padding: 4px 12px;
    border-width: 1px;
    background: rgba(255, 255, 0, 0.3);
  }
  .jobdescription .jobdescription-dl dt:last-of-type {
    border-bottom-width: 1px;
  }
  .jobdescription .jobdescription-dl dd {
    padding: 8px 12px;
    border-width: 1px;
    font-weight: 500;
  }
  .flow {
    padding: 30px 0 75px;
    margin-bottom: -75px;
  }
  .flow:before {
    border-radius: 0;
  }
  .flow .flow-list {
    display: block;
  }
  .flow .flow-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .flow .flow-list-item-circle {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 110px;
    padding-top: 110px;
    margin-bottom: 0;
    margin-right: 16px;
  }
  .flow .flow-list-item-circle:before {
    top: 50%;
    left: calc(100% - 2px);
    right: auto;
    -webkit-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
  .flow .flow-list-item-num {
    font-size: 12px;
    border-width: 1px;
    padding: 0 8px 4px;
    margin-bottom: 4px;
  }
  .flow .flow-list-item-ttl {
    font-size: 16px;
  }
  .flow .flow-list-item-dot {
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .flow .flow-list-item-dot:after {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  .flow .flow-list-item-txt {
    margin-left: 16px;
    font-size: 14px;
  }
  .flow .flow-list-item:first-child .flow-list-item-dot:before {
    width: 2px;
    height: 100vh;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .flow .flow-list-item:last-child .flow-list-item-dot:before {
    width: 5px;
    height: 500%;
    top: 100%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .flow .flow-staff {
    margin: 30px 0;
  }
}
