@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 {
  background: url(../image/haikei-left-a.png), url(../image/haikei-right-a.png), linear-gradient(#ffffff, #a7dbeb);
  background-position: left, right;
  background-repeat: repeat-y, repeat-y;
  font-family: "Yomogi", cursive;
  font-weight: bold;
  font-size: 1rem;
  color: #000;
  line-height: 1;
/* 共通の森背景パスをここに */
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}
/* ここからヘッダー */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 90px;
  z-index: 50;
}

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

.site-menu ul {
  display: flex;
}

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

.hum-button {
  display: none;
}

.cute-logo {
  height: 90px;
}

.footer {
  padding-top: 30px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kusa-ue { 
  width: 100%;
  height: 100px;
  display: block;
}

.kusa {
  background-image: url(../image/footer-kusa-img.png);
  display: block;
  position: fixed;
  background-size: 400px;
  background-repeat: repeat-x;
  background-position: bottom;
  bottom: 0;
  width: 100%;
  height: 105px;
}

.cute-f-logo {
  display: block;
  width: 235px;
  margin-top: 40px;
}

.footer-tel {
  font-size: 1.5rem;
  margin-top: 20px;
}

.copyright {
  font-size: 0.8rem;
  margin-top: 10px;
}

/* 上部に戻るボタン */
.joubu-kani {
  display: block;
  justify-content: center;
  width: 110px;
  height: 100px;
  align-items: center;
  position: fixed;
  right: 1%;
  bottom: 1%;
  z-index: 100;
}


/* ここからメディアクエリ */
@media (max-width:800px) {
  body {
    background: none;
    background-image: linear-gradient(#ffffff, #a7dbeb);
  }
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 15px;
    text-align: right;
  }

  .site-menu {
    display: flex;
    justify-content: flex-end;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 60px;
    z-index: 25;
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .cute-logo {
    height: 60px;
  }

  .header-menu {
    position: absolute;
    top:100%;
    right: 0;
    left: 0;
    color: #000;
    background-image: linear-gradient(#90c98f,#ffffffe6);
    padding-top: 30px;
    padding-bottom: 20px;
    display: none;
  }

  .hum-button {
    display: block;
    width: 65px;
    height: 50px;
    background-image: url(../image/cute-icon.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }
  button:hover {
    background-color: #fff;
  }

  .header-menu.is-show {
    display: block;
  }

  .cute-f-logo {
    margin-top: 60px;
  }

  .footer-tel {
    font-size: 1.3rem;
  }

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