@charset "utf-8";
html {
  font-size: 62.5%;
}
body {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  word-wrap: break-word;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  color: #000;
  background: #a2988a;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.fit {
  width: 100%;
  height: auto;
}
.pc-none {
  display: none;
}
.sp-none {
  display: initial;
}
@media (max-width: 900px) {
  .pc-none {
    display: initial;
  }
  .sp-none {
    display: none;
  }
}
img {
  vertical-align: top;
}
p {
  line-height: 1.5;
}

/* --------------------------------------------------------------------------

Container

-------------------------------------------------------------------------- */
.container {
  width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    width: 840px;
  }
}
@media (max-width: 900px) {
  .container {
    width: auto;
    padding: 0 15px;
  }
}

/* --------------------------------------------------------------------------

Elements

-------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------

Home

-------------------------------------------------------------------------- */
section.home-hero-section {
  position: relative;
  height: 100vh;
  text-align: center;
}
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
}
h1 {
  font-size: 6.0rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  font-weight: 700;
}