/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 22 2026 | 08:35:24 */
/* 会員ログイン */
#wpmem_login {
    max-width: 500px;
    margin: 0 auto;
}

#wpmem_login legend {
    display: none !important;
}

#wpmem_login .button_div {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    column-gap: 6px;
    font-size: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

#wpmem_login .button_div > * {
    font-size: 16px;
}

#wpmem_login .button_div .buttons {
    grid-row: 1;
    grid-column: 1 / 3;
    justify-self: center;
    margin: 0;
    background-color: #338df4;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

#wpmem_login .button_div .buttons:hover {
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

#wpmem_login .button_div input[type="checkbox"] {
    grid-row: 2;
    grid-column: 1;
    margin: 0;
}

#wpmem_login .button_div label[for="rememberme"] {
    grid-row: 2;
    grid-column: 2;
    margin: 0;
    line-height: 1;
}

#wpmem_login .link-text {
    display: none !important;
}

/* エラーメッセージ */
.wpmem_msg{
  --wpmem-ink:#212121;
  --wpmem-err:#df0515;
  --wpmem-bg:#fff5f5;
  --wpmem-bd:#ffd2d2;

  position: relative;
  width:100%;
  padding: 14px 16px 14px 44px;
  margin: 14px 0;
  border: 1px solid var(--wpmem-bd);
  border-left: 6px solid var(--wpmem-err);
  border-radius: 10px;
  background: var(--wpmem-bg);
  color: var(--wpmem-ink);
  line-height: 1.8;
  font-size: 1rem;
  text-align:left;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}

.wpmem_msg::before{
  content: "!";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--wpmem-err);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

.wpmem_msg > strong:first-child{
  color: var(--wpmem-err);
  letter-spacing: .02em;
}

.wpmem_msg strong{
  font-weight: 700;
}

.wpmem_msg a{
  color: var(--wpmem-err);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wpmem_msg a:hover{
  opacity: .75;
}