@charset "utf-8";
/*
  CSS のみのドロップダウンメニュー
  Copyright Rectus Inc, 2019
  https://www.rectus.co.jp/
  Released under the MIT license
 */

/* 本文をメニューの高さ分下げる */

#main {
  margin-top: 100px;
}
#navi {
  position: fixed;
  top: 0;
  left: 0;
  height: 185px;
  width: 100%;
  z-index: 20;
  background-color: #E4EBE6;
}
/* チェックボックスを非表示 */

#navi input {
  display: none;
}
/* 左上ロゴ */

img.header-logo {
  position: fixed;
  width: 520px;
  padding: 5px 5px 5px 30px;
  z-index: 100;
}
img.header-logo-sp{
  display: none;
}

/* 上部メニュー */

.menu {
  display: inline-flex;
  width: 90%;
}
.menu-parent {
  line-height: 1.4;
  font-weight: 500;
  white-space: nowrap;
  width: 16%;
  background-color: #fff;
  border-radius: 6px;
  margin: 0 0.25%;
}

.menu-wrap {
  text-align: center;
  width: 100% ;
  margin-left: 0.5%;
  display: inline-block;
  position: fixed;
  height: 80px;
  z-index: 100;
}
.menu-icon{
  margin-right: 8px;
}
.menu-wrap {
  top: 100px;
}


.menu-parent .pd {
  display: none;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}
/* パソコンでは V を非表示 */

.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */


#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

img.menu-tel{
  position: fixed;
  top: 8px;
  right: 18px;
  width: 600px;
  z-index: 100;
}

@media screen and (max-width: 1200px) {
  .menu {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {

  .menu-wrap {
    background-color: initial;
    top: 80px;
	margin-left: 0;
  }

  .menu-left img {
    width: 100px;
    margin-left: 20px;
  }
  /* パソ
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .menu-parent:first-child {
    border-top: 1px solid #ccc;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  .fas {
    color: #222;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked~#navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
  .menu {
    margin-right: 0;
  }
img.menu-tel{
  display: none;
}
img.header-logo{
  width: 420px;
  padding: 8px 0 0 20px;
}
}
@media screen and (max-width: 600px) {
img.header-logo{
  display: none;
}
img.header-logo-sp{
  position: fixed;
  display: block;
  height: 80px;
  padding: 0 10px;
  z-index: 100;
}
}
/* ドロップダウンメニュー */

.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  background-color: #E4EBE6;
  border-radius: 6px;
}
/* パソコン用 */

@media screen and (min-width: 1000px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */

@media screen and (max-width: 1000px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked~* .menu {
    display: block;
	width: 100%!important;
    opacity: 1;
}
  #menu-navibtn:checked~* .menu-parent {
    max-height: inherit;
    overflow-y: visible;
    border-bottom: 1px solid #ccc;
    text-align: left;
    padding-left: 20px;
  }
  #menu-navibtn:checked~* .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  .menu-parent{
    border-radius: 0;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    position: relative;
    opacity: 1;
    top: 0;
    margin-left: 0;
    left: auto;
    width: auto;
    background-color: #fff;

  }
  .menu-parent>label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked~.menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
/* 角度45°のチートシェブロン（下向き） */
.angletoggle::before{
  content:"";
  display:inline-block;
  width:0.5em; height:0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
  transition: transform .2s ease;
}

/* 開閉で回転（↓→↑） */
input[type="checkbox"][id^="menu-parent"]:checked + label .angletoggle::before{
  transform: rotate(-135deg);            /* ↑ */
}
}
/* 子メニュー */

.menu-child li {
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  
}
/* 余分な最後の線を消去 */

.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}
#navi .menu-parent a {
  color: #2A8357;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: min(1.5vw, 18px);
  font-weight: 600;
  height: 72px;
 font-feature-settings: 'palt';
}
.menu-parent label{
  position: absolute;
  right: 20px;
  top: 20px;
}

/* ハンバーガー */

#navi #navibtn {
  display: none;
}
@media screen and (max-width: 1000px) {
#navi .menu-parent a {
    display: inline-flex;
    height: 60px;
    justify-content: left;
    font-size: 18px;
	line-height: 1;
  }
  .menu-child a {
    width: 100%;
  }
  .menu-child li {
    width: 100%;
  }
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    background-color: #fff;
  }
  #navibtn span {
    display: block;
    width: 70px;
    height: 70px;
    z-index: 20;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before, #navibtn span span::after, #navibtn span::after {
    position: absolute;
    left: 15px;
    content: "";
    width: 40px;
    height: 2px;
    background-color: #2A8357;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top: 21px;
  }
  #menu-navibtn:checked~#navi label#navibtn span span::before {
    top: 34px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 20px;
  }
  #menu-navibtn:checked~#navi label#navibtn>span::after {
    bottom: 34px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top: 35px;
  }
  #menu-navibtn:checked~#navi label#navibtn span span::after {
    display: none;
  }
  #navi #navibtn {
    top: 0;
    right: 0;
    z-index: 12;
  }
}
@media screen and (max-width: 1000px) {

  #navi {
    height: 80px;
  }
}
@media screen and (max-width: 600px) {
  img.header-logo {
    padding: 12px 16px;
    width: 300px;
  }
  .features-table-wrap {
    display: none;
  }
}