@charset "utf-8";

/**********************************　
以下、ハンバーガーメニューの設定　
************************************/

@media (max-width: 1080px) {

    header {
      padding-top: 30px;
      height: 100px;
    }
    li{
      padding: 20px;
    }
  
  .logo{
    margin-top: -15px;
  }
  
  #h-menu2{
  background: rgb(223, 223, 223);
  }
  #h-menu2 p {
    text-align: center;
    font-size: 20px;
  }
    .pc {
      display: none;
    }
    .pc2 {
      display: none;
    }
  
    #hamburger {
      background-color: transparent;
      position: relative;
      cursor: pointer;
      margin: 0 0 0 auto;
      height: 60px;
      width: 120px;
    }
  
    .icon span {
      position: absolute;
      left: 5px;
      width: 60px;
      height: 5px;
      background-color: rgb(61, 61, 61);
      border-radius: 8px;
      transition: ease 0.75s;
    }
  
    .icon span:nth-of-type(1) {
      top: 10px;
    }
    .icon span:nth-of-type(2) {
      top: 30px;
    }
    .icon span:nth-of-type(3) {
      bottom: 4px;
    }
  
    .close span:nth-of-type(1) {
      transform: rotate(45deg);
      top: 28px;
    }
  
    .close span:nth-of-type(2) {
      opacity: 0;
    }
  
    .close span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
    }
  
    .sm {
        top: 100px;
        left: -40px;
        position: absolute;
        z-index: 10;
        width: 100%;
        background-color: rgb(255, 255, 255);
    }
  
    ul {
      flex-direction: column;
      font-size: 25px;
    }
  
    a {
      text-align: center; 
      ;
    }
  }
  

  