@charset "UTF-8";
body {
    background-color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}
.container {
    width: 90%;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .container {
        width: 95%;
    }   
}
.marginBottom-20 {
    margin-bottom: 20px;
}
.marginBottom-30 {
    margin-bottom: 30px;
}
.marginBottom-40 {
    margin-bottom: 40px;
}
.marginBottom-48 {
    margin-bottom: 48px;
}
.marginBottom-60 {
    margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
    .marginBottom-20 {
        margin-bottom: calc(20vw / 750 * 100);
    }
    .marginBottom-30 {
        margin-bottom: calc(30vw / 750 * 100);
    }
    .marginBottom-40 {
        margin-bottom: calc(40vw / 750 * 100);
    }
    .marginBottom-48 {
        margin-bottom: calc(48vw / 750 * 100);
    }
    .marginBottom-60 {
        margin-bottom: calc(60vw / 750 * 100);
    }
}
/* ============ */
/*     cta      */
/* ============ */
.cta {
    position: relative;
}
.btn-wrap {
    max-width: 90%;
    width: 100%;  
    margin: 0 auto;
    position: absolute;
    top: 76.4%;
    left: 50%;
    transform: translate(-50%);
}
@media screen and (max-width: 750px) {
    .btn-wrap {
        top: calc(1045vw / 750 * 100);
    }
}
.btn1 {
    border-radius: 10px;
    background: #cd3068;
    width: 100%;
    padding: 21px 0;
    padding-bottom:25px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
@media screen and (max-width: 750px) {
    .btn1 {
        padding-top:calc(20vw / 750 * 100);
        padding-bottom:calc(16vw / 750 * 100);
        margin-bottom: calc(20vw / 750 * 100);
    }
}
.btn1_link {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .btn1_link {
        font-size: calc(36vw / 750 * 100);
    }
}

.btn1:hover {
    opacity: 0.8;
}

.btn2 {
    border-radius: 10px;
    background: #13b541;
    width: 100%;
    padding: 21px 0;
    padding-bottom:25px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
@media screen and (max-width: 750px) {
    .btn2 {
        padding-top:calc(20vw / 750 * 100);
        padding-bottom:calc(16vw / 750 * 100);
        margin-bottom: calc(20vw / 750 * 100);
    }
}

.btn2_icon {
    display: inline-block;
    width: 11%;
    vertical-align: bottom;
    margin-right: 2%;
}
.btn2_link {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-decoration: none;
}
@media screen and (max-width: 750px) {
    .btn2_link {
        font-size: calc(36vw / 750 * 100);
    }
}

.btn2:hover {
    opacity: 0.8;
}
/* ============ */
/*     form      */
/* ============ */
form {
    padding: 80px 0;
    background-color: #ECF7FF;
}
@media screen and (max-width: 750px) {
    form{
    padding-bottom: calc(80vw / 750 * 100);
    padding-top: calc(80vw / 750 * 100);
    }
}
input::placeholder{
    color:rgba(34, 34, 34, 0.30);
  }
textarea::placeholder{
    color:rgba(34, 34, 34, 0.30);
  }
.form_title {
    color: #001E67;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
    .form_title {
        font-size: calc(48vw / 750 * 100);
        margin-bottom: calc(40vw / 750 * 100);
    }   
}
.form_list {
    padding: 48px 0;
    border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 750px) {
    .form_list {
        /* padding: 6.44vw 0; */
        padding-top:calc(48vw / 750 * 100);
        padding-bottom:calc(48vw / 750 * 100);
    }
}
.form_list_title {
    color: #222;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    display: block;
}
@media screen and (max-width: 750px) {
    .form_list_title {
        font-size: calc(32vw / 750 * 100);
    }
}
.span {
    border-radius: 10px;
    background: #FF8A00;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    padding: 0;
    padding-bottom: 1px;
    margin-left: 12px;
    padding-left: 10px;
    padding-right: 10px;
}
@media screen and (max-width: 750px) {
    .span {
        border-radius: calc(10vw / 750 * 100);
        font-size: calc(24vw / 750 * 100);
        margin-left: calc(12vw / 750 * 100);
        padding: 0;
        padding-bottom: calc(1vw / 750 * 100);
        margin-left: calc(12vw / 750 * 100);
        padding-left: calc(10vw / 750 * 100);
        padding-right: calc(10vw / 750 * 100);
    }
}
label {
    margin-bottom: 17.5px;
}
@media screen and (max-width: 750px) {
    label {
        margin-bottom: calc(17.5vw / 750 * 100);
    }
}
input, select {
    font-size: 24px;
    color: rgba(34, 34, 34, 0.30);
    border-radius: 4px;
    border: 1px solid rgba(34, 34, 34, 0.50);
    background: #FFF;
    height: 70px;
    width: 100%;
    padding: 8px 20px;
}
@media screen and (max-width: 750px) {
    input, select {
        font-size: calc(24vw / 750 * 100);
        border-radius: calc(4vw / 750 * 100);
        height: calc(70vw / 750 * 100);
        /* padding: 1.07vw 2.68vw; */
        padding-top:calc(8vw / 750 * 100);
        padding-bottom:calc(8vw / 750 * 100);
        padding-left:calc(20vw / 750 * 100);
        padding-right:calc(20vw / 750 * 100);
    }
}
textarea {
    font-size: 24px;
    color: #222;
    border-radius: 4px;
    border: 1px solid rgba(34, 34, 34, 0.50);
    background: #FFF;
    height: 200px;
    width: 100%;
    padding: 8px 20px;
}
@media screen and (max-width: 750px) {
    textarea {
        font-size: calc(24vw / 750 * 100);
        border-radius: calc(4vw / 750 * 100);
        height: calc(200vw / 750 * 100);
        padding-top:calc(8vw / 750 * 100);
        padding-bottom:calc(8vw / 750 * 100);
        padding-left:calc(20vw / 750 * 100);
        padding-right:calc(20vw / 750 * 100);
    }
}
/* select arrow */
select {
    -webkit-appearance: none;
    appearance: none; /* デフォルトの矢印を無効 */
}
select::-ms-expand {
    display: none; /* デフォルトの矢印を無効(IE用) */
}
.select-wrap {
    width: 100%;
    position: relative;
}
.select-wrap::before {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "";
    background-image: url('../img/select.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 5;
}
@media screen and (max-width: 750px) {
    .select-wrap::before {
        position: absolute;
        top: 50%;
        right: calc(20vw / 750 * 100);
        transform: translateY(-50%);
        width: calc(30vw / 750 * 100);
        height: calc(30vw / 750 * 100);
    }
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 750px) {
    .flex {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: calc(20vw / 750 * 100);
    }
}
.text {
    color: #666;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    display: block;
    margin-top:40px;
}
@media screen and (max-width: 750px) {
    .text {
        font-size: calc(32vw / 750 * 100);
        padding-top: calc(40vw / 750 * 100);
    }
}
/* 上書きCSS */
.width-50 {
    width: 48%;
}
/* form buttom */
.button-wrap {
    padding-top: 60px;
}
@media screen and (max-width: 750px) {
.button-wrap {
    padding-top: calc(60vw / 750 * 100);
}
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
.wpcf7-submit {
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 20px;
    background-color: #062391;
    width: 100%;
    padding: 37px 0;
    padding-bottom: 41px;
    text-align: center;
    height: 100%;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .wpcf7-submit {
        font-size: calc(40vw / 750 * 100);
        border-radius: calc(20vw / 750 * 100);
        padding-top:calc(37vw / 750 * 100);
        padding-bottom: calc(41vw / 750 * 100);
    }
}
.wpcf7-submit:hover {
    opacity: 0.8;
}
/* ============ */
/*     footer      */
/* ============ */
.footer {
    padding: 20px 0;
    background-color: #ECF7FF;
}
@media screen and (max-width: 750px) {
.footer{
    padding-top:calc(20vw / 750 * 100);
    padding-bottom: calc(20vw / 750 * 100);
}
}
.footer-text {
    color: #666;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .footer-text {
        font-size: calc(20vw / 750 * 100);
    }
}
.error {
    font-size: 16px;
    display: block;
    padding-top: 8px;
    color: rgb(219, 16, 16);
}
@media screen and (max-width: 750px) {
    .error {
        font-size: 14px;
    }
}

/* ============ */
/*     thanksページ      */
/* ============ */
#thanks .main {
    text-align: center;
    margin: 100px 0;
}
#thanks .logo {
    color: #001E67;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
#thanks h1 {
    color: #001E67;
    font-size: 2rem;
    margin-bottom: 2rem;
}
#thanks p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 2rem;
}
#thanks a {
    color: #333;
    font-size: 1rem;
    margin-bottom: 2rem;
}



.grecaptcha-badge {
    display: none!important;
}
.recaputure-text{
    font-size: 0.8rem;
    line-height: 1.4;
    background-color: #ECF7FF;
    color: #666;
    padding-bottom: 1.5rem;
    padding-left: 38px;
}
.recaputure-text a{
    font-size: 0.8rem;
    line-height: 1.4;
    background-color: #ECF7FF;
    color: #666;
}
#thanks h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}