@charset "UTF-8";
/* CSS Document */
.search-container {}
.search-wrap {
  position: relative;
  width: 94%;
  max-width: 500px;
  height: 40px;
  margin-left: 3%;
  margin-top: 50px;
}
#navSpWrap #navSp {
  padding-top: 1%;
}
.search-wrap form {
  width: 100%;
  height: 100%;
}
.search-wrap .search-area {
  width: 100%;
  height: 100%;
  border: solid 1px #A5A5A5;
  border-radius: 70px;
  box-shadow: none;
  padding-left: 16px;
  font-size: 16px;
}
.search-wrap .search-area:focus {
  box-shadow: 0 0 10px 0 rgba(2, 36, 98, 0.4);
  border: solid 1px #A5A5A5;
}
.search-wrap .search-btn {
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("../../common/img/icon-search.svg") no-repeat;
  background-size: contain;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
}
header #menu span {
  display: block;
  position: absolute;
  width: 60%;
  height: 4px;
  left: 16%;
  top: 13px;
  background-color: #fff;
  margin-bottom: 2px;
  transition: 0.5s;
}
header #menu span:nth-child(2) {
  top: 26px;
  width: 40%;
}
header #menu span:nth-child(3) {
  top: 38px;
  width: 30%;
}
body.showMenu header #menu img {
  opacity: 0;
}
body.showMenu header #menu span {
  left: 10px;
  width: 80px;
}
body.showMenu header #menu span:nth-child(1) {
  top: 38px;
  left: 5px;
  transform: rotateZ(45deg);
  width: 70px;
}
body.showMenu header #menu span:nth-child(2) {
  opacity: 0;
}
body.showMenu header #menu span:nth-child(3) {
  top: 50px;
  left: 5px;
  transform: translateY(-12px) rotateZ(-45deg);
  width: 70px;
}
@media screen and (max-width: 959px) {
  header #menu span {
    width: 60%;
    height: 2px;
    left: 10%;
    top: 7px;
    background-color: #fff;
    margin-bottom: 2px;
  }
  header #menu span:nth-child(2) {
    top: 14px;
  }
  header #menu span:nth-child(3) {
    top: 21px;
  }
  header #menu p {
    font-size: 13px;
  }
  body.showMenu header #menu p {
    opacity: 0;
  }
  body.showMenu header #menu span:nth-child(1) {
    top: 23px;
    left: 0px;
    transform: rotateZ(45deg);
    width: 50px;
  }
  body.showMenu header #menu span:nth-child(3) {
    top: 36px;
    left: 0px;
    transform: translateY(-12px) rotateZ(-45deg);
    width: 50px;
  }
}
@media screen and (max-width: 559px) {}