/**********************************************
    import
***********************************************/
/**********************************************
	$color
***********************************************/
/**********************************************
	header
***********************************************/
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  /* header ( sp ) */
  /* hamburger menu */
}

header .header_wrap_pc {
  background: #fff;
}

header .header_wrap_pc .header_upper {
  width: 90%;
  max-width: 1600px;
  height: 120px;
  margin: 0 auto;
}

header .header_wrap_pc .header_upper .header_logo {
  float: left;
  width: 14%;
  height: 120px;
}

header .header_wrap_pc .header_upper .header_logo img {
  width: 200px;
  margin: 10px;
}

header .header_wrap_pc .header_upper div.header_txt {
  float: left;
  width: 20%;
  margin: 20px 0 0 50px;
}

header .header_wrap_pc .header_upper div.header_txt img {
  width: 228px;
  height: auto;
  margin: 10px 10px 10px 60px;
}

header .header_wrap_pc .header_upper .lnk_btn_contact {
  float: right;
  width: 25%;
}

header .header_wrap_pc .header_upper .lnk_btn_contact:hover {
  opacity: 0.8;
}

header .header_wrap_pc .header_upper .lnk_btn_contact img {
  margin: 10px;
}

header .header_wrap_pc .header_lower {
  background: #301a61;
  width: 100%;
  height: 50px;
}

header .header_wrap_pc .header_lower.nav_pc {
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .header_wrap_pc .header_lower.nav_pc ul {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

header .header_wrap_pc .header_lower.nav_pc ul li {
  height: 50px;
  margin: 0 5px;
  text-align: center;
}

header .header_wrap_pc .header_lower.nav_pc ul li a {
  display: block;
  position: relative;
  height: 30px;
  margin: 10px 0;
  padding: 0 38px 0 20px;
  font-family: "M PLUS Rounded 1c";
  font-weight: 800;
  line-height: 30px;
  color: #301a61;
  background-color: #fff57f;
  border-radius: 15px;
}

header .header_wrap_pc .header_lower.nav_pc ul li a:hover {
  opacity: 0.7;
}

header .header_wrap_pc .header_lower.nav_pc ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #301a61;
  -webkit-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
}

header .header_wrap_pc .header_lower.nav_pc ul li a::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 13px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border: 6px solid transparent;
  border-top: 10px solid #fff57f;
  -webkit-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
}

header header .sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 2rem 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}

header header .sp .logo {
  width: 70%;
  max-width: 224px;
  background: #fff;
}

@media screen and (min-width: 560px) {
  header header .sp {
    padding-left: 5rem;
    background: #fff;
  }
  header header .sp .logo {
    width: 70%;
    max-width: 300px;
    background: #fff;
  }
}

header .sp_header {
  background: #fff;
}

header .sp_header h1 {
  padding: 4vw 0 3vw 2vw;
}

header .sp_header img {
  width: 80%;
}

header .toggle_menu {
  display: block;
  position: absolute;
  top: 15px;
  right: 1.5em;
}

@media screen and (max-width: 768px) {
  header .toggle_menu header .toggle_menu {
    top: 1.3vw;
    right: 4vw;
  }
}

header .hamburger {
  display: block;
  width: 40px;
  height: 35px;
  position: relative;
  z-index: 9999;
}

header .hamburger-item {
  position: relative;
  display: block;
  width: 40px;
  height: 3px !important;
  top: 14.5px;
  left: 0;
  margin-bottom: 2px;
  background-color: #3a3a3a;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

header .hamburger-item:nth-child(1) {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

header .hamburger-item:nth-child(3) {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

header .hamburger.active .hamburger-item:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
  background-color: #fff;
}

header .hamburger.active .hamburger-item:nth-child(2) {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

header .hamburger.active .hamburger-item:nth-child(3) {
  -webkit-transform: translateY(-3px) rotate(-45deg);
          transform: translateY(-3px) rotate(-45deg);
  background-color: #fff;
}

header .hamburger_txt {
  text-align: center;
  position: relative;
  z-index: 9999;
  width: 40px;
}

header .hamburger_txt .txt_close {
  display: none;
}

header .hamburger_txt .txt_menu {
  display: block;
}

header .hamburger_txt.open .txt_menu {
  display: none;
}

header .hamburger_txt.open .txt_close {
  display: block;
}

header .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: #301a61;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

header .overlay.open {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

header .nav_menu {
  width: 70%;
  height: 100%;
  padding-top: 30px;
  background-color: #301a61;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 7000;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media screen and (min-width: 560px) {
  header .nav_menu {
    width: 45%;
  }
}

@media screen and (min-width: 960px) {
  header .nav_menu {
    width: 20em;
  }
}

header .nav_menu.open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

header .nav_menu ul {
  width: 85%;
  margin: 50px auto 0;
  padding: 1em 0 0 0;
  background: #301a61;
  border-top: 1px solid #fff;
}

header .nav_menu ul li {
  text-align: left;
  margin-bottom: 0.5em;
  padding: 0.5em 0 0 0;
  list-style: none;
  position: relative;
}

header .nav_menu ul li:not(:last-of-type) {
  border-bottom: 1px dotted #fff;
}

header .nav_menu ul li a {
  display: block;
  padding-bottom: 0.5em;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
}

@media screen and (max-width: 414px) {
  header .nav_menu ul li a {
    font-size: 14px;
  }
}
/*# sourceMappingURL=header.css.map */