@charset "UTF-8";
/*======================================
header
======================================*/
/* show&hide */
.header-logobox, .spnav-listtit {
  display: none;
}

/* 本体 */
header {
  width: 250px;
  background: #fff;
  border-right: 1px solid #eee;
}

/* pcだけの表示設定 */
@media screen and (min-width: 1000px) {
  .header-link {
    display: block;
    padding-right: 20px;
    transition: 0.3s;
  }
  .header-link.nolink {
    background: #eee;
    pointer-events: none;
  }
  .header-link.nolink .header-link_menu {
    color: #757575;
  }
  .header-link.nolink .header-link_menu::after {
    border-top: solid 2px #757575;
    border-right: solid 2px #757575;
  }
  .header-link.nolink:hover {
    background: #eee;
  }
  .header-link.nolink:hover .header-link_menu {
    color: #757575;
  }
  .header-link_menu {
    display: block;
    line-height: 1.375;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px dotted #aaa;
  }
  .header-link_menu::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #095803;
    border-right: solid 2px #095803;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
    transition: 0.3s;
  }
  .header-link.no-link:hover .header-link_menu::after {
    border-top: solid 2px #757575;
    border-right: solid 2px #757575;
  }
  .header-link:hover, .header-link.active {
    background: #46970f;
  }
  .header-link:hover .header-link_menu, .header-link.active .header-link_menu {
    color: #fff;
  }
  .header-link:hover .header-link_menu::after, .header-link.active .header-link_menu::after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  .header-banner img {
    width: 100%;
    display: inline-block;
    padding: 10px;
  }
}
/* 下層の最上部header */
.lower-header {
  padding: 16px 20px;
  box-shadow: 0px 1px 5px 0px rgba(19, 102, 0, 0.1);
  position: relative;
  z-index: 2;
}
.lower-header img {
  width: 660px;
  display: block;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
header-レスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 1000px) {
  /* show&hide */
  .header-logobox {
    display: block;
    width: 80%;
    max-width: 400px;
  }
  /* 下層の最上部header */
  .lower-header {
    display: none;
  }
  /* 本体 */
  header {
    width: 100%;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  .sp-headertit {
    width: 70%;
    max-width: 400px;
    margin: 0 0 0 14px;
  }
  /*　↓ハンバーガーメニュー↓ */
  body.fixed {
    width: 100%;
    position: fixed;
  }
  #sp-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 50%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
    border-left: 2px solid #46970f;
  }
  #sp-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #sp-nav.panelactive #sp-nav-list {
    position: fixed;
    z-index: 999;
    width: 50%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .spnav-listtit {
    display: block;
    width: 100%;
    height: 60px;
    background: #095803;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }
  /*リストのレイアウト設定*/
  #sp-nav li {
    list-style: none;
    border-bottom: 1px solid #46970f;
  }
  #sp-nav li a {
    text-decoration: none;
    padding: 15px 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s;
  }
  #sp-nav li a:hover {
    background: #f3faee;
  }
  .header-banner img {
    display: inline-block;
    max-width: 250px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 7px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 46px;
    background: #46970f;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #fff;
    width: 50%;
  }
  .openbtn span:nth-of-type(1) {
    top: 23px;
  }
  .openbtn span:nth-of-type(2) {
    top: 29px;
  }
  .openbtn span:nth-of-type(3) {
    top: 35px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 17px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 34px;
    left: 17px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn::after {
    content: "Menu"; /*Menu表示を指定*/
    position: absolute;
    top: 0px;
    left: 4px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
  }
  .openbtn.active::after {
    content: "Close"; /*Close表示を指定*/
    top: 0px;
    left: 2px;
  }
} /* end media */
@media screen and (max-width: 600px) {
  #sp-nav {
    width: 80%;
  }
  /*ナビゲーションの縦スクロール*/
  #sp-nav.panelactive #sp-nav-list {
    width: 80%;
  }
} /* end media */
/*======================================
footer
======================================*/
.footer-main {
  background: url(../img/common/bg_footer.jpg) no-repeat center center/cover;
  padding: 40px 0;
}

.footer-flexbox {
  display: flex;
  justify-content: center;
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 30px;
}
.footer-flexbox .flex-item {
  padding: 0 50px;
}
.footer-flexbox .flex-item:first-of-type {
  border-right: 1px solid #46970f;
}
.footer-flexbox .footer-tit {
  color: #095803;
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 16px;
}
.footer-flexbox address {
  font-style: normal;
}
.footer-flexbox address .name {
  font-size: 18px;
  margin: 0 0 8px;
}
.footer-flexbox address .name img {
  width: 20px;
  vertical-align: top;
}
.footer-flexbox address .add {
  font-size: 14px;
}

.footer-btnbox {
  margin: 15px 0 0;
}

small {
  background: #0c1d00;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  padding: 10px 0;
  color: #fff;
  border-top: 1px solid #fff;
}

/*☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆
footerレスポンシブ
☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆*/
@media screen and (max-width: 900px) {
  .footer-flexbox {
    display: block;
    width: 95%;
    max-width: 600px;
    padding: 10px 30px;
  }
  .footer-flexbox .flex-item {
    padding: 20px 0;
  }
  .footer-flexbox .flex-item:first-of-type {
    border-right: none;
    border-bottom: 1px solid #46970f;
  }
  .footer-flexbox address .name {
    font-size: 16px;
    margin: 0 0 5px;
  }
}