body {
  font-family: sans-serif;
  text-align: center;
}

.image-container {
  position: relative;          /* テキストを絶対配置するための基準 */
  display: inline-block;
  margin-top: 20px;
}

.image-container img {
  max-width: 400px;
  height: auto;
  border: 1px solid #ccc;
}

#overlayText {
  position: absolute;
  bottom: 20px;                /* 画像の下から20px */
  right: 20px;                 /* 画像の右から20px */
  color: white;                /* テキスト色 */
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7); /* 見やすい影 */
  pointer-events: none;        /* テキスト上のクリックを無効化 */
}

/* 上映時間 */
#overlayText2 {
  position: absolute;
  top: 20px;                /* 画像の下から20px */
  right: 20px;                 /* 画像の右から20px */
  color: white;                /* テキスト色 */
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7); /* 見やすい影 */
  pointer-events: none;        /* テキスト上のクリックを無効化 */
}