@charset "utf-8";
:root {
  --font-color: #333333;
  --blue: #3B37FD;
  --back-blue: #F4F4FF;
  --yellow: #FFD667;
  --orange: #FF8000;
  --btn-color: linear-gradient(0deg, #ff8000 0%,  #ff8103 50%, #ffbb76 100%);
}

/***form***/
.wpcf7-form .lp_form_box dl {
    margin-bottom: 20px;
    width: 100%;
}

.wpcf7-form .lp_form_box dl dt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.wpcf7-form .lp_form_box dl dt::after {
    content: '任意';
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    background-color: #C4C4C7;
    color: white;
    margin-left: 10px;
}

.wpcf7-form .lp_form_box dl dt.req::after {
    content: '必須';
    background-color: var(--font-color);
}

.wpcf7-form .lp_form_box dl dd input,
.wpcf7-form .lp_form_box dl dd textarea,
.wpcf7-form .lp_form_box dl dd select {
    width: 100%;
    padding:6px;
    border-radius: 6px;
    font-size: 16px;
    border: 1px solid #C4C4C7;
}


.wpcf7-form .policy-agree {
    text-align: center;
    margin-bottom: 30px;

}

.wpcf7-form .policy-agree label {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
        gap: 5px;
}

.wpcf7-form .policy-agree label input {
    width: 18px;
    height: 18px;
}

.wpcf7-form .submit_box input {
        display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: var(--btn-color);
    padding: 20px 0;
    width: 90%;
    font-size: 20px;
    border-radius: 4rem;
    color: white;
    font-weight: bolder;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}

.wpcf7-form .add_text {
    font-size: 3.3vw;
    margin-top: 5.5vw;
}

@media screen and (min-width: 960px) {

.wpcf7-form .lp_form_box dl {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.wpcf7-form .lp_form_box dl dt {
    justify-content: space-between;
    margin-bottom: 0;
    font-size: 18px;
    width: 300px;
    padding-top: 10px;
}
.wpcf7-form .lp_form_box dl dt::after {
    font-size: 12px;
    padding: 5px 20px;
    border-radius: 5px;
    margin-left:0 ;
}
.wpcf7-form .lp_form_box dl dd {
    flex: 1;
}

.wpcf7-form .lp_form_box dl dd input,
.wpcf7-form .lp_form_box dl dd textarea,
.wpcf7-form .lp_form_box dl dd select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #C4C4C7;
}

.wpcf7-form .policy-agree {
    margin-bottom: 30px;

}

.wpcf7-form .policy-agree label {
    font-size: 18px;
        gap: 5px;
}

.wpcf7-form .policy-agree label input {
    width: 18px;
    height: 18px;
}

.wpcf7-form .submit_box input {
    padding: 1.2em 0;
    width: 100%;
    max-width: 600px;
    font-size: 24px;
    border-radius: 60px;
}
.wpcf7-form .add_text {
    font-size: 14px;
}



}