@charset "UTF-8";
/* header WP-mambers ログイン・新規登録ボタン */
.l-header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
  min-width: 260px;
}

.wpmem-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wpmem-btns--col {
  flex-direction: column;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1em;
  border-radius: 0.6em;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .btn {
    display: flex;
    flex-direction: column;
    font-size: 10px;
  }
}

.btn.-login {
  background: var(--btn-secondary);
}

.btn.-register {
  background: var(--btn-primary);
  color: #fff;
}

.btn.-mypage {
  background: var(--btn-secondary);
}

.btn.-logout {
  background: #42586b;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

.btn i {
  line-height: 1;
}