@charset "utf-8";

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

@media (max-width: 1200px) {

    header {
      padding-top: 20px;
      height: 100px;
    }
    li{
      padding: 40px;
    }

  header a {
    text-align: left;
    font-size: 25px;
    padding: 0 30px;
  }

  nav ul li {
    height: 100px;
  }

  
  #h-menu2{
  background: rgb(0, 9, 136);
  padding: 30px 50px 0;
  margin-bottom: -30px;
  }
  #h-menu2 p {
    text-align: left;
    font-size: 25px;
  }
  #h-menu2 a {
    padding: 0px 0px 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;
        position: absolute;
        z-index: 10;
        width: 100%;
        background-color: rgb(255, 255, 255);
    }
  
    ul {
      flex-direction: column;
      font-size: 25px;
      width: 100%;
      margin-bottom: 30px;
    }
  
    a {
      text-align: center; 
      ;
    }
  }
  
  .logo {
    padding:0;
    margin-top: 0px;
  }



/*****************************************************************/

hr.hr2{
border-top: 3px solid rgb(255, 255, 255);
width: 60%;
margin: 0 auto 10px auto;
}