@charset "utf-8";

*,
::before,
::after{
  padding:0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol{
  list-style: none;
}

a {
  color:inherit;
  text-decoration:none;
}

body{
  font-family: sans-serif;
  font: size 16px;
  color:#000000;
  line-height: 1;
  background-color: #ffffff;
}

img{
  max-width: 100%;
}

.header-inner{
  max-width: 1200px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#menu-btn-check {
  display: none;
}


.menu-content ul{
 display: flex;
 align-items: right;
}

.menu-content ul li{
  margin-left: 20px;
  margin-right: 20px;
}

.menu-content ul li a{
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

.footer{
  max-width: 1200px;
  color:#ffffff;
  background-color:#44546a;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer-mail{
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.footer-logo{
  display:block;
  width: 50px;
  margin-top: 25px;
  margin-right: 20px;
  margin-left: auto;
}

.copyright{
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}

@media (max-width: 800px){

  .header{
    height: 80px;
  }

  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #44546a;
  }
 .menu-btn span,
 .menu-btn span:before,
 .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }
 .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #44546a;
  }
  .menu-content ul {
    padding: 70px 10px 0;
    display: block;
  }
  .menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }  
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    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;
  }

  #menu-btn-check {
    display: none;
  }

  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #44546a;
    transition: all 0.5s;/*アニメーション設定*/
  }

  #menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
  }

 



}