.counselingWindowContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 100px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  z-index: 100000;
}

.counselingWindowContainer .counselingWindowContent {
  width: 1060px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.counselingWindowContainer .counselingWindowContent form {
  padding: 40px;
  max-height: 80vh;
  overflow-y: scroll;
}

.counselingWindowContainer .counselingWindowContent h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.0;
  padding: 0 0 25px;
  border-bottom: 1px solid #000;
  text-align: center;
}
.counselingWindowContainer .counselingWindowContent p {
  padding: 20px 30px;
  font-weight: bold;
  font-size: 15px;
}
.counselingWindowContainer .counselingWindowContent .error {
  background: #fef2f4;
  color: #e40011;
  margin-bottom: 40px;
  text-align: left;
}
.counselingWindowContainer .counselingWindowContent .error:empty {
	margin-bottom: 0;
}
.counselingWindowContainer .counselingWindowContent .question {
  background: #EEEEEE;
  text-align: center;
  color: #333333;
  margin-bottom: 30px;
}
.counselingWindowContainer .counselingWindowContent .alert {
  font-size: 18px;
  margin-bottom: 40px;
}
.counselingWindowContainer .counselingWindowContent .message {
  font-size: 16px;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.8;
}
.counselingWindowContainer .counselingWindowContent .inputUnit {
  margin-bottom: 30px;
}
.counselingWindowContainer .counselingWindowContent .inputUnit label {
  font-size: 15px;
  margin: 0 10px;
}
.counselingWindowContainer .counselingWindowContent .btnUnit {
  border-top: 1px solid #e0e0e0;
  padding-top: 50px;
}
.counselingWindowContainer .counselingWindowContent .btnUnit .btn button,
.counselingWindowContainer .counselingWindowContent .btnUnit .btn a {
  min-width: 150px;
  min-height: 60px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
}

.counselingWindowContainer .counselingWindowContent .btnUnit .btn button:hover {
  text-decoration: none;
  opacity: 0.8;
}

.counselingWindowContainer .counselingWindowContent .btnUnit .btn.white button,
.counselingWindowContainer .counselingWindowContent .btnUnit .btn.white a {
  margin: 0 auto;
  color: #005bac;
  background-color: #fff;
  border: 1px solid #005bac;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.counselingWindowContainer .counselingWindowContent .btnUnit .btn.blue button,
.counselingWindowContainer .counselingWindowContent .btnUnit .btn.blue a {
  margin: 0 auto;
  color: #fff;
  background-color: #005bac;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.counselingWindowContainer .counselingWindowContent .btnUnit span {
  display: inline-block;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #e0e0e0;
}
.counselingWindowContainer .counselingWindowContent .btnUnit span:last-of-type {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
.counselingWindowContainer .counselingWindowContent .zoom_close {
  position: absolute;
  top: 0;
  right: -70px;
}
.counselingWindowContainer .zoom_close {
  position: absolute;
  top: -70px;
  right: -20px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: #000000;
 }
.counselingWindowContainer .zoom_close::before,
.counselingWindowContainer .zoom_close::after {
  content: "";
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.counselingWindowContainer .zoom_close::before {
  transform: rotate(45deg);
}
.counselingWindowContainer .zoom_close::after {
  transform: rotate(-45deg);
}