@charset "UTF-8";
.no_scroll {
  overflow: hidden;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.hidden-left {
  visibility: hidden;
}

.visible {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}

.hamburger_div {
  position: fixed;
  right: 0;
  width: 85%;
  height: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 9999;
}
.hamburger_div .hamburger_nav li {
  margin-top: 30px;
  text-align: left;
  list-style: none;
  padding-left: 24px;
  font-size: 16px;
}
.hamburger_div .hamburger_nav li .navigation_link {
  font-weight: bold;
  font-size: 18px;
  color: #3c4d69 !important;
}
.hamburger_div .hamburger_nav li:nth-child(1) {
  margin-top: 100px;
}
.hamburger_div .hamburger_div_img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9999;
}

.hamburger_left_space {
  position: fixed;
  left: 0;
  top: 0;
  width: 15%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 9999;
  opacity: 0;
}

.header {
  width: 100%;
  position: fixed;
  margin: 0 auto;
  z-index: 9999;
  display: flex;
  background: #ffffff;
  height: 65px;
  align-items: center;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /*activeクラスが付与されると線が回転して×に*/
}
.header .header_inner .header_h1 {
  width: 150px;
}
.header .header_inner .header_h1 a {
  margin-left: 10px;
}
.header .header_inner div .cta li {
  display: none;
}
.header .header_inner .openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 9999;
}
.header .header_inner .openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 50%;
  height: 3px;
  transform: translate(-50%, 0);
  border-radius: 2px;
  background: #3C4D69;
  width: 50%;
}
.header .header_inner .openbtn p {
  font-weight: bold;
  font-size: 6px;
  color: #3C4D69;
  width: 100% !important;
  position: absolute;
  left: 50%;
  top: 31px;
  transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
}
.header .header_inner .openbtn span:nth-of-type(1) {
  top: 9px;
}
.header .header_inner .openbtn span:nth-of-type(2) {
  top: 17px;
}
.header .header_inner .openbtn span:nth-of-type(3) {
  top: 25px;
}
.header .header_inner .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header .header_inner .openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.header .header_inner .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}/*# sourceMappingURL=header_sp.css.map */