* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.pc {
    display: block !important;
}
.sp {
    display: none !important;
}

.freeConsultation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 18px;
}

.freeConsultation__row {
    display: flex;
    gap: 40px;
    padding: 3rem 0;
    align-items: flex-start;
}

.freeConsultation__contLeft {
    flex: 1;
    max-width: 600px;
}

.freeConsultation__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.freeConsultation__title span {
    display: block;
}

.freeConsultation__subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.freeConsultation__support-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}
.freeConsultation__support-heading::after{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid #000;
    z-index: -1;
}
.freeConsultation__support-img img {
    max-width: 130px;
    height: auto;
    padding-left:20px;
}

.freeConsultation__support-tit {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    padding: 0 20px;
    margin-top: 60px;
}



.freeConsultation__text {
    font-size: 18px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 1rem;
}

.freeConsultation__support-txt {
    color: #1976d2;
    line-height: 1.8;
}

.freeConsultation__features {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    font-weight: 700;
}

.freeConsultation__features span {
    display: flex;
    align-items: center;
}

.freeConsultation__features span::before {
    content: "✓";
    margin-right: 5px;
    font-weight: bold;
}

.freeConsultation__contRight {
    flex: 0 0 450px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.freeConsultation__form-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.myForm {
    width: 100%;
}

.input_unit {
    margin-bottom: 20px;
}

.form_input_label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.form_input_label .required {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
}

.myForm input[type="text"],
.myForm textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #ffe8e6;
    font-family: inherit;
}

.myForm textarea {
    min-height: 120px;
    resize: vertical;
}

.myForm input[type="text"]:focus,
.myForm textarea:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

.form_input_submit {
    margin-top: 25px;
}

.myForm input[type="submit"] {
    width: 100%;
    background: #1976d2;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.myForm input[type="submit"]:hover {
    background: #1565c0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

@media only screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }

    .freeConsultation__row {
        flex-direction: column;
        gap: 30px;
        padding: 1.5rem 0;
    }

    .freeConsultation__contLeft {
        max-width: 100%;
    }

    .freeConsultation__title {
        font-size: 24px;
    }

    .freeConsultation__contRight {
        flex: none;
        width: 100%;
    }
    
    .freeConsultation__support-heading {
        display: flex;
        align-items: center;
        gap: 0;
        margin-bottom: 3rem;
    }
    
    .freeConsultation__support-heading img {
        display: block;
        margin: 0;
        max-width: 130px;
        padding-left: 10px;
    }
    .freeConsultation__support-tit {
        font-size: 22px;
        font-weight: bold;
        position: relative;
        padding: 0;
        text-align: left;
        margin-top: 0;
    }
    

    .freeConsultation__features{
        display: block;
    }
}

@media (max-width: 480px) {
    .freeConsultation__container {
        padding: 0 15px;
    }

    .freeConsultation__title {
        font-size: 24px;
        margin-top: 3rem;
    }

    .freeConsultation__contRight {
        padding: 20px;
    }
}