@charset "UTF-8";
.header__container {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  color: #fff;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.hamburger {
  display: block;
  width: 48px;
  height: 48px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.5s;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

input[type=checkbox]:checked + .hamburger span {
  background-color: transparent;
}

input[type=checkbox]:checked + .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #333;
}

input[type=checkbox]:checked + .hamburger span::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #333;
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: #fff;
  color: #fff;
  padding: 96px 0px;
  transition: all 0.5s;
  box-sizing: border-box;
}

.nav__item a {
  display: block;
  font-size: 20px;
  padding: 24px;
  text-transform: uppercase;
  border: none;
}

.nav__item a:last-child {
  border: none;
}

.nav__item a:hover {
  color: #fff;
  background-color: #42A0A0;
}

input[type=checkbox]:checked ~ .nav {
  right: 0;
}

.nav_title {
  position: absolute;
  top: 46%;
  left: 33%;
  font-size: 1.1rem;
  font-weight: 400;
}

ul.nav__lIst.mb_ss {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

li.nav__item {
  width: 100%;
  margin-bottom: 24px;
}/*# sourceMappingURL=nav.css.map */