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

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

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

/* title */
.title-align {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
  color: rgb(16, 16, 16);
  text-shadow:
    1px 1px 0 #fff,
    -1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff;
}

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