h1 {
font-family: 'Fugaz One', cursive;
}

h2 {
font-family: 'Dosis', sans-serif;
}

/* 枠の太さ = 10px */
/* 枠の色 = #f08d24*/

html:before,
html:after,
body:before,
body:after {
  content: "";
  background: #000000;
  position: fixed;
  display: block;
  z-index: 1;
}

/* 上 */
html:before {
  height: 30px; 
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 150px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
body:before {
  height: 30px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
body:after {
  width: 150px;
  height: 100vh;
  top: 0;
  left: 0;
}.top_page {
    background-image: url(##IMAGE_DATA_2_URL##);    /* 背景画像指定 */
    background-size:  cover;                /* 画像のサイズ指定 */
    background-position: center;
}
 
  background-image: url();
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}