
/* タイトル画像のコンテナ */
.imagetitle {
    position: relative; /* 文字や画像を重ねるための基準 */
    width: 100%;  /* 画面幅に合わせる */
    margin: 0;
    padding: 0;
}

/* 画像の設定 */
.imagetitle img {
    width: 100%;
    height: auto;
    display: block;
}

