@charset "utf-8";
/* CSS Document */
@font-face {
	  font-family: 'Hind-bold';
	  src: url("../font/Hind-Bold.ttf");
}
@font-face {
	  font-family: 'NotoSansJP';
	  src: url("../font/NotoSansJP-Regular.ttf");
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  font-family: 'NotoSansJP', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6em;
  color: #3D0909;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}
a {
  display: block;
}
h1, h2, h3 {
  font-weight: bold;
}
/*ヘッダー------------------------------------------*/
header {
  position: relative;
  margin-bottom: 55px;
  width: 100%;
  padding-top: 70px;
  text-align: center;
}
header h1 {
  text-align: center;
  font-family: 'Hind-bold', sans-serif;
  font-size: min(7vw,85px);
  color: #FFF;
  letter-spacing: 0.1em;
  text-shadow: 0 3px 6px rgba(0,0,0,0.16) ;
}
header span {
  display: inline-block;
  padding: 11px 30px;
  border-radius: 30px;
  background-color: #3D0909;
  font-size: min(1.5vw,18px);
  color: #FFF;
}

/*メイン------------------------------------------*/
section {
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  /*ヘッダー--------------------------------------*/
  header {
    position: relative;
    margin-bottom: 65px;
    width: 100%;
    padding-top: 80px;
    text-align: center;
  }
  header h1 {
    font-size: max(12.8vw,48px);
    margin-bottom: 10px;
  }
  header span {
    display: inline-block;
    padding: 11px 30px;
    border-radius: 30px;
    background-color: #3D0909;
    font-size: max(3.7vw,14px);
    color: #FFF;
  }
}