@charset "UTF-8";

/* ===============================
   まだ迷っているあなたへ
================================== */
.hesitate {
    background: #f7fbfc;
}

.hesitate__inner {
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .05);
    text-align: center;
}

.hesitate__title {
    text-align: center;
    color: #167c97;
    letter-spacing: .03em;
}

.hesitate__text p {
    margin-bottom: 1.4em;
    line-height: 1.8;
}

.hesitate__text ul {
    list-style: disc;
    margin: 0 0 1.6em 1.6em;
    color: #1a2a33;
}

.hesitate__text div ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    line-height: 1.2;
}

.hesitate__text div ul li::before {
    position: absolute;
    content: "";
    top: 0;
    left: -8px;
    width: 24px;
    height: 24px;
    background: url(img/check-blue.png) no-repeat center / 100% 100%;
}

.hesitate__form {
    background: #f2f9fb;
    border-radius: 12px;
    padding: 36px 28px;
    margin-top: 48px;
    text-align: center;
}

.hesitate__form h3 {
    font-size: 1.2rem;
    color: #125b6a;
    margin-bottom: 8px;
}

.hesitate__form p {
    font-size: .95rem;
    color: #334;
    margin-bottom: 16px;
}

.hesitate__form .form-inline {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hesitate__form input[type="text"] {
    width: 100%;
    max-width: 480px;
    padding: 14px 16px;
    font-size: 16px;
    border: 1.5px solid #c6e1e8;
    border-radius: 10px;
    background: #fff;
    transition: border-color .2s;
}

.hesitate__form input[type="email"]:focus {
    outline: none;
    border-color: #1897b7;
}

.hesitate__form .input_unit {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-main {
    background: linear-gradient(90deg, #1897b7, #0ea1b5);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 14px 22px;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-main:hover {
    opacity: .9;
}

.note {
    font-size: 13px;
    color: #667;
    line-height: 1.6;
    margin-top: 8px;
}

.hesitate__subcta {
    text-align: center;
    margin-top: 40px;
}

.hesitate__subcta p {
    font-size: .95rem;
    color: #333;
    margin-bottom: 10px;
}

.btn-sub {
    display: inline-block;
    border: 1.5px solid #b9d8de;
    background: #fff;
    color: #0b7f96;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.btn-sub:hover {
    background: #e7f6f8;
    color: #0a6374;
}

@media (max-width: 640px) {
    .hesitate__inner {
        padding: 40px 20px;
        text-align: left;
    }

    .hesitate__form .form-inline {
        flex-direction: column;
    }

    .hesitate__form input[type="email"] {
        max-width: 100%;
    }

    .btn-main {
        width: 100%;
    }
}