@charset "utf-8";
/* common
-------------------------------------------- */
.form-style input[type="text"],
.form-style input[type="email"],
.form-style input[type="tel"],
.form-style textarea{
    border-color: var(--gray-100);
    border-width: 1px;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
    margin-block: 0.5rem;
    font-weight: normal;
}
.form-style input[type="text"]#zip,
.form-style input[type="text"]#pref{
    width: 13.4rem;
    font-weight: normal;
}
.form-style input[type="radio"]{
    border-color: var(--gray-100);
    border-width: 1px;
    padding: 0.5rem 1rem;
    margin-block: 0.5rem;
    border-radius: 100%;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    appearance:auto;
}
.form-style input[type="submit"]{
    max-width: 100%;
    width: 100%;
    border-radius: .8rem;
}
.form-style input::placeholder {
  font-weight: normal;
  opacity: 0.5;
}
.form-style .wpcf7-form > p > label{
    font-weight: bold;
    font-size: 1.4rem;
}
.form-style .wpcf7-form > p:not(:last-child){
    margin-bottom: 2.4rem;
}
.form-style .requiered {
    background-color: #DD5858;
    color: var(--white);
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    line-height: 1;
    margin-right: 1rem;
    font-weight: normal;
}
.form-style .wpcf7-list-item{
    margin: 0;
}
@media screen and (max-width: 768px) {
    .form-style .wpcf7-list-item{
        margin-block:1rem;
    }
}

/* ステップ
-------------------------------------------- */
.contact section.inner,
.contact-confirm section.inner,
.contact-thanks section.inner{
    max-width: 63rem;
    margin-inline: auto;
}
.form-steps{
    counter-reset: step-num;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-bottom: 6rem;
    position: relative;
    max-width: min(30rem, 100%);
    margin-inline: auto;
    justify-content: space-between;
}
.form-steps .form-step-item{
    border: 0.3rem solid var(--gray-200);
    color:var(--gray-200);
    background-color: var(--white);
    counter-increment: step-num;
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    text-align: center;
    padding-top: 1rem;
}
.form-steps:after{
    z-index: -1;
    content: '';
    width: 100%;
    height: 0.3rem;
    background-color: var(--gray-200);
    position: absolute;
    top: 50%;
}
.form-steps .form-step-item:before {
    content: '';
    content: counter(step-num, decimal-leading-zero);
    z-index: 1;
    width: 8.2rem;
    height: 8.2rem;
    color:var(--gray-200);
    font-size: 1.4rem;
}
.form-steps .form-step-item.current{
    background-color: var(--blue);
    color: var(--white);
    border-color:var(--blue);
}
.form-steps .form-step-item.current:before {
    color: var(--white);
}
.form-steps .form-step-item span{
    display: block;
    font-size: 1.7rem;
    line-height: 1.4;
}


/* 確認画面
-------------------------------------------- */
.form-style.confirm dl{
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 0.1rem solid var(--gray-100);
}
.form-style.confirm dl dt,
.form-style.confirm dl dd{
    padding:2rem 1rem 2rem 0;
}
.form-style.confirm dl dt{
    width: 22rem;
    color: var(--darkblue);
}
.form-style.confirm dl dd{
    width: calc(100% - 22rem);
}

@media screen and (max-width: 768px) {
    .form-style.confirm dl{
        display: block;
        padding-block:1.5rem 1.2rem;
    }
    .form-style.confirm dl dt,
    .form-style.confirm dl dd{
        width: 100%;
        padding: 0;
    }
    .form-style.confirm dl dt{
        font-size: 1.4rem;
    }
    .form-style.confirm dl dd{
        font-size: 1.6rem;
        padding-block: 0.25rem;
    }
}