/* ステップ表記
====================================================*/
.stepText{
  margin: 1rem 0;
}
.step-wrap {
  width: 70%;
  text-align: center;
  margin: 5% auto;
  max-width: 500px;
}
.step-wrap .line {
  width: 100%;
  position: relative;
  color: #c28cb7;
}
.step-wrap .row {
  display: flex;
  justify-content: space-between;
}
.step-wrap .border {
  border-bottom: 2px solid #c28cb7;
  text-align: center;
  margin: 0 auto;
  width: calc(100% - 30px);
}
.step-wrap .circle {
  text-align: center;
  margin: 0 auto;
  width: calc(100% - 30px);
}
.step-wrap .step {
  width: 20px;
  height: 20px;
  border: 1px solid #c28cb7;
  background: white;
  border-radius: 100px;
  margin-top: 30px;
  transition: 0.4s;
}
.step-wrap .step1 {
  float: left;
  margin-top: -12px;
}
.step-wrap .step2 {
  margin: 0 auto;
  margin-top: -12px;
}
.step-wrap .step3 {
  float: right;
  margin-top: -12px;
}
.step-wrap .active {
  background: #c28cb7;
}
@media screen and (max-width: 400px) {
  .step-wrap .border {
    width: calc(100% - 15px);
  }
  .step-wrap .circle {
    width: calc(100% - 15px);
  }
  .step-wrap .step {
    width: 10px;
    height: 10px;
    margin-top: 15px;
  }
  .step-wrap .step1 {
    margin-top: -6px;
  }
  .step-wrap .step2 {
    margin-top: -6px;
  }
  .step-wrap .step3 {
    margin-top: -6px;
  }
}

/* フォームエリア
====================================================*/
.form-wrap {
  background: rgba(255, 255, 255, 0.9);
  border: 5px solid #c28cb7;
  border-radius: 15px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  margin: 0 auto;
  width: 80%;
  padding: 20px 10px 40px 10px;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  padding-bottom: clamp(5rem, 1.6667rem + 17.7778vw, 15rem);
}
@media screen and (max-width: 500px) {
  .form-wrap {
      width: 90%;
      border: 3px solid #c28cb7;
  }
}

.form-wrap .form-area {
  display: block;
  width: 300%;
}

.form-wrap .form-area .col {
  float: left;
  width: 33.33%;
}

.form_box{
    width: 80%;
    margin: 0 auto;
    text-align: left;
}

.form-edit{
  width: 80%;
  margin: 0 auto;
  text-align: left;
}

/* プロフィールアイコン*/
.image-container {
  width: 100px;
  height: 100px;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 50%;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .icon-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 50%;
  }
  
  #plus-icon {
    width: 25px;
    height: 25px;
  }