@charset "utf-8";

/* ----------------------------------------------


フォーム 


----------------------------------------------*/
.section--form {
    background-color: #22B8C6;
}

.form_inner {
    max-width: 800px;
    margin: 0 auto;
}

#form-title {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
}

#form-title br {
    display: none;
}

.form-content {
    background-color: #fff;
    /* padding: 100px 160px; */
    border-radius: 18px;
}

.form-intro {
    margin-bottom: 3.5em;
}

.form-intro__text {
    font-weight: 500;
    line-height: 2;
    text-align: center;
}

.form-notes {
    margin-bottom: 30px;
}

.form-notes__item {
    position: relative;
    padding-left: 1em;
    font-size: 14px;
    /* color: #5A5C60; */
    color: #0E9C8D;
}

.form-notes__item:before {
    content: '※';
    position: absolute;
    left: 0;
}


/* フォーム本体 */
/* .trial-form {

}

.trial-form input[type="text"],
.trial-form input[type="email"],
.trial-form input[type="tel"],
.trial-form textarea {
    border: 1px solid #CFCFCF;
    padding: 5px;
    border-radius: 2px;
} */



form .table {
    margin-bottom: 50px;
    width: 100%;
}

form .table th,
form .table td {
    color: #121212;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* form .table th {
    background-color: #EFF8F5;
} */

form .table tr {
    padding-top: 20px;
    padding-bottom: 20px;
}

form .table tr {
    border-bottom: 1px solid #D1E6DF;
}

form .table tr:first-of-type {
    border-top: 1px solid #D1E6DF;
}

form .table tr:first-of-type th {
    border-top: 1px solid #D1E6DF;
}

form .table tr:first-of-type th {
    border-top: none;
}

form .table input,
form .table textarea,
form .table select {
    padding: 5px 0;
    padding-left: 8px;
    color: #222222;
    border: 1px solid #E8E8E8;
    background-color: #eee;
    width: 100%;
}

form .table select {
    padding: 6px 8px;
    width: 100%;
}

::placeholder {
    color: #d1d1d1;
}


/* 必須 */
form .table .need::after {
    color: red;
    content: '*';
    background-color: inherit;
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
}

/* 送信ボタン */

.agreeBox,
.formBtn {
    text-align: center;
}

.agreeBox a {
    text-decoration: underline;
    letter-spacing: 0.1em;
    padding-left: 8px;
}

.formBtn .form-btn {
    background-color: inherit;
    /* border: 1px solid #0C70CA; */
    border: none;
    color: #0E9C8D;
    padding: 15px 80px;
    text-align: left;
    position: relative;
    margin: 0 auto;
    width: inherit;
    font-weight: 500;
    background-color: #EFF8F5;
    font-size: 18px;
    border-radius: 4px;
    border: 1px solid #0E9C8D;
}

.formBtn .form-btn:hover {
    opacity: 0.8;
}

.formBtn .form-btn .fas {
    font-size: 2.0rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.1s;
}

.formBtn .form-btn:hover .fas {
    right: 5px;
}





@media (max-width: 1024px) {
    .form-content {
        padding: 0px 40px;
    }
}

@media (max-width: 767px) {
    #form-title {
        font-size: 26px;
    }

    #form-title br {
        display: block;
    }

    .form-content {
        padding: 0 10px;
    }

    .form-intro__text {
        line-height: 1.75;
    }

    .form-notes__item {
        font-size: 13px;
    }

    form .table th,
    form .table td {
        display: block;
        border: none;
        padding-right: 0;
        padding-left: 0;
    }

    form .table th {
        padding-bottom: 0;
    }

    form .table td {
        padding-top: 5px;
    }

    .formBtn .form-btn {
        padding: 15px 60px;
    }
}




/* ラジオボタン */

.form-radio {
    display: block;    
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

.form-radio input[type="radio"] {
    width: initial;
    margin-right: 8px;
}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .form-radio {
        font-size: 15px;
    }
}