.header-wrap .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: relative; */
  /* height: 60px; */
  transition: 0.5s;
  max-width: 1200px;
  margin: 8px auto;
  padding: 0 10px;
}

p.header-logo {
  display: flex;
  align-items: center;
  margin: 0;
  /* position: absolute;
  left: 0; */
}

p.header-logo img {
  width: 130px;
  height: 40px;
}

#header-sp {
  display: none;
}

@media (max-width: 1000px) {
  /* 表示領域が1000px以下の場合に適用するスタイル */
  .header-wrap {
    display: none;
  }
  #header-sp {
    display: block;
  }
  .header-sp {
    position: relative;
  }
  .header-sp-logo {
    width: 130px;
    padding: 0;
    margin: 7px 0 0 0;
  }
  .header-sp-logo img {
    width: 100px;
    height: 31px;
    margin: 0 15px;
  }
}