@charset "utf-8";
/* CSS Document */
.sp, .spbr, .spimg {
  display: none;
}
span.anchor {
  position: relative;
  top: 20px;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .spbr, .spimg {
    display: inline;
  }
  header {
    position: fixed;
    height: 67px;
    top: 0;
    left: 0;
    background: white;
    z-index: 1000;
    width: 100vw;
    display: block;
  }
  .mv {
    margin-top: 67px;
  }
  header h1 {
    line-height: 1;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    margin: 0;
  }
  header .menu {
    position: fixed;
    width: 280px;
    right: -280px;
    top: 0;
    height: 100vh;
    transition: .4s;
    background-color: #f6f6f6;
    box-shadow: -2px -2px 3px rgba(0, 0, 0, .2);
    z-index: 9000;
  }
  header.open .menu {
    right: 0;
  }
  header .hnbg {
    width: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    cursor: pointer;
    z-index: 9999;
  }
  header .hnbg span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: #333;
    margin-bottom: 8px;
    transition: .4s;
  }
  header .hnbg span:last-child {
    margin-bottom: 0;
  }
  header.open .hnbg span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  header.open .hnbg span:nth-child(2) {
    opacity: 0;
  }
  header.open .hnbg span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }
  header .menu ul {
    display: block;
    padding: 0;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
  }
  header .menu ul li {
    border-bottom: 1px dotted #333;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  header .menu ul li:first-child {
    border-left: none;
  }
  header .menu ul li a {
    text-align: center;
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: #333;
  }
  span.anchor {
    position: relative;
    top: -67px;
  }
}