/* ----------------------------
   Reset（最小限）
----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----------------------------
   共通スタイル（ベース）
----------------------------- */

html,
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;

  background-color: #fff;
  /* background-image: url("../img/grain-bg.png"); */
  background-repeat: repeat;
  background-size: auto;
}

.content-wrapper {
  max-width: 1160px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hero .content-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

h1 {
  font-size: 47.63px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
.site-header,
.scroll-indicator,
.contact-email {
  font-family: "Josefin Sans", sans-serif;
}

.section-title {
  /* text-align: center; */
  margin-bottom: 60px;
  line-height: 1.4;
  margin-bottom: 80px;
}

.section-title .section-label {
  display: block;
  font-size: 18px;
  color: #d1d1d1;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-left: 5px;
}

.section-title .section-main {
  display: block;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.2em;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2em;
}

/* ----------------------------
 レスポンシブ
----------------------------- */

@media (max-width: 991px) {
  h1 {
    font-size: 36px;
  }
}
