
@charset "utf-8";
/* ver 1.02 */
  
#headerContents {
  width: 550px;
  height: 800px; /* 1.【パーツの高さ数値】にiframeもしくは画像の横幅が1024px時の高さを入力（※単位はpx） */
}   
@media screen and (max-width: 480px) {
  #headerWrap {
    position: relative;
    width: 100%;
    padding-bottom: calc(200 / 560 * 100%); /* 3.【パーツの高さ数値】にiframeもしくは画像の横幅が560px時の高さを入力（※pxなど単位はつけないこと） */
  }
   
#headerContents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

