    /* 年齢認証画面：CSSレベルで非表示にしてフラッシュを防止。未認証時のみJSで表示する */
    #age-gate { display: none !important; }

    /* 共通スムーズスクロールとベーススタイル */
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    }
    /* ドラッグ&ドロップエリアのフォーカスアニメーション */
    .drag-over {
      border-color: #f59e0b !important;
      background-color: rgba(245, 158, 11, 0.1) !important;
    }
    /* URL入力欄に付随する簡易ドラッグ&ドロップアップローダー（キャスト写真登録の枠と同サイズ感に統一） */
    .url-dropzone {
      margin-top: 6px;
      border: 2px dashed #57534e;
      border-radius: 0.75rem;
      padding: 16px;
      min-height: 96px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 4px;
      cursor: pointer;
      font-size: 10px;
      line-height: 1.5;
      color: #a8a29e;
      background-color: rgba(12, 10, 9, 0.4);
      transition: border-color .15s, background-color .15s;
    }
    .url-dropzone i {
      font-size: 20px;
      color: #78716c;
    }
    .url-dropzone:hover {
      border-color: #78716c;
      background-color: rgba(28, 25, 23, 0.5);
    }
