/* スマホ用 */
@media only screen and (max-width:480px) {
  body{
    overflow-x: hidden;
  }
  .header-area {
    width: 100vw;
    height: 50px;
    padding: 0 10px;
    position: fixed;
    top: 0;
    transition: .6s;
    background-color: #9D898980;
    z-index: 800;
  }
  .header-area.active {
    background-color: #ffffff;
  }
  .header-area p {
    font-size: 16px;
  }
  .homeBtn img {
    width: 30px;
    height: 100%;
  }
  .hamburger {
    width: 23px!important;
    height: 15px;
    position: relative;
    vertical-align: middle;
  }
  .hamburger, .homeBtn {
    z-index: 300;
  }
  .hamburger span{
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #564146;
    transition: .5s;/* 追記 */
  }
  .hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    top: 0;
  }
  .hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    top: 50%;
  }
  .hamburger span:last-of-type{/* ハンバーガーメニューの3番目の線 */
    top: 100%;
  }
  #slide-menu ul {
    position: fixed;
    top: 50px;
    width: 100%;
    left: 0;
    display: none; /* 非表示にしておく */
    width: 100vw;
    font-size: 20px;
    background-color: #ffffff;
    height: 100vh;
    z-index: 999!important;
  }
  #slide-menu li {
    margin: auto;
    letter-spacing: 0.15em;
    color: #564146;
    padding: 20px 0;
    text-align: center;
  }
  #slide-menu li::after {
    content: "";
    display: block;
    width: 30px;
    height: .5px;
    background: #56414690;
    margin: 10px auto 0;
  }
  #slide-menu li a {
    display: block;
  }
  .mbMenu {
    width: 95%;
    height: 50px;
    margin: auto;
    display: flex; 
    align-items: center;
  }
  #slide-menu li:first-of-type {
    margin-top: 50px;
  }
  .hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    top: 50%;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    opacity: 0;/* 透明にする */
  }
  .hamburger.active span:last-of-type{/* ハンバーガーメニューの3番目の線 */
    top: 50%;
    transform: rotate(-45deg);
  }
}