  /* オーバーレイを全面に */
  .overlay-mask {
    position: absolute;
    inset: 0;                       /* top:0; right:0; bottom:0; left:0 */
    background: #004EA8; /* 任意の不透明黒 */
    /* 初期状態は下側を 100% クリップ（見えない） */
    clip-path: inset(0 0 250% 0);
    /* clip-path の変化をスムーズに */
    transition: clip-path 0.2s ease-out;
    pointer-events: none;
  }

  .c-flex-shrink-2 {
    flex-shrink: 2;
  }

  .aspect-320-500 {
    aspect-ratio: 320 / 500;
  }

  .c-word-break {
    word-break: break-all !important;
    white-space: normal;
  }