@charset "UTF-8";


.menu-btn,
#menu-btn-check{
  display: none;
}



@media (max-width: 768px) {
	.hamburger-menu{
        padding-bottom: 0px;
    }
    
    ul.menu{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    ul.menu li{
        width: 100%;
        text-align: center;
    }
    
    ul.menu li:not(:last-child){
        border: none;
    }
    
    ul.menu li br{
        display: none;
    }	
	
	
	
	
  .menu-btn{
    display: block;
  }

  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
    border-radius: 100%;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #3D749F;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }

  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  #menu-btn-check {
    display: none;
  }


  #menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
  }


  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
  }
  .menu-content ul {
      padding: 70px 10px 0;
  }
  .menu-content ul li {
      /*border-bottom: solid 1px #ffffff;*/
      list-style: none;
      background: none;
      width: 100%;
	  
	  text-align: left;
  }

	
  .menu-content ul li a {
	  background-position: left 20px center !important;
	  background-size: auto 30px !important;
      display: block;
      width: 100%;
      font-size: 15px;
      box-sizing: border-box;
      color:#3D749F;
      text-decoration: none;
      padding: 9px 15px 10px 70px;
      position: relative;
  }
  .menu-content ul li a::before {
      content: "";
      width: 7px;
      height: 7px;
      border-top: solid 2px #ffffff;
      border-right: solid 2px #ffffff;
      transform: rotate(45deg);
      position: absolute;
      right: 11px;
      top: 16px;
  }




}