.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  border-top: 32px solid #BDE0FF;
  z-index: 100;
}

.header-logo {
  display: block;
  text-align: center;
}

.header-logo .logo {
  width: 90px;
  height: 90px;
}

.header_bottom, .header_bottom__menuList {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-top {
  margin: 34x;
}

.header_bottom {
  margin-top: 32px;
}

.header_bottom__menuList li {
  border-right: 1px solid #D9D9D9;
  padding: 0 32px;
}

.header_bottom__menuList li:first-child {
  padding-left: 0;
}

.header_bottom__menuList li:last-child {
  border-right: none;
}


.header_bottom__contact {
  width: 233px;
  height: 40px;
  border-radius: 3px;
  background: #4A96DC;
  margin-left: 32px;
  text-align: center;
  padding: 10px 0;
}

.header_bottom__contact a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 14px 24px;
    flex-direction: row;
    justify-content: space-between;
  }
  .header-logo .logo {
    width: 50px;
    height: 50px;
  }

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

  .header__hamburger {
    position: relative;
    background:#fff;
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 5px;
  }

  .header__hamburger span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: #6D6B66;
    width: 45%;
  }

  .header__hamburger span:nth-of-type(1) {
    top:15px; 
  }

  .header__hamburger span:nth-of-type(2) {
    top:23px;
  }

  .header__hamburger span:nth-of-type(3) {
    top:31px;
  }

  /* .header__hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .header__hamburger.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  /* } */

  /* .header__hamburger.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  } */

  #close-btn {
    position: absolute;
    top: 16px;
    left: 7px;
    width: 40px;
    height: 40px;
  }

  .header__nav {
    /* 本来はFlexだが、一旦noneにしてハンバーガーメニュー実装時に対応 */
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.60);
    transition: 0.6s;
    opacity: 0;
    z-index: 10;
  }

  .header__nav.active {
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    opacity: 1;
    transition: 0.6s;
  }

  .headerMenu__inner {
    width: 323px;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    padding: 76px 33px 0 34px;
    background-color: #4A96DC;
    color: #fff;
    text-align: center;
  }

  .headerMenu__inner_list li {
    margin-bottom: 32px;
    color: #FFF;
    text-align: center;
    font-family: var(--font-noto-sans-jp);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }

  .headerMenu__inner_contact {
    width: 256px;
    padding: 12px 0;
    border-radius: 3px;
    background-color: #fff;
    color: #4A96DC;
    text-align: center;
    font-family: var(--font-noto-sans-jp);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }
}
