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

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

/* 拡大縮小(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;
	  margin-top: -30px;
    padding-right: 14px;
    color: rgb(28, 25, 25);
}

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

@media (max-width: 768px) {
  .title-align {
	  margin-top: -20px;
    padding-right: 6px;
  }
}
