.c-header {
  background: #fff;
  /* border-bottom: 1px solid #D1D1D1; */
  box-shadow: 0 1px 0 #d1d1d1;
  height: 70px;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-header {
    padding: 0 10px;
  }
}
.c-header__logo {
  align-items: center;
  display: flex;
  height: 100%;
  gap: 8px;
}
.c-header__logo p {
  margin: 0;
}
.c-header__logo p:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
}
.c-header__logo p:nth-child(2) {
  font-size: 12px;
}
.c-header__logo p img {
  height: 26px;
  padding-right: 8px;
}
@media screen and (max-width: 768px) {
  .c-header__logo p img {
    height: 24px;
    padding-right: 6px;
  }
}
.c-header__cta {
  display: flex;
  gap: 20px;
}
.c-header__btn {
  border-radius: 4px;
  font-size: 14px;
  height: 36px;
  width: 146px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-header__btn {
    width: 104px;
  }
}
.c-header__btn--login {
  border: 1px #ccc solid;
  background: #fff;
  color: #999;
}
.c-header__btn--regist {
  border: 1px #383838 solid;
  background: #FDEB43;
  color: #383838;
}
