
a#contact {
  background-color: #2a7a31;
}
a#contact:hover {
  background-color: #2a7a31;
  opacity: 0.9;
}

/* 下部メニュー : ここから */
#fixed-menu {
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  /* アニメーション関連 */
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: background 0.2s, opacity 0.35s, -webkit-transform 0.35s;
  transition: background 0.2s, opacity 0.35s, -webkit-transform 0.35s;
  transition: background 0.2s, opacity 0.35s, transform 0.35s;
  transition: background 0.2s, opacity 0.35s, transform 0.35s,
    -webkit-transform 0.35s;

  position: fixed;
  bottom: 0;
  left: 0;

  width: 100%;
  /*   max-width: 840px; */
  margin: 0 auto;
}

#js-pagetop {
  border-left: 1px solid #fff;
}

#fixed-menu.is-active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

#fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#fixed-menu li {
  justify-content: center;
  align-items: center;

  font-size: 14px;
  font-weight: bold;
  background-color: #285f2d;

  opacity: 1;
  height: 50px;
  width: 50%;
  padding: 6px 0 0 0;

  /*
  padding: 3px 0 0 0;
  width: 40%;
  margin: 0;
*/
}

#fixed-menu li:last-child a {
  padding-right: calc(100% - 77%);
}
@media screen and (min-width: 500px) {
  #fixed-menu li:last-child a {
    padding-right: calc(100% - 86%);
  }
}
@media screen and (min-width: 650px) {
  #fixed-menu li:last-child a {
    padding-right: calc(100% - 95%);
  }
}
@media screen and (min-width: 767px) {
  #fixed-menu li:last-child a {
    padding-right: 0;
  }
}

@media screen and (min-width: 767px) {
  #fixed-menu {
    position: fixed;
    bottom: 0;
    left: calc((100% - 80%) / 2);
    width: 80%;

    max-width: 840px;
  }
  #fixed-menu li {
    height: 60px;
    width: 50%;
    padding: 6px 0 0 0;
  }
  #fixed-menu li:last-child {
    padding-right: 0;
  }
  #js-pagetop {
    border-left: 1px solid #fff;
  }
}

@media screen and (min-width: 840px) {
  #fixed-menu {
    position: fixed;
    bottom: 0;
    left: calc((100% - 840px) / 2);
    width: 80%;
    max-width: 840px;
  }
  #fixed-menu li {
    height: 60px;
    width: 50%;
    padding: 6px 0 0 0;
  }
  #js-pagetop {
    border-left: none;
  }
}

#fixed-menu li:first-child {
  border-right: 1px solid #fff;
}

#fixed-menu li:hover {
  background-color: #aa5025 !important;
}

#fixed-menu li div:before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;

  width: 20px;
  height: 20px;
  padding-right: 6px;
}

#fixed-menu li:first-child div:before {
  background-image: url(https://web.archive.org/web/20250701230204im_/https://cascadia-trading.hactac.xyz/wp-content/uploads/2021/11/phone.svg);
}

#fixed-menu li:last-child div:before {
  background-image: url(https://web.archive.org/web/20250701230204im_/https://cascadia-trading.hactac.xyz/wp-content/uploads/2021/11/mail.svg);
}

@media screen and (min-width: 768px) {
  #fixed-menu li {
    font-size: 16px;
  }

  #fixed-menu li div:before {
    width: 30px;
    height: 30px;
  }

  #fixed-menu li:first-child div:before {
    padding-right: 6px;
  }
  #fixed-menu li:last-child div:before {
    padding-right: 10px;
  }
}

/* リンクボタン */
#fixed-menu li a {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  padding: 8px 0 0 0;
  text-decoration: none;
}
/* 下部メニュー : ここまで */
