@charset "UTF-8";
@media screen and (min-width: 1101px) {
  header .header_content {
    width: 100%;
    position: fixed;
    z-index: 99;
    top: 30px;
  }
  header .header_content .header_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
  }
  header .header_content .header_main .header_logo {
    z-index: 3;
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  header .header_content .header_main .header_logo img {
    width: 300px;
  }
  header .header_content .header_main .header_menu {
    z-index: 5;
  }
  header .header_content .header_main .header_menu nav ul {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    margin-right: 20px;
    border: solid 2px #fff;
  }
  header .header_content .header_main .header_menu nav ul li {
    list-style: none;
    padding: 0 20px;
  }
  header .header_content .header_main .header_menu nav ul li a {
    position: relative;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
  }
  header .header_content .header_main .header_menu nav ul li:nth-child(n+2) {
    border-left: 2px solid #000;
  }
}
@media screen and (max-width: 1100px) {
  .header_content {
    position: relative;
  }
  .header_content .header_main {
    background: #ffffff;
    height: 60px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
  }
  .header_content .header_main .header_logo {
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 3;
  }
  .header_content .header_main .header_logo a {
    z-index: 3;
  }
  .header_content .header_main .header_logo a img {
    position: relative;
    width: 250px;
    top: 0px;
  }
  .header_content .header_main .header_logo span {
    font-weight: 700;
    font-family: "メイリオ", "Meiryo", sans-serif !important;
  }
  .header_content .header_main .header_menu nav ul li {
    display: flex;
    justify-content: center;
  }
  /*ナビのスタイル*/
  nav.NavMenu {
    position: fixed;
    z-index: 12;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    height: 100%;
    display: none;
  }
  nav.NavMenu ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  nav.NavMenu ul img {
    width: 60%;
    position: relative;
    top: 15px;
  }
  nav.NavMenu ul li {
    font-size: 24px;
    list-style-type: none;
    width: 100%;
    padding-bottom: 0px;
  }
  nav.NavMenu ul li:last-child {
    padding-bottom: 0;
  }
  nav.NavMenu ul li a {
    display: block;
    color: #fff;
    padding: 15px 0;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
  }
  /*ボタンのスタイル*/
  .Toggle {
    position: relative;
    right: 10px;
    top: 10px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 13;
    display: block;
    border-radius: 50%;
  }
  .Toggle span {
    display: block;
    position: absolute;
    width: 35px;
    border-bottom: solid 3px #000000;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .Toggle span:nth-child(1) {
    top: 9px;
  }
  .Toggle span:nth-child(2) {
    top: 20px;
  }
  .Toggle span:nth-child(3) {
    top: 31px;
  }
  .Toggle.active span:nth-child(1) {
    top: 21px;
    left: 5px;
    transform: rotate(-45deg);
    border-bottom: solid 3px #000000;
  }
  .Toggle.active span:nth-child(2),
  .Toggle.active span:nth-child(3) {
    top: 21px;
    transform: rotate(45deg);
    border-bottom: solid 3px #000000;
  }
}/*# sourceMappingURL=header.css.map */