@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 {
  border-top: 5px solid #006536;
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
  background: linear-gradient(-45deg, #ffe9e9, #fffceb, #e0ffde, #def7ff, #dfd7ff, #faeaf5);
  background-size: 500% 500%;
  animation: bgAnime 8s linear infinite;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@keyframes bgAnime { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/*  --------------------------------------------------------------------------------
  mainコンテンツ
--------------------------------------------------------------------------------  */

img {
  max-width: 100%;
}

.header-inner {
  max-width: 1320px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position:relative;
}

.header-site-menu {
  position:absolute;
  top:100%
  left:0;
  right:10px;
  }
  
.toggle-menu-button {
  display: none;
}

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

.site-menu ul {
  display: flex;
  margin-right:10px;
  vertical-align: bottom;
}

.site-menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size:0.8em;
}

/*  --------------------------------------------------------------------------------
  mainコンテンツ
--------------------------------------------------------------------------------  */

.footer {
  color: #ffffff;
  background-color: #000000;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
}

.footer-inner {
  max-width: 1200px;

  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justfy-content: space-between;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 119px;
  margin-top: 10px;
}

.footer-tel {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

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

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

  .site-menu li {
    margin-top: 20px;
  }

.header{
   position:fixed;
   top:0;
   left:0;
   right:0;
    background-color: #ffffff;
    height: 70px;
    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: #ffffff;
    background-color: #006536;
    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 {
   margin-top:10px;
  }

  .footer-inner{
   margin-top:20px;
  }

  .footer-logo {
    margin-top: 10px;
  }

  .footer-tel {
    font-size: 20px;
  }

  .copyright {
    margin-top: 0px;
  }
}