@charset "UTF-8";
.entries {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.step-navigator {
  width: 100%;
  padding: 4px 0px;
  background: #EEF4F8;
}

.step-progress-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.step-progress-wrapper::before {
  display: block;
  content: '';
  background-image: url(/img/icon-step.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 35px;
  height: 15px;
}

.step-progress-wrapper::after {
  display: block;
  content: '';
  background-image: url(/img/icon-step-second.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 35px;
  height: 17px;
}

.step-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  z-index: 1;
}

.step-item:last-child::after {
  display: none;
}

.step-number {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #FFFFFF;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-family: Helvetica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 14px */
}

.step-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #C3D3F5;
  z-index: -1;
}

.step-item.completed .step-number {
  color: #5F89E3;
  background: #5F89E3;
}

.step-item.completed .step-number::before {
  background: white;
}

.step-item.completed::after {
  background: #5F89E3;
}

.step-label {
  margin-top: 8px;
  font-size: 12px;
}

.step-progress-confirm {
  color: #C3D3F5;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

/* ナビゲーションボタン */
.step-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.btn-prev {
  color: #5F89E3;
  font-family: "Hiragino Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-next,
.btn-submit {
  display: flex;
  width: 234px;
  height: 42px;
  padding: 11px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--blue_gradation, linear-gradient(180deg, #7499E9 0%, #5F89E3 100%));
  color: #FFF;
}

.btn:hover {
  opacity: 0.9;
}

.confirmation-section {
  margin-bottom: 30px;
}

.confirmation-item-wapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.confirmation-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.confirmation-label {
  color: #666;
  font-family: "Hiragino Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.confirmation-value {
  display: flex;
  height: 40px;
  padding: 4px 8px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: #666;
  font-family: "Hiragino Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #F6F6F6;
}
