.imgleft {/*親div*/
  position: relative;/*相対配置*/
  }

.imgleft p {
    position: absolute;
    color: black;
    /* font-weight: bold; 太字に */
    font-size: 2em;/*サイズ2倍*/
    font-family :Quicksand, sans-serif;/*Google Font*/
    top: 0;
    left: 0;
    }
  
.imgleft img {
  width: 50%;
  }


.imgright {/*親div*/
    position: relative;/*相対配置*/
    text-align: right;
    }
  
.imgright p {
      position: absolute;
      color: black;
      /* font-weight: bold; 太字に */
      font-size: 2em;/*サイズ2倍*/
      font-family :Quicksand, sans-serif;/*Google Font*/
      top: 0;
      left: 0;
      }
    
.imgright img {
    margin-left: auto;
    width: 50%;
    }
  

