body {
  background-color: #FFF;
  font-family: "Montserrat", sans-serif;
  color: #3F3F3D;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

main {
  margin-top: 70px !important;
  width: 100vw;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .inner {
    max-width: 580px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .inner {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* header */
header {
  width: 100%;
  height: 70px;
  border-bottom: #3F3F3D 0.5px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 100;
  font-size: 1em;
}
header .logo {
  background-image: url(../img/narumi-logo-new.png);
  width: 160px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 1vw;
  margin-top: 0.5vh;
}
header nav {
  display: flex;
  justify-content: end;
  width: 50vw;
  height: 80%;
  margin-top: 10px;
  text-transform: uppercase;
}
header nav .navSec {
  display: flex;
  align-items: center;
}
header nav .navSec .navItem {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0px 30px 0px 30px;
}
header nav .navSec .navItem a {
  position: relative;
}
header nav .navSec .navItem a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0px;
  top: 23px;
  border-radius: 5%;
  background-color: #3F3F3D;
  opacity: 0;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: -1;
}
header nav .navSec .navItem a:hover::after {
  opacity: 1;
  top: 18px;
}
header nav .navSec .navItem a:hover {
  font-weight: 700;
  transition: font-weight 0.5s ease;
}

a {
  color: #3F3F3D;
  font-weight: 500;
  text-decoration: none;
}

.secTitle {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.7em;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .secTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .secTitle {
    font-size: 1.4em;
    margin-bottom: 20px;
  }
}

.underHeader {
  height: 70px;
  width: 100vw;
  z-index: 99;
  position: fixed;
  background-color: #FFF;
}

.burger {
  display: none;
  margin-right: 3vw;
  margin-top: 1vh;
}
@media (max-width: 650px) {
  .burger {
    display: block;
  }
}
@media (max-width: 400px) {
  .burger {
    display: block;
  }
}

.closeBurger {
  display: none;
  position: fixed;
  right: 4vw;
  top: 4vh;
  z-index: 500;
}

.burgerMenu {
  display: none;
}
@media (max-width: 650px) {
  .burgerMenu {
    display: block;
    width: 45vw;
    height: 100vh;
    right: -50vw;
    background-color: #FFF;
    position: fixed;
    z-index: 200;
    transition: all 0.6s ease;
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
    z-index: 200;
  }
}

.burgerMenu.slide {
  right: 0;
}

.navSecB {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 100px 12vw 0 0;
}
.navSecB li {
  margin-bottom: 20px;
}
.navSecB li a {
  position: relative;
}
.navSecB li a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0px;
  top: 23px;
  border-radius: 5%;
  background-color: #3F3F3D;
  opacity: 0;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: -1;
}
.navSecB li a:hover::after {
  opacity: 1;
  top: 18px;
}
.navSecB li a:hover {
  font-weight: 700;
  transition: font-weight 0.5s ease;
}

.burgerBack {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 150;
  background-color: rgba(63, 63, 61, 0.737254902);
  opacity: 0;
  display: none;
}

.burgerBack.burgerOpen {
  display: block;
  opacity: 1;
}

@media only screen and (max-width: 650px) {
  header {
    justify-content: space-between;
  }
  header .logo {
    margin-left: 3vw;
  }
  header .nav {
    display: none;
  }
}
.reg-button {
  margin: 25px 0;
  border: #3F3F3D 1px solid;
  color: #3F3F3D;
  font-size: 1em;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 50px;
  background-color: #FFF;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9em;
  transition: background-color 0.2s, color 0.2s ease;
}

.reg-button:hover {
  background-color: #3F3F3D;
  color: #FFF;
}

/* footer */
footer {
  background-color: #FFF;
  width: 100vw;
  height: 8vh;
  padding: 10px 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  font-size: 0.8em;
}

#sns {
  height: auto;
  width: 150px;
  display: flex;
  justify-content: space-between;
}
#sns .fa-2xl {
  transition: color 0.2s ease;
}
#sns .fa-2xl:hover {
  color: #92928f;
}

/*# sourceMappingURL=style.css.map */
