@charset "utf-8";
/*################## スマホ用　##################*/
@media screen and (min-width: 0px) and (max-width: 896px) {
  /* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh; /*ナビの高さ*/
    background: rgba(62, 194, 55, 0.9);
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 90%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav-01 {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 280px;
    left: 35%;
    transform: translate(-50%, -50%);
  }
  /*リストのレイアウト設定*/
  #g-nav-01 p a {
    color: #fff;
    font-weight: bold;
  }
  #g-nav-01 li {
    list-style: none;
  }
  #g-nav-01 li a {
    color: #fff;
    text-decoration: none;
    padding: 2px 0 2px 30px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2px;
  }
  #g-nav-02 {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 580px;
    left: 40%;
    transform: translate(-50%, -50%);
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #343434;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #fff;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #fff;
  }
  /* ######## ボタン白（メニューエントリー） ######## */
  .btn-entry-2 {
    width: 190px;
    padding: 12px 0;
    font-size: 14px;
    display: block;
    margin: 25px 0;
    background: #fff;
    line-height: 1;
    border-radius: 30px;
    text-align: center;
  }
  .btn-entry-2 a {
    color: #3EC237;
    font-weight: bold;
  }
  .btn-entry-2:hover {
    opacity: 0.6;
  }
}
@media print, screen and (min-width:897px) { /*★PC用レスポンシブ設定*/
  #menu-index {
    list-style-type: none;
    width: 650px;
    height: 50px;
    margin: 0 auto;
    background: #fff;
  }
  #menu-index li {
    position: relative;
    width: 32%;
    float: left;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  #menu-index li a {
    display: block;
    margin: 0;
    padding: 14px 0;
    background: #fff;
    color: #343434;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
  }
  #menu-index li ul {
    list-style: none;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #menu-index li ul li {
    overflow: hidden;
    width: 100%;
    height: 0;
    color: #fff;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
  }
  #menu-index li ul li a {
    padding: 15px 10px;
    background: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
  }
  #menu-index > li:hover > a {
    background: #fff;
    color: #3ec237;
  }
  #menu-index > li:hover li:hover > a {
    background: #fff;
    color: #3ec237;
  }
  #menu-index > li:hover > ul > li {
    overflow: visible;
    height: 50px;
  }
  #menu-index li ul li ul {
    top: 0;
    left: 100%;
  }
  #menu-index li:last-child ul li ul {
    left: -100%;
    width: 100%;
  }
  #menu-index li ul li ul:before {
    position: absolute;
    content: "";
    top: 14px;
    left: -20px;
    width: 0;
    height: 0;
  }
  #menu-index li:last-child ul li ul:before {
    position: absolute;
    content: "";
    top: 13px;
    left: 200%;
    margin-left: -20px;
  }
  #menu-index li ul li:hover > ul > li {
    overflow: visible;
    height: 50px;
  }
  #menu-index li ul li ul li a {
    background: #fff;
    padding: 15px;
  }
  #menu-index li:hover ul li ul li a:hover {
    background: #fff;
    color: #3ec237;
  }
}