@charset "utf-8";
#wrap {
  min-width: 320px;
  max-width: 750px;
  margin: 0 auto;
  background-position: 0 110%; 
  background-size: 100%;
  background-repeat: no-repeat;
}
/*form
================================================*/
.main h3, .main h4 {
  font-size: 30px;
  font-weight: normal;
  color: #4a4846;
  font-family: 'Noto Serif JP', serif;
  margin: 40px 0;
  line-height: 1.3;
}


/*contents
================================================*/
.contents img {
  width: 100%;
}
.contents li {
  list-style: none;
}

.contents {
  background-image: url('../images/bg.jpg'); /* 画像のURLを指定 */
  background-size: cover; /* 画面全体にフィット */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 繰り返しなし */
}
.main ul li {
  display: inline-block;
  width: 19%;
  margin: 0 0.2em 1em 0.4em;
}
.main {
  text-align: center;
}
/**
* ===============================================
* MediaQuery : スマホ対応
* ===============================================
*/
@media only screen and (max-width: 767px) {
  .main h4 {
    font-size: 5vw;
	margin: 1em 0;
  }
	
  .main h3 {
    font-size: 5vw;
	margin: 1.5em 0;
  }

}