body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow: auto;
    min-width: 1200px;
}

header {
    width: 100%;
    height: 95px;
    min-width: 1200px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: white;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
}

main {
    margin-top: 90px;
}

.title_logo {
    width: 142px;
    height: 63px;
    background-image: url('/images/home/title.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.menu {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    margin: 0 auto;
}

#menu_order_method {
    width: 106px;
    height: 63px;
    text-align: center;
    line-height: 63px;
    cursor: pointer;
}

#menu_sample_exp {
    width: 106px;
    height: 63px;
    text-align: center;
    line-height: 63px;
    cursor: pointer;
}

#menu_faq {
    width: 142px;
    height: 63px;
    text-align: center;
    line-height: 63px;
    cursor: pointer;
}

.page {
    width: 100vw;
    margin: auto;
    box-sizing: border-box;
    /* display: flex;
    justify-content: center; */
    min-width: 1200px;
    margin-top: 75px;
}

.view_flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_order_page {
    width: 165px;
    height: 40px;
    border-radius: 8px;
    background-color: #293989;
    color: white;
    text-align: center;
    line-height: 40px;
    margin-left: 20px;
}

.page_logo_box {
    width: 100vw;
    height: 352px;
    min-width: 1200px;
    background-color: #8DDCF5;
    margin-bottom: 32px;
}

.page_logo {
    content: url('/images/sampleExperience/deliver.png');
    width: 352px;
    height: 304px;
}

.item {
    width: 336px;
    text-align: center;
}

footer {
    width: 1200px;
    margin: 0 auto;
}

.use_term, .private_term {
    cursor: pointer;
}

.box1 {
    width: 426px;
    height: 272px;
    box-sizing: border-box;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
}

.box2 {
    width: 426px;
    height: 210px;
    box-sizing: border-box;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    padding: 16px;
    text-align: left;
}

.tel_box {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
}

.tel_icon {
    background-image: url('/images/sampleExperience/tel_icon.svg');
    width: 27px;
    height: 25px;
    display: inline-block;
}

.term_wrapper {
    display: inline-flex;
    line-height: 24px;
    margin-left: 16px;
}

.term_wrapper > span {
    cursor: pointer;
}

.check_private_term2 {
    width: 24px;
    height: 24px;
    background-image: url('/images/check_false.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.check_private_term2.true {
    background-image: url('/images/check_true.svg');
}

#dlg_private_join {
    margin: 0 auto;
}

#dlg_private_join table {
    margin-left: 16px;
}

#dlg_private_join table,
#dlg_private_join table th,
#dlg_private_join table td {
    border: 1px solid black;
    border-collapse: collapse;
}

#dlg_private_join table th {
    background-color: #f2f2f2;
}

#dlg_private_join table td {
    text-align: center;
}

#form_submit {
    width: 775px;
    margin: 0 auto;
}

#form_submit > div {
    margin-bottom: 19px;
}

#form_submit .form_item_box {
    display: flex;
    column-gap: 16px;
    align-items: center;
}

#form_submit > div > label {
    width: 100px;
    display: inline-block;
}

#form_submit .device_wrap {
    display: flex;
    align-items: center;
    column-gap: 32px;
    width: 100%;
}

#form_submit .device_item,
#form_submit .path_item {
    display: inline-flex;
    column-gap: 4px;
    cursor: pointer;
}

#form_submit .device_item > input {
    width: 16px;
    height: 16px;
    margin: 0;
    border: none;
    border-radius: 2px;
    appearance: none;
    background-image: url('/images/sampleExperience/check_off.svg');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

#form_submit .device_item > input:checked {
    background-image: url('/images/sampleExperience/check_on.svg');
}

#form_submit .device_item > input:focus,
#form_submit .path_item > input:focus {
    outline: none;
}

#form_submit .path_item > input {
    width: 16px;
    height: 16px;
    margin: 0;
    border: none;
    border-radius: 2px;
    appearance: none;
    background-image: url('/images/sampleExperience/radio_off.svg');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

#form_submit .path_item > input:checked {
    background-image: url('/images/sampleExperience/radio_on.svg');
}

#form_submit input[type='text'],
#form_submit input[type='email'],
#form_submit textarea {
    border: 1px solid #C7CCD0;
    border-radius: 8px;
    height: 42px;
    padding: 0 16px;
    flex: 1;
    box-sizing: border-box;
}

#form_submit textarea {
    resize: none;
    height: 64px;
    padding: 11px 16px;
    box-sizing: border-box;
}

#form_submit input[type='text']::placeholder,
#form_submit input[type='email']::placeholder,
#form_submit textarea::placeholder {
    color: #B3B3B3;
}

#form_submit input[type='text']:focus,
#form_submit input[type='email']:focus,
#form_submit textarea {
    outline: none;
}

#form_submit button {
    background-color: #293989;
    color: white;
    border: none;
    border-radius: 8px;
    text-align: center;
    height: 42px;
    display: block;
    cursor: pointer;
    line-height: 42px;
}