/*トップ画部*/
.topimage-wrapper{
    /*   position:relative; */
       margin : 0 auto;
       margin-top:100px;
       margin-bottom:20px;
       width: 900px;
       height:500px;
       background-image: url("../img/top/top-image.svg");
       background-size:contain;
   }
   
   .topimage-wrapper h1{
       font-size:36px;
           text-align: right;
           color:white;
           letter-spacing: 12px;
           font-family:'Times New Roman', Times, serif;
      }
   

/* タブレット向けレイアウト */
@media all and (max-width: 900px) {
    .topimage-wrapper{
           margin-top:80px;
           margin-bottom:20px;
           width: 600px;
           height:300px;
           background-image: url("../img/top/top-image.svg");
       }
    .topimage-wrapper h1{
        font-size:32px;
    }
    
}

/* モバイル向けレイアウト */
@media all and (max-width: 600px) {

    .topimage-wrapper{
        margin-top:80px;
        margin-bottom:20px;
        width: 100%;
        height:200px;
        background-image: url("../img/top/top-image.svg");
    }
    .topimage-wrapper h1{
        font-size:24px;
    }
}