/* form */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    width: 100%;
    height: 5.6rem;
    margin: 0;
    padding: 0 1.6rem;
    border: 1px solid #D9D9D9;
    border-radius: 0;
    box-sizing: border-box;
    color: #000;
    line-height: 1;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: "Red Hat Display";
    background: #F3F3F3;
    box-shadow: none;
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #aaa;
    font-weight: 500;
}
input:focus {
    border-color: #000; 
    outline: none;
}

/* 자동완성 */
/* input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 40rem #fff inset;
} */

textarea {
    resize: none;
    width: 100%;
    height: 100%;
    padding: .8rem 1.2rem;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: "Red Hat Display";
    background: #F3F3F3;
    appearance: none;
}
textarea:focus {
    border-color: var(--color-point);
    outline: none;
}
textarea:focus + .count {
    color: var(--color-point);
}
textarea::placeholder {
    color: #c7c7c7;
}
.textarea_box {
    width: 100%;
    height: 28rem;
    padding: .8rem .4rem;
    border: 1px solid #D9D9D9;
    background: #F3F3F3;
}
.textarea_box.on {
    border-color: #000;
}

/* 유효성 체크*/
input.validity,
.phone_box.validity,
.textarea_box.validity {
    border-color: var(--point-color) !important;
}
p.validity {
    display: none;
    margin-top: .8rem;
    color: var(--point-color);
    font-size: 1.4rem;
} 

@media (max-width: 1919px) {
    input[type="text"],
    input[type="password"],
    input[type="tel"],
    input[type="email"],
    input[type="number"],
    input[type="url"],
    input[type="search"] {
        height: calc(100vw * (56 / 1919));
        padding: 0 calc(100vw * (16 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    textarea {
        padding: calc(100vw * (8 / 1919)) calc(100vw * (12 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .textarea_box {
        height: calc(100vw * (280 / 1919));
        padding: calc(100vw * (8 / 1919)) calc(100vw * (4 / 1919));
    }
    p.validity {
        margin-top: calc(100vw * (8 / 1919));
        font-size: calc(100vw * (14 / 1919));
    }
}

@media (max-width: 1180px) {
    input[type="text"],
    input[type="password"],
    input[type="tel"],
    input[type="email"],
    input[type="number"],
    input[type="url"],
    input[type="search"] {
        height: calc(100vw * (56 / 1180));
        padding: 0 calc(100vw * (16 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    textarea {
        padding: calc(100vw * (8 / 1180)) calc(100vw * (12 / 1180));
        font-size: calc(100vw * (18 / 1180));
    }
    .textarea_box {
        height: calc(100vw * (280 / 1180));
        padding: calc(100vw * (8 / 1180)) calc(100vw * (4 / 1180));
    }
    p.validity {
        margin-top: calc(100vw * (8 / 1180));
        font-size: calc(100vw * (16 / 1180));
    }
}

@media (max-width: 767px) {
    input[type="text"],
    input[type="password"],
    input[type="tel"],
    input[type="email"],
    input[type="number"],
    input[type="url"],
    input[type="search"] {
        height: calc(100vw * (112 / 767 ));
        padding: 0 calc(100vw * (32 / 767 ));
        font-size: calc(100vw * (32 / 767 ));
    }
    textarea {
        padding: calc(100vw * (24 / 767 )) calc(100vw * (24 / 767 ));
        font-size: calc(100vw * (32 / 767 ));
    }
    .textarea_box {
        height: calc(100vw * (560 / 767 ));
        padding: calc(100vw * (16 / 767 )) calc(100vw * (8 / 767 ));
    }
    p.validity {
        margin-top: calc(100vw * (16 / 767 ));
        font-size: calc(100vw * (24 / 767 ));
    }
}

/* radio, checkbox */
.radio,
.checkbox {
    display: inline-block;
    vertical-align: middle;
}
.radio label,
.checkbox label {
    cursor: pointer;
    margin-bottom: 0 !important;
}
.radio input,
.checkbox input {
    display: none;
}
.checkbox + .validity {
    padding-left: 3.8rem;
}
/* radio */
.radio span {
    position: relative;
    display: block;
    flex-wrap: nowrap;
    align-items: center;
    word-break: keep-all;
    padding: .5rem 1.4rem .5rem 3.8rem;
    color: #000;
    line-height: 1.35;
    font-size: 1.8rem;
    font-weight: 500;
}
.radio span::before {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
    position: absolute;
    left: 0;
    top: .4rem;
    background: url("../images/common/ico_radio.svg") no-repeat center center / 100% 100%;
}

.radio span em{
    margin: 0 .4rem;
}

.radio input:checked + span:before {
    background-image: url("../images/common/ico_radio_chk.svg");
}

/* checkbox */
.checkbox span::before {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
    position: absolute;
    left: 0;
    top: .4rem;
    background: url("../images/common/ico_checkbox.svg") no-repeat center center / 100% 100%;
}
.checkbox span {
    position: relative;
    display: block;
    flex-wrap: nowrap;
    align-items: center;
    word-break: keep-all;
    padding: .5rem 1.4rem .5rem 3.8rem;
    color: #000;
    line-height: 1.35;
    font-size: 1.8rem;
    font-weight: 500;
}
.checkbox input:checked + span:before {
    background-image: url("../images/common/ico_checkbox_chk.svg");
}

.checkbox span em {
    margin: 0 .4rem;
    color: var(--point-color);
}

/* checkbox, radio 정렬*/
.choice_list {
    display: flex;
}

/* ticket*/
.choice_list.type01 {
    gap: 4.8rem;
}
/* sponsorship*/
.choice_list.type02 { 
    gap: 4.8rem;
}

/* beome-a-dealer */
.choice_list.type03 {
    flex-wrap: wrap;
    gap: .8rem 4rem;
}
.support .form .form_list .choice_list.type03 {
    margin-bottom: 0;
}
.choice_list.type03 li {
    width: calc(100% / 2 - 2rem);
}
.choice_list.type04 {
    gap: 4.8rem;
}
.choice_list.type05 {
    gap: 4.8rem;
}
.support .form .form_list .choice_list.type05 {
    margin-bottom: 0;
}
@media (max-width: 1919px) {
    .checkbox + .validity {
        padding-left: calc(100vw * (38 / 1919));
    }
    /* radio */
    .radio span {
        padding: calc(100vw * (5 / 1919)) calc(100vw * (14 / 1919)) calc(100vw * (5 / 1919)) calc(100vw * (38 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .radio span::before {
        /* width: calc(100vw * (26 / 1919));
        height: calc(100vw * (26 / 1919)); */
        width: 26px;
        height: 26px;
        top: calc(100vw * (4 / 1919));
    }
    .radio span em{
        margin: 0 calc(100vw * (4 / 1919));
    }

    /* checkbox */
    .checkbox span::before {
        /* width: calc(100vw * (26 / 1919));
        height: calc(100vw * (26 / 1919)); */
        width: 26px;
        height: 26px;
        top: calc(100vw * (4 / 1919));
    }
    .checkbox span {
        padding: calc(100vw * (5 / 1919)) calc(100vw * (14 / 1919)) calc(100vw * (5 / 1919)) calc(100vw * (38 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .checkbox span em{
        margin: 0 calc(100vw * (4 / 1919));
    }
    
    /* ticket*/
    .choice_list.type01 {
        gap: calc(100vw * (48 / 1919));
    }
    /* sponsorship*/
    .choice_list.type02 { 
        gap: calc(100vw * (48 / 1919));
    }
    
    /* beome-a-dealer */
    .choice_list.type03 {
        gap: calc(100vw * (8 / 1919)) calc(100vw * (40 / 1919));
    }
    .choice_list.type03 li {
        width: calc(100% / 2 - calc(100vw * (20 / 1919)));
    }
    .choice_list.type04 {
        gap: calc(100vw * (48 / 1919));
    }
    .choice_list.type05 {
        gap: calc(100vw * (48 / 1919));
    }
}

@media (max-width: 1600px) {
    .radio span::before {
        width: 20px;
        height: 20px;
        top: calc(100vw * (2 / 1600));
    }

    /* checkbox */
    .checkbox span::before {
        width: 20px;
        height: 20px;
        top: calc(100vw * (2 / 1600));
    }
}

@media (max-width: 1180px) {
    .checkbox + .validity {
        padding-left: calc(100vw * (38 / 1180));
    }
    /* radio */
    .radio span {
        padding: calc(100vw * (4 / 1180)) calc(100vw * (14 / 1180)) calc(100vw * (4 / 1180)) calc(100vw * (38 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .radio span::before {
        /* width: calc(100vw * (26 / 1180));
        height: calc(100vw * (26 / 1180)); */
        width: 26px;
        height: 26px;
        top: calc(100vw * (4 / 1180));
    }
    .radio span em{
        margin: 0 calc(100vw * (4 / 1180));
    }

    /* checkbox */
    .checkbox span::before {
        /* width: calc(100vw * (26 / 1180));
        height: calc(100vw * (26 / 1180)); */
        width: 26px;
        height: 26px;
        top: calc(100vw * (4 / 1180));
    }
    .checkbox span {
        padding: calc(100vw * (4 / 1180)) calc(100vw * (14 / 1180)) calc(100vw * (4 / 1180)) calc(100vw * (38 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .checkbox span em{
        margin: 0 calc(100vw * (4 / 1180));
    }
    /* ticket*/
    .choice_list.type01 {
        gap: calc(100vw * (48 / 1180));
    }
    /* sponsorship*/
    .choice_list.type02 { 
        flex-wrap: wrap;
        gap: calc(100vw * (16 / 1180)) calc(100vw * (48 / 1180));
    }
    .choice_list.type02 li {
        width: calc(100vw * (441 / 1180));
    }
    
    /* beome-a-dealer */
    .choice_list.type03 {
        gap: calc(100vw * (16 / 1180)) calc(100vw * (40 / 1180));
    }
    .choice_list.type03 li {
        display: flex;
        width: calc(100% / 2 - calc(100vw * (20 / 1180)));
    }
    .choice_list.type04 {
        gap: calc(100vw * (40 / 1180));
    }
    .choice_list.type04 li {
        width: calc(100% / 2 - calc(100vw * (20 / 1180)));
    }
    .choice_list.type05 {
        gap: calc(100vw * (40 / 1180));
    }
    .choice_list.type05 li {
        width: calc(100% / 2 - calc(100vw * (20 / 1180)));
    }
}

@media (max-width: 1024px) {
    .checkbox + .validity {
        padding-left: calc(100vw * (28 / 1024));
    }
    .radio span {
        padding-left: calc(100vw * (28 / 1024));
    }
    .radio span::before {
        width: 20px;
        height: 20px;
        top: calc(100vw * (4 / 1024));
    }

    /* checkbox */
    .checkbox span {
        padding-left: calc(100vw * (28 / 1024));
    }
    .checkbox span::before {
        width: 20px;
        height: 20px;
        top: calc(100vw * (4 / 1024));
    }
}

@media (max-width: 840px) {
    .checkbox + .validity {
        padding-left: calc(100vw * (28 / 840));
    }
    .radio span {
        padding-left: calc(100vw * (28 / 840));
    }
    .radio span::before {
        width: 17px;
        height: 17px;
        top: calc(100vw * (3 / 840));
    }

    /* checkbox */
    .checkbox span {
        padding-left: calc(100vw * (28 / 840));
    }
    .checkbox span::before {
        width: 17px;
        height: 17px;
        top: calc(100vw * (3 / 840));
    }
}



@media (max-width: 767px) {
    .checkbox + .validity {
        padding-left: calc(100vw * (64 / 767));
    }
    /* radio */
    .radio span {
        padding: calc(100vw * (8 / 767)) calc(100vw * (28 / 767)) calc(100vw * (8 / 767)) calc(100vw * (64 / 767));
        font-size: calc(100vw * (32 / 767));
    }
    .radio span::before {
        width: 40px;
        height: 40px;
        top: calc(100vw * (8 / 767));
    }
    .radio span em{
        margin: 0 calc(100vw * (4 / 767));
    }

    /* checkbox */
    .checkbox span::before {
        /* width: calc(100vw * (40 / 767));
        height: calc(100vw * (40 / 767)); */
        width: 40px;
        height: 40px;
        top: calc(100vw * (8 / 767));
    }
    .checkbox span {
        padding: calc(100vw * (8 / 767)) calc(100vw * (28 / 767)) calc(100vw * (8 / 767)) calc(100vw * (64 / 767));
        font-size: calc(100vw * (32 / 767));
    }
    .checkbox span em{
        margin: 0 calc(100vw * (8 / 767));
    }
    /* ticket*/
    .choice_list.type01 {
        flex-direction: column;
        gap: calc(100vw * (24 / 767));
    }
    /* sponsorship*/
    .choice_list.type02 { 
        flex-direction: column;
        gap: calc(100vw * (24 / 767));
    }
    .choice_list.type02 li {
        width: 100%;
    }
    
    /* beome-a-dealer */
    .choice_list.type03 {
        flex-direction: column;
        gap: calc(100vw * (24 / 767));
    }
    .choice_list.type03 li {
        width: 100%;
    }
    .choice_list.type04 {
        flex-direction: column;
        gap: calc(100vw * (24 / 767));
    }
    .choice_list.type04 li {
        width: 100%;
    }
    .choice_list.type05 {
        flex-direction: column;
        gap: calc(100vw * (24 / 767));
    }
    .choice_list.type05 li {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .checkbox + .validity {
        padding-left: calc(100vw * (48 / 650));
    }
    .radio span {
        padding-left: calc(100vw * (48 / 650));
    }
    .radio span::before {
        width: 30px;
        height: 30px;
        top: calc(100vw * (8 / 650));
    }

    /* checkbox */
    .checkbox span {
        padding-left: calc(100vw * (48 / 650));
    }
    .checkbox span::before {
        width: 30px;
        height: 30px;
        top: calc(100vw * (8 / 650));
    }
}

@media (max-width: 430px) {
    .checkbox + .validity {
        padding-left: calc(100vw * (30 / 430));
    }
    .radio span {
        padding-left: calc(100vw * (30 / 430));
    }
    .radio span::before {
        width: 20px;
        height: 20px;
        top: calc(100vw * (5 / 430));
    }

    /* checkbox */
    .checkbox span {
        padding-left: calc(100vw * (30 / 430));
    }
    .checkbox span::before {
        width: 20px;
        height: 20px;
        top: calc(100vw * (5 / 430));
    }
}


/* select box */
.select_box {
    position: relative;
    width: 100%;
}
.select_box .txt {
    position: relative;;
    height: 5.6rem;
    padding: 0 1.6rem;
    border: 1px solid #D9D9D9;
    line-height: 5.6rem;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    background: #F3F3F3;
    cursor: pointer;
}
.select_box .txt::after {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: 50%;
    width: 2.4rem;
    height: 2.4rem;
    background: url("../images/common/ico_arrow_select.svg") no-repeat center center / 100% 100%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform .2s;
}
.select_box.on .txt::after {
    transform: translateY(-50%) rotate(-180deg);
}
.select_box.on .txt {
    border-color: #000;
}
.select_box .select_inner {
    display: none;
    position: absolute;
    left: 0;
    top: 6.7rem;
    width: 100%;
    padding: .8rem .4rem;
    border: 1px solid #D9D9D9;
    z-index: 10;
}
.select_box .select_inner .select_list {
    max-height: 26.6rem;
    overflow-y: auto;
    padding: 2.4rem 2rem;
    color: #999;
    z-index: 10;
}
.select_box.on .select_inner {
    display: block;
    border: 1px solid #000;
    background: #F3F3F3;
}
.select_box .select_inner .select_list li {
    margin-top: 1.8rem;
    color: #000;
    line-height: 1;
    font-size: 1.8rem;
    font-weight: 500;
    opacity: .3;
    cursor: pointer;
    transition: all .2s;
}
.select_box .select_inner .select_list li:first-child {
    margin-top: 0;
}

.select_box .select_inner .select_list li.current {
    opacity: 1;
    font-weight: 700;
}

.select_box.on .select_inner {
    display: block;
}
.select_box.on .txt a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* only pc hover */
@media (hover: hover) and (min-width: 1181px) {
    .select_box .select_inner .select_list li:hover {
        opacity: 1;
    }
}

@media (max-width: 1919px) {
    .select_box .txt {
        height: calc(100vw * (56 / 1919));
        padding: 0 calc(100vw * (16 / 1919));
        line-height: calc(100vw * (56 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .select_box .txt::after {
        right: calc(100vw * (16 / 1919));
        width: calc(100vw * (24 / 1919));
        height: calc(100vw * (24 / 1919));
    }
    .select_box .select_inner {
        top: calc(100vw * (67 / 1919));
        padding: calc(100vw * (8 / 1919)) calc(100vw * (4 / 1919));
    }
    .select_box .select_inner .select_list {
        max-height: calc(100vw * (266 / 1919));
        padding: calc(100vw * (24 / 1919)) calc(100vw * (20 / 1919));
    }
    .select_box .select_inner .select_list li {
        margin-top: calc(100vw * (18 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
}

@media (max-width: 1180px) {
    .select_box .txt {
        height: calc(100vw * (56 / 1180));
        padding: 0 calc(100vw * (16 / 1180));
        line-height: calc(100vw * (56 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .select_box .txt::after {
        right: calc(100vw * (16 / 1180));
        width: calc(100vw * (24 / 1180));
        height: calc(100vw * (24 / 1180));
    }
    .select_box .select_inner {
        top: calc(100vw * (64 / 1180));
        padding: calc(100vw * (8 / 1180)) calc(100vw * (4 / 1180));
    }
    .select_box .select_inner .select_list {
        max-height: calc(100vw * (354 / 1180));
        padding: calc(100vw * (24 / 1180)) calc(100vw * (20 / 1180));
    }
    .select_box .select_inner .select_list li {
        margin-top: calc(100vw * (30 / 1180));
        font-size: calc(100vw * (18 / 1180));
    }
}

@media (max-width: 767px) {
    .select_box .txt {
        height: calc(100vw * (112 / 767));
        padding: 0 calc(100vw * (32 / 767));
        line-height: calc(100vw * (112 / 767));
        font-size: calc(100vw * (32 / 767));
    }
    .select_box .txt::after {
        right: calc(100vw * (32 / 767));
        width: calc(100vw * (48 / 767));
        height: calc(100vw * (48 / 767));
    }
    .select_box .select_inner {
        top: calc(100vw * (120 / 767));
        padding: calc(100vw * (16 / 767)) calc(100vw * (8 / 767));
    }
    .select_box .select_inner .select_list {
        max-height: calc(100vw * (466  / 767));
        padding: calc(100vw * (16 / 767)) calc(100vw * (16 / 767));
    }
    .select_box .select_inner .select_list li {
        margin-top: calc(100vw * (40 / 767));
        font-size: calc(100vw * (28 / 767));
    }
}

/* file */
.file_box {
    position: relative;
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.file_box label {
    position: absolute;
    width: 100%;
    height: 100%;  
    cursor: pointer;
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 0;
    overflow: hidden;
    opacity: 0;
}
.file_box input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.file_box input[type="text"] {
    display: block;
    height: 100%;
    border-style: dashed;
    padding: 0;
    text-align: center;
}
.file_box input[type="text"]::placeholder {
    color: #666;
    font-weight: 400;
}
.file_list li {
    display: flex;
    margin-top: 1.2rem;
}
.file_list li:first-child {
    margin-top: 2rem;
}
.file_list li .txt {
    position: relative;
    width: calc(100% - 5.6rem);
}
.file_list li .txt::before {
    content: "";
    position: absolute;
    left: 1.6rem;
    top: 50%;
    width: 2rem;
    height: 2rem;
    transform: translateY(-50%);
    background: url("../images/common/ico_file.svg") no-repeat left top / 100% 100%;
}

.file_list li input[type="text"] {
    height: 100%;
    padding-left: 4.4rem;
    font-size: 1.4rem;
    font-weight: 400;
    background: #fff;
}
.file_list li input[type="text"]:focus {
    border-color: #D9D9D9;
}
.file_list li .delete {
    position: relative;
    width: 5.6rem;
    height: 5.6rem;
    background: none;
    text-indent: -9999em;
}

.file_list li .delete::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.4rem;
    height: 2.4rem;
    transform: translate(-50%, -50%);
    background: url("../images/common/ico_delete.svg") no-repeat left top / 100% 100%;
}

/* calendar */
.calendar {
    position: relative;
    display: flex;
    border: 1px solid #D9D9D9;
    text-align: left;
    background: #F3F3F3;
}
.calendar input {
    position: relative;
    border: none;
    padding: 0 1.6rem;
    height: 5.6rem;
    cursor: pointer;
    border-radius: 0;
    background: transparent;
    text-align: left;
    background: none;
    color: #000;
    font-size: 1.8rem;
    z-index: 1;
    appearance: none;
    font-weight: 500;
    font-family: "Red Hat Display";
}
.calendar::before {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: 50%;
    width: 2.4rem;
    height: 2.4rem;
    text-indent: -9999em;
    background: url("../images/common/ico_calendar.svg") no-repeat center center / 100% 100%;
    transform: translateY(-50%);
}

@media (max-width: 1919px) {
    .file_box {
        height: calc(100vw * (100 / 1919));
    }
    .file_list li {
        margin-top: calc(100vw * (12 / 1919));
    }
    .file_list li:first-child {
        margin-top: calc(100vw * (20 / 1919));
    }
    .file_list li .txt {
        width: calc(100% - calc(100vw * (56 / 1919)));
    }
    .file_list li .txt::before {
        left: calc(100vw * (16 / 1919));
        width: calc(100vw * (20 / 1919));
        height: calc(100vw * (20 / 1919));
    }
    
    .file_list li input[type="text"] {
        padding-left: calc(100vw * (44 / 1919));
        font-size: calc(100vw * (14 / 1919));
    }
    .file_list li .delete {
        width: calc(100vw * (56 / 1919));
        height: calc(100vw * (56 / 1919));
    }
    
    .file_list li .delete::before {
        width: calc(100vw * (24 / 1919));
        height: calc(100vw * (24 / 1919));
    }

    .calendar input {
        padding: 0 calc(100vw * (16 / 1919));
        height:  calc(100vw * (56 / 1919));
        font-size: calc(100vw * (18 / 1919));
    
    }
    .calendar::before {
        right: calc(100vw * (16 / 1919));
        width: calc(100vw * (24 / 1919));
        height: calc(100vw * (24 / 1919));
    }
}

@media (max-width: 1180px) {
    .file_box {
        height: calc(100vw * (100 / 1180));
    }
    .file_list li {
        margin-top: calc(100vw * (12 / 1180));
    }
    .file_list li:first-child {
        margin-top: calc(100vw * (20 / 1180));
    }
    .file_list li .txt {
        width: calc(100% - calc(100vw * (56 / 1180)));
    }
    .file_list li .txt::before {
        left: calc(100vw * (16 / 1180));
        width: calc(100vw * (20 / 1180));
        height: calc(100vw * (20 / 1180));
    }
    
    .file_list li input[type="text"] {
        padding-left: calc(100vw * (44 / 1180));
        font-size: calc(100vw * (16 / 1180));
    }
    .file_list li .delete {
        width: calc(100vw * (56 / 1180));
        height: calc(100vw * (56 / 1180));
    }
    
    .file_list li .delete::before {
        width: calc(100vw * (24 / 1180));
        height: calc(100vw * (24 / 1180));
    } 
    .calendar {
        text-align: left;
        flex-direction: column;
        font-size: calc(100vw * (20 / 1180));
    }
    .calendar input {
        height: calc(100vw * (56 / 1180));
        padding: 0 calc(100vw * (16 / 1180));
        line-height: calc(100vw * (56 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .calendar::before {
        right: calc(100vw * (16 / 1180));
        width: calc(100vw * (24 / 1180));
        height: calc(100vw * (24 / 1180));
    }
}

@media (max-width: 767px) {
    .file_box {
        height: calc(100vw * (200 / 767));
    }
    .file_box input[type="text"] {
        border-width: calc(100vw * (2 / 767));
    }
    .file_list li {
        margin-top: calc(100vw * (16 / 767));
    }
    .file_list li:first-child {
        margin-top: calc(100vw * (24 / 767));
    }
    .file_list li .txt {
        width: calc(100% - calc(100vw * (56 / 767)));
    }
    .file_list li .txt::before {
        left: calc(100vw * (38 / 767));
        width: calc(100vw * (40 / 767));
        height: calc(100vw * (40 / 767));
    }
    
    .file_list li input[type="text"] {
        padding-left: calc(100vw * (98 / 767));
        font-size: calc(100vw * (28 / 767));
    }
    .file_list li .delete {
        width: calc(100vw * (112 / 767));
        height: calc(100vw * (134 / 767));
    }
    
    .file_list li .delete::before {
        width: calc(100vw * (48 / 767));
        height: calc(100vw * (48 / 767));
    } 

    .calendar input {
        height: calc(100vw * (112 / 767));
        padding: 0 calc(100vw * (32 / 767));
        line-height: calc(100vw * (112 / 767));
        font-size: calc(100vw * (32 / 767));
    }

    .calendar::before {
        right: calc(100vw * (32  / 767));
        width: calc(100vw * (48 / 767));
        height: calc(100vw * (48 / 767));
    }
}

/* support form */
.support .form.line {
    position: relative;
    padding-bottom: 10rem;
}
.support .form.line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: .8rem;
    background: #F3F3F3;
}
.support .form .hgroup {
    position: relative;
    margin-top: 10rem;
    margin-bottom: 2rem;
}
.support .form .hgroup .num {
    display: block;
    margin-bottom: .5rem;
    line-height: 1.25;
    color: var(--point-color);
    font-size: 1.6rem;
    font-weight: 900;
}
.support .form .hgroup h3 {
    line-height: 1.45;
    font-size: 3.2rem;
    font-weight: 900;
}
.support .form .hgroup .txt {
    margin-top: 4rem;
    line-height: 1.6;
    font-size: 1.8rem;
}
.support .form .hgroup .notice {
    margin-top: 4rem;
    padding: 3.2rem 4rem;
    background: #F3F3F3;
}
.support .form .hgroup .notice .dot_list li {
    position: relative;
    margin-top: .4rem;
    padding-left: 1.6rem;
    line-height: 1.6;
    font-size: 1.8rem;
}
.support .form .hgroup .notice .dot_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.3rem;
    width: .4rem;
    height: .4rem;
    border-radius: 99rem;
    background: #000;
}

.support .form .hgroup .notice .title {
    line-height: 1.45;
    font-size: 2.4rem;
    font-weight: 900;
}
.support .form .hgroup .notice .num_list {
    margin-top: .8rem;
}
.support .form .hgroup .notice .num_list li {
    list-style: decimal;
    margin-top: .4rem;
    margin-left: 2.4rem;
    line-height: 1.6;
    font-size: 1.8rem;
}
.support .form .hgroup .txt a {
    position: relative;
    font-weight: 700;
}
.support .form .hgroup .txt a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #000;
}
.support .form .hgroup .email {
    position: relative;
    padding-left: 3rem;
    margin-left: 1.2rem;
    color: var(--point-color);
    font-weight: 700;
}
.support .form .hgroup .email::before {
    content: "";
    position: absolute;
    left: 0;
    top: .1rem;
    width: 2rem;
    height: 2rem;
    background: url("../images/support/ico_email_red.svg") no-repeat left top / 100% 100%;
}

.support .form .write {
    position: relative;
    padding-top: 5.2rem;   
}
.support .form .write::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #000;
}
.support .form .form_list > li {
    margin-top: 3.6rem;
}
.support .form .form_list > li:first-child {
    margin-top: 0;
}
.support .form .form_list > li:last-child .choice_list {
    margin-bottom: 0;
}
.support .form .form_list .group {
    display: flex;
    gap: 4rem;
}
.support .form .form_list .group .block {
    display: flex;
    flex-direction: column;
    margin-top: 1.2rem;
}
.support .form .form_list .group:first-child .block {
    margin-top: 0;
}
.support .form .form_list .group.type01 .block {
    width: 100%;
}
.support .form .form_list .group.type02 .block {
    width: calc(100% / 2);
}
.support .form .form_list .group.type03 .block {
    width: calc(100% / 3);
}
.support .form .form_list .group.type04 .block {
    width: calc(100% / 4);
}

.support .form .form_list label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    line-height: 1.45;
    font-size: 1.6rem;
}
.support .form .form_list label em {
    display: inline-block;
    margin: 0 .4rem;
    color: var(--point-color);
    font-size: 1.6rem;
    font-weight: 500;
}
.support .form .form_list label .mark {
    display: inline-block;
    margin-top: .1rem;
    color: #666;
    font-size: 1.4rem;
    font-weight: 500;
}
.support .form .form_list .small {
    font-size: 1.4rem;
}

/* phone */
.support .form .form_list .phone_box {
    display: flex;
    /* height: 100%; */
    border: 1px solid #D9D9D9;
}
.support .form .form_list .phone_box.on {
    border-color: #000;
}
.support .form .form_list .phone_box .select_box {
    /* brain 240212 width: 10rem; */
    width: 15rem;
}
.support .form .form_list .phone_box .select_box .txt {
    height: 5.4rem;
    line-height: 5.4rem;
    border: none;
}
.support .form .form_list .phone_box .select_box.on .select_inner {
    left: -.1rem;
    top: 6.6rem;
}
.support .form .form_list .phone_box input[type="tel"],
.support .form .form_list .phone_box input[type="text"] {
    width: calc(100% - 15rem);
    height: 5.4rem;
    padding-left: 0;
    border: none;
}
.support .form .form_list .phone_box input[type="tel"]:focus,
.support .form .form_list .phone_box input[type="text"]:focus {
    border: none;
}
.support .form .form_list .question {
    margin-top: .4rem;
    line-height: 1.45;
    font-size: 1.6rem;
}

.support .form .form_list li:first-child .question {
    margin-top: 0;
}
.support .form .form_list .choice_list {
    margin-top: 1.6rem;
    margin-bottom: 2.4rem;
}
.support .form .form_list .choice_list:first-child {
    margin-top: 0;
}
.support .form .agree {
    position: relative;
    margin-top: 10rem;
    padding-top: 5.2rem;
}
.support .form .agree::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: #000;
}
.support .form .agree .agree_list li {
    margin-top: 2rem;
}
.support .form .agree .agree_list li:first-child {
    margin-top: 0;
}
.support .form .btn_area {
    margin-top: 10rem;
    text-align: center;
}
.support .form .btn_area .btn_black.large {
    min-width: 16.8rem;
    text-align: center;
}

/* only pc hover */
@media (hover: hover) and (min-width: 1181px) {
    .support .form .btn_area .btn_black.large:hover {
        border-color: var(--color-point);
    }
}

@media (max-width: 1919px) {
    .support .form.line {
        padding-bottom: calc(100vw * (100 / 1919));
    }
    .support .form.line::before {
        height: calc(100vw * (8 / 1919));
    }

    .support .form .hgroup {
        margin-top: calc(100vw * (100 / 1919));
        margin-bottom: calc(100vw * (20 / 1919));
    }
    .support .form .hgroup .num {
        margin-bottom: calc(100vw * (5 / 1919));
        font-size: calc(100vw * (16 / 1919));
    }
    .support .form .hgroup h3 {
        font-size: calc(100vw * (32 / 1919));
    }
    .support .form .hgroup .txt {
        margin-top: calc(100vw * (40 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form .hgroup .notice {
        margin-top: calc(100vw * (40 / 1919));
        padding: calc(100vw * (32 / 1919)) calc(100vw * (40 / 1919));
    }
    .support .form .hgroup .notice .dot_list li {
        margin-top: calc(100vw * (4 / 1919));
        padding-left: calc(100vw * (16 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form .hgroup .notice .dot_list li::before {
        top: calc(100vw * (13 / 1919));
        width: 4px;
        height: 4px;
    }

    .support .form .hgroup .notice .title {
        font-size: calc(100vw * (24 / 1919));
    }
    .support .form .hgroup .notice .num_list {
        margin-top: calc(100vw * (8 / 1919));
    }
    .support .form .hgroup .notice .num_list li {
        margin-top: calc(100vw * (4 / 1919));
        margin-left: calc(100vw * (24 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form .hgroup .txt a::before {
        height: calc(100vw * (2 / 1919));
    }
    .support .form .hgroup .email {
        padding-left: calc(100vw * (3 / 1919));
        margin-left: calc(100vw * (12 / 1919));
    }
    .support .form .hgroup .email::before {
        top: calc(100vw * (1 / 1919));
        width: calc(100vw * (2 / 1919));
        height: calc(100vw * (2 / 1919));
    }

    .support .form .write {
        padding-top: calc(100vw * (52 / 1919));
    }
    .support .form .write::before {
        height: calc(100vw * (2 / 1919));
    }
    .support .form .form_list > li {
        margin-top: calc(100vw * (36 / 1919));
    }
    .support .form .form_list .group {
        gap: calc(100vw * (40 / 1919));
    }
    .support .form .form_list .group .block {
        margin-top: calc(100vw * (12 / 1919));
    }
    .support .form .form_list label {
        margin-bottom: calc(100vw * (10 / 1919));
        font-size: calc(100vw * (16 / 1919));
    }
    .support .form .form_list label em {
        margin: 0 calc(100vw * (4 / 1919));
        font-size: calc(100vw * (16 / 1919));
    }
    .support .form .form_list label .mark {
        margin-top: calc(100vw * (1 / 1919));
        font-size: calc(100vw * (14 / 1919));
    }
    .support .form .form_list .small {
        font-size: calc(100vw * (14 / 1919));
    }
    
    /* phone */
    .support .form .form_list .phone_box .select_box {
        /* brain 240212 width: calc(100vw * (100 / 1919)); */
        width: calc(100vw * (150 / 1919));
    }
    .support .form .form_list .phone_box .select_box .txt {
        height: calc(100vw * (54 / 1919));
        line-height: calc(100vw * (54 / 1919));
    }
    .support .form .form_list .phone_box input[type="tel"],
    .support .form .form_list .phone_box input[type="text"] {
        width: calc(100% - calc(100vw * (150 / 1919)));
        height: calc(100vw * (54 / 1919));
    }
    .support .form .form_list .phone_box .select_box.on .select_inner {
        left: calc(100vw * (-1 / 1919));
        top: calc(100vw * (66 / 1919));
    }
    .support .form .form_list .question {
        margin-top: calc(100vw * (4 / 1919));
        font-size: calc(100vw * (16 / 1919));
    }
    .support .form .form_list .choice_list {
        margin-top: calc(100vw * (16 / 1919));
        margin-bottom: calc(100vw * (24 / 1919));
    }
    
    .support .form .agree {
        margin-top: calc(100vw * (100 / 1919));
        padding-top: calc(100vw * (58 / 1919));
    }
    .support .form .agree::before{
        height: calc(100vw * (6 / 1919));
    }
    .support .form .agree .agree_list li {
        margin-top: calc(100vw * (20 / 1919));
    }
    .support .form .btn_area {
        margin-top: calc(100vw * (100 / 1919));
    }
    .support .form .btn_area .btn_black.large {
        min-width: calc(100vw * (168 / 1919));
    }
}

@media (max-width: 1600px) {
    .support .form .hgroup .notice .dot_list li::before {
        top: calc(100vw * (11 / 1600));
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 1180px) {
    .support .form.line {
        padding-bottom: calc(100vw * (100 / 1180));
    }
    .support .form.line::before {
        height: calc(100vw * (8 / 1180));
    }
    .support .form .hgroup {
        margin-top: calc(100vw * (100 / 1180));
        margin-bottom: calc(100vw * (20 / 1180));
    }
    .support .form .hgroup .num {
        margin-bottom: calc(100vw * (5 / 1180));
        font-size: calc(100vw * (16 / 1180));
    }
    .support .form .hgroup h3 {
        font-size: calc(100vw * (32 / 1180));
    }
    .support .form .hgroup .txt {
        margin-top: calc(100vw * (40 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .support .form .hgroup .notice {
        margin-top: calc(100vw * (40 / 1180));
        padding: calc(100vw * (32 / 1180)) calc(100vw * (40 / 1180));
    }
    .support .form .hgroup .notice .dot_list li {
        margin-top: calc(100vw * (4 / 1180));
        padding-left: calc(100vw * (16 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .support .form .hgroup .notice .dot_list li::before {
        top: calc(100vw * (13 / 1180));
        width: 4px;
        height: 4px;
    }

    .support .form .hgroup .notice .title {
        font-size: calc(100vw * (24 / 1180));
    }
    .support .form .hgroup .notice .num_list {
        margin-top: calc(100vw * (8 / 1180));
    }
    .support .form .hgroup .notice .num_list li {
        margin-top: calc(100vw * (4 / 1180));
        margin-left: calc(100vw * (24 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .support .form .hgroup .txt a::before {
        height: calc(100vw * (2 / 1180));
    }
    .support .form .hgroup .email {
        display: block;
        margin-top: calc(100vw * (6 / 1180));
        padding-left: 0;
        margin-left: 0;
    }
    .support .form .hgroup .email::before {
        top: calc(100vw * (1 / 1180));
        width: calc(100vw * (2 / 1180));
        height: calc(100vw * (2 / 1180));
    }

    .support .form .write {
        padding-top: calc(100vw * (52 / 1180));
    }
    .support .form .write::before {
        height: calc(100vw * (2 / 1180));
    }
    .support .form .form_list > li {
        margin-top: calc(100vw * (36 / 1180));
    }
    .support .form .form_list .group {
        gap: calc(100vw * (40 / 1180));
    }
    .support .form .form_list .group .block {
        margin-top: calc(100vw * (12 / 1180));
    }

    .support .form .form_list .group.type04 {
        flex-wrap: wrap;
        gap: calc(100vw * (12 / 1180)) calc(100vw * (40 / 1180));
    }
    .support .form .form_list .group.type04 .block {
        width: calc(100% / 2 - calc(100vw * (20 / 1180)));
    }
    
    .support .form .form_list label {
        margin-bottom: calc(100vw * (10 / 1180));
        font-size: calc(100vw * (18 / 1180));
    }
    .support .form .form_list label em {
        margin: 0 calc(100vw * (4 / 1180));
        font-size: calc(100vw * (16 / 1180));
    }
    .support .form .form_list label .mark {
        margin-top: calc(100vw * (1 / 1180));
        font-size: calc(100vw * (14 / 1180)); 
    }
    .support .form .form_list .small {
        font-size: calc(100vw * (16 / 1180));
    }
    
    /* phone */
    .support .form .form_list .phone_box .select_box {
        width: calc(100vw * (150 / 1180));
    }
    .support .form .form_list .phone_box .select_box .txt {
        height: calc(100vw * (54 / 1180));
        line-height: calc(100vw * (54 / 1180));
    }
    .support .form .form_list .phone_box input[type="tel"],
    .support .form .form_list .phone_box input[type="text"] {
        width: calc(100% - calc(100vw * (150 / 1180)));
        height: calc(100vw * (54 / 1180));
    }
    .support .form .form_list .phone_box .select_box.on .select_inner {
        left: calc(100vw * (-1 / 1180));
        top: calc(100vw * (63 / 1180));
    }
    .support .form .form_list .question {
        margin-top: calc(100vw * (4 / 1180)); 
        font-size: calc(100vw * (18 / 1180));
    }
    .support .form .form_list .choice_list {
        margin-top: calc(100vw * (16 / 1180));
        margin-bottom: calc(100vw * (24 / 1180));
        /* gap: calc(100vw * (40 / 1180)); */
    }
    /* .support .form .form_list .choice_list.type01 li {
        width: calc(100% / 2);
    
    } */
    .support .form .agree {
        margin-top: calc(100vw * (100 / 1180));
        padding-top: calc(100vw * (58 / 1180));
    }
    .support .form .agree::before{
        height: calc(100vw * (6 / 1180));
    }
    .support .form .agree .agree_list li {
        margin-top: calc(100vw * (24 / 1180));
    }
    .support .form .btn_area {
        margin-top: calc(100vw * (100 / 1180));
    }
    .support .form .btn_area .btn_black.large {
        min-width: calc(100vw * (178 / 1180));
    }
}

@media (max-width: 1024px) {
    .support .form .hgroup .notice .dot_list li::before {
        top: calc(100vw * (11 / 1024));
        width: 3px;
        height: 3px;
    }

}

@media (max-width: 767px) {
    .support .form.line {
        padding-bottom: calc(100vw * (100 / 767));
    }
    .support .form.line::before {
        height: calc(100vw * (16 / 767));
    }

    .support .form .hgroup {
        margin-top: calc(100vw * (100 / 767));
        margin-bottom: calc(100vw * (20 / 767));
    }
    .support .form .hgroup .num {
        margin-bottom: calc(100vw * (5 / 767));
        font-size: calc(100vw * (24 / 767));
    }
    .support .form .hgroup h3 {
        font-size: calc(100vw * (48 / 767));
    }
    .support .form .hgroup .txt {
        margin-top: calc(100vw * (40 / 767));
        font-size: calc(100vw * (32 / 767));
    }
    .support .form .hgroup .notice {
        margin-top: calc(100vw * (40 / 767));
        padding: calc(100vw * (32 / 767)) calc(100vw * (40 / 767));
    }
    .support .form .hgroup .notice .dot_list li {
        margin-top: calc(100vw * (4 / 767));
        padding-left: calc(100vw * (24 / 767));
        font-size: calc(100vw * (32 / 767));
    }
    .support .form .hgroup .notice .dot_list li::before {
        top: calc(100vw * (24 / 767));
        width: 8px;
        height: 8px;
    }

    .support .form .hgroup .notice .title {
        font-size: calc(100vw * (40 / 767));
    }
    .support .form .hgroup .notice .num_list {
        margin-top: calc(100vw * (8 / 767));
    }
    .support .form .hgroup .notice .num_list li {
        margin-top: calc(100vw * (4 / 767));
        margin-left: calc(100vw * (44 / 767));
        font-size: calc(100vw * (32 / 767));
    }
    .support .form .hgroup .txt a::before {
        height: calc(100vw * (2 / 767));
    }
    .support .form .hgroup .email {
        margin-top: calc(100vw * (6 / 767));
    }
    .support .form .hgroup .email::before {
        top: calc(100vw * (1 / 767));
        width: calc(100vw * (2 / 767));
        height: calc(100vw * (2 / 767));
    }

    .support .form .write {
        padding-top: calc(100vw * (52 / 767));
    }
    .support .form .write::before {
        height: calc(100vw * (2 / 767));
    }
    .support .form .form_list > li {
        margin-top: 0;
    }
    .support .form .form_list .group {
        display: block;
    }
    .support .form .form_list .group .block {
        margin-top: calc(100vw * (24 / 767));
    }
    .support .form .form_list .group:first-child .block {
        margin-top: calc(100vw * (52 / 767));
    }

    .support .form .form_list .group.type04 .block {
        width: 100%;
        margin-top: calc(100vw * (24 / 767));
    }
    .support .form .form_list .group.type04 .block:first-child {
        margin-top: calc(100vw * (52 / 767));
    }

    .support .form .form_list li:first-child .group:first-child .block:first-child {
        margin-top: 0;
    }
    
    .support .form .form_list label {
        margin-bottom: calc(100vw * (12 / 767));
        font-size: calc(100vw * (28 / 767));
    }
    .support .form .form_list label em {
        margin: 0 calc(100vw * (4 / 767));
        font-size: calc(100vw * (24 / 767));
    }
    .support .form .form_list label .mark {
        margin-top: calc(100vw * (4 / 767));
        font-size: calc(100vw * (24 / 767)); 
    }
    .support .form .form_list .small {
        font-size: calc(100vw * (24 / 767));
    }

    .support .form .form_list .group.type02 .block {
        width: 100%;
    }
    
    /* phone */
    .support .form .form_list .phone_box .select_box {
        /* brain 240212 width: calc(100vw * (180 / 767)); */
        width: calc(100vw * (320 / 767));
    }
    .support .form .form_list .phone_box .select_box .txt {
        height: calc(100vw * (110 / 767));
        line-height: calc(100vw * (110 / 767));
    }
    .support .form .form_list .phone_box input[type="tel"],
    .support .form .form_list .phone_box input[type="text"] {
        width: calc(100% - calc(100vw * (180 / 767)));
        height: calc(100vw * (110 / 767));
    }
    .support .form .form_list .phone_box .select_box.on .select_inner {
        left: calc(100vw * (-1 / 767));
        top: calc(100vw * (120 / 767));
    }
    .support .form .form_list .question {
        margin-top: calc(100vw * (4 / 767)); 
        font-size: calc(100vw * (28 / 767));
    }
    .support .form .form_list .choice_list {
        /* flex-direction: column; */
        margin-top: calc(100vw * (32 / 767));
        margin-bottom: calc(100vw * (24 / 767));
        /* gap: calc(100vw * (32 / 767)); */
    }
    .support .form .form_list .choice_list.type01 li {
        /* width: calc(100% / 2); */
        width: 100%;
    }
    .support .form .agree {
        margin-top: calc(100vw * (100 / 767));
        padding-top: calc(100vw * (58 / 767));
    }
    .support .form .agree::before{
        height: calc(100vw * (6 / 767));
    }
    .support .form .agree .agree_list li {
        margin-top: calc(100vw * (36 / 767));
    }
    .support .form .btn_area {
        margin-top: calc(100vw * (100 / 767));
    }
    .support .form .btn_area .btn_black.large {
        min-width: calc(100vw * (290 / 767));
    }
}

@media (max-width: 650px) {
    .support .form .hgroup .notice .dot_list li::before {
        top: calc(100vw * (20 / 650));
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 430px) {
    .support .form .hgroup .notice .dot_list li::before {
        top: calc(100vw * (12 / 430));
        width: 4px;
        height: 4px;
    }
}

.support .form .input_list li {
    display: flex;
    align-items: flex-end;
    width: calc(100% - 5.6rem);
}
.support .form .input_list li.add {
    width: 100%;
}
.support .form .input_list li:first-child {
    margin-top: 0;
}
.support .form .input_list .list {
    /* brain 240711 */
    width: 44.8rem;
    margin-top: 1.2rem;
    margin-left: 2rem;
}
.support .form .input_list li:first-child .list {
    margin-top: 0;
}
.support .form .input_list .list:first-child {
    margin-left: 0;
}
.support .form .input_list .delete {
    position: relative;
    width: 5.6rem;
    height: 5.6rem;
    margin-top: 1.2rem;
    background: none;
    text-indent: -9999em;
}
.support .form .input_list .delete::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.4rem;
    height: 2.4rem;
    transform: translate(-50%, -50%);
    background: url("../images/common/ico_delete.svg") no-repeat left top / 100% 100%;
}
.support .form .btn_add {
    margin-top: 2rem;
}
.support .form .btn_add button {
    display: block;
    width: calc(100% - 5.6rem);
    height: 5.6rem;
    border: 1px solid #D9D9D9;
    text-align: center;
    line-height: 5.6rem;
    color: #000;
    font-size: 1.6rem; 
}

.support .form .input_list.mo {
    display: none;
}
.support .form .btn_add.mo {
    display: none;
}

@media (max-width: 1919px) {
    .support .form .input_list li {
        width: calc(100% - calc(100vw * (56 / 1919)));
    }
    .support .form .input_list .list {
        /* brain 240711 */
        width: calc(100vw * (448 / 1919));
        margin-top: calc(100vw * (12 / 1919));
        margin-left: calc(100vw * (20 / 1919));
    }
    .support .form .input_list .delete {
        width: calc(100vw * (56 / 1919));
        height: calc(100vw * (56 / 1919));
        margin-top: calc(100vw * (12 / 1919));
    }
    .support .form .input_list .delete::before {
        width: calc(100vw * (24 / 1919));
        height: calc(100vw * (24 / 1919));
    }
    .support .form .btn_add {
        margin-top: calc(100vw * (20 / 1919));
    }
    .support .form .btn_add button {
        width: calc(100% - calc(100vw * (56 / 1919)));
        height: calc(100vw * (56 / 1919));
        line-height: calc(100vw * (56 / 1919));
        font-size: calc(100vw * (16 / 1919));

    }
}

@media (max-width: 1180px) {
    .support .form .input_list li {
        width: calc(100% - calc(100vw * (56 / 1180)));
    }
    /* brain 240717 */
    /* .support .form .input_list .item { */
    .support .form .input_list .list {
        /* brain 240716 */
        /* width: calc(100vw * (328 / 1180)); */
        /* margin-top: calc(100vw * (12 / 1180)); */
        margin-left: calc(100vw * (20 / 1180));
    }
    .support .form .input_list .delete {
        width: calc(100vw * (56 / 1180));
        height: calc(100vw * (56 / 1180));
        margin-top: calc(100vw * (12 / 1180));
    }
    .support .form .input_list .delete::before {
        width: calc(100vw * (24 / 1180));
        height: calc(100vw * (24 / 1180));
    }
    .support .form .btn_add {
        margin-top: calc(100vw * (20 / 1180));
    }
    .support .form .btn_add button {
        width: calc(100% - calc(100vw * (56 / 1180)));
        height: calc(100vw * (56 / 1180));
        line-height: calc(100vw * (56 / 1180));
        font-size: calc(100vw * (18 / 1180));

    }
}

@media (max-width: 767px) {
    .support .form .input_list li {
        position: relative;
        flex-direction: column;
        margin-top: calc(100vw * (16 / 767));
        border: 1px solid #D9D9D9;
        padding: calc(100vw * (80 / 767)) calc(100vw * (40 / 767)) calc(100vw * (60 / 767));
        background: #F3F3F3;
    }
    .support .form .input_list li:first-child {
        margin-top: calc(100vw * (32 / 767));
    }
    /* brain 240717 */
    /* .support .form .input_list li:first-child .item { */
    .support .form .input_list li:first-child .list {
        margin-top: calc(100vw * (20 / 767));
    }
    /* brain 240717 */
    /* .support .form .input_list .item { */
    .support .form .input_list .list {        
        width: 100%;
        margin-top: calc(100vw * (20 / 767));
        margin-left: 0;
    }
    /* brain 240717 */
    /* .support .form .input_list li:first-child .item:first-child,
    .support .form .input_list .item:first-child { */
    .support .form .input_list li:first-child .list:first-child,
    .support .form .input_list .list:first-child {    
        margin-top: 0;
    }
    /* brain 240717 */
    .support .form .input_list .list input[type="text"] {
    /* .support .form .input_list .item input[type="text"] { */
        background: #fff;
    }
    .support .form .input_list .delete {
        position: absolute;
        right: calc(100vw * (24 / 767));
        top: calc(100vw * (24 / 767));
        width: calc(100vw * (48 / 767));
        height: calc(100vw * (48 / 767));
        margin-top: 0;
    }
    .support .form .input_list .delete::before {
        width: calc(100vw * (48 / 767));
        height: calc(100vw * (48 / 767));
    }
    .support .form .btn_add {
        margin-top: calc(100vw * (24 / 767));
    }
    .support .form .btn_add button {
        width: 100%;
        height: calc(100vw * (112 / 767));
        line-height: calc(100vw * (112 / 767));
        font-size: calc(100vw * (28 / 767));

    }
    .support .form .input_list.pc,
    .support .form .btn_add.pc {
        display: none;
    }
    .support .form .input_list.mo {
        display: block;
    }
    .support .form .btn_add.mo {
        display: block;
    }
}

/* 파일첨부 */
.support .form .file {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.2rem;
}
.support .form .block .file:first-child {
    margin-top: 0;
}
.support .form .file input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.support .form .file input {
    position: relative;
    width: calc(100% - 10rem);
    border: 1px dashed #D9D9D9;
    padding: 0 4.4rem;
    font-size: 1.8rem;
    font-weight: 400;
}
.support .form .file input::placeholder {
    text-align: center;
    font-weight: 400;
}
.support .form .file input:disabled {
    background: #F3F3F3;
    opacity: 1;
}
.support .form .file.delete input {
    border: 1px solid #F3F3F3;
    background: #F3F3F3;
    opacity: 1;
}
.support .form .file.delete::after {
    content: "";
    position: absolute;
    left: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: url("../images/common/ico_file.svg") no-repeat left top / 100% 100%;
}

.support .form .file .btn_upload {
    display: inline-block;
    width: 10rem;
    margin-bottom: 0;
    padding: 2rem 0;
    border-radius: .4rem;
    text-align: center;
    line-height: 1;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    background: #000;
    cursor: pointer;
}

.support .form .file .btn_delete {
    display: inline-block;
    width: 10rem;
    margin-bottom: 0;
    padding: 2rem 0;
    border-radius: .4rem;
    border: 1px solid #D9D9D9;
    text-align: center;
    line-height: 1;
    color: #666;
    font-size: 1.6rem;
    font-weight: 400;
    background: #F3F3F3;
    cursor: pointer;
}
.support .form .file.mo {
    display: none;
}
.support .form .return.mo {
    display: none;
}
.support .form .temp {
    margin-top: 1.2rem;
}

@media (max-width: 1919px) {
    .support .form .file {
        gap: calc(100vw * (20 / 1919));
        margin-top: calc(100vw * (12 / 1919));
    }
    .support .form .file input {
        width: calc(100% - calc(100vw * (100 / 1919)));
        padding: 0 calc(100vw * (44 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form .file.delete::after {
        left: calc(100vw * (16 / 1919));
        width: calc(100vw * (20 / 1919));
        height: calc(100vw * (20 / 1919));
    }
    
    .support .form .file .btn_upload {
        width: calc(100vw * (100 / 1919));
        padding: calc(100vw * (20 / 1919)) 0;
        border-radius: calc(100vw * (4 / 1919));
        font-size: calc(100vw * (16 / 1919));
    }
    
    .support .form .file .btn_delete {
        width: calc(100vw * (100 / 1919));
        padding: calc(100vw * (20 / 1919)) 0;
        border-radius: calc(100vw * (4 / 1919));
        font-size: calc(100vw * (16 / 1919));
        /* brain 240617 */
        display: none;
    }
    .support .form .temp {
        margin-top: calc(100vw * (12 / 1919));
    }
}

@media (max-width: 1180px) {
    .support .form .file {
        gap: calc(100vw * (20 / 1180));
        margin-top: calc(100vw * (12 / 1180));
    }
    .support .form .file input {
        width: calc(100% - calc(100vw * (100 / 1180)));
        padding: 0 calc(100vw * (44 / 1180));
        font-size: calc(100vw * (20 / 1180));
    }
    .support .form .file.delete::after {
        left: calc(100vw * (16 / 1180));
        width: calc(100vw * (20 / 1180));
        height: calc(100vw * (20 / 1180));
    }
    
    .support .form .file .btn_upload {
        width: calc(100vw * (100 / 1180));
        padding: calc(100vw * (20 / 1180)) 0;
        border-radius: calc(100vw * (4 / 1180));
        font-size: calc(100vw * (18 / 1180));
    }
    
    .support .form .file .btn_delete {
        width: calc(100vw * (100 / 1180));
        padding: calc(100vw * (20 / 1180)) 0;
        border-radius: calc(100vw * (4 / 1180));
        font-size: calc(100vw * (18 / 1180));
    }
    .support .form .temp {
        margin-top: calc(100vw * (12 / 1180));
    }
}

@media (max-width: 767px) {
    .support .form .file {
        gap: calc(100vw * (16 / 767));
        margin-top: calc(100vw * (20 / 767));
    }
    .support .form .file input {
        width: calc(100% - calc(100vw * (180 / 767)));
        padding: 0 calc(100vw * (44 / 767));
        font-size: calc(100vw * (32 / 767));
    }
    .support .form .file.delete::after {
        left: calc(100vw * (38 / 767));
        width: calc(100vw * (40 / 767));
        height: calc(100vw * (40 / 767));
    }
    
    .support .form .file .btn_upload {
        width: calc(100vw * (180 / 767));
        padding: calc(100vw * (42 / 767)) 0;
        border-radius: calc(100vw * (4 / 767));
        font-size: calc(100vw * (28 / 767));
    }
    
    .support .form .file .btn_delete {
        width: calc(100vw * (180 / 767));
        padding: calc(100vw * (42 / 767)) 0;
        border-radius: calc(100vw * (4 / 767));
        font-size: calc(100vw * (28 / 767));
    }
    .support .form .return.pc {
        display: none;
    }
    .support .form .return.mo {
        display: block;
    }
    .support .form .return.mo .block {
        margin-top: 0 !important;
    }
    .support .form .temp {
        margin-top: calc(100vw * (16 / 767));
    }
}

/* support registration: tom-select.js 스타일 수정 */
/* 기본 셀렉트 */
.support .form_list .ts-control,
.layer_mailing .form_list .ts-control {
    position: relative;
    padding: 1.5rem 1.6rem !important;
    border: 1px solid #D9D9D9;
    border-radius: 0;
    color: #000;
    /* brain 240717 */
    line-height: 1.3;
    /* line-height: 1; */
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Red Hat Display';
    background: #F3F3F3;
    box-shadow: none;
}
/* brain 240717 */
.support .form_list .ts-control .list,
.layer_mailing .form_list .ts-control .list {
/* .support .form_list .ts-control .item,
.layer_mailing .form_list .ts-control .item { */
    line-height: 1.35;
    font-size: 1.8rem;
}
.support .form_list .tom-select .ts-control::after,
.layer_mailing .form_list .tom-select .ts-control::after {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
    border: none;
    background: url('../images/common/ico_arrow_select.svg') no-repeat center center / 100% 100%;
    transform: rotate(0deg);
    transition: transform .2s;

}
.support .form_list .ts-control input[type="text"],
.layer_mailing .form_list .ts-control input[type="text"] {
    flex: 1 1 auto;
    width: auto;
    height: auto;
    min-width: auto;
    display: inline-block !important;
    padding: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-indent: 0 !important;
    border: 0 none !important;
    background: none !important;
    line-height: inherit !important;
    user-select: auto !important;
    box-shadow: none !important;
    color: #111;
    font-size: 1.8rem;
}
.support .form_list .has-items .ts-control > input[type="text"],
.layer_mailing .form_list .has-items .ts-control > input[type="text"]  {
    margin-left: .4rem !important;
}
.support .form_list .ts-control input[type="text"]::placeholder,
.layer_mailing .form_list .ts-control input[type="text"]::placeholder {
    color: #000;
}
.support .form_list .tom-select.dropdown-active .ts-control::after,
.layer_mailing .form_list .tom-select.dropdown-active .ts-control::after {
    transform: rotate(-180deg);
}

.support .form_list .ts-wrapper.input-active .ts-control,
.layer_mailing .form_list .ts-wrapper.input-active .ts-control {
    border-color: #000;
    border-radius: 0;
    background: #F3F3F3;
}


@media (max-width: 767px) {
    .support .form_list .ts-wrapper.input-active .ts-control,
    .layer_mailing .form_list .ts-wrapper.input-active .ts-control {
        background: #fff;
    }
}
.support .form_list .ts-dropdown-content,
.layer_mailing .form_list .ts-dropdown-content {
    max-height: 28rem;
}
.support .form_list .ts-dropdown,
.layer_mailing .form_list .ts-dropdown {
    top: 6.7rem;
    margin: 0;
    border: 1px solid #000;
    border-radius: 0;
    padding: .8rem .4rem;
    line-height: 1.2;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Red Hat Display';
    background: #F3F3F3;
    box-shadow: none;
}
/* .support .form_list .has-items .ts-dropdown {
    top: 11rem;
} */

.support .form_list .ts-dropdown-content,
.layer_mailing .form_list .ts-dropdown-content {
    padding: 2.4rem 2rem;
}
.support .form_list .ts-dropdown-content::-webkit-scrollbar,
.layer_mailing .form_list .ts-dropdown-content::-webkit-scrollbar {
    width: 2px;
    -webkit-overflow-scrolling: touch;
}
.support .form_list .ts-dropdown-content::-webkit-scrollbar-thumb,
.layer_mailing .form_list .ts-dropdown-content::-webkit-scrollbar-thumb {
    background: #000;
}
.support .form_list .ts-dropdown-content::-webkit-scrollbar-track,
.layer_mailing .form_list .ts-dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}
.support .form_list .ts-dropdown .option,
.layer_mailing .form_list .ts-dropdown .option {
    margin-top: 1.8rem;
    padding: 0;
    color: #999;
    transition: color .2s;
}
.support .form_list .ts-dropdown .option:first-child,
.layer_mailing .form_list .ts-dropdown .option:first-child {
    margin-top: 0;
}
.support .form_list .ts-dropdown .option.active,
.layer_mailing .form_list .ts-dropdown .option.active  {
    background: none;
    color: #000;
}
.support .form_list .ts-dropdown .option.selected,
.layer_mailing .form_list .ts-dropdown .option.selected {
    font-weight: 700;
    color: #000;
}

/* 전화번호 입력 */
.support .form_list .phone_box,
.layer_mailing .form_list .phone_box  {
    background: #F3F3F3;
}
.support .form_list .phone_box .ts-control,
.layer_mailing .form_list .phone_box .ts-control {
    border: none;
}
.support .form_list .phone_box .ts-control input[type="text"],
.layer_mailing .form_list .phone_box .ts-control input[type="text"] {
    height: auto;
}

@media (max-width: 1919px) {
    .support .form_list .ts-control,
    .layer_mailing .form_list .ts-control {
        padding: calc(100vw * (15 / 1919)) calc(100vw * (16 / 1919)) !important;
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form_list .tom-select .ts-control::after,
    .layer_mailing .form_list .tom-select .ts-control::after {
        right: calc(100vw * (16 / 1919));
        top: calc(100vw * (16 / 1919));
        width: calc(100vw * (24 / 1919));
        height: calc(100vw * (24 / 1919));
    
    }
    /* brain 240717 */
    /* .support .form_list .ts-control .item,
    .layer_mailing .form_list .ts-control .item { */
    .support .form_list .ts-control .list,
    .layer_mailing .form_list .ts-control .list {    
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form_list .ts-control input[type="text"],
    .layer_mailing .form_list .ts-control input[type="text"] {
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form_list .has-items .ts-control > input[type="text"],
    .layer_mailing .form_list .has-items .ts-control > input[type="text"] {
        margin-left: calc(100vw * (4 / 1919)) !important;
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form_list .ts-dropdown-content,
    .layer_mailing .form_list .ts-dropdown-content  {
        max-height: calc(100vw * (280 / 1919));
    }
    .support .form_list .ts-dropdown,
    .layer_mailing .form_list .ts-dropdown {
        top: calc(100vw * (67 / 1919));
        padding: calc(100vw * (8 / 1919)) calc(100vw * (4 / 1919));
        font-size: calc(100vw * (18 / 1919));
    }
    .support .form_list .ts-dropdown-content,
    .layer_mailing .form_list .ts-dropdown-content {
        padding: calc(100vw * (24 / 1919)) calc(100vw * (20 / 1919));
    }
    .support .form_list .ts-dropdown .option,
    .layer_mailing .form_list .ts-dropdown .option {
        margin-top: calc(100vw * (18 / 1919));
    }
}
@media (max-width: 1180px) {
    .support .form_list .ts-control,
    .layer_mailing .form_list .ts-control {
        padding: calc(100vw * (14 / 1180)) calc(100vw * (16 / 1180)) calc(100vw * (13 / 1180)) !important;
        font-size: calc(100vw * (20 / 1180));
    }
    .support .form_list .tom-select .ts-control::after,
    .layer_mailing .form_list .tom-select .ts-control::after {
        right: calc(100vw * (16 / 1180));
        top: calc(100vw * (16 / 1180));
        width: calc(100vw * (24 / 1180));
        height: calc(100vw * (24 / 1180));
    
    }
    /* brain 240717 */
    /* .support .form_list .ts-control .item,
    .layer_mailing .form_list .ts-control .item { */
    .support .form_list .ts-control .list,
    .layer_mailing .form_list .ts-control .list {
        font-size: calc(100vw * (20 / 1180));
    }
    .support .form_list .ts-control input[type="text"],
    .layer_mailing .form_list .ts-control input[type="text"]  {
        font-size: calc(100vw * (20 / 1180));
    }
    .support .form_list .has-items .ts-control > input[type="text"],
    .layer_mailing .form_list .has-items .ts-control > input[type="text"]  {
        margin-left: calc(100vw * (4 / 1180)) !important;
        font-size: calc(100vw * (18 / 1180));
    }
    .support .form_list .ts-dropdown-content,
    .layer_mailing .form_list .ts-dropdown-content {
        max-height: calc(100vw * (354 / 1180));
    }
    .support .form_list .ts-dropdown,
    .layer_mailing .form_list .ts-dropdown {
        top: calc(100vw * (67 / 1180));
        padding: calc(100vw * (8 / 1180)) calc(100vw * (4 / 1180));
        font-size: calc(100vw * (18 / 1180));
    }
    .support .form_list .ts-dropdown-content,
    .layer_mailing .form_list .ts-dropdown-content  {
        padding: calc(100vw * (24 / 1180)) calc(100vw * (20 / 1180));
    }
    .support .form_list .ts-dropdown .option,
    .layer_mailing .form_list .ts-dropdown .option  {
        margin-top: calc(100vw * (18 / 1180));
    }
    .support .form_list .phone_box .ts-control,
    .layer_mailing .form_list .phone_box .ts-control {
        padding: calc(100vw * (12 / 1180)) calc(100vw * (16 / 1180)) calc(100vw * (13 / 1180)) !important;
    }
}
@media (max-width: 767px) {
    .support .form_list .ts-control,
    .layer_mailing .form_list .ts-control  {
        padding: calc(100vw * (34 / 767)) calc(100vw * (32 / 767)) !important;
        font-size: calc(100vw * (32 / 767));
        /* brain 240717 */
        background: #fff;
    }
    .support .form_list .tom-select .ts-control::after,
    .layer_mailing .form_list .tom-select .ts-control::after  {
        right: calc(100vw * (32 / 767));
        top: calc(100vw * (32 / 767));
        width: calc(100vw * (48 / 767));
        height: calc(100vw * (48 / 767));
    
    }
    /* brain 240717 */
    /* .support .form_list .ts-control .item,
    .layer_mailing .form_list .ts-control .item { */
    .support .form_list .ts-control .list,
    .layer_mailing .form_list .ts-control .list {
        font-size: calc(100vw * (32 / 767));
    }
    .support .form_list .ts-control input[type="text"],
    .layer_mailing .form_list .ts-control input[type="text"] {
        font-size: calc(100vw * (32 / 767));
    }
    .support .form_list .has-items .ts-control > input[type="text"],
    .layer_mailing .form_list .has-items .ts-control > input[type="text"] {
        margin-left: calc(100vw * (8 / 767)) !important;
        font-size: calc(100vw * (32 / 767));
    }
    .support .form_list .ts-dropdown-content,
    .layer_mailing .form_list .ts-dropdown-content  {
        max-height: calc(100vw * (466 / 767));
    }
    .support .form_list .ts-dropdown,
    .layer_mailing .form_list .ts-dropdown {
        top: calc(100vw * (120 / 767));
        padding: calc(100vw*(16 / 767)) calc(100vw*(8 / 767));
        font-size: calc(100vw * (28 / 767));
    }
    .support .form_list .ts-dropdown-content,
    .layer_mailing .form_list .ts-dropdown-content {
        padding: calc(100vw*(16 / 767)) calc(100vw*(16 / 767));
    }
    .support .form_list .ts-dropdown .option,
    .layer_mailing .form_list .ts-dropdown .option {
        margin-top: calc(100vw * (40 / 767));
    }
    .support .form_list .phone_box .ts-control,
    .layer_mailing .form_list .phone_box .ts-control {
        padding: calc(100vw * (33 / 767)) calc(100vw * (32 / 767)) !important;
    }
}

/* 2024-04-22 셀렉트박스 검정라인 스타일 추가 */
.select_box.bline .txt {
    padding: 0 3rem;
    border: 1px solid #000;
    border-radius: 99rem;
    background: #fff;
}
.select_box.bline .select_inner {
    top: 6.4rem;
    padding: 3.2rem .4rem;
    border-radius: 2.8rem;
    background: #fff;
}
.select_box.bline .select_inner .select_list {
    padding: 0 2rem;
}

@media (max-width: 1919px) {
    .select_box.bline .txt {
        padding: 0 calc(100vw * (30 / 1919));
    }
    .select_box.bline .select_inner {
        top: calc(100vw * (64 / 1919));
        padding: calc(100vw * (32 / 1919)) calc(100vw * (4 / 1919));
        border-radius: calc(100vw * (28 / 1919));
    }
    .select_box.bline .select_inner .select_list {
        padding: 0 calc(100vw * (20 / 1919));
    }
}
@media (max-width: 1180px) {
    .select_box.bline .txt {
        padding: 0 calc(100vw * (30 / 1180));
    }
    .select_box.bline .select_inner {
        top: calc(100vw * (64 / 1180));
        padding: calc(100vw * (32 / 1180)) calc(100vw * (4 / 1180));
        border-radius: calc(100vw * (28 / 1180));
    }
    .select_box.bline .select_inner .select_list {
        padding: 0 calc(100vw * (20 / 1180));
    }
}
@media (max-width: 767px) {
    .select_box.bline .txt {
        padding: 0 calc(100vw * (40 / 767));
        border-width: calc(100vw * (2 / 767));
    }
    .select_box.bline .select_inner {
        top: calc(100vw * (126 / 767));
        padding: calc(100vw * (83 / 1180)) calc(100vw * (11 / 767));
        border-radius: calc(100vw * (56 / 767));
        border-width: calc(100vw * (2 / 767));
    }
    .select_box.bline .select_inner .select_list {
        padding: 0 calc(100vw * (44 / 767));
    }
    .select_box.bline .select_inner .select_list li:first-child {
        margin-top: calc(100vw * (17 / 767));
    }
}