/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6EB92C;
  color: #fff;
  width: 80px;
  height: 80px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.4;
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-weight: 500;
  letter-spacing: 3px;
}
#page-top a:hover {
  background: #000;
  animation: arrowrotate .3s;
}
@keyframes arrowrotate {
  100% {
    transform: rotate(360deg);
  }
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.sof_f-bg {
  position: relative;
  margin: 220px auto 0;
}
.sof_footer_wrap {
  padding: 190px 0 3em;
  background-image: linear-gradient(190deg, rgba(110, 185, 44, 1) 0% 0%, rgba(0, 0, 0, 1) 20% 100%);
  color: #fff;
}
.sof_footer {}
.sof_footer_l {
  margin: 0 auto 1em;
}
.sof_footer_l div {
  margin: 0 auto 1em;
}
.sof_footer_l div img {
  display: block;
  width: 60%;
  margin: auto;
}
.sof_footer_l p {
  line-height: 1.8;
}

.sof_footer_l p a{
	color: #fff;
}

.sof_footer_r {}
.sof_footer_nav {
  display: none;
}
.sof_footer_btn {
  width: 70%;
  margin: 0 auto 1.5em;
}
.sof_footer_btn li {
  margin: 0 auto 0.5em;
  position: relative;
}
.sof_footer_btn li img {
  position: absolute;
  top: 50%;
  left: 20px;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 30px;
  z-index: 3;
}
.footer_btn.reverse {
  background: #6EB92C;
}
.footer_btn.reverse span {
  color: #fff;
}
.footer_btn.reverse::after {
  color: #fff;
}
.footer_btn.reverse.bgleft:before {
  background: #3B6217;
}
.footer_btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #FFFFFF;
  padding: 10px 0px;
  width: 100%;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}
/*ボタン内spanの形状*/
.footer_btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #6EB92C;
}
.footer_btn::after {
  position: absolute;
  top: 50%;
  right: 15px;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #6EB92C;
  z-index: 3;
}
/*== 背景が流れる（左から右） */
.footer_btn.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #EDEDED;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.footer_btn.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.sof_cr {
  font-size: 1.0rem;
}
.sof_f_contact {
  position: absolute;
  top: -150px;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 80%;
  background: #6EB92C;
  z-index: 3;
}
.sof_f_contact::before {
  position: absolute;
  top: -40px;
  left: 50%;
  -ms-transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  content: 'CONTACT';
  color: #6EB92C;
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 2.5rem;
}
.sof_f_contact li {
  padding: 20px 0 10px;
  font-weight: bold;
  position: relative;
}
.sof_f_contact li:last-child {
  -webkit-clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
  background-color: #EDEDED;
  padding: 40px 0 20px 0;
}
.sof_f_contact li img {
  margin: 0 auto 5px;
  width: 25px;
  display: block;
}
.sof_f_contact li p {
  font-size: 1.4rem;
}
.sof_f_contact li div {
  font-size: 1.2rem;
}
.sof_f_contact li div span {
  display: block;
  font-size: 3.0rem;
  line-height: 1.2;
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-weight: 500;
  letter-spacing: 2px;
}
.sof_f_contact li div span a {
  color: #fff;
}
.gradient_btn {
  /*ボタンの形状*/
  margin: 0.5em auto 0;
  display: inline-block;
  color: #6EB92C !important;
  padding: 10px 70px;
  text-decoration: none;
  outline: none;
  /*背景の色と形状*/
  background: linear-gradient(120deg, #6EB92C 0%, #000 15%, #000 51%, #000 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  /*アニメーションの指定*/
  transition: all 0.3s ease-out;
  position: relative;
}
/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient_btn:hover {
  color: #fff;
  background-position: 30% 50%;
}
.gradient_btn::after {
  position: absolute;
  top: 50%;
  right: 15px;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #6EB92C;
  z-index: 3;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .sof_f-bg {
    margin: 250px auto 0;
  }
  .sof_footer_wrap {
    padding: 12em 0 3em;
    background-image: linear-gradient(200deg, rgba(110, 185, 44, 1) 0% 0%, rgba(0, 0, 0, 1) 30% 100%);
  }
  .sof_footer {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .sof_footer_l {
    margin: 0;
    width: 250px;
  }
  .sof_footer_l div {
    margin: 0 auto 1.5em;
  }
  .sof_footer_l div img {
    width: 100%;
  }
  .sof_footer_l p {
    text-align: left;
  }
  .sof_footer_r {
    width: calc(100% - 300px);
  }
  .sof_footer_nav {
    width: 600px;
    display: block;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em 0 3em auto;
    justify-content: space-between;
  }
  .sof_footer_nav li {
    padding: 15px 0 0;
    margin: 0 0px 0em 30px;
    width: calc(100% / 2 - 30px);
    border-top: 1px solid #6EB92C;
    text-align: left;
    letter-spacing: 2px;
    line-height: 2.3;
    font-weight: bold;
  }
  .sof_footer_nav li a {
    color: #6EB92C;
    display: block;
  }
  .sof_footer_btn {
    width: 500px;
    margin: 0 0 1.5em auto;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: flex-end;
  }
  .sof_footer_btn li {
    margin: 0 0px 0em 10px;
    width: calc(100% / 2 - 10px);
  }
  .sof_footer_btn li img {
    left: 20px;
    width: 50px;
    z-index: 3;
  }
  .footer_btn {
    padding: 13px 0px;
    width: 100%;
  }
  .sof_cr {
    font-size: 1.2rem;
    text-align: right;
  }
  .sof_f_contact {
    top: -120px;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: space-between;
    background: linear-gradient(-75deg, #D0D0D0 0%, #D0D0D0 50%, #6EB92C 50%, #6EB92C 100%);
  }
  .sof_f_contact::before {
    top: -65px;
    font-size: 3.5rem;
  }
  .sof_f_contact li {
    padding: 40px 0;
    margin: 0 0 0em;
    width: calc(100% / 2 - 0px);
  }
  .sof_f_contact li:last-child {
    background: none;
  }
  .sof_f_contact li img {
    width: 35px;
  }
  .sof_f_contact li p {
    font-size: 1.8rem;
  }
  .sof_f_contact li div {
    font-size: 1.4rem;
  }
  .sof_f_contact li div span {
    font-size: 4.5rem;
  }
  .gradient_btn {
    margin: 1em auto 0;
    padding: 15px 100px;
  }
}