.contactIntro{
    line-height: 1.5;
}

.contactTell{
    margin-top: 4.2rem;
}

.contactTell__link{

}

.contactTell__num{
    font-size: 5.6rem;
    font-weight: 600;
}

.pageContent.is--contact{

}

.is--contact{
    
}

/* 全体 */
.formTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  /* margin-bottom: 30px; */
  /* font-family: "Helvetica Neue", Arial, sans-serif; */
  /* color: #333; */
}

.formTable th,
.formTable td {
  padding: 3.5rem 0;
}

.formTable th {
    display: flex;
    justify-content: space-between;
    width: 31.8rem;
    text-align: left;
    font-weight: bold;
    font-size: 2.4rem;
}

.formTable td {
  width: auto;
}

/* 必須・任意ラベル */
.necessity {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.8rem;
  /* color: #fff; */
  padding: .8rem 1.2rem;
  border: 1px solid var(--color-pink);
  border-radius: .4rem;
}

.is-require {
    background: var(--color-pink);
    color: var(--color-white);
}

.necessity:not(.is-require) {
  background: var(--color-white);
  color: var(--color-pink);
}

/* 入力欄 */
.formTable input[type="text"],
.formTable input[type="email"],
.formTable input[type="tel"],
.formTable textarea,
.formTable select {
  width: 100%;
  max-width: 100%;
  padding: 1.4rem;
  border: 1px solid #444;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  /* box-sizing: border-box; */
}

.formTable textarea {
  aspect-ratio: 600 / 260;
  resize: vertical;
  box-sizing: border-box;

}

/* ラジオボタン横並び */
.formTable .wpcf7-list-item {
  display: inline-block;
  margin-right: 20px;
  font-weight: normal;
}

.formTable input[type="radio"] {
  margin-right: 6px;
  vertical-align: middle;
}

.formTable .wpcf7-list-item{
    margin: 0;
}

.formTable .wpcf7-list-item:nth-child(n+2){
    margin-left: 3.6rem;
}

.formTable .wpcf7-list-item-label {
  font-size: 1.8rem;
}

/* 送信ボタン */
.pinkButton.is--contact{
    position: relative;
    margin-top: 6.5rem;
}

.pinkButton.is--contact input{
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 700;
}

.wpcf7-spinner{
    position: absolute!important;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* ------------------------------------------------------------------------- */
/* thanks */
/* ------------------------------------------------------------------------- */
.thanksLogo{
    width: 32rem;
    margin: 0 auto;
}

.thanksContent{
    margin-top: 6.6rem;
    font-size: 1.8rem;
}

.thanksContent p{
    line-height: 1.5;
    margin-top: 1em;
    text-align: center;
}

.pinkButton.is--thanks{
    margin-top: 14rem;
}