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

/* アスペクト比の設定 */
.image-aspect {
  aspect-ratio: 10 / 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: flex-start;
    padding-right: 14px;
    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:#c53030;
}

@media (max-width: 768px) {
  .title-align {
    margin-top: -10px;
  }
}
