@charset "utf-8";

/* ==========================================================================
   会員ページ 共通
========================================================================== */
#post-member .pagetitle,
#post-member-news .pagetitle,
#archive-member-news .pagetitle {
  background-color: var(--color-main-dark);
}
.singlePost__date {
  display: block;
  margin: 0 0 1em;
  font-size: 0.85em;
  color: #888;
}

/* ==========================================================================
   パスワード入力フォーム（get_the_password_form）
========================================================================== */
.post-password-form {
  max-width: 440px;
  margin: 2em auto;
  padding: 2.5em 2em;
  text-align: center;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}
.post-password-form p:first-child {
  margin: 0 0 1.5em;
  color: var(--color-main);
  font-weight: 500;
  line-height: 1.8;
}
.post-password-form label {
  display: block;
  margin: 0 0 1.5em;
}
.post-password-form input[type="password"] {
  display: block;
  width: 100%;
  padding: 0.8em 1em;
  margin-top: 0.6em;
  border: 1px solid var(--color-border);
  background: #f7f7f7;
  font-size: 1em;
}
.post-password-form input[type="submit"] {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  padding: 0.9em 1em;
  border: 1px solid var(--color-main);
  background: var(--color-main);
  color: #fff;
  font-size: 1em;
  line-height: 1;
  transition: all 0.3s ease;
}
.post-password-form input[type="submit"]:hover {
  background: #fff;
  color: var(--color-main);
}

/* ==========================================================================
   仮バナー（member-banner）テキストバナー
   ※スマホ：縦並び／PC（768px〜）：横並び
========================================================================== */
.member-banner__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.8em;
}
.member-banner__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 60px;
  padding: 1.5em 2.5em 1.5em 1.5em;
  border: none;
  background-color: rgb(3, 34, 141);
  background-image: linear-gradient(to top, rgb(3, 34, 141) 0%, rgb(42, 76, 175) 100%);
  color: #fff;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.member-banner__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url("../images/common/icon-arrow02-white.png") no-repeat center center;
  background-size: contain;
}
.member-banner__link:hover {
  background-color: #85c6f8;
  background-image: none;
  color: var(--color-main);
}
.member-banner__link:hover::after {
  background-image: url("../images/common/icon-arrow02.png");
}
@media screen and (min-width: 768px) {
  .member-banner__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
  .member-banner__link {
    font-size: 1.2em;
    min-height: 80px;
  }
}
/* ==========================================================================
   管理画面：会員限定お知らせ一覧の「鍵の状態」列
========================================================================== */
.column-lock_status {
  width: 120px;
}
