/*hamburger*/
.sideMenu a {
  text-decoration: none;
  color: #000;
}

.menuWidth {
  width: 215px;
  margin: 0 auto;
}

.HamburgerMenu {
  background-color: #000;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
}

.sideMenu {
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
  padding-top: 80px;
  position: fixed;
  right: -300px;
  transition: all 0.6s;
  top: 0;
  width: 280px;
  z-index: 200;
}

.sideMenu li {
  padding: 12px 0 12px 12px;
}

.hamburger {
  cursor: pointer;
  height: 80px;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  z-index: 300;
  /* background-color: #80b4db; */
}

.hamburger span {
  background-color: #000;
  height: 2px;
  /* height: 3px; */
  left: 17.5px;
  position: absolute;
  transition: all 0.6s;
  width: 45px;
  /* border-radius: 3px; */
}

.hamburger__lineTop {
  top: 30px;
}

.hamburger__lineCenter {
  top: 39px;
}

.hamburger__lineBottom {
  top: 48px;
}

.overlay {
  background-color: #fff;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 100;
}

.nav-open .sideMenu {
  background-color: #fff;
  right: 0;
}

.nav-open .hamburger__lineTop {
  top: 39px;
  transform: rotate(45deg);
}

.nav-open .hamburger__lineCenter {
  left: 50%;
  width: 0;
}

.nav-open .hamburger__lineBottom {
  top: 39px;
  transform: rotate(-45deg);
}

.nav-open .overlay {
  opacity: 0.4;
  visibility: visible;
}

section {
  margin: 0 auto 200px;
  text-align: center;
  width: 80%;
}

ul {
  list-style: none;
}

.sideMenuLogo {
  /* margin-top: 110px; */
  position: absolute;
  width: 180px;
  /* bottom: 90px; */
  /* left: 40px; */
  bottom: 100px;
  right: 0;
  bottom: 100px;
  left: 0;
  margin: auto;
}

.sideMenuLogo img {
  width: 100%;
}

.HamburgerMenu {
  display: none;
}

.sideMenuTitle {
  font-size: 23px;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  width: 90%;
}

.Form-Item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 17px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form-Item-Label-Required {
  border-radius: 5px;
  margin-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: red;
  color: #fff;
  font-size: 14px;
}

.Form-Item-Label-notRequired {
  border-radius: 5px;
  margin-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: gray;
  color: #fff;
  font-size: 14px;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 14px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.Form-Btn {
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 180px;
  display: block;
  letter-spacing: 0.05em;
  background: linear-gradient(160deg, #00A199, #171C61);
  border: 0;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 559px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  .Form-Item-Label-notRequired {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}/*# sourceMappingURL=default.css.map */