* {
  color: var(--global-white);
  font-size: var(--font-l4);
  font-family: var(--font-n2);
}

#gotop {
  display: flex;
  width: 100%;
}

#selected {
  position: fixed;
  top: 60%;
  right: 0px;
  width: 44px;
  z-index: 5;
}

#gototop {
  width: 100%;
  height: 88px;
  background-color: var(--global-blackblue);
  border: 1px solid var(--global-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--global-lightgray);
  border-bottom: 1px solid var(--global-lightgray);
  border-left: 1px solid var(--global-lightgray);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#gototop:hover {
  cursor: pointer;
  border-top: 1px solid var(--global-white);
  border-bottom: 1px solid var(--global-white);
  border-left: 1px solid var(--global-white);
}

#contactus {
  width: 100%;
  height: 160px;
  background-color: var(--global-blackblue);
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-lr;
  letter-spacing: 5px;
  margin-bottom: 16px;
  border-top: 1px solid var(--global-lightgray);
  border-bottom: 1px solid var(--global-lightgray);
  border-left: 1px solid var(--global-lightgray);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#contactus:hover {
  cursor: pointer;
  border-top: 1px solid var(--global-white);
  border-bottom: 1px solid var(--global-white);
  border-left: 1px solid var(--global-white);
}

.search {
  width: 100%;
  background-color: var(--global-blackblue);
  padding: 40px 15px;
  box-sizing: border-box;
}
.search .search-title {
  font-size: var(--font-l1);
  color: var(--global-white);
  text-align: center;
}