/******* Do not edit this file *******
Code Snippets Manager
Saved: May 30 2025 | 08:17:56 */
@charset "UTF-8";
/* パスワード保護ページの全体中央揃え */
body.page .post-password-form {
  max-width: 500px;
  width: 90%;
  margin: 120px auto;
  background: #ffffff;
  padding: 30px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.08);
  font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
  text-align: center;
}
/* ロゴ画像 */
.post-password-form::before {
  content: "";
  display: block;
  width: 120px;
  height: 40px;
  background-image: url("https://un-edu.co.jp/wp-content/uploads/2025/05/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 20px auto;
}
/* パスワード入力欄 */
body.page .post-password-form input[type="password"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f7f7f7;
}
/* 送信ボタン */
body.page .post-password-form input[type="submit"] {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  background-color: #30b6f3;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
