/* global style css */
html {
    zoom: 0.8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
    word-break: keep-all;
}

a {
    text-decoration: none;
    cursor: pointer;
}

ol,
ul {
    list-style: none;
}

body,
html {
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #000;
}

body {
    padding-top: 224px;
    min-width: 1305px;
    margin: auto;
}

a,
input,
textarea,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
em,
strong,
div {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none; margin: 0;}
input[type=number] {-moz-appearance: textfield;}

#sub {
    overflow: hidden;
}

.mo_br {
    display: none;
}

.none {
    display: none !important;
}

#container {
    width: 1240px;
    min-width: 1240px;
    padding: 40px 0 0px;
    margin: auto;
    display: flex;
    gap: 24px;
    position: relative;
    align-items: start;
}

input:focus:not([type=checkbox]),
textarea:focus,
select:focus {
    outline: 2px solid #ffccaa;
}

input:read-only:focus {
    outline: none;
}

input {
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    padding: 0 10px;
    font-size: 0.875rem;
    width: 100%;
    height: 38px;
    background: #ffffff;
}

input.invalid {
    border-color: #ff0000;
}

input::placeholder {
    color: #d9d9d9;
}

input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: none;
    background: url("/assets/img/check.png") center no-repeat;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background: url("/assets/img/check_checked.png") center no-repeat;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d9d9d9;
    cursor: pointer;
    border-radius: 100%;
    outline: none;
}

input[type="radio"]:checked {
    width: 14px;
    height: 14px;
    margin: 2px;
    background-color: #ff7633;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #ff7633;
}

select {
    color: var(--black);
    appearance: none;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-size: 0.875rem;
    min-width: 100px;
    height: 38px;
    padding: 0 30px 0 15px;
    cursor: pointer;
    background: url(/assets/img/icon_select_arrow.png) no-repeat right 5px center;
}

button {
    cursor: pointer;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    background-color: #fff;
    color: #000;
    white-space: nowrap;
    border: 1px solid #ff7633;
}

button:focus {
    outline: none;
}

button:disabled {
    cursor: default;
}

.m_table {
    display: none !important;
}

@media (max-width:768px) {
    body {
        padding-top: 0px;
        min-width: initial;
    }

    body.none_scroll {
        overflow-y: hidden !important;
    }

    html.none_scroll {
        overflow-y: hidden !important;
    }

    .mo_br {
        display: block !important;
    }

    .pc_table {
        display: none !important;
    }

    .m_table {
        display: block !important;
    }

    .none_title {
        display: none !important;
    }
}

.ui-tooltip {
    background: #ffeded;
    border-radius: 10px;
    max-width: 310px;
    height: auto;
    padding: 10px;
    font-size: 0.875rem;
    line-height: 15px;
    box-shadow: none;
    border: none !important;
}

.tool_tip_wrap {
    display: flex;
    column-gap: 3px;
}

.tool_tip_img {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tool_tip_img img {
    width: 15px;
    height: 15px;
}

.tool_tip_img::before {
    border-bottom: 8px solid #ffeded;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    bottom: 0%;
    transform: translate(-50%, 100%);
    width: 0;
    opacity: 0;
}

.tool_tip_img:hover::before {
    opacity: 1;
}
