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

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

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

/* title */
.title-align {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -10px;
    color: #666464;
}

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

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