@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:  "Kiwi Maru", serif;
  font-size:  16px;
  color:  #622a1e;
  line-height:  1;
  background-color:  #D7EEFF;
}

img {
  max-width:  100%;
}

.header-inner {
  max-width:  1200px;
  height:  200px;
  margin-left:  auto;
  margin-right:  auto;
  padding-left:  40px;
  padding-right:  40px;
  display:  flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button{
  display: none;
}

.header-logo{
  display: block;
  width:  100px;
}

.site-menu ul{
  display: flex;
}

.site-menu ul li {
  margin-left:  20px;
  margin-right:  20px;
}

.lead {
  color: #622a1e;
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom:  50px;
  display: flex;
  flex-direction: column;
  align-items: center;
   }

.footer {
  color: #000000;
  background-color: #D7EEFF;
  padding-top:  30px;
  padding-bottom:  15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: block;
  width:  100px;
  margin-top:  50px;
}
.map{
  width: 930px;
  max-width: 90%;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
}

.map iframe{
  display: block;
  width: 100%;
  height: 320px;
  margin-top: 25px;
  filter: grayscale(.5);
}

.footer-time {
  font-size:  20px;
  margin-top:  16px;
}

.copyright {
  font-size:  14px;
  font-weight: bold;
  margin-top:  90px;
}




@media (max-width: 1000px) {
  .site-menu ul{
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top:  20px;
  }
  
  .header{
    position: sticky;
    top:  0;
    left:  0;
    right:  0;
    background-color:  #D7EEFF;
    height:  100px;
    z-index:  10;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .header-inner{
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }
  
  .header-logo{
    width: 100px;
  }
  
  .header-site-menu{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #000000;
    background-color: #CCFFFF;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }
  
  .header-site-menu.is-show{
    display: block;
  }
  
  .toggle-menu-button{
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/common/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }
  
 
  
  .footer-logo{
    margin-top: 60px;
  }

  .map{
    width: 350px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .copyright{
    margin-top: 50px;
  }
}

