@import "./colors.css";

.header_intro {
    font-size: 1.125rem;
    font-weight: 700;
    @media screen and (max-width: 1023px) {
        font-size: 1rem;
    }
}
.header_paragraph {
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-align: center;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.header_detail {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.75rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.board {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--color-red);
    border-radius: 0.375rem;
    background-color: var(--color-light-pink);
    gap: 0.675rem;
}
.board_note {
    margin-top: 0;
    color: var(--color-red);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    @media screen and (max-width: 1023px) {
        font-size: 0.8125rem;
    }
}
.board_note::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 0.0625rem;
    background-color: var(--color-red);
    margin: 0.425rem auto 0;
    @media screen and (max-width: 1023px) {
        width: 1.125rem;
    }
}
.board_list {
    padding-left: 0.825rem;
}
.board_list li + li {
    margin-top: 0.375rem;
}
.board_item {
    position: relative;
    color: var(--color-red);
    font-size: 0.75rem;
    font-weight: 500;
    @media screen and (max-width: 1023px) {
        font-size: 0.625rem;
    }
}
.board_item::after {
    content: "•";
    position: absolute;
    left: -0.825rem;
    top: -0.75rem;
    color: var(--color-red);
    font-size: 1.75rem;
}
.sectionTitleWrap {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 35rem;
    @media screen and (max-width: 1023px) {
        max-width: 32rem;
    }
}
.sectionTitle {
    color: var(--color-red);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0 0.875rem;
    text-align: center;
    background: var(--color-light-pink);
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
    z-index: 2;
    @media screen and (max-width: 1023px) {
        font-size: 0.9125rem;
    }
}

.sectionTitleLine {
    border-bottom: 1px solid var(--color-red);
    transform: translateY(-9px);
}

:where(.request_type) .select-box {
    box-shadow: 0px 2px 0px var(--color-pink-shadow);
}
.consultation-section {
    .selected-display {
        padding: 0.5rem 0.625rem !important;
        font-size: 0.875rem !important;
        @media screen and (max-width: 1023px) {
            padding: 0.375rem 0.625rem !important;
            font-size: 0.75rem !important;
        }
    }
}
.form_name {
    border-bottom: 1px solid var(--color-pink);
    padding-bottom: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.form_item {
    display: flex;
    flex-direction: column;
    color: var(--color-black);
    font-size: 0.875rem;
    font-weight: 500;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.form_item:not(:first-child) {
    margin-top: 0.875rem;
}
.itemTitle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.3125rem;
    color: var(--color-black);
    font-size: 0.875rem;
    font-weight: 500;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.itemData {
    position: relative;
    display: flex;
    gap: 0.45rem;
    margin-top: 0.125rem;
    width: 100%;
}
.button_experience {
    font-size: 1rem !important;
    padding: 0.25rem 0 !important;
    font-weight: 500 !important;
    height: 2.625rem;
    min-width: 9rem;
    width: 100%;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem !important;
        height: 1.75rem;
    }
}
.button_experience_none {
    color: var(--color-light-black);
    border: 1px solid var(--color-light-black);
}
.button-radio-group input[type="radio"]:checked + label {
    background-color: var(--color-pink);
    color: #fff;
    border-color: var(--color-pink);
}
.item_warning {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    @media screen and (max-width: 1023px) {
        font-size: 0.5rem;
    }
}
.input_pink {
    padding: 0.5rem 0.75rem !important;
}
.item_dateWrapper {
    position: relative;
}
.item_dateWrapper::after {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    pointer-events: none;
    background: url(../../icon/calendar_select.svg) no-repeat center / 1.25rem;
    @media screen and (max-width: 1023px) {
        background-size: 0.75rem;
    }
}
.item_date {
    background-color: var(--color-light-pink);
    border: 1.5px solid transparent;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    outline: none;
    width: 100%;
    height: auto;
    line-height: normal;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
}

.item_date:disabled{
    cursor: not-allowed;
}


.item_date::placeholder {
    color: var(--color-soft-pink);
}
.item_date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.agree_wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
}
.text-check {
    font-size: 0.875rem;
    font-weight: 500;
    @media screen and (max-width: 1023px) {
        font-size: 0.625rem;
    }
}
.radio-pink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-pink input {
    display: none;
}

.radio-mark {
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--color-black);
    border-radius: 50%;
    position: relative;
    @media screen and (max-width: 1023px) {
        width: 0.75rem;
        height: 0.75rem;
    }
}

.radio-pink input:checked + .radio-mark::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-pink);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    @media screen and (max-width: 1023px) {
        width: 0.375rem;
        height: 0.375rem;
    }
}

.input_number::-webkit-outer-spin-button,
.input_number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.error-message {
    font-size: 0.875rem;
    color: #e85892;
    margin-top: 0.2rem;
}
@media (max-width: 1023px) {
    .error-message {
        font-size: 0.75rem;
    }
}
.confirmPage_item {
    border-bottom: 1px solid #fa8dba;
    padding: 0.325rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.325rem;
    min-height: 3.125rem;
}

.confirmPage_item:last-child {
    border-bottom: none;
}

.confirmPage_item dt {
    padding-left: 0.5rem;
    padding-bottom: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fa8dba;
    position: relative;
    @media screen and (max-width: 1023px) {
        font-size: 0.625rem;
    }
}

.confirmPage_item dt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    height: 3px;
    background-image: radial-gradient(
        circle,
        var(--color-pink) 30%,
        transparent 31%
    );
    background-size: 6px 3px;
    background-repeat: repeat-x;
}

.confirmPage_item dd {
    padding: 0.25rem 0 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}
.domain {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    @media screen and (max-width: 1023px) {
        font-size: 0.625rem;
    }
}
.modal-h2 {
    font-size: 1.25rem;
    @media screen and (max-width: 1023px) {
        font-size: 1.125rem;
    }
}
.modal-text {
    font-size: 0.825rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.625rem;
    }
}
.modal-img {
    width: 3.6rem;
    height: 3.0875rem;
}

.modal-buttonWrap {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 0.825rem;
    flex-direction: column;
    gap: 0.5rem;
}
.modal-buttonWrap .button_small {
    max-width: 12.325rem;
    width: 100%;
}
.modal_consultation {
    padding: 2.325rem 2rem 2rem 2rem !important;
    @media screen and (min-width: 1023px) {
        width: 25rem !important;
    }
}
