input {
  background-color: #fff;
  width: 100%;
  display: block;
  padding: 12px 16px 12px 32px;
  border: 1px solid rgba(16, 37, 44, 0.16);
  border-radius: 8px;
  line-height: 20px;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  color: #34585C;
}

header {
  width: 100%;
  border-bottom: 1px solid rgba(16, 37, 44, 0.12);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 101;
}

header .headerInner {
  max-width: 750px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .headerInner .logo {
  padding: 20px 0;
}

header .headerInner ul {
  display: flex;
  margin-left: 8px;
}

header .headerInner li {
  padding: 20px 12px;
  box-sizing: content-box;
}

header .headerInner li,
header .headerInner li a {
  color: #34585C;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

header .headerInner .messagebox {
  position: relative;
  border: 1px solid rgba(16, 37, 44, 0.12);
  border-radius: 50%;
  padding: 8px;
}

header .headerInner .header-right {
  display: flex;
  justify-content: left;
  align-items: center;
}

header .headerInner .header-right .login-register-button-area-wrapper {
  margin-right: 8px;
}

header .headerInner .header-right .login-register-button-area {
  display: flex;
  justify-content: left;
  align-items: center;
}

header .headerInner .header-right .login-register-button-area .login-button-wrapper {
  margin-right: 8px;
}

header .headerInner .header-right .login-register-button-area .login-button a {
  background: #3AB8B1;
  box-shadow: 0px 6px 20px rgb(0 0 0 / 15%);
  border-radius: 12px;
  font-weight: 600;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  padding: 8px 4px;
  cursor: pointer;
  border: none;
}

header .headerInner .header-right .login-register-button-area .register-button a {
  background: #FFFFFF;
  box-shadow: 0px 6px 20px rgb(0 0 0 / 15%);
  border-radius: 12px;
  font-weight: 600;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #3AB8B1;
  padding: 8px 4px;
  cursor: pointer;
  border: solid 1px #3AB8B1;
}

header .headerInner .messagebox.notice::after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  background-color: #3AB8B1;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  border: solid 2px #FFFFFF;
  padding: 4px;
}

header .headerInner .header-right .humberger {
  position: relative;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

header .headerInner .header-right .humberger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 3px;
  border-radius: 2px;
  background: #34585C;
  width: 24px;
}

header .headerInner .header-right .humberger span:nth-of-type(1) {
  top: 4px;
}

header .headerInner .header-right .humberger span:nth-of-type(2) {
  top: 12px;
}

header .headerInner .header-right .humberger span:nth-of-type(3) {
  top: 20px;
}

.menu {
  display: none;
  width: 100%;
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  z-index: 101;
}

.menu .menuHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 750px;
  margin: auto;
}

.menu .menuHeader .close {
  position: relative;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.menu .menuHeader .close span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 3px;
  border-radius: 2px;
  background: #34585C;
  width: 24px;
}

.menu .menuHeader .close span:nth-of-type(1) {
  top: 4px;
  transform: translateY(8px) rotate(-45deg);
  width: 100%;
}

.menu .menuHeader .close span:nth-of-type(2) {
  opacity: 0;
}

.menu .menuHeader .close span:nth-of-type(3) {
  top: 20px;
  transform: translateY(-8px) rotate(45deg);
  width: 100%;
}

.menu .menuInner {
  padding: 12px;
  max-width: 750px;
  margin: auto;
}

.menu .menuInner .search-box>img:first-child {
  top: 25%;
}

.menu .menuInner .item-type-01 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(16, 37, 45, 0.04);
}

.menu .menuInner .item-type-01 li {
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 8px;
}

.menu .menuInner .item-type-01 li::after {
  content: url(../images/common/right.svg);
}

.menu .menuInner .item-type-01 li::before {
  margin-right: 8px;
  height: 20px;
}

.menu .menuInner .item-type-01 li.menu01::before {
  content: url(../images/common/menu01.svg);
}

.menu .menuInner .item-type-01 li.menu02::before {
  content: url(../images/common/menu02.svg);
}

.menu .menuInner .item-type-01 li.menu03::before {
  content: url(../images/common/menu03.svg);
}

.menu .menuInner .item-type-01 li.menu04::before {
  content: url(../images/common/menu04.svg);
}

.menu .menuInner .item-type-01 li.menu05::before {
  content: url(../images/common/menu05.svg);
}

.menu .menuInner .item-type-01 li.menu06::before {
  content: url(../images/common/menu06.svg);
}

.menu .menuInner .item-type-01 li a {
  color: #34585C;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.52px;
  display: block;
  width: 100%;
  padding: 8px 0;
  text-decoration: none;
}

.menu .menuInner .item-type-02 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu .menuInner .item-type-02 li {
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 8px;
}

.menu .menuInner .item-type-02 li::after {
  content: url(../images/common/right.svg);
}

.menu .menuInner .item-type-02 li a {
  color: #34585C;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.52px;
  display: block;
  width: 100%;
  padding: 8px 0;
  text-decoration: none;
}

.search-box {
  position: relative;
  background-color: #fff;
}

.search-box>img:first-child {
  position: absolute;
  top: 35%;
  left: 10px;
}

.search-box-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F4F6F8;
  padding: 20px;
  box-sizing: border-box;
  animation: 0.5s ease-in-out;
  z-index: 102;
  overflow-y: scroll;
}

.search-box-inner {
  max-width: 750px;
  margin: auto;
}

.search-box-inner>.card {
  margin-top: 16px;
  padding: 16px;
}

.search-action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  background-color: #3AB8B1;
  margin-top: 16px;
  padding: 13px 13px 13px 13px;
  overflow-wrap: break-word;
}

.search-action-button .button-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 5px;
  color: #FFFFFF;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-input-wrap {
  width: 75%;
  position: relative;
}

.search-input-wrap {
  width: 75%;
  position: relative;
}

.clear-text {
  content: url(../images/top/search-close-button.png);
  position: absolute;
  right: 12px;
  top: 12px;
}

.search-filter-area {
  background-color: #fff;
}

.search-filter-area .filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.search-filter-area .filter:last-child {
  margin-bottom: 0;
}

.filter-title {
  color: #8C9DA1;
  font-weight: bold;
  font-size: 12px;
}

.filter-values {
  width: 80%;
  display: flex;
}

.search-box-close {
  color: #10252C;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 12px;
}

.search-check {
  display: inline-block;
  padding: 4px 12px;
  color: #34585C;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  position: relative;
  border-radius: 50px;
  border: 1px solid rgba(16, 37, 44, 0.12);
  font-size: 12px;
  margin-right: 4px;
}

.search-check:last-child {
  margin-right: 0;
}

.search-check input[type="checkbox"] {
  display: none;
}

.search-check.checked {
  background-color: rgba(16, 37, 44, 0.12);
  display: flex;
  align-items: center;
  padding-left: 6px;
}

.search-check.checked::before {
  content: url(../images/top/check_mark.png);
  width: 16px;
  height: 16px;
}

.search-tag {
  display: inline-block;
  padding: 3px 6px;
  color: #627C82;
  font-weight: bold;
  cursor: pointer;
  font-size: 10px;
  user-select: none;
  position: relative;
  border-radius: 8px;
  margin-right: 4px;
  margin-top: 12px;
  background-color: #E7F6FA;
}

.search-tag input[type="checkbox"] {
  display: none;
}

.search-tag.checked {
  background-color: rgba(16, 37, 44, 0.12);
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

.user-list {
  margin-top: 16px;
}

#search_result li,
.user-list li {
  margin-top: 8px;
}

.user-list .user-list-item {
  margin-top: 8px;
}

.user-list .user-list-item:first-child {
  margin-top: 0;
}

.user-list-item {
  display: block;
  background-color: #fff;
  padding: 16px;
}

.user-list-item>div,
.user-list-item>ul,
.user-list-item>button {
  margin-top: 12px;
}

.user-headline {
  display: flex;
  text-decoration: none;
  align-items: center;
}

.user-image {
  min-width: 64px;
  min-height: 64px;
}

.user-image img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  display: flex;
  align-items: center;
  color: #10252C;
  font-size: 13px;
  font-weight: bold;
}

.user-name .age {
  font-weight: normal;
}

.user-name p {
  text-align: left;
}

.user-info-container {
  margin-left: 12px;
}

.user-info-container__belongs {
  font-size: 12px;
  color: #8C9DA1;
  margin-top: 4px;
}

.user-info-container__belongs>* {
  display: inline-block;
}

.user-info-container__job-name {
  font-size: 12px;
  color: #10252C;
}

.bubble {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  padding: 8px 12px;
  background-color: #F8F9FB;
}

.bubble::after {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #F8F9FB;
  margin-top: -5px;
}

.user-comment {
  color: #526468;
  font-size: 12px;
}

.user-tag::-webkit-scrollbar {
  display: none;
}

.user-tag li {
  padding: 3px 6px;
  font-size: 10px;
  color: #627C82;
  background-color: #E7F6FA;
  margin: 2px;
  display: inline-block;
  border-radius: 8px;
}

.user-tag li .delete {
  display: inline-block;
  padding: 0 2px;
}

.button__normal {
  padding: 4px 12px;
  color: #34585C;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(16, 37, 44, 0.12);
  font-size: 12px;
  background-color: #fff;
  width: 100%;
}

.user-contact {
  padding: 8px 12px;
}

.user-contact::before {
  content: url(../images/top/send-paper-plane.svg);
  display: inline-block;
  height: 16px;
  margin-right: 4px;
}

a {
  text-decoration: none;
}