/* Drawer */
.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in;
}

nav.nav {
  width: 100%;
  height: 100vh;
  background-color: #e9f5f6;
  right: -100%;
  top: 0;
  position: fixed;
  transition: all 200ms ease-in-out;
  z-index: 199;
  display: flex;
  align-items: center;
}

nav.nav ul {
  border: none;
  padding: 0;
  overflow-y: scroll;
  width: 100%;
  margin: -10vh 0 0 0;
}
nav.nav ul li.Nav_Logo {
  margin: 0 0 1rem 0;
  padding: 0 35%;
}
nav.nav ul li.Nav_instagram {
  margin: 0;
  padding: 2rem 0 0 0;
}
nav.nav ul li.Nav_instagram img {
  width: 10%;
  margin: 0 auto;
  display: block;
}

.toggle {
  position: relative;
  right: 0;
  top: 0;
  width: 50px;
  height: 40px;
  color: #313131;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 99999;
}

span.toggler,
span.toggler:before,
span.toggler:after {
  content: "";
  content: "";
  display: block;
  height: 1px;
  width: 20px;
  border-radius: 3px;
  background-color: #FFF;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: 0 auto;
}

span.toggler:before {
  bottom: 7px;
}

span.toggler:after {
  top: 7px;
}

span.deleteclass {
  background-color: transparent;
}

span.deleteclass::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #313131;
}

span.deleteclass::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #313131;
}

.nav ul li {
  display: block;
  list-style: none;
  padding: 0;
  text-align: center;
  border-bottom: dotted 1px #42bbc4;
  width: 80%;
  margin: 0 auto;
  letter-spacing: 0.15rem;
  font-weight: normal;
  height: 8vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav ul li a {
  padding: 1rem 20px 1rem 20px;
  display: block;
  color: #313131;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 200ms ease;
}

.nav ul li a:hover {
  background-color: #d1eff1;
}

/* Show Nav */
.show-nav .nav {
  right: 0;
}

.show-nav .overlay {
  opacity: 1;
  visibility: visible;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #FFF;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

footer #footer {
  background-color: #42bbc4;
  color: #fff;
  padding: 1.5rem 5% 2rem 5%;
}
footer #footer .footer_logo {
  width: 50%;
  margin: 0 auto;
}
footer #footer .copyright {
  text-align: center;
  font-size: 0.7rem;
  font-family: sans-serif;
  letter-spacing: 0.1rem;
  margin-top: 1rem;
}

#copyright {
  padding-top: 2rem;
  background-color: #42bbc4;
}
#copyright img {
  display: block;
  width: 40%;
  margin: 0 auto 1rem auto;
}
#copyright .copyright {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  padding-bottom: 2rem;
  color: #fff;
}

.Bottom_BtnArea {
  display: flex;
  width: 100%;
  position: sticky;
  bottom: 0;
  z-index: 200;
}
.Bottom_BtnArea a.Bottom_Btn {
  background-color: #42bbc4;
  color: #fff;
  text-align: center;
  display: block;
  padding: 1.3rem 0;
  text-decoration: none;
  width: 50%;
  font-weight: 400;
  letter-spacing: 0.2rem;
  font-size: 0.85rem;
}
.Bottom_BtnArea a.Bottom_Btn:first-child {
  border-right: solid 1px #fff;
}
.Bottom_BtnArea a.Bottom_Btn span {
  letter-spacing: 0.1rem;
}/*# sourceMappingURL=common.css.map */