/* 20250929 トップページ問い合わせ部分の対応 */
.p-btnBlock {
  width: calc(100% - 20px);
  max-width: 1000px;
  margin-inline: auto;
  @media screen and (min-width: 1000px) {
    width: 68%;
  }
}
.p-btnBlock__btn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1.5rem 0;
  font-size: 1.25rem;
  background-color: red;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  @media screen and (min-width: 1000px) {
    padding: 2rem 0;
    font-size: 1.5rem;
  }
}
.p-btnBlock__btn:hover {
  opacity: .8;
}
.p-btnBlock__txt {
  display: flex;
  justify-content: center;
  margin: 2rem auto 1rem;
  font-size: 1.125em;
  font-weight: bold;
  text-align: center;
  color: red;
  @media screen and (min-width: 1000px) {
    font-size: 1.25rem;
  }
}

section .inner_1000 {
  .p-btnBlock {
    margin: 1rem auto;
  }
  .p-btnBlock__txt {
    text-align: center;
  }
}