/* main-container */
.main-container {
    padding: 75px 20px;
}

@media screen and (min-width: 768px) {
    .main-container {
        min-height: calc(100% - 100px);
        margin: auto 0;
        padding: 75px 250px;
    }
}

.main-container__title {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
}

.header {
    height: 44px;
    padding: 14px 20px;
}

.header > .header__logo {
    height: 16px;
}

.main-title {
    margin: 48px;
}

@media screen and (min-width: 768px) {
    .main-title {
        margin-bottom: 64px;
    }
}

.inquiry-description {
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.2px;
}

@media screen and (min-width: 768px) {
    .inquiry-description {
        text-align: center;
    }
}

/* form */
.inquiry-form {
    margin-bottom: 64px;
}

.inquiry-form__column {
    display: flex;
    flex-direction: row;
    margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
    .inquiry-form__column {
        flex-direction: column;
    }
}

/* inquiry-submit */
.inquiry-buttons {
    margin: 0 -10px;
    text-align: center;
}

.inquiry-buttons__submit {
    position: relative;
    flex: 1 1 auto;
    box-sizing: border-box;
    width: 313px;
    height: 50px;
    margin: 10px;
    padding: 14px 28px;
    color: #ffffff;
    font-size: 15px;
    text-align: left;
    background:
        linear-gradient(
            189.08deg,
            #cce60b 0%,
            #93d157 23.44%,
            #59bca3 75%
        );
    border-radius: 26px;
    box-shadow: 0 8px 18px rgba(135, 98, 116, 0.2);
}

.inquiry-buttons__submit::before {
    position: absolute;
    top: 50%;
    right: 28px;
    display: block;
    width: 18px;
    height: 1px;
    background-color: #ffffff;
    transform: rotate(-180deg);
    content: '';
}

.inquiry-buttons__submit::after {
    position: absolute;
    top: calc(50% - 3.6px);
    right: 28px;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(45deg);
    content: '';
}

.inquiry-buttons__back {
    position: relative;
    display: inline-block;
    flex: 1 1 auto;
    box-sizing: border-box;
    width: 313px;
    height: 50px;
    margin: 10px;
    padding: 14px 28px;
    color: #93d157;
    font-size: 15px;
    text-align: left;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 8px 18px rgba(135, 98, 116, 0.2);
}

@media screen and (max-width: 767px) {
    .inquiry-buttons {
        display: flex;
        flex-direction: column-reverse;
    }

    .inquiry-buttons__submit {
        width: calc(100% - 20px);
    }

    .inquiry-buttons__back {
        width: calc(100% - 20px);
    }
}

.input-group {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.input-group--error .input-group__form {
    border: 1px solid #ffa048;
}

@media screen and (max-width: 767px) {
    .input-group {
        margin-bottom: 28px;
        margin-left: 0;
    }

    .input-group:last-child {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) {
    .input-group {
        margin-bottom: 0;
    }

    .input-group:not(:first-child) {
        margin-left: 20px;
    }
}

.input-group__label {
    display: block;
    font-size: 13px;
    line-height: 19px;
}

.input-group__form {
    display: block;
    flex: 1 0 auto;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 13px 28px;
    font-size: 15px;
    border: 1px solid #dbdbdb;
    border-radius: 25px;
}

.input-group__error {
    height: 20px;
    color: #ffa048;
    font-size: 13px;
    line-height: 20px;
}

.inquiry-textarea {
    display: block;
    flex: 1 0 auto;
    box-sizing: border-box;
    height: 220px;
    padding: 13px 28px;
    font-size: 15px;
    border: 1px solid #dbdbdb;
    border-radius: 25px;
    resize: none;
}

/* inquiry-select */
.inquiry-select__placeholder {
    display: none;
}

/* inquiry-confirm */
.inquiry-confirm {
    margin-bottom: 64px;
}

.inquiry-confirm__column {
}

/* confirm-column */
.confirm-column {
    display: flex;
    margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
    .confirm-column {
        flex-direction: column;
        margin-bottom: 32px;
    }
}

.confirm-column__title {
    flex: 0 0 auto;
    width: 145px;
    color: #9b9b9b;
    font-size: 13px;
    line-height: 19px;
}

@media screen and (min-width: 767px) {
    .confirm-column__title {
        margin-bottom: 8px;
    }
}

.confirm-column__input {
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.2px;
}
