/* *******************************************************
 * filename : common.css
 * description : 기본 레이아웃 및 컨텐츠 CSS
 * date : 2025-03-06
******************************************************** */

/* layout */
/*=======================================================================================*/

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
}

.app {
    width: 100%;
    height: 100%;
}
.mobile_wrap {
    max-width: 500px;
    margin: 0 auto;
}

.bg_overay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.7);
}

/* scrollbar  */
/*=======================================================================================*/

@media (min-width: 499px) {
    *::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #b3aba4;
        border-radius: 1px;
    }

    *::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 1px;
    }
}

/* button setting  */
/*=======================================================================================*/
.btn {
    text-align: center;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.btn:active {
    -webkit-box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    -ms-box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    -o-box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    box-shadow: 0 0 5px inset rgba(10, 55, 94, 0.1);
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

/* button color  */
/*=======================================================================================*/
.color_black {
    background: #000;
    color: #fff;
}

.color_black:active {
    background: #000;
}

.color_charcoal {
    background: #4d4a43;
    color: #fff;
}

.color_charcoal:active {
    background: #3d3737;
}

.color_gray {
    background: #b2abab;
    color: #fff;
}

.color_gray:active {
    background: #a79e9e;
}

.color_red {
    background: #ff0000;
}

.color_red:active {
    background: #df0000;
}

.color_orange {
    background: #f47d4d;
    color: #fff;
}

.color_orangev:active {
    background: #dd6d41;
}

.color_darkorange {
    background: #a33d14;
    color: #fff;
}

.color_darkorange:active {
    background: #8b3310;
}

.color_yellow {
    background: #ffc500;
}

.color_yellow:active {
    background: #e2ad00;
}

.color_Green {
    background: #056c47;
    color: #fff;
}

.color_Green:active {
    background: #035a3a;
}

.color_blue {
    background: #168eea;
    color: #fff;
}

.color_blue:active {
    background: #1580d1;
}

.color_white {
    background: #fff;
    border: 1px solid #b2abab;
}

.color_white:active {
    background: #f5f5f5;
}

/* header */
/*=======================================================================================*/
.header_wrap {
    background: url(../images/BG_HEADER.jpg) no-repeat;
    background-size: 100% 100%;
}

.app.mobile .header {
    max-width: 500px;
}
.header {
    max-width: 1400px;
    margin: 0 auto;
}

.header_inner {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3vw;
}

.header_inner .btn_M_menu {
    display: none;
    aspect-ratio: 1/1;
    background: url(../images/SVG/IC_MENU.svg) no-repeat;
    background-position: center;
    font-size: 0;
    line-height: 0;
    height: 4.8vh;
}

.header_inner .menu .btn_M_close {
    display: none;
    position: absolute;
    right: 0;
    top: 0.625rem;
    background: none;
    color: #fff;
    font-size: 2.5rem;
    z-index: 100;
}

.header_inner .menu.active .btn_M_close {
    right: -3.125rem;
}

/* logo */
.header_inner .logo {
    background: url(../images/BG_LOGO.png) no-repeat;
    background-size: 100% 100%;
    background-position: top;
    padding: 30px 37px 45px 21px;
    font-size: 0;
    line-height: 0;
}

.header_inner .logo img {
    width: 100%;
    max-width: 108px;
}

/* phone */
.header_inner .phone {
    padding: 0.3125rem;
    border-radius: 1.25rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffed4a), to(#efb857));
    background: -o-linear-gradient(#ffed4a, #efb857);
    background: linear-gradient(#ffed4a, #efb857);
}

.header_inner .phone a {
    display: block;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    border-radius: 0.9375rem;
    text-align: center;
    padding: 0.625rem 0.9375rem;
}

.header_inner .phone a .txt {
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.header_inner .phone a .txt span {
    color: #ff0057;
    font-weight: 600;
}

.header_inner .phone a .number {
    font-size: 1.4375rem;
    font-weight: 600;
    white-space: nowrap;
}

/* menu */
/*=======================================================================================*/
.menu {
    display: block;
    max-width: 620px;
    width: 100%;
}

.menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.menu > ul > li {
    position: relative;
}

.menu > ul > li > a {
    display: block;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 500;
    position: relative;
    -webkit-transition: 0.1s ease-in all;
    -o-transition: 0.1s ease-in all;
    transition: 0.1s ease-in all;
    white-space: nowrap;
}

.menu > ul > li.active > a {
    color: #fcf764;
}

.menu > ul > li > a:hover {
    color: #fcf764;
}

.menu > ul > li > a:active {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.menu > ul > li.active > a::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #fcf764;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* container */
/*=======================================================================================*/
.container {
    background: #f8f8f8;
    padding: 3.125rem 0 4.375rem;
}

.container.no_footer {
    height: calc(100% - 176px);
}

/* footer */
/*=======================================================================================*/
.copy_plicy {
    background: #fff;
    height: 70px;
}

.copy_plicy .inner {
    max-width: 1400px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}

.copy_plicy .inner .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.copy_plicy .inner .left::before {
    content: "";
    width: 2px;
    height: 14px;
    background: #e3e3e3;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.copy_plicy .inner .left li {
    position: relative;
}

.copy_plicy .inner .left li::after {
    content: "";
    width: 2px;
    height: 14px;
    background: #e3e3e3;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.copy_plicy .inner .left li a {
    display: block;
    padding: 0 1.875rem;
    color: #858585;
    font-size: 1rem;
}

.copy_plicy .inner .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.copy_plicy .inner .right li a {
    display: block;
    padding: 0 10px;
    font-size: 0;
    line-height: 0;
}

.copy_plicy .inner .right li a img {
    width: auto;
}

.copy_address {
    background: #41403f;
}

.copy_address .inner {
    max-width: 1400px;
    margin: 0 auto;
    color: #b7b7b7;
    padding: 1.875rem 0;
}

.copy_address .inner .company_name {
    margin-bottom: 0.3125rem;
}

.copy_address .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.6;
}

.copy_address .inner ul li {
    padding-right: 0.9375rem;
    margin-right: 0.9375rem;
    position: relative;
}

.copy_address .inner ul li::after {
    content: "";
    width: 2px;
    height: 12px;
    background: #6d6c6b;
    position: absolute;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.copy_address .inner ul li:last-child::after {
    display: none;
}

.copyright {
    background: #393837;
}

.copyright .inner {
    max-width: 1400px;
    margin: 0 auto;
    color: #b7b7b7;
    padding: 1.25rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.copyright .inner .right {
    font-size: 0;
    line-height: 0;
}

.copyright .inner .right img {
    width: auto;
}

/* page_title */
/*=======================================================================================*/
.page_title {
    padding-bottom: 1.5625rem;
}

.page_title .inner {
    max-width: 1400px;
    margin: 0 auto;
}

.page_title .inner h2 {
    font-family: "Cafe24Ssurround";
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 6px rgba(162, 0, 0, 0.16);
    text-align: center;
}

.page_title .inner span {
    display: block;
    color: #fada4f;
    text-align: center;
    font-size: 1.0625rem;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(162, 0, 0, 0.16);
}

/* tab */
/*=======================================================================================*/
.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.tab-content {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: height 0.6s ease, opacity 0.6s ease;
    -o-transition: height 0.6s ease, opacity 0.6s ease;
    transition: height 0.6s ease, opacity 0.6s ease;
    /* 부드러운 전환 효과 */
}

.tab-content.active {
    height: auto;
    /* 자동으로 높이 설정 */
    opacity: 1;
    visibility: visible;
}

/* basic_form_element_wrap */
/*=======================================================================================*/
.from_bundle_wrap {
    border-bottom: 1px solid #4e4747;
    padding: 0 5px 15px;
    margin-bottom: 20px;
    position: relative;
}

.from_bundle_wrap h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.form_wrap {
    padding: 10px 10px;
}

.require::after {
    display: inline-block;
    vertical-align: middle;
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    content: "\f621";
    color: #e2065e;
    padding-left: 3px;
    font-size: 0.5rem;
}

/* form_cont */
.form_cont_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.d-block {
    display: block !important;
}

.form_cont_wrap.none_label > label {
    display: none;
}

.form_cont_wrap > label {
    display: block;
    min-width: 35%;
    font-size: 1.125rem;
    font-weight: 500;
}

.form_cont_wrap > .form_cont {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form_cont_wrap > .form_cont > .desc {
    padding-top: 10px;
}

.form_cont_wrap > .btn {
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    padding: 0 15px;
    font-family: "Pretendard-Regular";
    font-size: 0.8125rem;
    margin-bottom: auto;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.form_cont_wrap .btn:active {
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.form_cont_wrap > .btn_wrap {
    -ms-flex-item-align: first baseline;
    -ms-grid-row-align: first baseline;
    align-self: first baseline;
}

.form_cont_wrap > .btn_wrap .btn {
    display: block;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    padding: 0 10px;
    min-width: 52px;
    font-family: "Pretendard-Regular";
    font-size: 0.8125rem;
    margin-bottom: auto;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* form_element_wrap */
.form_element_wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* input */
.form_element_wrap .form_input {
    height: 3.125rem;
    border: 1px solid #d5d5d5;
    border-radius: 0.625rem;
    background: #fff;
    padding: 0 0.625rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: calc(100% - 10px);
    font-size: 1rem;
}

.form_element_wrap .form_input::-webkit-input-placeholder {
    color: #a5a5a5;
}

.form_element_wrap .form_input::-webkit-input-placeholder,
.form_element_wrap .form_input::-moz-placeholder,
.form_element_wrap .form_input::-ms-input-placeholder,
.form_element_wrap .form_input::placeholder {
    color: #a5a5a5;
}

.form_element_wrap .form_input:focus,
.form_element_wrap .form_select:focus {
    border-color: #645f5e;
}

.form_element_wrap .form_input:-moz-read-only {
    background: #f9f7f6;
}

.form_element_wrap .form_input:read-only {
    background: #f9f7f6;
}

.form_cont:has(.chk_alarm_txt) input {
    border: 1px solid #e8352c !important;
}

.chk_alarm_txt {
    color: #e8352c;
    font-size: 0.8125rem;
    padding-top: 5px;
}

.form_element_wrap .btn {
    height: 3.125rem;
    line-height: 3.125rem;
    border-radius: 0.625rem;
    padding: 0 0.9375rem;
    font-size: 0.8125rem;
}

/* select */
.form_element_wrap .form_select {
    height: 32px;
    border: 1px solid #b2abab;
    border-radius: 4px;
    background: #fff;
    padding: 0 10px;
    width: calc(100% - 20px);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: "Pretendard-Regular";
    font-size: 0.8125rem;
    text-align-last: center;
    text-align: center;
    -ms-text-align-last: center;
    -moz-text-align-last: center;
}

.form_element_wrap .form_select.align_L {
    text-align: left;
}

.form_element_wrap .form_select:required:invalid {
    color: #bbb3b0;
}

.form_element_wrap .form_select option {
    color: #2b2c30;
    text-align: left;
}

.form_element_wrap .form_select option[value=""][disabled] {
    display: none;
}

.form_element_wrap.chk_alarm select {
    border: 2px solid #e8352c;
}

/* textarea */
.form_element_wrap:has(.form_textarea) {
    max-width: 100%;
}

.form_element_wrap .form_textarea {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #b2abab;
    border-radius: 4px;
    background: #fff;
    font-family: "Pretendard-Regular";
    font-size: 0.8125rem;
    padding: 5px;
    width: calc(100% - 10px);
}

.form_element_wrap .form_textarea:-moz-read-only {
    background: #f2f2f2;
}

.form_element_wrap .form_textarea:read-only {
    background: #f2f2f2;
}

.form_element_wrap .form_textarea::-webkit-input-placeholder {
    color: #4f4f4f;
    word-break: keep-all;
}

.form_element_wrap .form_textarea::-moz-placeholder {
    color: #4f4f4f;
    word-break: keep-all;
}

.form_element_wrap .form_textarea:-ms-input-placeholder {
    color: #4f4f4f;
    word-break: keep-all;
}

.form_element_wrap .form_textarea::-ms-input-placeholder {
    color: #4f4f4f;
    word-break: keep-all;
}

.form_element_wrap .form_textarea::placeholder {
    color: #4f4f4f;
    word-break: keep-all;
}

.form_element_wrap.chk_alarm textarea {
    border: 2px solid #e8352c;
}

/* form_view */
.form_element_wrap .form_view {
    background: #f6f7f9;
    -webkit-box-shadow: 0 0 15px inset rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 15px inset rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 10px 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* form-address */
.form-address .form_element_wrap {
    max-width: 80%;
}

/* form_btn_wrap */
.form_btn_wrap .btn {
    height: 36px;
    border-radius: 16px;
    padding: 0 15px;
}

/* form_validation_check */
.form_validation_check {
    color: #e8352c;
    padding-top: 5px;
}

/* input_func */
.input_func {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.input_func > i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    cursor: pointer;
}

.input_func > .txt {
    border-radius: 8px;
    font-size: 12px;
    padding: 3px 8px;
}

.input_func > .txt.red {
    color: #e60c31;
    background: #ffdfdf;
}

/* input_radio - 기본형 */
/*=======================================================================================*/
.input_radio {
    position: relative;
    display: inline-block;
}

.input_radio input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.input_radio input[type="radio"] + label {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input_radio input[type="radio"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #726963;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.input_radio input[type="radio"] + label:active:before,
.input_radio input[type="radio"]:checked + label:active:before {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.input_radio input[type="radio"]:checked + label:before {
    background: #e9ecee;
}

.input_radio input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 50%;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.input_radio label {
    font-family: "Pretendard-Regular";
}

/* input_radio_button - 버튼형 */
/*=======================================================================================*/
.form_radio_button_wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.input_radio_button {
    display: block;
}

.input_radio_button input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.input_radio_button input[type="radio"] + label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #ffffff;
    height: 36px;
    text-align: center;
    border: 1px solid #bccacf;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 100px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.input_radio_button:first-child input[type="radio"] + label {
    border-radius: 16px 0 0 16px;
}

.input_radio_button:last-child input[type="radio"] + label {
    border-radius: 0 16px 16px 0;
}

.input_radio_button input[type="radio"]:checked + label {
    background: #6b615d;
    border: 1px solid #635955;
    color: #fff;
}

/* input_check - 기본형 */
/*=======================================================================================*/
.input_checks {
    display: inline-block;
    vertical-align: middle;
}

.input_checks input {
    display: none;
}

.input_checks label {
    display: flex;
    gap: 0.3125rem;
    cursor: pointer;
}

.input_checks label em {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_checks label em::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url(../images/SVG/check_off.svg) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_checks input:checked ~ label em::before {
    background: url(../images/SVG/check_on.svg) no-repeat;
    background-size: 100% 100%;
}

.input_checks label span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* input_check_toggle - 토글형 */
/*=======================================================================================*/
.input_check_toggle {
    display: inline-block;
}

.input_check_toggle input {
    display: none;
}

.input_check_toggle label {
    cursor: pointer;
    display: block;
    width: 40px;
    height: 22px;
    border-radius: 14px;
    background: #b2abab;
    position: relative;
    -webkit-box-shadow: 0 0 6px inset rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 6px inset rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_check_toggle label::before,
.input_check_toggle label::after {
    font-family: "Pretendard-Regular";
    font-size: 0.875rem;
    position: absolute;
    top: 50%;
    left: 44px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.input_check_toggle label::before {
    content: "사용안함";
    top: 50%;
}

.input_check_toggle label::after {
    content: "사용";
    opacity: 0;
    top: calc(50% - 5px);
}

.input_check_toggle label em {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    left: 21px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_check_toggle input:checked ~ label em {
    left: 3px;
}

.input_check_toggle input:checked ~ label {
    background: #4e4747;
}

.input_check_toggle input:checked ~ label::before {
    opacity: 0;
    top: calc(50% - 5px);
}

.input_check_toggle input:checked ~ label::after {
    opacity: 1;
    top: 50%;
}

/* layer_pop_wrap - 레이어팝업 */
/*=======================================================================================*/
.layer_pop_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.layer_pop_wrap.w500 {
    max-width: 500px;
}

.layer_pop_wrap.w600 {
    max-width: 600px;
}

.layer_pop_wrap.w700 {
    max-width: 700px;
}

.layer_pop_wrap.open {
    visibility: visible;
}

.layer_pop_wrap > .inner {
    background: #fff;
    border-radius: 0.625rem;
    position: relative;
    overflow: hidden;
    max-height: 100%;
}

.layer_pop_wrap > .inner .top {
    height: 60px;
    line-height: 60px;
    background: #f47d4d;
    text-align: center;
    position: relative;
}

.layer_pop_wrap > .inner .top h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}

.layer_pop_wrap > .inner .top .btn {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: none;
    font-size: 1.25rem;
    color: #fff;
}

.layer_pop_wrap > .inner .cont {
    padding: 1.25rem;
    overflow: auto;
    height: calc(100% - 2.5rem);
}

/* .layer_pop_wrap .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
} */

/* .layer_pop_wrap.open .overlay {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
} */

.none_use {
    background: #b2abab !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}
.none_use::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200%;
    height: 4px;
    background: #ff0057;
    opacity: 0.8;
    transform: translate(-45%, -50%) rotate(-10deg);
}
.none_use::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200%;
    height: 4px;
    background: #ff0057;
    opacity: 0.8;
    transform: translate(-55%, -50%) rotate(-10deg);
}
