@charset "UTF-8";
/*ヘッダーメニューー*/
body {
  margin: 0;
}
@media (min-width: 801px){
header.header01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
div.logo{
  width: 400px;
  height: 50px;
}
div.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav {
  width: 1250px;
  padding: 0;
  margin-left: 50px;
  margin-bottom: 50px;
  list-style-type: none;
  text-align: center;
}
.nav li {
  width: 20%;
  float: left;
  padding: 0;
  margin: 0;
  text-align: center;
}
.nav li a {
  width: auto;
  color: #0a0303;
  font-size: 20px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  padding: 10px 0;
  text-decoration: none;
  display: block;
  background: #f8f4f4;
}
.nav li a:hover {
  background: #555;
  color: #ffffff;
}
ul{
  list-style: none;
}
#menu-btn,
.nav-hidden {
  display: none;
}
}
  /*スマホヘッダー
　----------*/
@media (max-width: 800px) {
 
  header.header02 {
    width: auto;
  }
    #menu-btn{
     display: block;
     width: 30px;
     height: 20px;
     position: fixed;
     top: 1rem;
     right: 1rem;
     z-index: 3;
    }
    #menu-btn span,
    #menu-btn span::before,
    #menu-btn span::after {
     content: "";
     height: 2px;
     width: 100%;
     border-radius: 3px;
     background: #3656a7;
     position: absolute;
     transition: 0.2s;
    }
    #menu-btn span {
     top: 0;
    }
    #menu-btn span::before {
     top: 8px;
    }
    #menu-btn span::after {
     top: 16px;
    }
    #nav-input:checked~#menu-btn span {
     top: 8px;
     transform: rotate(45deg);
    }
    #nav-input:checked~#menu-btn span::before {
     opacity: 0;
    }
    #nav-input:checked~#menu-btn span::after {
     top: 0;
     transform: rotate(-90deg);
    }
    div.logo {
     width: 50px;
     height: 20px;
    }
    nav.nav {
     width: 300px;
     height: 100vh;
     position: fixed;
     top: 0;
     right: -100%;
     z-index: 2;
     background: #0f73f5;
     transition: 0.5s;
    }
    nav.nav ul.item {
     display: block;
     padding: 4rem 2rem;
    }
    nav.nav ul.item li.list {
     padding-left: 0;
     padding-bottom: 1.5rem;
    }
    nav.nav ul.item li.list a{
      color: #eee7e7;
      font-family: Georgia, 'Times New Roman', Times, serif;
    }
    ul{
      list-style: none;
    }
   
    header.header02 #nav-input:checked~nav.nav {
     right: 0;
    }
    input[type="checkbox"]{
      display: none;
    }
   }
  

/*menu
--------*/

/*SNS*/
.sns-item {
  margin-bottom: 2rem;
}
.sns-item .heading-medium{
 margin-bottom: .5rem;
}
/*foter
----------*/
@media(max-width: 800px){
  .footer{
    width: 100%;
    margin-bottom: 40px;
    background-color: #93e3f3;
    color: #ffffff;
  }
  .footer-logo{
    display: block;
    width: 80px;
  }
  .footer-tel{
    font-size: 30px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  .footer-time{
    font-size: 23px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  }