@charset "UTF-8";
/*#HeaderWrapper {
  -webkit-transition: .5s;
  transition: .5s;
}*/

#HeaderWrapper #Header .Logo {
  width: clamp(80px, 17vw, 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#HeaderWrapper #Header .Logo a {
  letter-spacing: .04em;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#HeaderWrapper #Header .Logo a img {
  width: 100%;
  vertical-align: middle;
}


#HeaderWrapper #Header .Logo a:hover {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#HeaderWrapper #Header .btn_contanct {
  padding: 0 0 0 0vw;
  margin-top: 0;
}
#HeaderWrapper #Header .btn_contanct a {
  padding: 2px 18px;
  /*border-radius: 100px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
	justify-content: center;
	flex-direction: column;
  color: #fff;
  font-size: .9em;
  width: 100%;
  max-width: 600px;
  text-transform: uppercase;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /*text-align: center;*/
}

#HeaderWrapper #Header .btn_contanct a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #4fbe4f;
    -webkit-transition: all .3s;
    transition: all .3s;
    /*border-radius: 10rem;*/
    z-index: -1;
    color: #fff;
}
#HeaderWrapper #Header .btn_contanct a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #1F4E0F;
      /*border-radius: 10rem;*/
      z-index: -2;
}
#HeaderWrapper #Header .btn_contanct a:hover {
      color: #fff !important;
      opacity: 1;
    }
#HeaderWrapper #Header .btn_contanct a:hover:before {
      width: 100%;
    }



#HeaderWrapper #Header .btn_Free {
  padding: 0 0 0 1.5vw;
  margin-top: 0;
}
#HeaderWrapper #Header .btn_Free a {
  padding: 2px 18px;
  /*border-radius: 100px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
	justify-content: center;
	flex-direction: column;
  color: #fff;
  font-size: .9em;
  width: 100%;
  max-width: 600px;
  text-transform: uppercase;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /*text-align: center;*/
}

#HeaderWrapper #Header .btn_Free a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #4fbe4f;
    -webkit-transition: all .3s;
    transition: all .3s;
    /*border-radius: 10rem;*/
    z-index: -1;
    color: #fff;
}
#HeaderWrapper #Header .btn_Free a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #378c1d;
      /*border-radius: 10rem;*/
      z-index: -2;
}
#HeaderWrapper #Header .btn_Free a:hover {
      color: #fff !important;
      opacity: 1;
    }
#HeaderWrapper #Header .btn_Free a:hover:before {
      width: 100%;
    }




#HeaderAnime {
  -webkit-transition: .5s;
  transition: .5s;
  top: 0;
  z-index: 1000;
}

.MainWarrper {
  margin-top: 90px;
}

@media (max-width: 840px) {
  .MainWarrper {
    margin-top: 70px;
  }
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/
nav ul ul {
    display: block;
}
nav ul li {
    position: relative;
}
nav ul li a {
    transition: all .3s;
}
nav ul li.has-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: .8em;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
}
nav li.has-child ul {
    position: absolute;
    text-align: center;
    left: -8em;
    top: 2.6em;
    z-index: 4;
    background: rgba(255, 525, 255, 0.9);
    width: calc(100% + 16em);
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    padding: .8em 0 1.4em;
    border-radius: 8px;
}
nav li.has-child ul li {
    font-weight: normal!important;
}
nav li.has-child ul::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 1px;
    height: 20px;
    margin: auto;
    background: #000;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    /*transform: none;*/
}
nav li.has-child:hover > ul, nav li.has-child ul li:hover > ul, nav li.has-child:active > ul {
    visibility: visible;
    opacity: 1;
}
nav li.has-child ul li {
    margin-bottom: 1em;
}
nav li.has-child ul li:active > ul {
    visibility: visible;
    opacity: 1;
}
nav li.has-child ul li:last-child {
    margin-bottom: 0em;
}
nav li.has-child ul li:last-child > a {
    border-bottom: none;
}
nav li.has-child > a {
    pointer-events: none;
}
@media screen and (max-width: 800px) {
    nav li.has-child > a {
        pointer-events: auto;
    }
}
@media screen and (max-width: 840px) {
    nav {
        padding: 0;
    }
    nav ul {
        display: block;
    }
    nav li.has-child ul {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: none;
    }
    nav li.has-child ul ul {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: none;
    }
    nav ul li a {
        border-bottom: 1px solid #ccc;
        width: 100%;
        padding-bottom: .6em;
    }
    nav ul li ul li {
        margin-bottom: 0 !important;
    }
    nav ul li ul li a {
        color: #000 !important;
    }
    nav ul li.has-child::before {
        left: 100px;
        top: 1.2em;
        width: 16px;
        height: 16px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
    nav ul ul li.has-child::before {
        transform: rotate(135deg);
        left: 20px;
    }
    nav ul li.has-child.active::before {
        transform: rotate(-45deg);
    }
    nav li.has-child ul {
        padding: .8em 0 0;
    }
    #HeaderWrapper #Header .btn_contanct {
        padding: 0 8vw;
        margin-top: 1em;
        margin-left: auto;
        margin-right: auto;
    }
    #HeaderWrapper #Header .btn_contanct a {
        padding: .6em;
        justify-content: center;
    }
    #HeaderWrapper #Header .menu-wrapper .drawer-nav ul.gnav li {
        padding: .3em 1.4vw;
    }
}

