/* =========================================================
   »ó´ã½ÅÃ»
   ========================================================= */

.inquiry-form {
    width: 100%;
    box-sizing: border-box;
    padding: 25px 16px 30px;
}

/* Á¦¸ñ */
.inquiry-form h2 {
    margin: 0 0 8px;
    color: #111f43;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/* ¼³¸í */
.inquiry-desc {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* ÀÔ·Â Å×ÀÌºí */
.inquiry-table {
    width: 100%;
    border-top: 2px solid #111f43;
    border-left: 1px solid #dce4ec;
    box-sizing: border-box;
}

/* ÇÑ ÁÙ */
.inquiry-row {
    display: flex;
    width: 100%;
    min-height: 48px;
}

/* Ç×¸ñ¸í */
.inquiry-label {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 115px;
    flex-shrink: 0;

    background: #eef5fb;
    border-right: 1px solid #dce4ec;
    border-bottom: 1px solid #dce4ec;

    color: #18375d;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
}

/* ÇÊ¼ö Ç×¸ñ */
.inquiry-label.required::after {
    content: " *";
    color: #e53935;
    font-size: 12px;
    font-weight: 700;
}

/* ÀÔ·Â ¿µ¿ª */
.inquiry-input {
    flex: 1;
    padding: 6px 9px;
    border-right: 1px solid #dce4ec;
    border-bottom: 1px solid #dce4ec;
    box-sizing: border-box;
}

/* input */
.inquiry-input input {
    width: 100%;
    height: 34px;
    padding: 0 10px;

    border: 1px solid #d8dfe7;
    border-radius: 3px;

    background: #fff;
    color: #333;

    font-family: inherit;
    font-size: 14px;
    font-weight: 400;

    box-sizing: border-box;
    outline: none;
}

.inquiry-input input:focus {
    border-color: #3675d4;
    box-shadow: 0 0 0 2px rgba(54, 117, 212, 0.08);
}

/* input placeholder */
.inquiry-input input::placeholder {
    color: #aaa;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

/* »ó´ã³»¿ë */
.inquiry-content-row {
    min-height: 115px;
}

.inquiry-content {
    flex: 1;
    padding: 8px 9px;
    border-right: 1px solid #dce4ec;
    border-bottom: 1px solid #dce4ec;
    box-sizing: border-box;
}

/* textarea */
.inquiry-content textarea {
    display: block;
    width: 100%;
    height: 97px;

    padding: 9px 10px;

    border: 1px solid #d8dfe7;
    border-radius: 3px;

    background: #fff;
    color: #333;

    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    resize: none;
    outline: none;

    box-sizing: border-box;
}

.inquiry-content textarea:focus {
    border-color: #3675d4;
    box-shadow: 0 0 0 2px rgba(54, 117, 212, 0.08);
}

/* textarea placeholder */
.inquiry-content textarea::placeholder {
    color: #aaa;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

/* °³ÀÎÁ¤º¸ µ¿ÀÇ */
.inquiry-agree {
    margin-top: 15px;
    padding: 13px 16px;

    border: 1px solid #dce4ec;
    border-radius: 4px;

    background: #f8fafc;

    font-size: 13px;
    color: #666;
}

.agree-title {
    margin-bottom: 5px;
    color: #18375d;
    font-weight: 600;
}

.agree-text {
    display: inline-block;
    margin-right: 18px;
}

.inquiry-agree label {
    margin-right: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.inquiry-agree input[type="radio"] {
    margin: 0 4px 0 0;
    vertical-align: middle;
}

/* ½ÅÃ» ¹öÆ° */
.inquiry-button {
    margin-top: 18px;
    text-align: center;
}

.inquiry-button button {
    min-width: 150px;
    height: 43px;

    padding: 0 30px;

    border: 0;
    border-radius: 4px;

    background: #185dcc;
    color: #fff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: background 0.2s;
}

.inquiry-button button:hover {
    background: #0d4eae;
}




/* =========================================================
   »ó´ã½ÅÃ» ¿Ï·á
   ========================================================= */

.inquiry-result {
    width: 100%;
    box-sizing: border-box;
    padding: 70px 30px 80px;
    text-align: center;
}

/* ¿Ï·á ¾ÆÀÌÄÜ */
.inquiry-result-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;

    border-radius: 50%;
    background: #185dcc;
    color: #fff;

    font-size: 34px;
    font-weight: 700;
    line-height: 68px;
}

/* Á¦¸ñ */
.inquiry-result h2 {
    margin: 0 0 14px;

    color: #111f43;
    font-size: 24px;
    font-weight: 700;
}

/* ¾È³» ¹®±¸ */
.inquiry-result-message {
    margin: 0;

    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* ¾È³» ¹Ú½º */
.inquiry-result-box {
    max-width: 620px;
    margin: 30px auto 0;
    padding: 18px 20px;

    box-sizing: border-box;

    border: 1px solid #dce4ec;
    border-radius: 4px;

    background: #f8fafc;

    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.inquiry-result-box strong {
    color: #18375d;
}

/* ¹öÆ° */
.inquiry-result-button {
    margin-top: 28px;
}

.inquiry-result-button a {
    display: inline-block;

    min-width: 150px;
    height: 43px;
    padding: 0 30px;

    box-sizing: border-box;

    border-radius: 4px;
    background: #185dcc;

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 43px;

    text-decoration: none;
}

.inquiry-result-button a:hover {
    background: #0d4eae;
}