@charset "utf-8";
/* CSS Document */

/* アスペクト比の設定 */
.image-aspect {
  aspect-ratio: 16 / 2;
}

/* 拡大縮小(contain) 切り抜き(cover) */
.image-fit-type {
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

/* title: 右下 */
.title-align {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: white;
  text-shadow:
    1px 1px 0 #333,
    -1px 1px 0 #333,
    -1px -1px 0 #333,
    1px -1px 0 #333;
}

/* base color */
.base-color {
  background-color: #696969;
}
