a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

/* ヘッダー */

.header {
  font-family: 'Shippori Mincho', serif;
  background-color: #fff;
  width: 100%;
  height: 100px;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (max-width: 980px) {
  .header {
    z-index: 1001;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  max-width: 1055px;
  margin: 0  auto;
}
@media screen and (max-width: 1050px) {
  .header__inner {
    padding:0 20px;
  }
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 210px;
}

@media screen and (max-width: 960px) {
  .header__title {
    margin: auto;
  }
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
}


@media screen and (min-width: 961px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 75%;
    padding-right: 0;
  }
}


@media screen and (min-width: 961px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

@media screen and (max-width: 960px) {
  .nav-items {
    width: 80%;
  }
}



@media screen and (min-width: 961px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);

  }
}

/* ナビのリンク */
.nav-items__item a {
  color: #333333;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 28px;
  font-size: 18px;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 961px) {
  .nav-items__item a {
    margin-bottom: 0;
    font-size: 100%;
  }
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 36px;
  right: 25px;
  background-color: #fff;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 961px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}


.nav-items__item a.hamburger_menu-btn {
  background-color: #25A7EA;
  height: 50px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-items__item a.hamburger_menu-btn img {
  width: 15px;
  margin-right: 10px;
}
