@charset "utf-8";
/* CSS Document */

body{
	background-color:orange;
	background-image: 
		url("../images/background-top.png"), /* 左上 */
		url("../images/background.png"); /* 右下 */
	background-repeat: 
        no-repeat, 
        no-repeat;
	background-position:
        left 10px top 10px,                 /* 左上の余白 */
        right 10px bottom 10px;             /* 右下の余白 */
	background-attachment: fixed, fixed;
	font-family: "Helvetica", "Arial", "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
}
h1{
	font-size: 20px;
}
div {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  margin: 50px auto;
  text-align: center;
  position: relative; /* absolute をやめる */
}
.map-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
	margin-top: 0.2em;    /* 地図を近づける */
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.address {
  margin-bottom: 0.2em;
}
body {
  margin: 0;
  padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}