/* =========================
   age-check.css
   認証ページ専用スタイル
   ========================= */

/* フォントごとのクラス定義（管理画面で選択式に対応） */
.font-noto-sans-jp {
    font-family: 'Noto Sans JP', sans-serif;
  }
  .font-yuji-mai {
    font-family: "Yuji Mai", serif;
  }
  .font-yuji-syuku {
    font-family: "Yuji Syuku", serif;
  }
  
  /* ボタンフォント専用クラス */
  .font-button-noto-sans-jp .auth-button-enter,
  .font-button-noto-sans-jp .auth-button-exit {
    font-family: 'Noto Sans JP', sans-serif;
  }
  .font-button-yuji-mai .auth-button-enter,
  .font-button-yuji-mai .auth-button-exit {
    font-family: "Yuji Mai", serif;
  }
  .font-button-yuji-syuku .auth-button-enter,
  .font-button-yuji-syuku .auth-button-exit {
    font-family: "Yuji Syuku", serif;
  }
  
  /* 1) 認証ページ全体の背景と文字色 */
  .age-check-body {
    background-color: ##720600;
    color: #fff;
    margin: 0;
    padding: 0;
  }
  
  /* 2) 認証ボックスを中央に寄せる */
  .age-check-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
  }
  .age-check-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
  }
  
  /* 3) 認証ヘッダーのスタイル */
  .auth-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d32d25;
    padding: 20px;
  }
  .auth-header .logo {
    display: flex;
    justify-content: center;
  }
  .auth-header .auth-header-logo {
    max-width: 200px;
    height: auto;
    display: inline-block;
  }
  
  /* 4) 認証ページ用バナー */
  .auth-banner-wrapper {
    text-align: center;
    margin: 20px 0;
  }
  .auth-banner-image,
  .auth-banner-wrapper img {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
  .auth-banner-wrapper picture {
    display: inline-block;
  }
  
  /* 5) 認証ページ本体エリア */
  .auth-content {
    text-align: center;
    padding: 40px 20px;
    background-color: ##720600;
  }
  
  /* 6) 認証メッセージ */
  .auth-message {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  /* 7) ENTER/EXIT ボタン */
  .auth-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .auth-button-enter,
  .auth-button-exit {
    background-color: #ff0;
    color: #000;
    padding: 12px 24px;
    border: 2px solid #000;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .auth-button-enter:hover,
  .auth-button-exit:hover {
    opacity: 0.8;
  }
  
  /* 8) 認証ページロゴ */
  .auth-logo-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  .auth-logo-image {
    max-width: 350px;
    height: auto;
    display: inline-block;
  }
  
  /* 9) 認証補足メッセージ */
  .auth-message-2 {
    font-size: 1.0em;
    color: #fff;
    margin-top: 20px;
    line-height: 1.4;
  }
  
  /* 10) リピーターフィールド（任意セクション） */
  .auth-extra-sections {
    margin-top: 40px;
    padding: 0 20px;
  }
  .auth-section-block {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
  }
  .auth-section-image {
    text-align: center;
    margin-bottom: 12px;
  }
  .auth-section-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
  .auth-section-title {
    font-size: 1.3em;
    color: #0a0000;
    margin-bottom: 8px;
    text-align: center;
  }
  .auth-section-text {
    color: #fff;
    font-size: 1.0em;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: center;
  }
  .auth-section-link-wrap {
    text-align: center;
    margin-top: 12px;
  }
  .auth-section-link {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
  }
  .auth-section-link:hover {
    background-color: #eee;
  }
  
  /* 11) レスポンシブ調整 */
  @media (max-width: 767px) {
    .auth-buttons {
      flex-direction: column;
      gap: 12px;
    }
    .auth-button-enter,
    .auth-button-exit {
      width: 100%;
    }
  }
  
  @media (min-width: 768px) {
    .auth-buttons button {
      flex: 1;
      max-width: 200px;
    }
  }