/**** 固定ボタン ****/
.contact_btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 10;
}

.contact_btn img {
  width: 100%;
}

.contact_btn:hover {
  cursor: pointer;
}

.contact_btn img:hover {
  opacity: 0.8;
}

/**** price-module ****/
.price-module {
  text-align: center;
  margin-bottom: 100px;
}

.price-module__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-module__subtitle p {
  font-size: 25px;
  font-weight: bold;
  margin: 0 20px;
  letter-spacing: 2px;
}

.price-module__download {
  margin-top: 40px;
}

.price-module__download a {
  padding: 20px 70px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  background-color: #F47913;
  border-radius: 8px;
}

.price-module__download p {
  margin-top: 40px;
  font-size: 16px;
}

/**** servise-module ****/
.service-page {
  padding: 70px 0;
  background-color: #FEF2E8;
}

.service-page__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page__item {
  display: block;
  height: calc(316px - 30px * 2);
  /* paddingの差分 */
  margin-right: 40px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  transition: all .3s ease;
}

.service-page__item:hover {
  box-shadow: 0px 7px 7px rgba(60, 60, 60, 0.2);
}

.service-page__img {
  width: 165px;
}

.service-page__img img {
  width: 100%;
}

.service-page__item:last-child {
  margin-right: 0;
}

.service-page__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
}

.service-page__right-arrow {
  display: none;
}

@media screen and (max-width: 1024px) {

  /**** 固定ボタン ****/
  .contact_btn {
    right: unset;
    left: 10px;
    bottom: 8px;
  }

  /**** 料金表 ****/
  .price-module__subtitle p {
    font-size: 18px;
    margin: 0 16px;
  }

  .price-module__subtitle img {
    width: 14px;
  }

  .price-module__download {
    margin-top: 56px;
  }

  .price-module__download a {
    padding: 16px 70px;
  }

  .price-module__download p {
    margin-top: 40px;
    font-size: 16px;
  }

  /**** 境界線 ****/
  .service-page__orange {
    height: 150px;
    background-position: 70%;
  }

  .service-page__white {
    background-position: 80%;
  }

  /**** サービスページ ****/
  .service-page__inner {
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  .service-page__item {
    display: grid;
    grid-template-columns: 4fr 5fr 1fr;
    display: -ms-grid;
    -ms-grid-columns: 4fr 5fr 1fr;
    align-items: center;
    height: auto;
    margin-right: 0;
    margin-bottom: 16px;
    padding: 16px 24px;
    border-radius: 10px;
  }

  .service-page__img {
    width: 100%;
  }

  .service-page__text {
    font-size: 14px;
    line-height: 21px;
    padding-left: 16px;
  }

  .service-page__right-arrow {
    display: block;
    text-align: right;
  }

}