#boardBox #writeBox .write-box {
  padding: 0;
}

#boardBox #writeBox .form-horiz {
  border-top: 2px solid var(--color-text);
}

#boardBox #writeBox .form-horiz .form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #eee;
  padding: 35px 30px;
}

#boardBox #writeBox .form-horiz .form-group {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 35px 30px;
  border-bottom: 1px solid #eee;
}

#boardBox #writeBox .form-horiz .form-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#boardBox #writeBox .form-horiz .form-flex .form-group {
  border-bottom: 0;
  flex: 1;
  padding: 0;
}

#boardBox #writeBox .form-horiz .form-group.text-area {
  align-items: flex-start;
}

#boardBox #writeBox .form-horiz .form-group.text-area .label {
  margin-top: 10px;
}

#boardBox #writeBox .form-horiz .form-group .label {
  min-width: 140px;
  font-size: var(--font-size-default);
}

#boardBox #writeBox .form-horiz .form-group .input {
  margin: 0;
  flex: 1;
}

#boardBox #writeBox textarea {
  height: 300px;
}

#boardBox #writeBox .agreement p {
  font-size: var(--font-size-default);
}

#boardBox #writeBox .board-button-box {
  padding: 0;
  margin-top: 80px;
}

#boardBox #writeBox button.contact-btn {
  min-width: 300px;
  border-radius: 0;
  --btn-height: 65px;
  --btn-font-size: var(--f22);
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1360px)*/
@media all and (min-width: 1024px) and (max-width: 1360px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #boardBox #writeBox .form-horiz {
    border-width: 1px;
  }

  #boardBox #writeBox .form-horiz .form-flex {
    display: block;
    padding: 0;
    border: none;
  }

  #boardBox #writeBox .form-horiz .form-group {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
  }

  #boardBox #writeBox .form-horiz .form-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  #boardBox #writeBox .form-horiz .form-flex .form-group {
    border-bottom: 1px solid #eee;
    padding: 30px 20px;
  }

  #boardBox #writeBox .form-horiz .form-group .label {
    min-width: 100px;
  }

  #boardBox #writeBox button.contact-btn {
    min-width: 260px;
    --btn-height: 60px;
  }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  #boardBox #writeBox .form-horiz {
    border-width: 1px;
  }

  #boardBox #writeBox .form-horiz .form-flex {
    display: block;
    padding: 0;
    border: none;
  }

  #boardBox #writeBox .form-horiz .form-group {
    display: block;
    padding: 0;
    margin-top: 25px;
    border: none;
  }

  #boardBox #writeBox .form-horiz .form-group.text-area .label {
    margin-top: 10px;
  }

  #boardBox #writeBox .form-horiz .form-group .label {
    display: block;
    min-width: unset;
    margin-bottom: 8px;
  }

  #boardBox #writeBox textarea {
    height: 250px;
  }

  #boardBox #writeBox .board-button-box {
    margin-top: 60px;
  }

  #boardBox #writeBox button.contact-btn {
    min-width: 60vw;
    --btn-height: 55px;
  }
}
