/* Header html Start */
.header-blk {
    background-color: transparent;
    padding-top: 25px;
    padding-bottom: 15px;
    align-items: center;
}

.header-blk-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-blk {
    width: 170px;
}

.header-rwrapper {
    display: flex;
    gap: 10px;
    width: 430px;
    align-items: start;
    justify-content: end;
}

.header-content {
    display: flex;
    gap: 18px;
    align-items: center;
}

.wel-txt {
    font-size: 16px;
    color: var(--third-font-color);
    font-weight: 500;
    letter-spacing: 0;
    width: 116px;
    padding-bottom: 10px;
}

.information-blk {
    background-color: var(--primary-font-color);
    max-width: 144px;
    width: 100%;
    border-radius: 3px;
    display: flex;
    position: relative;
}

.user-infor-txt {
    color: var(--secondary-font-color);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 12px 40px 12px 20px;
    letter-spacing: 0;
    position: relative;
}

.user-infor-txt::after {
    position: absolute;
    background: url(/assets/img/common/user-info.png) no-repeat center/contain;
    width: 13px;
    height: 11px;
    top: 16px;
    right: 21px;
    content: "";
}

.login-blk {
    max-width: 140px;
    width: 100%;
    background-color: var(--fourth-font-color);
    padding: 8px 5px 8px 20px;
    border-radius: 3px;
    display: flex;
    gap: 3px;
    align-items: center;
}

.login-txt {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--secondary-font-color);
    position: relative;
}

.menu-list {
    max-width: 295px;
    width: 100%;
    margin: 0 auto;
}

.information-ttl {
    font-size: 16px;
    color: var(--third-font-color);
    font-weight: 500;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: 0;
}

.pinformation-blk {
    background-color: var(--primary-font-color);
    color: var(--secondary-font-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.pinformation-blk.next-more.active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.pinformation-blk.next-more {
    position: relative;
}

.pinformation-blk span {
    font-size: 10px;
    display: block;
}

.pinformation-blk::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    background: url(/assets/img/common/ic_next.png) no-repeat center/contain;
    width: 8px;
    height: 8px;
}

.pinformation-blk.next-more::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--bg-color);
    border-radius: 20px;
}

.pinformation-blk.next-more::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 12px;
    background: var(--bg-color);
    border-radius: 20px;
}

.pinformation-blk.next-more.active::before {
    height: 0;
}

.pinformation-blk+.pinformation-blk {
    margin-top: 5px;
}

.menu-blk+.menu-blk {
    margin-top: 15px;
}

.menu_right {
    display: none;
}

.ic_blk {
    width: 20px;
    height: 20px;
}

.acc-content {
    display: none;
    background: var(--bg-color);
    border: 1px solid var(--primary-font-color);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: absolute;
    width: 100%;
    top: 171px;
    left: 0;
    z-index: 10;
}

.acc-content.show {
    display: block;
}

.accordion-blk {
    margin-top: 8px;
    border: 1px solid var(--primary-font-color);
    border-radius: 6px;
}

.acc-content-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-font-color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--primary-font-color);
    position: relative;
    background-color: var(--fifth-font-color);
}

.acc-content-link:last-child {
    border-bottom: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.acc-content-link::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: url(/assets/img/common/ic_next_blue.png) no-repeat center / contain;
    width: 8px;
    height: 8px;
}


.topbd {
    background: url(/assets/img/top/top_main_bg.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: var(--fifth-font-color);
}

.menu-icon {
    width: 20px;
    height: 20px;
}

.ttl-icon {
    width: 24px;
    height: 24px;
}

@media screen and (max-width:1250px) {
    .pinformation-blk span {
        font-size: 9px;
    }

    .pinformation-blk {
        padding: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 5px;
        padding-top: 0px;
        justify-content: end;
        align-items: end;
    }

    .acc-content {
        position: relative;
        top: 0;
    }

    .information-blk {

        background-color: unset;
        justify-content: right;

    }

    .user-infor-txt {
        color: var(--primary-font-color);
        padding: 0;
        font-size: 12px;
        text-decoration: underline !important;
    }

    .login-blk {
        flex-direction: column-reverse;
        background-color: unset;
        padding: 0;
        max-width: unset;
        width: unset;
    }

    .login-txt {
        color: var(--fourth-font-color);
        font-size: 10px;
    }

    .wel-txt {
        font-size: 12px;
        text-align: right;
        padding-bottom: 0;
    }

    .user-infor-txt::after {
        display: none;
    }

    .header-blk {
        padding: 10px 0;
        position: fixed;
        width: 100%;
        z-index: 99;
    }

    .header-blk.scrolled {
        background-color: rgba(242, 247, 252, 0.9);
    }

    .menu_item.slide-open {
        transform: translate(0%, 0);
    }

    .header-rwrapper {
        padding-right: 40px;
        width: calc(100% - 140px);
        align-items: end;
    }

    .without-hamburger .header-rwrapper {
        padding-right: 0;
    }

    #slidemenuBtn>div>span {
        height: 2px;
        transition: transform 0.3s ease, top 0.2s ease 0.2s;
    }

    #menu.hide {
        display: none;
    }

    .menu_right {
        position: fixed;
        top: 50px;
        right: -999px;
        width: 100%;
        height: calc(100% - 50px);
        background: var(--bg-color);
        padding: 20px;
        transition: right 0.7s ease;
        z-index: 99;
        display: block;
        overflow: scroll;
    }

    .menu_right.show {
        right: 0;
    }

    body.noscroll {
        overflow: hidden;
        background-color: var(--bg-color);
    }

    .header-rwrapper.text-hide {
        display: none;
    }

    .header-blk.fixheader {
        position: fixed;
        transition: transform 0.2s ease 0.2s;
        z-index: 99;
        background-color: var(--bg-color);
        width: 100%;
    }

    .topbd {
        background: url(/assets/img/top/top_main_bg_sp.png);
        background-size: cover;
        background-position: top;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-color: var(--fifth-font-color);

    }

    .logo-blk {
        width: 143px;
    }

    .pinformation-blk {
        gap: 8px;
    }

    .pinformation-blk span {
        font-size: 9px;
        white-space: nowrap;
    }

    .top-link-left.top-link-left-menu {
        padding-left: 0;
    }

    .top-link-left-menu .link-item::before {
        left: 2px;
    }

    .top-link-left-menu .top-link-ttl {
        padding-left: 23px;
    }

    .top-link-right.top-link-right-menu {
        padding-left: 0;
    }

    .top-link-right-menu .link-item::before {
        left: 2px;
    }

    .top-link-right-menu .top-link-ttl {
        padding-left: 23px;
    }

    .menu-list .information-ttl {
        margin-bottom: 8px;
    }
}

@media screen and (max-width:400px) {
    .header-content {
        max-width: 95px;
        width: 100%;
    }

    .wel-txt {
        width: 95px;
    }

}

@media screen and (max-width:375px) {

    .logo-blk {
        width: 120px;
    }

    .header-rwrapper {
        width: calc(100% - 120px);
        padding-right: 30px;
        gap: 5px;
    }

    .without-hamburger .header-rwrapper {
        padding-right: 0;
    }

    .header-content {
        max-width: 84px;
        width: 100%;
        padding-top: 0;
    }

    .login-txt {
        font-size: 8px;
    }

    .menu_right {
        top: 40px;
        height: calc(100% - 40px);
    }

}

/* Header html End*/

/* login html Start */
.first-login-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 13px 0;
    z-index: 1;
    position: relative;
}

.first-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.first-login-logo {
    display: block;
    width: 234px;
    height: 50px;
}

.first-login-logo img {
    width: 100%;
    height: 100%;
}

.first-login-wrap {
    max-width: 240px;
    width: 100%;
    display: flex;
    justify-content: end;
    height: 50px;
    padding-bottom: 10px;
    align-items: end;
}

.first-login-btn {
    display: block;
    position: relative;
    max-width: 140px;
    width: 100%;
    height: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--bg-color);
    background: var(--primary-font-color);
    padding: 8px 25px 8px 23px;
    border-radius: 4px;
    line-height: 1.5;
    cursor: pointer;
}

.first-login-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/assets/img/top/login_profile.png) no-repeat;
    background-size: 100% 100%;
}

.body-wrapper {
    min-height: 100vh;
    background: url(/assets/img/top/login_mv.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.first-login-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 10px;
    padding-top: 184px;
    padding-bottom: 104px;
}

.first-login-left {
    max-width: 486px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 4px rgb(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    padding: 57px 0 80px;
}

.first-login-right {
    max-width: 700px;
    width: 100%;
}

.first-login-ttl {
    font-size: 89px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-font-color);
    border-bottom: 1px solid var(--primary-font-color);
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.lube-ttl {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-top: -10px;
}

.welcome-txt {
    display: block;
    margin-top: 30px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-font-color);
    letter-spacing: 0;
}

.member-btn {
    display: block;
    max-width: 360px;
    width: 100%;
    text-decoration: unset;
    background: var(--primary-font-color);
    color: var(--bg-color);
    border-radius: 8px;
    margin: 0 auto;
    padding: 27px 0 28px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 50px;
    letter-spacing: 0;
}

.register-btn {
    display: block;
    max-width: 360px;
    width: 100%;
    text-decoration: unset;
    background: var(--bg-color);
    color: var(--primary-font-color);
    border-radius: 8px;
    border: 2px solid var(--primary-font-color);
    margin: 21px auto 0;
    padding: 26px 0 26px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
}

.login-right-up {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgb(0, 0, 0, 0.3);
    border-radius: 8px;
    width: 100%;
    padding: 30px 51px 40px;
}

.contact-ttl {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    font-family: "Noto Sans JP", sans-serif;
    padding-left: 27px;
    color: var(--third-font-color);
}

.contact-ttl::before {
    content: " ";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 24px;
    height: 24px;
    background: url(/assets/img/top/announce.png) no-repeat;
    background-size: 100% 100%;
}

.contact-div {
    display: flex;
    justify-content: start;
    padding: 10px 0;
    color: var(--third-font-color);
    font-family: "Noto Sans JP", sans-serif;
    border-top: 1px dashed var(--border-color);
    gap: 30px;
}

.last-contact-div {
    border-bottom: 1px dashed var(--border-color);
}

.contact-date {
    width: 74px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.contact-info {
    width: calc(100% - 104px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.login-right-down {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgb(0, 0, 0, 0.3);
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    margin-top: 30px;
    padding: 30px 51px 40px;
    font-family: "Noto Sans JP", sans-serif;
}

.pro-search-btn {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    background: var(--primary-font-color);
    color: var(--bg-color);
    padding: 18px 15px 18px 50px;
    max-width: 250px;
    width: 100%;
    position: relative;
    border-radius: 4px;
}

.pro-search-btn::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(/assets/img/top/search.png) no-repeat;
    background-size: 100% 100%;
}

.pro-search-btn::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url(/assets/img/top/right_arr.png) no-repeat;
    background-size: 100% 100%;
}

.good-div {
    width: 100%;
    padding-right: 50px;
}

.good-ttl::before {
    background: url(/assets/img/top/good.png) no-repeat;
    background-size: 100% 100%;
}

.first-inquiry-div {
    width: 100%;
    border-left: 1px solid var(--border-color);
    padding-left: 50px;
}

.first-inquiry-ttl::before {
    background: url(/assets/img/top/message.png) no-repeat;
    background-size: 100% 100%;
}

.inquiry-btn::before {
    background: url(/assets/img/top/inquiry.png) no-repeat;
    background-size: 100% 100%;
}

.faq-btn::before {
    background: url(/assets/img/top/faq.png) no-repeat;
    background-size: 100% 100%;
}

.profile-hover {
    display: none;
    max-width: 240px;
    width: 100%;
    background-color: var(--secondary-font-color);
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 55px;
    padding-top: 25px;
    padding-bottom: 10px;
    z-index: 9;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.profile-hover.profile-flex {
    display: flex;
}

.guest-txt {
    font-size: 14px;
    font-weight: 500;
    color: var(--si-font-color);
    letter-spacing: 0;
}

.profile-btn.profile-hov-btn {
    color: var(--secondary-font-color);
    padding: 10px 0;
    text-align: center;
    background-color: var(--primary-font-color);
}

.profile-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--si-font-color);
    text-decoration: none;
    text-align: center;
    display: inline-block;
    max-width: 160px;
    width: 100%;
    padding-top: 0;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-cosmo-con {
    position: relative;
}

.profile-btn-wrap {
    max-width: 160px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.lubus-btn {
    font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 1250px) {
    .login-right-down {
        padding: 30px;
        gap: 0;
    }

    .first-inquiry-div {
        padding-left: 20px;
    }

    .good-div {
        padding-right: 20px;
    }

    .pro-search-btn {
        max-width: 100%;
    }

    .first-login-left {
        max-width: 450px;
    }
}

@media screen and (max-width: 1000px) {

    .body-wrapper {
        background: url(/assets/img/top/login_mv_sp.png);
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .first-login-flex {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .first-login-left {
        max-width: 100%;
        padding: 14px 30px 25px 30px;
        text-align: start;
    }

    .first-login-ttl {
        max-width: 280px;
        font-size: 40px;
        line-height: 1.3;
        text-align: center;
        padding-bottom: 0;
    }

    .first-login-logo-ttl {
        margin-bottom: 0;
    }

    .lube-ttl {
        display: inline;
        font-size: 14px;
        letter-spacing: 0px;
        margin-left: 0;
    }

    .welcome-txt {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
        margin-top: 12px;
    }

    .lubus-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 11px;
        margin-top: 14px;
    }

    .member-btn {
        font-size: 14px;
        margin-top: 0;
        padding: 15px 0;
        text-align: center;
    }

    .register-btn {
        font-size: 14px;
        margin-top: 0;
        padding: 14px 0 14px;
        text-align: center;
    }

    .first-login-right {
        max-width: 100%;
    }

    .login-right-up {
        max-width: 100%;
        padding: 20px 30px 23px;
    }

    .login-right-down {
        max-width: 100%;
        margin-top: 10px;
        flex-direction: column;
        padding: 20px 30px 20px;
        gap: 20px;
    }

    .contact-div {
        flex-direction: column;
        gap: 3px;
        padding: 5px 0;
    }

    .contact-ttl {
        font-size: 16px;
        padding-left: 25px;
    }

    .contact-ttl::before {
        width: 18px;
        height: 18px;
    }

    .first-inquiry-div {
        border-left: 0;
        padding-left: 0;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        ;
    }

    .good-div {
        padding-right: 0;
    }

    .pro-search-btn {
        font-size: 14px;
        line-height: 1.4;
        margin-top: 10px !important;
        padding: 10px 23px 10px 40px;
    }

    .pro-search-btn+.pro-search-btn {
        margin-top: 5px !important;
    }

    .pro-search-btn::after {
        width: 8px;
        height: 8px;
    }

    .pro-search-btn::before {
        width: 16px;
        height: 16px;
        left: 15px;
    }

    .first-login-logo {
        width: 140px;
        height: 30px;
    }

    .last-contact-div {
        border-bottom: none;
    }

    .contact-info {
        width: 100%;
        font-size: 13px;
    }

    .contact-date {
        font-size: 12px;
    }

    .first-login-header {
        padding: 5px 0;
    }

    .first-login-btn {
        background-color: unset;
        max-width: 40px;
        width: 100%;
        padding: 0;
        font-size: 10px;
        color: var(--primary-font-color);
        letter-spacing: 0;
        padding-top: 27px;
        font-weight: 500;
    }

    .first-login-btn::after {
        background: url(/assets/img/top/login_profile_sp.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .first-login-wrap {
        height: 40px;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 400px) {
    .body-wrapper {
        background: url(/assets/img/top/login_mv_s_sp.png);
        background-size: cover;
        background-position: top right;
        background-repeat: no-repeat;
    }
}



@media screen and (max-width: 375px) {
    .first-login-left {
        padding: 25px 20px;
    }

    .first-login-ttl {
        max-width: 248px;
        font-size: 30px;
    }

    .register-btn {
        font-size: 12px;
        padding: 10px 0 10px;
        line-height: 1.4;
    }

    .member-btn {
        font-size: 12px;
        padding: 12px 0 12px;
    }

    .login-right-up {
        padding: 20px 20px 23px;
    }

    .login-right-down {
        padding: 20px;
    }
}

/* login html End*/


/* Index html Start */

.top-doc-box {
    border-radius: 8px;
    padding: 22px 40px 30px 40px;
    margin-top: 25px;
}

.doc-tbl-ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doc-ttl {
    font-size: 16px;
    font-weight: 500;
    color: var(--third-font-color);
    position: relative;
    padding-left: 34px;
    line-height: 1.5;
}

.doc-ttl::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(/assets/img/common/ic_document.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: -2px;
}

.doc-list-link {
    color: var(--primary-font-color);
    text-decoration: underline !important;
    text-underline-offset: 1.5px;
    display: inline-block;
}

.tbl-first-col {
    width: 7%;
}

.tbl-second-col {
    width: 8%;
}

.tbl-third-col {
    width: 15%;
    position: relative;
}

.tbl-third-col::before {
    content: "";
    width: 10px;
    height: 8px;
    background: url(/assets/img/common/ic_dropdown_black.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.tbl-fourth-col {
    width: 50%;
}

.tbl-fifth-col {
    width: 20%;
}

.doc-tbl-wrap {
    margin-top: 10px;
}

.doc-tbl {
    width: 100%;

}

.doc-tbl thead tr th {
    font-size: 12px;
    font-weight: 500;
    color: var(--third-font-color);
    text-align: center;
    line-height: 1.4;
    padding: 5px 0 8px 0;
    background-color: var(--bg-third-color);
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
}

.doc-tbl tbody tr td {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.4;
    padding: 4px 0 6px 0;
    color: var(--third-font-color);
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.doc-tbl tbody tr td.tbl-start {
    text-align: start;
    padding-left: 12px;
}

.app-box {
    display: flex;
    max-width: 400px;
    width: 100%;
    gap: 10px;
}

.app-box-wrap {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 25px;
    padding-bottom: 25px;
}

.app-box-left {
    max-width: 140px;
    width: 100%;
    padding: 60px 20px 63px 20px;
    background-color: var(--bg-second-color);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.app-box-left-txt {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-font-color);
    position: relative;
    padding-top: 33px;
    letter-spacing: 0;
}

.app-box-one .app-box-left-txt::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(/assets/img/common/ic_various_app.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.app-box-two .app-box-left-txt::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(/assets/img/common/ic_sales_promo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.app-box-three .app-box-left-txt::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(/assets/img/common/ic_traning.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.app-box-right {
    max-width: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.app-box-item {
    width: 100%;
    padding: 10px 20px 10px 20px;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--third-font-color);
}

.app-box-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background: url(/assets/img/common/app_box_item_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* link box */
.top-link-box {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 10px;
    border-top: 1px solid var(--border-color);
}

.top-link-left, .top-link-right {
    padding-left: 36px;
    width: 50%;
    position: relative;
}


.top-link-ttl {
    font-size: 16px;
    font-weight: 500;
    color: var(--third-font-color);
}

.top-link-left::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(/assets/img/common/ic_link_top.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: -2px;
}

.top-link-right::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(/assets/img/common/ic_setting_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: -2px;
}


.link-items {
    display: flex;
    gap: 52px;
    margin-top: 12px;
}

.link-item {
    font-size: 14px;
    color: var(--primary-font-color);
    text-decoration: underline !important;
    text-underline-offset: 2px;
    padding-left: 19px;
    position: relative;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.link-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background: url(/assets/img/common/ic_link_arrow_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 5px;
    top: 6px;
}

.menu-blks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    column-gap: 93px;
    row-gap: 30px;
}

.menu-blks>.menu-blk+.menu-blk {
    margin-top: 0px;
    position: relative;
}

.menu-blks>.menu-blk+.menu-blk::before {
    content: "";
    position: absolute;
    border-left: 1px solid var(--border-color);
    left: -49px;
    top: 8px;
    height: 95%;
    width: 1px;
}

.renovation-blk {
    padding: 10px;
    background: var(--bg-third-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    color: var(--bg-second-color);
    font-size: 14px;
    font-weight: 500;
    min-height: 130px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.information-txt {
    letter-spacing: 0;
}

@media screen and (max-width: 1200px) {
    .tbl-first-col {
        width: 10%;
    }

    .tbl-fourth-col {
        width: 48%;
    }

    .tbl-fifth-col {
        width: 18%;
    }
}

@media screen and (max-width: 1000px) {
    .app-box-left {
        max-width: 100px;
        padding: 40px 10px 43px 10px;
    }

    .app-box-left-txt {
        font-size: 12px;
        padding-top: 25px;
    }

    .app-box-item {
        font-size: 10px;
        padding: 10px 20px 10px 10px;
    }

    .app-box-one .app-box-left-txt::before, .app-box-two .app-box-left-txt::before, .app-box-three .app-box-left-txt::before {
        width: 20px;
        height: 20px;
    }

    .app-box-wrap {
        gap: 5px;
    }

    .app-box {
        gap: 5px;
    }

    .doc-tbl thead tr th {
        font-size: 1.10px;
    }
}

@media screen and (max-width: 768px) {
    .app-box-item {
        font-size: 14px;
        padding: 10px 20px;
    }

    .doc-tbl thead tr th {
        font-size: 10px;
        padding: 2px;
        vertical-align: middle;
    }

    .doc-tbl tbody tr td {
        font-size: 12px;
        vertical-align: middle;
    }

    .top-doc-box {
        padding: 20px;
        margin-top: 20px;
    }

    .doc-list-link {
        font-size: 12px;
        padding-right: 8px;
    }

    .ttl-doc-link {
        font-size: 14px;
        padding-right: 0;
    }

    .doc-tbl-wrap {
        overflow-x: scroll;
    }

    .doc-tbl {
        min-width: 430px;
    }

    .app-box-wrap {
        flex-direction: column;
        padding-bottom: 20px;
        gap: 15px;
        margin-top: 15px;
    }

    .app-box {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
    }

    .app-box-left {
        max-width: 100%;
        width: 100%;
        padding: 10px 10px 10px 20px;
        justify-content: start;
    }

    .app-box-left-txt {
        padding-top: 0;
        padding-left: 23px;
        font-size: 16px;
        line-height: 1.5;
    }

    .app-box-one .app-box-left-txt::before, .app-box-two .app-box-left-txt::before, .app-box-three .app-box-left-txt::before {
        left: 0;
        width: 18px;
        height: 18px;
        top: 50%;
        transform: translateY(-50%);
    }

    .app-box-right {
        max-width: 100%;
        width: 100%;
    }

    .tbl-third-col::before {
        right: 5px;
    }

    .top-link-box {
        flex-direction: column;
        column-gap: 20px;
        row-gap: 30px;
        padding-bottom: 30px;
    }

    .menu-blks {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 80px;
    }

    .menu-blks .menu-blk .pinformation-wrapper {
        display: none;
        margin-top: 8px;
    }

    .menu-blks .menu-blk .pinformation-wrapper.active {
        display: block;
    }

    .menu-blks .menu-blk.active .pinformation-wrapper {
        display: block;
    }

    .menu-blks .menu-blk>.information-ttl {
        border-top: 1px solid var(--border-color);
        padding-top: 9px;
        margin-bottom: 0;
        padding-left: 9px;
        position: relative;
        cursor: pointer;
    }

    .menu-blks .menu-blk>.information-ttl::before {
        content: "";
        position: absolute;
        right: 14px;
        top: 16px;
        width: 2px;
        height: 10px;
        background: var(--primary-font-color);
        border-radius: 20px;
    }

    .menu-blks .menu-blk>.information-ttl::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 20px;
        width: 10px;
        height: 2px;
        background: var(--primary-font-color);
        border-radius: 20px;
    }

    .menu-blks .menu-blk>.information-ttl.active::before {
        height: 0;
    }

    .menu-blks>.menu-blk:last-child {
        border-bottom: 1px solid var(--border-color)
    }

    .renovation-blk {
        padding: 11px 0;
        min-height: 40px;
    }

    .top-link-left::before {
        width: 18px;
        height: 18px;
        top: 1px;
    }

    .top-link-left, .top-link-right {
        padding-left: 23px;
        width: 100%;
    }

    .top-link-right::before {
        width: 18px;
        height: 18px;
        top: 2px;
    }

    .menu-list .link-items {
        gap: 30px;
        justify-content: space-between;
    }

    .menu-blk-last {
        padding-bottom: 30px;
    }

    .link-items {
        gap: 59px;
    }

    .doc-tbl tbody tr td.tbl-start {
        padding-left: 0px;
    }

    .doc-ttl::before {
        width: 18px;
        height: 18px;
        top: 2px;
    }

    .doc-ttl {
        padding-left: 25px;
    }

    .link-item {
        padding-left: 15px;
    }
}

@media screen and (max-width: 650px) {
    .tbl-first-col {
        width: 12%;
    }

    .tbl-second-col {
        width: 12%;
    }

    .tbl-third-col {
        width: 16%;
    }

    .tbl-fourth-col {
        width: 38%;
    }

    .tbl-fifth-col {
        width: 18%;
    }
}

@media screen and (max-width: 450px) {
    .tbl-first-col {
        width: 10%;
    }

    .tbl-second-col {
        width: 9%;
    }

    .tbl-third-col {
        width: 13%;
    }

    .tbl-fourth-col {
        width: 37%;
    }

    .tbl-fifth-col {
        width: 26%;
    }

}

@media screen and (max-width: 375px) {
    .link-items {
        gap: 20px;
    }

    .link-items.link-itemslast {
        gap: 15px;
    }

}

/* Index html End*/

/* footer start */
.footer-blk {
    background-color: var(--primary-font-color);
    padding: 12px 0;
}

.ft-content {
    display: flex;
    justify-content: space-between;
    gap: 11px;
    align-items: center;
}

.ft-left {
    display: flex;
    column-gap: 30px;
    row-gap: 6px;
    flex-wrap: wrap;
}

.copy-txt {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--secondary-font-color);
    margin-bottom: 0;
}

.ft-link {
    color: var(--secondary-font-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    position: relative;
    padding-left: 16px;
    text-decoration: none !important;
}

.ft-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(/assets/img/common/ic_next.png) no-repeat center / contain;
    width: 8px;
    height: 8px;
}

@media screen and (max-width: 768px) {
    .ft-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .ft-link {
        font-size: 12px;
    }

    .copy-txt {
        font-size: 10px;
        letter-spacing: -0.1px;
    }

    .footer-blk {
        padding: 16px 0;
    }

    .link-item::before {
        left: -1px;
    }

    .ft-link::before {
        left: 2px;
    }
}

@media screen and (max-width: 375px) {
    .ft-left {
        column-gap: 10px;
    }

    .ft-content {
        padding: 0 10px;
    }
}


@media screen and (max-width: 340px) {
    .copy-txt {
        font-size: 9px;
    }

    .ft-content {
        padding: 0;
    }
}

/* footer end */

/* index page user information hover Start */
.information-blk-hov {
    display: none;
    width: 240px;
    background-color: white;
    position: absolute;
    top: -15px;
    z-index: 11;
    border-radius: 8px;
    right: 165px;
    box-shadow: 0 2px 4px rgb(0, 0, 0, 0.3);
    padding: 30px 36px 40px 44px;
    letter-spacing: 0;
}

.information-blk-hov.info-blk-hov-show {
    display: block;
}

.information-blk-hov-wrap {
    position: relative;
}

.information-blk-wrap {
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.login-user-ttl, .membership-ttl {
    font-size: 14px;
    font-weight: 500;
    color: var(--si-font-color);
}

.login-user-data {
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--border-color);
}

.membership-ttl {
    margin-top: 15px;
}

.membership-data {
    font-size: 16px;
    font-weight: 500;
    color: var(--third-font-color);
    margin-top: 15px;
}

.membership-logout {
    background-color: var(--fourth-font-color);
    padding: 9px;
    color: var(--secondary-font-color);
    text-align: center;
    max-width: 160px;
    width: 100%;
    margin-top: 20px;
    margin-left: -3px;
}

@media screen and (max-width: 768px) {
    .information-blk-wrap {
        padding-bottom: 0;
    }

    .information-blk-hov.info-blk-hov-show {
        position: fixed;
        top: 60px;
        right: 66px;
    }
}

/* index page user information hover End */
/* faq start */
.heading-blk {
    background-color: var(--primary-font-color);
    border-radius: 10px;
    padding: 26px 40px;
}

.pg-ttl {
    font-size: 3.20px;
    font-weight: 500;
    color: var(--secondary-font-color);
    line-height: 1.5;
    letter-spacing: 0;
}

.bread-crumb-list {
    display: flex;
    gap: 25px;
    padding-top: 15px;
    letter-spacing: 0;
}

.bread-crumb-item {
    font-size: 12px;
    font-weight: 400;
    color: var(--third-font-color);
}

.bread-crumb-link {
    color: var(--primary-font-color);
}

.bread-crumb-ic {
    position: relative;
}

.bread-crumb-ic ::after {
    content: "";
    width: 8px;
    height: 8px;
    background: url(/assets/img/common/ic_link_arrow_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: -16px;
    top: 4px;
}

.sh-txt {
    font-size: 14px;
    font-weight: 400;
    color: var(--bg-second-color);
    letter-spacing: 0;
    line-height: 1.5;
}

.search-blk {
    background-color: var(--bg-fourth-color);
    border-radius: 8px;
    padding: 20px 30px 20px 20px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.search-wrapper {
    display: flex;
    width: calc(100% - 193px);
}

.search-btn-new {
    max-width: 80px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: var(--secondary-font-color);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid var(--primary-font-color);
    background-color: var(--primary-font-color);
}

.search-area-new {
    padding: 10px 15px;
    width: 100%;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 1px solid var(--border-color);
    outline: none;
}

.ser-ic {
    width: 18px;
    height: 18px;
}

.sr-ttl {
    padding-left: 27px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--third-font-color);
    width: 163px;
}

.sr-ttl::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(/assets/img/common/ic_search_bl.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0px;
}

.cd-ttl {
    font-size: 2.40px;
    font-weight: 500;
    color: var(--bg-second-color);
    padding-left: 30px;
    letter-spacing: 0;
    position: relative;
}

.cd-ttl::before {
    content: "";
    width: 20px;
    height: 6px;
    background: url(/assets/img/common/cd_ttl_ic.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: 13px;
}

.faq-ft-blk {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(413px, 1fr));
}

.cat-blk {
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.hd-blk {
    padding: 16px 30px 16px 30px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: var(--primary-font-color);
}

.hd-blk-lt {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-font-color);
    letter-spacing: 0;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.hd-blk-lt::before {
    content: "";
    width: 10px;
    height: 10px;
    background: url(/assets/img/common/ic_square.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hd-blk-rt {
    background-color: var(--bg-color);
    max-width: 102px;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 4px 5px;
    color: var(--primary-font-color);
    letter-spacing: 0;
}

.ft-ct-blk {
    background-color: var(--bg-color);
    padding: 34px 38px 40px 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.faq-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-font-color);
    text-decoration: underline !important;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
    letter-spacing: 0;
    text-underline-offset: 2px;
}

.faq-link~.faq-link {
    margin-top: 20px;
}

.faq-link::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(/assets/img/common/ic_faq.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: 4px;
}

input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--fourth-font-color);
}

.acc-blk-ttl {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--bg-second-color);
    letter-spacing: 0;
    line-height: 1.3;
}

.acc-hd {
    background-color: var(--bg-color);
    padding: 18px 30px;
    transition: background-color 0.6s ease;
    border-radius: 8px;
    cursor: pointer;
}

.acc-ttl::before {
    content: "";
    width: 32px;
    height: 32px;
    background: url(/assets/img/common/ic_faq_bl.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: -4px;
}

.acc-ttl {
    padding-left: 42px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--third-font-color);
    line-height: 1.5;
    padding-right: 19px;
    letter-spacing: 0;
}

.acc-ttl::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(/assets/img/common/acc_plus_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.ad-blk {
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.ad-blk+.ad-blk {
    margin-top: 16px;
}

.acc-hd.active .acc-ttl::after {
    background: url(/assets/img/common/minus_white_accordion.png);
    width: 16px;
    height: 2px;
}

.acc-hd.active {
    background-color: var(--primary-font-color);
    transition: all 0.6ms ease;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.acc-hd.active .acc-ttl {
    color: var(--secondary-font-color);
}

.acc-hd.active .acc-ttl::before {
    background: url(/assets/img/common/ic_faq_wt.png);
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.acc-ct {
    font-size: 16px;
    font-weight: 400;
    color: var(--third-font-color);
    line-height: 1.5;
    padding-left: 42px;
    position: relative;
}

.accordion-content {
    display: none;
    background-color: var(--fifth-font-color);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 18px 30px;
}

.acc-ct::before {
    content: "";
    width: 32px;
    height: 32px;
    background: url(/assets/img/common/ic_faq_ans.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: -3px;
}


@media screen and (max-width: 768px) {


    .faq-ft-blk {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .heading-blk {
        padding: 15px 15px 15px 20px;
        border-radius: 5px;
    }

    .pg-ttl {
        font-size: 20px;
    }

    .bread-crumb-list {
        padding-top: 10px;
        gap: 19px;
    }

    .bread-crumb-item {
        font-size: 10px;
    }

    .bread-crumb-ic ::after {
        left: -12px;
        top: 3px;
        width: 6px;
        height: 6px;
    }

    .search-blk {
        flex-direction: column;
        border-radius: 5px;
        align-items: start;
        padding: 20px;
        gap: 10px;
    }

    .search-wrapper {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .search-area-new {
        border-radius: 5px;
        padding: 15px 10px;
    }

    .search-btn-new {
        max-width: 100%;
        border-radius: 5px;
    }

    .sr-ttl::before {
        display: none;
    }

    .sr-ttl {
        padding-left: 0px;
        font-size: 14px;
    }

    input::placeholder {
        font-size: 1.10px;
    }

    .cd-ttl {
        font-size: 18px;
        padding-left: 17px;
    }

    .cd-ttl::before {
        width: 12px;
        height: 4px;
        top: 10px;
    }

    .hd-blk-lt {
        font-size: 14px;
        padding-left: 10px;
    }

    .hd-blk {
        padding: 8px 20px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .hd-blk-lt::before {
        width: 6px;
        height: 6px;
    }

    .hd-blk-rt {
        max-width: 85px;
        font-size: 12px;
        padding: 5px;
    }

    .ft-ct-blk {
        padding: 17px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .cat-blk {
        border-radius: 5px;
    }

    .faq-link {
        font-size: 14px;
        padding-left: 25px;
    }

    .faq-link::before {
        width: 18px;
        height: 18px;
        top: 2px;
    }

    .faq-link+.faq-link {
        margin-top: 10px;
    }

    .acc-blk-ttl {
        font-size: 16px;
    }

    .acc-hd {
        padding: 18px 10px 18px 20px;
        border-radius: 5px;
    }

    .acc-ttl::before {
        width: 18px;
        height: 18px;
        top: 1px;
    }

    .acc-hd.active .acc-ttl::before {
        width: 18px;
        height: 18px;
    }

    .acc-ttl {
        font-size: 14px;
        padding-left: 22px;
        padding-right: 27px;
        line-height: 1.3;
    }

    .acc-ttl::after {
        width: 10px;
        height: 10px;
    }

    .acc-hd.active .acc-ttl::after {
        width: 10px;
    }

    .accordion-content {
        padding: 15px 20px 15px 20px;
    }

    .acc-ct::before {
        width: 18px;
        height: 18px;
        top: 2px;
    }

    .acc-ct {
        padding-left: 22px;
        font-size: 14px;
    }

    .ad-blk+.ad-blk {
        margin-top: 5px;
    }

    .ad-blk {
        border-radius: 5px;
    }
}

/* faq end */
/* stockhandbook start */
.search-pro-accordion {
    width: 100%;
    display: flex;
    gap: 10px;
}

.search-pro-accordion:not(:first-child) {
    margin-top: 30px;
}

.search-pro-accordion:last-child {
    margin-bottom: 60px;
}

.search-pro-ttl {
    width: 19%;
    border-radius: 8px;
    background-color: var(--primary-font-color);
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bg-color);
    padding: 18px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-pro-items {
    width: calc(100% - 20%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.search-pro-item {
    max-width: 250px;
    width: 100%;
    min-height: 60px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px 20px;
    position: relative;
    letter-spacing: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--third-font-color);
}

.search-pro-item::before {
    content: "";
    width: 8px;
    height: calc(100% + 1.6px);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    position: absolute;
    left: -1px;
    top: -0.8px;
    background-color: var(--primary-font-color);
}

.search-pro-item::after {
    content: "";
    width: 8px;
    height: 8px;
    background: url(/assets/img/common/ic_link_arrow_blue.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.blue-underline-link {
    color: var(--primary-font-color);
    text-decoration: underline !important;
    display: inline-block;
    text-underline-offset: 2px;
}

.sh-txt-bold {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--bg-second-color);
}

.tbl-img-hb{
    width: 100%;
    height: auto;
    margin-bottom: 60px;
}

.tbl-img-hb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hand-tbl {
    width: 100%;
}

.hand-tbl thead tr th {
    width: 18%;
    font-size: 14px;
    font-weight: 500;
    color: var(--third-font-color);
    text-align: center;
    line-height: 1.4;
    padding: 11px 2px;
    background-color: var(--bg-third-color);
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
    letter-spacing: 0;
    vertical-align: middle;
}

.hand-tbl thead tr th:nth-child(2) {
    background-color: var(--tbl-bg-color);
}

.hand-tbl thead tr th:first-child {
    width: 12.5%;
}

.hand-tbl tbody tr:first-child {
    background-color: var(--primary-font-color);
    color: var(--bg-color);
    letter-spacing: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.hand-tbl tbody tr:first-child td {
    position: relative;
    padding: 7px 0 7px 35px;
}

.hand-tbl tbody tr:first-child td::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--bg-color);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.hand-tbl tbody tr:not(:first-child) td {
    font-size: 14px;
    font-weight: 400;
    color: var(--third-font-color);
    padding: 10px 8px;
    vertical-align: middle;
    word-break: break-all;
    border: 2px solid var(--secondary-font-color);
}

.hand-tbl tbody tr:not(:first-child) td:first-child {
    text-align: center;
}

.hand-tbl tbody tr:nth-child(even):not(:first-child) {
    background-color: var(--tbl-secbg-color);
}

.hand-tbl tbody tr:nth-child(even):not(:first-child) td:nth-child(2) {
    background-color: var(--tbl-fibg-color);
}

.hand-tbl tbody tr:nth-child(odd):not(:first-child) {
    background-color: var(--tbl-thbg-color);
}

.hand-tbl tbody tr:nth-child(odd):not(:first-child) td:nth-child(2) {
    background-color: var(--tbl-fobg-color);
}

.sh-txt-normal {
    font-size: 14px;
    font-weight: 400;
    color: var(--bg-second-color);
    letter-spacing: 0;
    line-height: 1.5;
    display: inline;
}

@media screen and (max-width: 1100px) {
    .hand-tbl thead tr th {
        font-size: 12px;
    }

    .hand-tbl tbody tr:not(:first-child) td {
        font-size: 12px;
    }

    .hand-tbl tbody tr:first-child {
        font-size: 16px;
    }
}

@media screen and (max-width: 1020px) {
    .hand-tbl thead tr th {
        width: 18%;
    }

    .hand-tbl thead tr th:first-child {
        width: 10%;
    }
}

@media screen and (max-width: 1000px) {
    .search-pro-items {
        width: calc(100% - 27%);
        grid-template-columns: repeat(3, 1fr);
    }

    .search-pro-ttl {
        width: 26%;
    }

    .hand-tbl thead tr th {
        font-size: 10px;
    }

    .hand-tbl tbody tr:not(:first-child) td {
        font-size: 10px;
    }

    .hand-tbl tbody tr:first-child {
        font-size: 14px;
    }

    .hand-tbl thead tr th {
        width: 18%;
    }

    .hand-tbl thead tr th:first-child {
        width: 10%;
    }
}

@media screen and (max-width: 850px) {

    .hand-tbl thead tr th:nth-child(2), .hand-tbl thead tr th:nth-child(5), .hand-tbl thead tr th:nth-child(6) {
        width: 20%;
    }

    .hand-tbl thead tr th:nth-child(1), .hand-tbl thead tr th:nth-child(3), .hand-tbl thead tr th:nth-child(4) {
        width: 13%;
    }
}

@media screen and (max-width: 768px) {
    .tbl-img-hb{
        margin-bottom: 50px;
        height: auto;
        margin-left: 0;
    }
    .search-pro-accordion:not(:first-child) {
        margin-top: 5px;
    }

    .search-pro-accordion:last-child {
        margin-bottom: 50px;
    }

    .search-pro-accordion {
        flex-direction: column;
    }

    .search-pro-accordion {
        gap: 0;
    }

    .search-pro-ttl {
        width: 100%;
        padding: 10px 18px 10px 20px;
        font-size: 14px;
        line-height: 1.4;
        border-radius: 5px;
        justify-content: start;
        position: relative;
    }

    .search-pro-ttl::before {
        content: "";
        width: 10px;
        height: 10px;
        background: url(/assets/img/common/plus_white_accordion.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    .search-pro-ttl.stock-accor-open {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .search-pro-ttl.stock-accor-open::before {
        content: "";
        width: 10px;
        height: 10px;
        background: url(/assets/img/common/minus_white_accordion.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    .search-pro-items {
        width: 100%;
        padding: 20px;
        border: 1px solid var(--primary-font-color);
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        gap: 5px;
    }

    .search-pro-item {
        font-size: 12px;
        padding: 12px 10px;
        min-height: 50px;
        padding-left: 15px;
    }

    .search-pro-item::before {
        width: 8px;
    }

    .search-pro-item::after {
        right: 4px;
        width: 6px;
        height: 6px;
    }

    .hand-tbl {
        min-width: 475px;
    }

    .hand-tbl thead tr th {
        padding: 2px;
        line-height: 1.2;
    }

    .hand-tbl tbody tr:first-child td::before {
        display: none;
    }

    .hand-tbl tbody tr:first-child td {
        padding: 4px 10px;
    }

    .hand-tbl tbody tr:not(:first-child) td {
        vertical-align: top;
        font-size: 12px;
        padding: 5px;
        letter-spacing: 0;
        line-height: 1.3;
    }

    .hand-tbl tbody tr:not(:first-child) td:first-child {
        text-align: left;
    }

    .hand-tbl thead tr th:nth-child(1) {
        min-width: 50px;
    }

    .hand-tbl thead tr th:nth-child(2) {
        min-width: 100px;
    }

    .hand-tbl thead tr th:nth-child(3), .hand-tbl thead tr th:nth-child(4), .hand-tbl thead tr th:nth-child(5), .hand-tbl thead tr th:nth-child(6) {
        min-width: 80px;
    }

    .sh-txt-normal {
        font-size: 13px;
    }

}

@media screen and (max-width: 600px) {
    .search-pro-items {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }
}

@media screen and (max-width: 365px) {
    .search-pro-items {
        grid-template-columns: 1fr;
    }

    .search-pro-item {
        max-width: 100%;
    }
}

/* stockhandbook end */

/* header menu start */
#headerPartHamburger .logo-blk-wrap {
    width: calc(100% - 990px);
}

#headerPartHamburger .logo-blk {
    width: 170px;
}

#headerPartHamburger .header-rwrapper {
    width: 430px;
    align-items: center;/* 251010ADD */
}

.header-menu-box {
    width: 540px;
    height: 50px;
    display: flex;
    gap: 30px;
    justify-content: start;
}

#headerPartHamburger .header-blk {
    padding-top: 10px;
}

#headerPartHamburger .header-blk-wrapper {
    align-items: end;
}

#headerPartHamburger .wel-txt {
    padding-bottom: 0;
}

#headerPartHamburger .information-blk-wrap {
    padding-bottom: 0;
}

#headerPartHamburger .information-blk-hov {
    top: -5px;
}

.pc-hamburger {
    display: block;
}

.sp-hamburger {
    display: none;
}

#headerPartHamburger .header_menu {
    display: none;
}


.cmn-blk {
    padding-top: 20px;
}

@media screen and (max-width: 1100px) {
    #headerPartHamburger .header-content {
        flex-direction: column;
        gap: 5px;
        padding-top: 0px;
        justify-content: end;
        align-items: end;
    }

    #headerPartHamburger .acc-content {
        position: relative;
        top: 0;
    }

    #headerPartHamburger .information-blk {

        background-color: unset;
        justify-content: right;

    }

    #headerPartHamburger .user-infor-txt {
        color: var(--primary-font-color);
        padding: 0;
        font-size: 12px;
        text-decoration: underline !important;
    }

    #headerPartHamburger .login-blk {
        flex-direction: column-reverse;
        background-color: unset;
        padding: 0;
        max-width: unset;
        width: unset;
    }

    #headerPartHamburger .login-txt {
        color: var(--fourth-font-color);
        font-size: 10px;
        letter-spacing: 0;
    }

    #headerPartHamburger .wel-txt {
        font-size: 12px;
        text-align: right;
        padding-bottom: 0;
    }

    #headerPartHamburger .user-infor-txt::after {
        display: none;
    }

    #headerPartHamburger .header-blk {
        background-color: var(--bg-color);
        padding: 7px 0;
        position: fixed;
        width: 100%;
        z-index: 99;
    }

    #headerPartHamburger .header-blk.scrolled {
        background-color: var(--bg-color);
    }

    #headerPartHamburger .header_menu {
        width: 50px;
        height: 50px;
        position: fixed;
        top: 0;
        right: 0px;
        background-color: var(--primary-font-color);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
        z-index: 100;
        border-bottom-left-radius: 5px;
    }

    #headerPartHamburger .header_menu .header_menu_img.hamburger_menu {
        display: block;
        width: 16px;
        height: 12px;
    }

    #headerPartHamburger .header_menu.active .header_menu_img.hamburger_menu {
        display: none;
    }

    #headerPartHamburger .header_menu.active .header_menu_img.hamburger_cross {
        display: block;
        width: 16px;
        height: 12px;
    }

    #headerPartHamburger .header_menu .header_menu_img.hamburger_cross {
        display: none;
    }



    #headerPartHamburger .header_menu .header_menu_img img {
        width: 100%;
        height: 100%;
    }

    #headerPartHamburger .menu_item.slide-open {
        transform: translate(0%, 0);
    }

    #headerPartHamburger .header-rwrapper {
        padding-right: 40px;
        width: calc(100% - 140px);
        align-items: end;
    }

    #headerPartHamburger #slidemenuBtn>div>span {
        height: 2px;
        transition: transform 0.3s ease, top 0.2s ease 0.2s;
    }

    #headerPartHamburger #menu.hide {
        display: none;
    }

    #headerPartHamburger .menu_right {
        position: fixed;
        top: 50px;
        right: -1100px;
        width: 100%;
        height: calc(100% - 50px);
        background: var(--bg-color);
        padding: 20px;
        transition: right 0.7s ease;
        z-index: 99;
        display: block;
        overflow: scroll;
    }

    #headerPartHamburger .menu_right.show {
        right: 0;
    }


    #headerPartHamburger .header_menu.active .line:nth-child(1) {
        display: block;
        transform: translateY(6px) rotate(35deg);
        transition: transform 0.2s ease 0.2s;
    }

    #headerPartHamburger .header_menu.active .line:nth-child(2) {
        display: none;
    }

    #headerPartHamburger .header_menu.active .line:nth-child(3) {
        display: block;
        transform: translateY(-2px) rotate(-35deg);
        transition: transform 0.2s ease 0.2s;
    }

    body.noscroll {
        overflow: hidden;
        background-color: var(--bg-color);
    }

    #headerPartHamburger .header-rwrapper.text-hide {
        display: none;
    }

    #headerPartHamburger .header-blk.fixheader {
        position: fixed;
        transition: transform 0.2s ease 0.2s;
        z-index: 99;
        background-color: var(--bg-color);
        width: 100%;
        height: 53px;
        display: flex;
        justify-content: center;
        align-items: end;
    }

    #headerPartHamburger .topbd {
        background: url(/assets/img/top/top_main_bg_sp.png);
        background-size: cover;
        background-position: top;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-color: var(--fifth-font-color);

    }

    #headerPartHamburger .logo-blk {
        width: 143px;
    }

    #headerPartHamburger .pinformation-blk {
        gap: 8px;
    }

    #headerPartHamburger .pinformation-blk span {
        font-size: 9px;
        white-space: nowrap;
    }

    #headerPartHamburger .top-link-left.top-link-left-menu {
        padding-left: 0;
    }

    #headerPartHamburger .top-link-left-menu .link-item::before {
        left: 2px;
    }

    #headerPartHamburger .top-link-left-menu .top-link-ttl {
        padding-left: 23px;
    }

    #headerPartHamburger .top-link-right.top-link-right-menu {
        padding-left: 0;
    }

    #headerPartHamburger .top-link-right-menu .link-item::before {
        left: 2px;
    }

    #headerPartHamburger .top-link-right-menu .top-link-ttl {
        padding-left: 23px;
    }

    #headerPartHamburger .menu-list .information-ttl {
        margin-bottom: 8px;
    }

    #headerPartHamburger .information-blk-hov {
        position: fixed;
        top: 60px;
        right: 66px;
    }

    .cmn-blk {
        padding-top: 75px;
    }

    .header-menu-box {
        display: none;
    }

    .pc-hamburger {
        display: none;
    }

    .sp-hamburger {
        display: block;
    }

    #headerPartHamburger .top-link-box {
        flex-direction: column;
        column-gap: 20px;
        row-gap: 30px;
        padding-bottom: 30px;
    }

    #headerPartHamburger .menu-list .link-items {
        gap: 30px;
        justify-content: space-between;
    }

    #headerPartHamburger .link-item {
        padding-left: 15px;
    }

    #headerPartHamburger .top-link-left::before {
        width: 18px;
        height: 18px;
        top: 1px;
    }

    #headerPartHamburger .top-link-right::before {
        width: 18px;
        height: 18px;
        top: 2px;
    }


    #headerPartHamburger .renovation-blk {
        padding: 11px 0;
        min-height: 40px;
    }

    #headerPartHamburger .menu-blk-last {
        padding-bottom: 30px;
    }

    #headerPartHamburger .top-link-left, #headerPartHamburger .top-link-right {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    #headerPartHamburger .header-content {
        max-width: 95px;
        width: 100%;
    }

    #headerPartHamburger .wel-txt {
        width: 95px;
    }

}

@media screen and (max-width: 375px) {
    /* #headerPartHamburger .logo-blk{
        width: 120px;
    } */

    #headerPartHamburger .header-rwrapper {
        width: calc(100% - 120px);
        gap: 5px;
    }

    #headerPartHamburger .without-hamburger .header-rwrapper {
        padding-right: 0;
    }

    #headerPartHamburger .header-content {
        max-width: 84px;
        width: 100%;
        padding-top: 0;
    }

    /* #headerPartHamburger .login-txt {
        font-size: 8px;
    } */

}

@media screen and (max-width: 350px) {
    #headerPartHamburger .header_menu {
        width: 45px;
    }

    #headerPartHamburger .header-rwrapper {
        padding-right: 30px;
    }
}

@media screen and (max-width: 335px) {
    #headerPartHamburger .user-infor-txt {
        font-size: 10px;
    }

    #headerPartHamburger .wel-txt {
        font-size: 10px;
    }

    #headerPartHamburger .login-txt {
        font-size: 8px;
    }

    #headerPartHamburger .header-blk.fixheader {
        height: 50px;
    }
}

.hover-gap {
    width: 100%;
    height: 20px;
    background-color: transparent;
    position: absolute;
    bottom: -20px;
}

.header-menu-item-txt {
    font-size: 14px;
    font-weight: 500;
    color: var(--third-font-color);
}

.header-menu-item-img {
    width: 18px;
    height: 18px;
}

.header-menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 5px;
    position: relative;
    cursor: pointer;
}

.header-menu-item:hover .header-menu-item-txt {
    color: var(--border-color);
}

.header-menu-item:hover::before {
    bottom: -6px;
}

.header-menu-item::before {
    content: "";
    width: 8px;
    height: 6px;
    background: url(/assets/img/common/blue_dropdown_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.2s linear;
}

.header-menu-product:hover .header-menu-hov.product,
.header-menu-product .header-menu-hov-gap:hover .header-menu-hov.product {
    display: block;
}

.header-menu-logistic:hover .header-menu-hov.logistic,
.header-menu-logistic .header-menu-hov-gap:hover .header-menu-hov.logistic {
    display: block;
}

.header-menu-inquiry:hover .header-menu-hov.inquiry,
.header-menu-inquiry .header-menu-hov-gap:hover .header-menu-hov.inquiry {
    display: block;
}

.header-menu-ecopro:hover .header-menu-hov.ecopro,
.header-menu-ecopro .header-menu-hov-gap:hover .header-menu-hov.ecopro {
    display: block;
}

.header-menu-outgoing:hover .header-menu-hov.outgoing,
.header-menu-outgoing .header-menu-hov-gap:hover .header-menu-hov.outgoing {
    display: block;
}

.header-menu-application:hover .header-menu-hov.application,
.header-menu-application .header-menu-hov-gap:hover .header-menu-hov.application {
    display: block;
}

.header-menu-ecopro .renovation-blk {
    min-height: 40px;
}

.header-menu-hov-gap {
    width: 100%;
    height: 20px;
    background-color: transparent;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.header-menu-hov {
    display: none;
    width: 320px;
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    z-index: 2;
    padding: 10px 20px;
}

.head-menu-hov-item {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 10px;
    display: flex;
    gap: 10px;
    letter-spacing: 0;
    position: relative;
    line-height: 1.4;
}

.head-menu-hov-item:not(:last-child) {
    border-bottom: 1px dashed var(--border-color);
}

.head-menu-hov-item.head-menu-hov-acc {
    background-color: var(--bg-third-color);
    border-bottom: 1px dashed var(--border-color);
}

.head-menu-hov-item.head-menu-hov-acc.border-none {
    border-bottom: 0;
    background-color: var(--bg-color);
}

.head-menu-hov-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background: url(/assets/img/common/ic_link_arrow_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.head-menu-hov-item.head-menu-hov-acc.border-none::before {
    width: 10px;
    height: 10px;
    background: url(/assets/img/common/acc_plus_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.head-menu-hov-item.head-menu-hov-acc::before {
    width: 10px;
    height: 2px;
    background: url(/assets/img/common/menu_minu_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.head-menu-hov-item span {
    font-size: 10px;
    font-weight: 500;
}

.menu-hov-icon {
    width: 20px;
    height: 20px;
}

.menu-hov-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-hov-acc-items .head-menu-hov-item {
    background-color: var(--fifth-font-color);
    border-bottom: 1px dashed var(--border-color);
}

.menu-hov-acc-items {
    display: none;
}

.menu-hov-acc-items.show {
    display: block;
}

@media screen and (max-width: 1200px) {
    .header-menu-box {
        gap: 10px;
        justify-content: end;
    }
}

/* header menu end */



/* /stock/stocksearch.html Start*/
.sh-txt-red{
    font-size: 14px;
    font-weight: 400;
    color: var(--txt-red-00);
}

.sh-txt-red-star{
    padding-left: 16px;
    position: relative;
}

.sh-txt-red-star::before{
    content: "※";
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 1px;
}   

.sh-blue-box{
    font-size: 1.10px;
    font-weight: 500;
    color: var(--secondary-font-color);
    line-height: 1.45;
    background-color: var(--primary-font-color);
    padding: 1px 4px 1px 16px;
    border-radius: 2px;
    position: relative;
}

.sh-blue-box::before{
    content: "";
    width: 10px;
    height: 10px;
    background: url(/assets/img/common/ic_search.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.select-sh-blue-box::before{
    display: none;    
}

.select-sh-blue-box{
    font-size: 12px;
    padding: 1px 5px 1px 5px;
}

.inven-tbl{
    width: 100%;
}

.inven-tbl thead tr th{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    background-color: var(--bg-third-color);
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
    text-align: center;
    padding: 10px 0;
}

.inven-tbl thead tr th:last-child{
    background-color: var(--tbl-bg-color);
}

.inven-tbl thead tr th:nth-child(1){
    width: 11%;
}
.inven-tbl thead tr th:nth-child(2){
    width: 23%;
}
.inven-tbl thead tr th:nth-child(3){
    width: 22%;
}
.inven-tbl thead tr th:nth-child(4){
    width: 9%;
}
.inven-tbl thead tr th:nth-child(5){
    width: 18%;
}
.inven-tbl thead tr th:nth-child(6){
    width: 14%;
}

.inven-tbl tbody tr td{
    padding: 10px;
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
    font-size: 14px;
    font-weight: 400;
}

.inven-tbl tbody tr:nth-child(odd) td{
    background-color: var(--tbl-secbg-color);
}

.inven-tbl tbody tr:nth-child(odd) td:last-child{
    text-align: end;
    background-color: var(--tbl-fibg-color);
}

.inven-tbl tbody tr:nth-child(even) td{
    background-color: var(--tbl-thbg-color);
}

.inven-tbl tbody tr:nth-child(even) td:last-child{
    text-align: end;
    background-color: var(--tbl-fobg-color);
}

.inven-btn-blue{
    max-width: 240px;
    width: 100%;
    padding: 17px 0;
    border-radius: 8px;
    background-color: var(--primary-font-color);
    color: var(--secondary-font-color);
    border: none;
    position: relative;
}

.inven-btn-wrap{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
}

.inven-btn-blue-txt{
    font-size: 18px;
    font-weight: 500;
    padding-left: 25px;
    position: relative;
}

.inven-btn-blue-txt::before{
    content: "";
    width: 20px;
    height: 20px;
    background: url(/assets/img/common/ic_printer.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.print-txt{
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 30px 0 60px 0;
}


@media screen and (max-width: 1000px) {
    .inven-tbl thead tr th{
        font-size: 12px;
    }

    .inven-tbl tbody tr td{
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .print-txt{
        margin: 20px 0 50px 0;
        text-align: start;
        letter-spacing: 0;
    }

    .inven-btn-wrap{
        margin-top: 20px;
    }

    .inven-tbl thead tr th{
        font-size: 10px;
        line-height: 1.2;
        vertical-align: middle;
        padding: 2px 0;
    }

    .inven-tbl tbody tr td{
        padding: 5px;
        letter-spacing: 0;
    }

    .inven-tbl thead tr th:nth-child(1){
        width: 17%;
        letter-spacing: 0;
    }
    .inven-tbl thead tr th:nth-child(2){
        width: 20%;
    }
    .inven-tbl thead tr th:nth-child(3){
        width: 19%;
    }
    .inven-tbl thead tr th:nth-child(4){
        width: 12%;
    }
    .inven-tbl thead tr th:nth-child(5){
        width: 17%;
    }
    .inven-tbl thead tr th:nth-child(6){
        width: 13%;
    }

    .inven-tbl tbody tr:nth-child(odd) td:last-child,.inven-tbl tbody tr:nth-child(even) td:last-child{
        text-align: center;
    }

    .sh-txt-red{
        letter-spacing: 1px;
    }

}

    .inven-tbl{
        min-width: 350px;
        overflow: scroll;
    }

/* form section */

.deli-add{
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 20px;
    min-height: 60px;
}

.deli-left{
    max-width: 180px;
    width: 100%;
    padding: 20px 10px;
    background-color: var(--bg-fourth-color);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.deli-right{
    width: calc(100% - 180px);
    padding: 15px;
}

.form-red-text{
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--txt-red-00);
}

.deli-address{
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.deli-right-input{
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.deli-right-input:focus{
    outline: none;
    box-shadow: none;
}

.deli-right-btn{
    border: none;
    border-radius: 5px;
}

.sh-blue-box.deli-right-btn{
    font-size: 14px;
    padding: 5px 12px 5px 33px;
    line-height: 1.4;
    min-width: 75px;
    display: inline-block;
}

.addresssearch-link{
    display: inline-block;
}

.sh-blue-box.deli-right-btn::before{
    width: 18px;
    height: 18px;
    left: 10px;
}

.product-code-row{
    display: flex;
    gap: 10px;
    min-height: 60px;
    margin-top: 10px;
}

.product-code-left{
    width: calc(50% - 5px);
    margin-top: 5px;
}

.product-code-right{
    width: calc(50% - 5px);
    margin-top: 5px;
}

.pro-co-inner-left{
    max-width: 310px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.co-inner-left-txt{
    width: calc(100% - 130px);
    padding: 20px 10px;
    background-color: var(--bg-fourth-color);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.co-inner-left-input{
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-code{
    max-width: 100px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    letter-spacing: 0;
    font-size: 14px;
    min-height: 28px;
}

.pro-co-inner-right{
    width: 100%;
    display: flex;
}

.co-inner-right-txt{
    min-width: 60px;
    height: 100%;
    background-color: var(--bg-fourth-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.co-inner-right-input{
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.pro-name-input{
    width: 100%;
    border: none;
    font-size: 14px;
    letter-spacing: 0;
}

.pro-name-input::placeholder{
    font-size: 14px;
    letter-spacing: 0;
}

.pro-name-input:focus{
    outline: none;
    box-shadow: none;
}

.product-code-wrap{
    margin-top: 30px;
}

.inven-search::before{
    background: url(/assets/img/common/ic_search.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 53%;
}

.inven-btns{
    position: relative;
    max-width: 240px;
    width: 100%;
}

.stock-reset-btn{
    max-width: 170px;
    width: 100%;
    position: absolute;
    left: -207px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
    
    letter-spacing: 0;
    cursor: pointer;
}

.stock-reset-btn button{
    background-color: var(--bg-third-color);
    height: 30px;
    border: none;
    border-radius: 5px;
    padding: 0 5px 0 20px;
    width: 100%;
    position: relative;
}

.stock-reset-btn button::before{
    content: "";
    width: 10px;
    height: 10px;
    background: url(/assets/img/common/inven_cross.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 14px;
    top: 54%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1280px) {
    .co-inner-right-input{
        display: block;
    }
    .product-code-row{
        flex-direction: column;
        height: auto;
        gap: 5px;
        margin-top: 5px;
    }

    .product-code-left{
        width: 100%;
    }

    .product-code-right{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .add-sh-txt{
        font-size: 14px;
    }

    .deli-add{
        flex-direction: column;
        height: auto;
        border-radius: 5px;
    }

    .deli-left{
        max-width: unset;
        width: 100%;
        padding: 5px 20px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        font-size: 14px;
        font-weight: 500;
    }

    .form-red-text{
        font-size: 12px;
        margin-left: 5px;
    }

    .deli-right{
        width: 100%;
        padding: 6px 15px;
    }

    .sh-blue-box.deli-right-btn{
        font-size: 13px;
        min-width: 55px;
        padding: 4px 5px 4px 20px;
    }

    .sh-blue-box.deli-right-btn::before{
        width: 16px;
        height: 16px;
        left: 5px;
        top: 52%;
    }

    .deli-right-input{
        width: 143px;
    }

    .deli-right-input::placeholder{
        font-size: 14px;
    }

    .pro-co-inner-left{
        max-width: unset;
        flex-direction: column;
    }

    .co-inner-left-txt{
        width: 100%;
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
        padding: 5px 20px;
    }

    .co-inner-left-input{
        width: 100%;
        justify-content: start;
        padding: 5px 20px;
    }

    .pro-co-inner-right{
        max-width: unset;
        flex-direction: column;
    }

    .co-inner-right-txt{
        width: 100%;
        justify-content: start;
        padding: 5px 20px;
    }

    .co-inner-right-input{
        width: 100%;
        justify-content: start;
        gap: 5px;
        padding: 5px 20px;
    }

    .product-code{
        padding: 5px 10px;
        line-height: 1;
        font-size: 14px;
    }

    .product-code-wrap{
        margin-top: 15px;
    }

    .inven-btn-blue{
        padding: 14px 10px;
    }

    .stock-reset-btn {
        position: static;
        transform: unset;
    }

    .inven-btns{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
}

@media screen and (max-width: 500px) {
    .stock-reset-btn button::before{
        left: 12px;
    }
}
/* /stock/stocksearch.html End*/

/* Print  Table Start*/
/* General print page setup */
@page {
  size: A4 portrait;
  margin: 20mm;
}

/* Table wrapper */
.print-table .doc-tbl-wrap {
  margin-top: 20px;
}

/* Table styling */
.print-table .print-tbl {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.print-table .print-tbl th, 
.print-table .print-tbl td {
  border: 1px solid #555;
  padding: 6px 10px;
  text-align: left;
  word-wrap: break-word;
  font-size: 12px;
}

.print-table .print-tbl th {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* Alternate row shading for readability */
.print-table .print-tbl tbody tr:nth-child(even) {
  background-color: #fafafa;
}
/* Print  Table End*/

/* addresssearch.html Start */
.add-ttl{
    font-size: 2.40px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--bg-second-color);
    position: relative;
    padding-left: 22px;
    border-bottom: 2px solid var(--primary-font-color);
    padding-bottom: 5px;
}

.add-ttl::before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--primary-font-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.add-sh-txt{
    font-size: 16px;
}

.add-all-input{
    width: 100%;
    padding: 41px 70px;
    background-color: var(--tbl-thbg-color);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.add-all-input-left{
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.add-all-input-right{
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
}

.add-all-input-right .add-input-item{
    max-width: 420px;
    width: 100%;
    justify-content: space-between;
} 

.add-input-txt{
    max-width: 96px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--third-font-color);
    letter-spacing: 0;
}

.add-input-box{
    max-width: 300px;
    width: 100%;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    outline: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--third-font-color);
    background-color: var(--bg-color);
}

.add-input-box:focus {
    border: none;
    outline: 1px solid var(--border-color);
}

.add-input-item{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.add-input-btn{
    max-width: 120px;
    width: 100%;
    background-color: var(--primary-font-color);
    padding: 11px 20px 11px 45px;
    color: var(--bg-color);
    position: relative;
    border: none;
    border-radius: 5px;
}

.add-input-btn-txt{
    position: relative;
}

.add-input-btn-txt::before{
    content: "";
    width: 20px;
    height: 20px;
    background: url(/assets/img/common/ic_search.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: -25px;
    top: 51%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .add-all-input{
        padding: 20px 40px;
    }
}

@media screen and (max-width: 768px) {
    .add-all-input{
        padding: 25px 20px 30px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .add-input-txt{
        max-width: 80px;
        font-size: 13px;
    }

    .add-input-btn{
        max-width: 100%;
        width: 100%;
        padding: 11px 20px;
    }

    .add-input-box{
        font-size: 13px;
        padding: 7px 10px;
        line-height: 1.2;
    }

    .add-input-btn-txt{
        font-size: 14px;
    }

    .add-input-btn-txt::before{
        width: 16px;
        height: 16px;
        left: -20px;
    }

    .add-ttl{
        font-size: 20px;
    }
}

.search-result{
    margin-top: 40px;
}

.search-result-ttl{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    color: var(--bg-second-color);
}

.search-result-tbl{
    width: 100%;
}

.search-result-tbl thead tr th{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    background-color: var(--bg-third-color);
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
    padding: 6px 12px;
    vertical-align: middle;
}

.search-result-tbl thead tr:first-child th:nth-child(1){
    width: 10%;
}

.search-result-tbl thead tr:first-child th:nth-child(2){
    width: 15%;
}

.search-result-tbl thead tr:first-child th:nth-child(3){
    width: 29%;
}

.search-result-tbl thead tr:first-child th:nth-child(4){
    width: 46%;
}

.search-result-tbl tbody tr:nth-child(4n+1),
.search-result-tbl tbody tr:nth-child(4n+2) {
   background-color: var(--tbl-secbg-color);
}

.search-result-tbl tbody tr:nth-child(4n+3),
.search-result-tbl tbody tr:nth-child(4n+4) {
   background-color: var(--tbl-thbg-color);
}

.search-result-tbl tbody tr td{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
    padding: 6px 15px;
    vertical-align: middle;
}


.search-tbl-btn-wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-tbl-btn{
    border-radius: 5px;
    background-color: var(--primary-font-color);
    color: var(--secondary-font-color);
    border: none;
    line-height: 1.5;
    padding: 5px 16px;
}

.search-result-sh-txt{
    text-align: center;
}

.add-reset-btn-wrap{
    display: flex;
    justify-content: center;
}

.add-reset-btn{
    border: none;
    background-color: var(--bg-third-color);
    padding: 7px 15px 7px 25px;
    border-radius: 5px;
    position: relative;
    font-size: 14px;
    color: var(--third-font-color);
    font-weight: 500;
}

.add-reset-btn::before{
    content: "";
    width: 9px;
    height: 9px;
    background: url(/assets/img/common/inven_cross.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 10px;
    top: 53%;
    transform: translateY(-50%);

}


.search-result-tbl tbody tr td[rowspan="2"]:nth-child(2) {
    text-align: center;
}


.search-result-tbl thead tr th[rowspan="2"]:nth-child(2) {
    text-align: center;
}

/* For Chrome, Safari, Edge */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Hide default arrow */
select {
  -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none;
  
}

@media screen and (max-width: 1000px) {
    .search-result-tbl thead tr th{
        font-size: 13px;
    }

    .search-result-tbl tbody tr td{
        padding: 6px 10px;
        font-size: 13px;
    }

    .search-tbl-btn{
        font-size: 13px;
        padding: 5px 10px;
    }

}

@media screen and (max-width: 768px) {
    .search-result-sh-txt{
        text-align: start;
    }
    .search-result{
        margin-top: 20px;
    }
    .search-result-tbl{
        min-width: 341px;
        width: 100%;
    }

    .search-result-tbl-wrap{
        overflow: scroll;
    }
    .search-result-ttl{
        font-size: 16px;
    }

    .search-result-tbl thead tr th{
        padding: 9px 5px;
        font-size: 10px;
    }

    .search-result-tbl thead tr:first-child th:nth-child(1){
        width: 14%;
    }

    .search-result-tbl thead tr:first-child th:nth-child(2){
        width: 21%;
    }

    .search-result-tbl thead tr:first-child th:nth-child(3){
        width: 21%;
    }

    .search-result-tbl thead tr:first-child th:nth-child(4){
        width: 42%;
    }

    .search-result-tbl tbody tr td{
        padding: 7px 5px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .search-tbl-btn{
        border-radius: 2px;
        padding: 3px 4px;
        line-height: 1;
    }
}

@media screen and (max-width: 690px) {
    .search-result-tbl thead tr:first-child th:nth-child(1){
        width: 14%;
    }

    .search-result-tbl thead tr:first-child th:nth-child(2){
        width: 23%;
    }

    .search-result-tbl thead tr:first-child th:nth-child(3){
        width: 23%;
    }

    .search-result-tbl thead tr:first-child th:nth-child(4){
        width: 39%;
    }

}

/* productsearch.html Start */
.major-select-wrap{
    max-width: 300px;
    width: 100%;
    position: relative;
}

.major-select-wrap select{
    cursor: pointer;
}

.major-select-wrap::before{
    content: "";
    width: 10px;
    height: 10px;
    background: url(/assets/img/common/select_downarrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.product-search-tbl{
    width: 100%;
}

.product-search-tbl thead tr th{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    background-color: var(--bg-third-color);
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
    padding: 11px 12px;
    vertical-align: middle;
}

.product-search-tbl thead tr th:nth-child(1){
    width: 10%;
}
.product-search-tbl thead tr th:nth-child(2){
    width: 13%;
    text-align: center;
}
.product-search-tbl thead tr th:nth-child(3){
    width: 77%;
}

.product-search-tbl tbody tr td{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    border: 2px solid var(--secondary-font-color);
    border-collapse: collapse;
    padding: 6px 15px;
    vertical-align: middle;
}

.product-search-tbl tbody tr:nth-child(odd) {
   background-color: var(--tbl-secbg-color);
}

.product-search-tbl tbody tr:nth-child(even) {
   background-color: var(--tbl-thbg-color);
}

@media screen and (max-width: 1000px) {
    .product-search-tbl tbody tr td{
        padding: 6px 12px;
    }

    .product-search-tbl thead tr th{
        padding: 10px 9px;
    }
}

@media screen and (max-width: 768px) {
    .major-select-wrap::before{
        content: "";
        width: 6px;
        height: 6px;
    }

    .product-search-tbl-wrap{
        overflow: scroll;
    }

    .product-search-tbl{
        min-width: 341px;
        width: 100%;
    }
    .product-search-tbl thead tr th:nth-child(1){
        width: 14%;
    }
    .product-search-tbl thead tr th:nth-child(2){
        width: 23%;
        text-align: center;
    }
    .product-search-tbl thead tr th:nth-child(3){
        width: 63%;
    }

    .product-search-tbl tbody tr td{
        padding: 7px 5px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .product-search-tbl thead tr th{
        padding: 9px 5px;
        font-size: 10px;
    }

}
/* productsearch.html End */

/* 251006 add */


#headerPartHamburger.headerPartlogout .logo-blk-wrap {
    max-width: 170px;
    width: 170px;
}

.header-logout-menu-box {
    width: 100%;
    display: flex;
}

@media screen and (max-width: 1200px) {
    .header-logout-menu-box .header-menu-box {
        justify-content: left;
    }
}

.header-logout-menu-box {
    padding-left: 30px;
    padding-right: 16px;
}

.header-logout-menu-box .first-login-btn {
    width: 140px;
}

#headerPartHamburger .header-logout-menu-box .header-rwrapper {
    width: 100%;
}



