/* @import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;500;700;800&family=Noto+Sans+KR:wght@100..900&display=swap'); */
@import url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/static/woff2/SUIT.css');

:root {
    --clr-gray: #999;
    --clr-black: #000;
    /* --clr-primary: #1931A8; */
    --clr-primary: #4A7CAD;
    --clr-white: #fff;
}

html,
body,
* {
    /* font-family: "Nanum Gothic", serif; */
    font-family: "SUIT", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    overflow-x: hidden;
    height: 100%;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

::backdrop {
    background: rgba(0, 0, 0, 0.5)
}

#dialog {
    border: 0;
    outline: 0;
    width: 100%;
    max-width: 382px;
    padding: 0;
}

/* Animation for changing the link  */
@view-transition {
    navigation: auto;
}
/* ::view-transition-old(root) {
    animation: move-out 0.5s ease-in forwards;
}

::view-transition-new(root) {
    animation: move-in 0.5s ease-out forwards;
} */
/* Create a custom animation */
/* @keyframes move-out {
    from {
        opacity: 1;
    }

    to {
      opacity: 0;
    }
}

@keyframes move-in {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
} */





@media(max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

/* Title */
.main_title {
    color: #BBB;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 72px;
}

.page_title {
    color: #333;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
}

.sub_title {
    color: #999;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
}

/* Button */
.btn_full {
    width: 100%;
}

.btn {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    height: 44px;
    line-height: 44px;
    display: inline-block;
    padding: 0;
    cursor: pointer;
    transition: .3s ease;
}

.btn:hover {
    opacity: 0.6;
    transition: .3s ease;
}

.btn_primary {
    color: #fff;
    border-radius: 4px;
    background: #4A7CAD !important;
    border: none;
}

.btn_outline {
    border: 1px solid var(--point_color, #4A7CAD);
    background-color: #fff;
    color: #4A7CAD;
}

.btn_secondary {
    color: #555;
    border-radius: 4px;
    border: 1px solid #CCC !important;
    background-color: #fff;
}

/* Header */
.spacer {
    height: 0;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

body:not(.main_page) header {
    background-color: white;
}

header.active {
    background-color: white;
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; */
}

header.active .menu li a,
header.show_search .menu li a {
    color: #333;
}

header.show_submenu,
header.show_search {
    background-color: #fff;
    /* min-height: 398px; */
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.main_page .menu li a {
    color: #FFF;
}

.menu li a {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 19.2px;
    padding: 35px 0 31px;
    display: inline-block;
    border-bottom: 4px solid transparent;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 78px;
    height: 100%;
}

.header_right .menu {
    display: flex;
    height: 100%;
    /* align-items: center; */
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

body:not(.main_page) .header_actions a {
    filter: invert(1);
}

.menu_item {
    position: relative;
    padding: 0 40px;
    height: 100%;
    text-align: center;
}

.menu_item.active>a {
    border-color: #4A7CAD;
}

.menu_item:first-child {
    padding-left: 0;
}

.menu_item:last-child {
    padding-right: 0;
}

.submenu {
    position: relative;
    max-height: 0;
    overflow-x: visible;
    overflow-y: clip;
    transition: 0.5s all;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
}

.submenu::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 200vw;
    height: 100%;
    background-color: #fff;
    translate: -50% 0;
    z-index: -1;
}

.menu[aria-expanded='true'] .submenu {
    padding: 24px 0;
    max-height: 90vh;
}

.menu li.submenu_item a {
    white-space: nowrap;
    text-align: center;
    color: #666;
    font-size: 16px;
    padding: 0;
    border-bottom: 0;
}

.submenu_item {
    text-align: center;
}

header.active .menu li a,
.show_submenu .menu li a {
    color: #333;
}

.main_page .logo .logo_active {
    display: none;
}

body:not(.main_page) .logo img:not(.logo_active) {
    display: none;
}

header.active .logo img,
.show_submenu .logo img,
.show_search .logo img {
    display: none;
}

header.active .header_actions a,
.show_submenu .header_actions a,
.show_search .header_actions a {
    filter: invert(1);
}

header.active .logo img.logo_active,
.show_submenu .logo img.logo_active,
.show_search .logo img.logo_active {
    display: flex;
}

span.menu_close,
.header_actions a.show_menu {
    display: none;
}

.search_form_wrap {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    width: 100%;
    height: 0;
    transition: .5s all;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search_form_wrap.show {
    height: 308px;
    transition: .5s all;
}

.search_form_wrap form {
    width: 823px;
    position: relative;
    border-bottom: 2px solid #999;
}

form.search_form input {
    border: 0;
}

form.search_form button {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

form.search_form input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 40px 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.48px;
    color: #A9B5C9;
}

form.search_form input::placeholder {
    color: #A9B5C9;
}

/* Footer */
footer {
    background: #282C34;
    padding: 36px 0 16px;
    color: #8995A9;
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #5C6677;
}

.footer_top ul {
    display: flex;
    gap: 20px;
}

.footer_top ul a {
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.21px;
}

.footer_top ul li:last-child a {
    color: #A9B5C9;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.21px;
}

.footer_content {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
}

.footer_content_left p {
    color: #8995A9;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    /* 153.846% */
    letter-spacing: -0.07px;
}

.footer_content_left p span+span {
    padding-left: 16px;
    padding-right: 0;
    border-left: 1px solid #8995A9;
}

.footer_content_left p span {
    padding-right: 16px;
}

.footer_content_right p {
    color: #8995A9;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.36px;
    margin-bottom: 4px;
}

.footer_content_right h3 {
    color: #8995A9;
    font-size: 27px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.81px;
    margin-bottom: 16px;
}

.footer_content_right h4 {
    color: #8995A9;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.36px;
}

.footer_content_right h4 span {
    margin-right: 8px;
}

.footer_content_right h4+h4 {
    margin-top: 8px;
}

footer p.copyright {
    color: #ABB2BE;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    /* 153.846% */
    letter-spacing: -0.07px;
    padding: 18px 0 0;
}

.title_container .title {
    color: #111;
    font-size: 32px;
    font-weight: 500;
    line-height: 69px;
    letter-spacing: -0.72px;
    margin-top: 10px;
}


.member_join_title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.045rem;
    color: #333;
    margin-top: 22px;
    margin-bottom: 22px;
}

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

/* store company term start */
.store_company_terms_header {
    margin: 30px 0 10px 0;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.065rem;
    color: #111;
}

.store_company_terms .form_table .td_content input[type="text"] {
    width: 200px;
    height: 40px;
    padding: 0px 8px;
    margin: 4px 0px 4px 16px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
}

.store_company_terms .form_table .td_content_sub3 {
    margin: 4px 0px 4px 16px;
}

.store_company_terms .form_table .td_content_sub3 span {
    margin-left: 16px;
    color: #555;
}

.store_company_terms .form_table .td_content button {
    width: auto;
    height: 40px;
    line-height: 38px;
    border: 1px solid #555;
    background-color: #666;
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.045rem;
    padding: 0 12px;
    cursor: pointer;
    margin: 3px 0px 3px 0px;
    align-content: center;
}

.store_company_terms .form_table .td_content button:hover {
    background-color: var(--bs-black);
    color: black;
}

.store_company_terms .form_table .td_content_sub3 input[type="text"] {
    width: 247px;
    height: 40px;
    padding: 0px 8px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
    color: #111;
}

.store_company_terms .form_table .td_content .sub_span_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.store_company_terms .form_table .td_content .sub_container {
    display: flex;
    gap: 5px;
    margin: 4px 0px 4px 16px;
    align-content: center;
    align-items: center;
}

.store_company_terms .form_table .td_content_sub3 input[type="text"] {
    width: 247px;
    margin-left: 0;
}

.store_company_terms .form_table .sub_span {
    color: #111;
}

@media(max-width: 767px) {
    .store_company_terms .form_table .tr_responsive .td_content input {
        margin-left: 0;
        width: 100%;
    }

    .store_company_terms .form_table td .sub_span_container input[type="text"] {
        width: 128px;
    }

    .store_company_terms .form_table .sub_span {
        font-size: 14px;
    }

    .store_company_terms .form_table tr {
        display: flex;
    }

    .store_company_terms .form_table .td_label,
    .store_company_terms .form_table .td_label2 {
        width: 33%;
        height: auto;
        padding: 8px;
    }

    .store_company_terms .form_table td.td_content,
    .store_company_terms .form_table td.td_content3,
    .store_company_terms .form_table td.td_content4,
    .store_company_terms .form_table td.td_content5,
    .store_company_terms .form_table .td_content2,
    .store_company_terms .form_table .td_content_sub3 {
        width: 67%;
        height: auto;
        padding: 8px;
        margin: 0;
    }

    .store_company_terms .form_table .td_content_sub {
        margin-left: 0;
    }

    .store_company_terms .form_table .td_content3 input[type="text"],
    .store_company_terms .form_table .td_content4 input[type="text"] {
        width: 58px;
    }

    .form_table .td_content5 input[type="text"] {
        margin: 0;
        width: 100%;
    }

    .store_company_terms .form_table .td_content_sub3 input[type="text"] {
        width: 100%;
    }

    .store_company_terms .form_table .td_content_sub3 span {
        margin: 0;
    }

    .store_company_terms .form_table .td_content2 .postalCode_box {
        width: 100%;
        margin-left: 0;
    }

    .store_company_terms .form_table .td_content2 .postalCode_box2 {
        width: 100px;
        margin-left: 0;
    }

    .store_company_terms .form_table .td_content .sub_container {
        flex-wrap: wrap;
        margin-left: 0;
    }
}

.form_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: 1px solid #111;
}

.form_table td {
    border-bottom: 1px solid #ddd;
    align-content: center;
}

.form_table .td_label_7 {
    background-color: #fafafa;
    width: 216px;
    height: 50px;
    padding-left: 16px;
    font-size: 15px;
    color: #555;
}

.form_table .td_label {
    background-color: #fafafa;
    width: 216px;
    height: 50px;
    padding-left: 16px;
    font-size: 15px;
    color: #555;
}

.form_table .td_label2 {
    background-color: #fafafa;
    height: 109px;
    padding-left: 16px;
    font-size: 15px;
}

.form_table .sub_span {
    font-size: 15px;
    align-content: center;
    letter-spacing: -0.025rem;
    color: #555;
}

.form_table .sub_span_red {
    font-size: 13px;
    /* margin: 4px 0px 0px; */
    color: #ff0000;
    letter-spacing: -0.025rem;
}

.form_table .postalCode_box2_cont {
    display: flex;
    gap: 3px;
    align-content: center;
    width: 100%;
}

.form_table .td_content2 button {
    width: auto;
    height: 40px;
    line-height: 38px;
    border: 1px solid #666;
    background-color: #666;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.045rem;
    padding: 0 10px;
    cursor: pointer;
    margin: 3px 0px 3px 0px;
    align-content: center;
    border-radius: 5px;
}

.form_table .td_content2 button:hover {
    background-color: #333;
}

.form_table .td_content_sub {
    margin: 4px 0px 4px 16px;
}

.form_table .td_content_sub2 {
    margin: 0px 0px 0px 16px;
}

.form_table .td_content_sub2 .sub_span_container {
    display: flex;
    gap: 5px;
}

.form_table .label_box {
    margin: 0px 6px 0px 2px;
    color: #555;
}

.form_table .td_content .input_text {
    margin: 6px 0px 6px 16px;
    padding: 0px 8px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    width: 93%;
    resize: none;
}

.form_table .td_content .Psw_box {
    width: 200px;
    height: 40px;
    padding: 0px 10px;
    margin-left: 16px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
    box-sizing: border-box;
    display: inline-block;
}

.form_table .td_content2 .postalCode_box {
    width: 387px;
    height: 40px;
    margin-left: 16px;
    padding: 0px 8px;
    margin: 3px 0px 3px 16px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
}

.form_table .td_content2 .postalCode_box2 {
    width: 200px;
    height: 40px;
    margin-left: 16px;
    padding: 0px 8px;
    margin: 3px 0px 3px 16px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
}

.form_table .td_content3 input[type="text"],
.form_table .td_content4 input[type="text"] {
    width: 95px;
    height: 40px;
    padding: 0px 10px;
    margin-bottom: 6px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
    box-sizing: border-box;
    display: inline-block;
}

.form_table .td_content5 input[type="text"] {
    width: 247px;
    height: 40px;
    padding: 0px 10px;
    margin: 4px 0px 4px 16px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
}

.form_table .td_content5 input[type="text"] {
    width: 247px;
    height: 40px;
    padding: 0px 10px;
    margin: 4px 0px 4px 16px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
}

.form_table input[type="radio"] {
    font-size: 15px;
    letter-spacing: -0.025rem;
    margin: 0;
}

.form_table input[type="radio"] {
    font-size: 15px;
    letter-spacing: -0.025rem;
    margin: 0;
}

/* store company term end */

@media(max-width: 1200px) {
    .header_right {
        gap: 40px;
    }

    .menu_item {
        padding: 0 20px;
    }
}

@media(max-width: 1023px) {
    header .container {
        height: auto;
    }

    .main_title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .page_title {
        font-size: 30px;
    }

    .header_right .menu {
        display: none;
    }

    a.logo {
        padding: 15px 0;
    }

    a.logo img {
        max-width: 80px;
    }

    /* .header_actions a {
        width: 26px;
        height: 26px;
    } */

    .header_actions a.user_icon {
        padding: 4px;
    }

    .header_right .menu {
        position: fixed;
        background: #fff;
        inset: 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 15px;
        z-index: 999;
    }

    .menu li a {
        font-size: 18px;
        padding: 12px;
    }

    .main_page .menu li a {
        color: #000;
    }

    .menu_item {
        padding: 0;
        height: auto;
        text-align: left;
    }

    .header_right .submenu {
        display: block;
        position: static;
        padding: 0 0 0 30px !important;
        left: 0;
        transform: unset;
        max-height: fit-content;
    }

    .submenu_item {
        text-align: left;
    }

    .menu li.submenu_item a {
        font-size: 15px;
        padding: 10px 0;
    }

    .menu_item>a,
    .menu_item.active>a {
        border: 0;
    }

    span.menu_close {
        width: 30px;
        height: 30px;
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 10px;
    }

    .header_actions a.show_menu {
        display: flex;
    }

    .search_form_wrap.show {
        height: 100px;
    }

    .search_form_wrap form {
        width: calc(100% - 30px);
    }

    form.search_form input {
        font-size: 16px;
    }

    form.search_form button svg {
        width: 30px;
    }

}

@media(max-width: 767px) {
    .main_title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .page_title {
        font-size: 22px;
    }

    .footer_content {
        flex-direction: column;
        gap: 20px;
    }

    .footer_content_left p span {
        display: block;
        padding: 0;
        margin-bottom: 10px;
    }

    .footer_content_left p span+span {
        padding: 0;
        border: 0;
    }

    .footer_content_right h3 {
        font-size: 24px;
    }

    footer p.copyright {
        padding-top: 8px;
    }

    a.logo img {
        max-width: 80px;
    }

    /* .header_actions a {
        width: 26px;
        height: 26px;
    } */
}

/* Breadcrumb */
.breadcrumb {
    position: relative;
    padding: 72px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/about_bg.jpg');
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .about_us .breadcrumb {
    background-image: url('../images/about_bg.jpg');
} */

.breadcrumb::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #00042A99;
}

.breadcrumb ul {
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 37px;
}

.breadcrumb ul li a {
    display: flex;
    color: #A9B5C9;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.breadcrumb ul li {
    padding: 0 15px 0 19px;
    position: relative;
}

.breadcrumb ul li:first-child {
    padding-left: 0;
}

.breadcrumb ul li:last-child a {
    color: #fff;
}

.breadcrumb ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #C4C9D1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.breadcrumb ul li:first-child::before {
    display: none;
}

.breadcrumb .page_title {
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    z-index: 9;
    position: relative;
}

/* Nav */
nav ul {
    display: flex;
    flex-wrap: wrap;
}

nav ul li:hover {
    opacity: 0.6;
    transition: .3s ease;
}

.contact_content nav ul li {
    width: calc(100% / 2);
}

nav ul li a {
    text-align: center;
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #A9B5C9;
    padding: 20px;
    border: 1px solid #A9B5C9;
    border-right: 0;
}

nav {
    margin: 36px 0;
}

nav ul li a.active {
    background: #4A7CAD;
    color: #fff;
    border-color: #4A7CAD;
}

nav ul li:last-child a {
    border-right: 1px solid #A9B5C9;
}

/* Pagination */
ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
    gap: 6px;
}

ul.pagination li {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid var(--sub_color2, #A9B5C9);
}

ul.pagination li a {
    font-size: 13px;
    font-weight: 400;
    display: flex;
}

ul.pagination li img {
    border-radius: 50px;
}

ul.pagination li.active a {
    color: #fff;
}

ul.pagination li.active {
    background: #4A7CAD;
    border-color: #4A7CAD;
}

.shopping_order input[type="password"] {
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    /* 100% */
    letter-spacing: -0.4px;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    border: 1px solid var(--sub_color1, #C4C9D1);
    background: #FFF;
    width: 100%;
    box-sizing: border-box;
}
/* input */
input[type="text"] {
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    /* 100% */
    letter-spacing: -0.4px;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    border: 1px solid var(--sub_color1, #C4C9D1);
    background: #FFF;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    border: 1px solid var(--sub_color1, #C4C9D1);
    background: #FFF;
    padding: 19px 10px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    /* 100% */
    letter-spacing: -0.4px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
}

/* table */
/* table start */
span.required {
    color: #4A7CAD;
}

.form_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: 1px solid #111;
}

.form_table td {
    border-bottom: 1px solid #ddd;
    align-content: center;
}

.form_table .td_label_7 {
    background-color: #fafafa;
    width: 190px;
    height: 64px;
    padding: 16px;
    font-size: 15px;
    color: #111;
    font-weight: 700;
}

.form_table .td_label {
    background-color: #fafafa;
    width: 190px;
    height: 64px;
    padding: 16px;
    font-size: 15px;
    color: #111;
    font-weight: 700;
}

.form_table .td_label2 {
    background-color: #fafafa;
    height: 109px;
    padding-left: 16px;
    font-size: 15px;
    color: #111;
    font-weight: 700;
}

.form_table td.text_box {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    /* 93.75% */
    letter-spacing: -0.4px;
    padding: 16px;
}

.form_table .sub_span {
    font-size: 16px;
    align-content: center;
    letter-spacing: -0.4px;
    color: #111;
    font-weight: 700;
    margin-bottom: 10px;
    margin-right: 16px;
}

.form_table .sub_span_red {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0px;
    color: #ff0000;
    letter-spacing: -0.4px;
    display: inline-block;
    line-height: 1.2;
}

.form_table .postalCode_box2_cont {
    display: flex;
    gap: 3px;
    align-content: center;
    width: 100%;
}

.form_table .td_content2 button {
    width: auto;
    height: 40px;
    line-height: 38px;
    border: 1px solid #666;
    background-color: #666;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.045rem;
    padding: 0 10px;
    cursor: pointer;
    margin: 12px 0px 0px 0px;
    align-content: center;
    border-radius: 5px;
}

.form_table .td_content2 button:hover {
    background-color: #333;
}

.form_table .td_content_sub {
    margin: 4px 0px 4px 16px;
}

.form_table .td_content4 .td_content_sub {
    margin: 12px 0;
}

.form_table .td_content_sub2 {
    margin: 0px 0px 0px 16px;
}

.form_table .td_content_sub2 .sub_span_container {
    display: flex;
    gap: 5px;
}

.form_table .label_box {
    margin: 0px 6px 0px 2px;
    color: #555;
}

.form_table .td_content .input_text {
    margin: 6px 0px 6px 16px;
    padding: 0px 8px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    width: 93%;
    resize: none;
}

.table_cont {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: 1px solid #111;
}

.table_cont th {
    width: 10%;
    background-color: #fafafa;
    height: 51px;
    align-content: center;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding: 0;
    text-align: center;
}

.table_cont td {
    background-color: #fafafa;
    border-bottom: 1px solid #ddd;
    align-content: center;
}

.table_cont.order_detail_item td:not(.td_label_order_code) {
    padding: 12px 8px;
}

.table_cont .th_label {
    width: 180px;
    height: 51px;
    text-align: center;
    padding: 0;
    color: #333;
}

.table_cont .th_label2 {
    width: 180px;
    height: 47px;
    text-align: center;
    background-color: #fafafa;
    padding: 8px 0px;
    color: #111;
    font-weight: 700;
}

.table_cont .td_label {
    width: 180px;
    height: 51px;
    text-align: center;
    padding: 0;
}

.table_cont .td_middle {
    padding: 0px 0px 0px 10px;
}

.table_cont .td_label2 {
    height: 41px;
    padding: 0;
    text-align: center;
    background-color: #fff;
}

.table_cont .td_label3 {
    height: 47px;
    text-align: center;
    background-color: #fff;
    padding: 8px 0px 8px 10px;
    color: #333;
}

.table_cont .td_label4 {
    width: 180px;
    height: 87px;
    text-align: center;
    /* padding: 8px 0px; */
    background-color: #fff;
    color: #333;
}

.table_cont .td_label4 a {
    color: #111;
    justify-content: center;
    display: flex;
    align-items: center;
}

.table_cont .td_label4 select {
    width: 76px;
    padding: 0 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    height: 27px;
    color: #333;
    border-color: #ddd;
}

.table_cont .td_label4_sub {
    height: 77px;
    text-align: left;
    background-color: #fff;
    padding: 8px 0px 8px 12px;
}

.table_cont .td_label4_sub p,
.table_cont .td_label4_sub a {
    color: #333;
}

.table_cont .td_label4 .order_prd_price {
    font-size: 22px;
    color: #4A7CAD;
}

.table_cont .td_label5 {
    width: 180px;
    height: 54px;
    padding: 8px 10px;
    background-color: #fff;
}

.table_cont .td_label6 {
    width: 80%;
    height: 40px;
    padding: 8px 0px 8px 16px;
    background-color: #fff;
}

.table_cont .td_label6_sub {
    width: 20%;
    height: 40px;
    padding: 16px 0px 16px 16px;
    background-color: #fafafa;
}

.table_cont .td_label5 .span_container .order_prd_price {
    float: right;
}

.table_cont .td_label4.product_img {
    width: 100px;
}

.table_cont .td_label4.product_info a {
    justify-content: flex-start;
    gap: 5px;
    line-height: 1.2;
}

.table_cont .td_label4.product_info {
    text-align: left;
}

.table_cont .td_label4.product_info span {
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.78px;
    display: block;
}

/* ****** table body *****/
.table_container {
    display: block;
}

.table_container3 {
    margin-bottom: 30px;
    border-top: 1px solid #555;
}

.table_container3 a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.table_container3 .ttl {
    font-size: 12px;
    color: #999;
}

.table_container3 .ttl a {
    font-size: 14px;
}

.form_table .td_content .Psw_box {
    width: 265px;
    height: 40px;
    padding: 0px 8px;
    margin-left: 16px;
    background-color: #fff;
    border: 1px solid #C4C9D1;
    box-sizing: border-box;
    display: inline-block;
}

.form_table .td_content2 .postalCode_box {
    width: 515px;
    height: 40px;
    margin-left: 16px;
    padding: 0px 8px;
    margin: 4px 4px 0 16px;
    background-color: #fff;
    border: 1px solid #C4C9D1;
}

.form_table .td_content2 .postalCode_box+.postalCode_box {
    margin-bottom: 12px;
}

.form_table .td_content2 .postalCode_box2 {
    width: 200px;
    height: 40px;
    margin-left: 16px;
    padding: 0px 8px;
    margin: 12px 4px 0px 16px;
    background-color: #fff;
    border: 1px solid #C4C9D1;
}

.form_table .td_content3 input[type="text"] {
    width: 95px;
    height: 40px;
    padding: 0px 10px;
    margin-bottom: 6px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
    box-sizing: border-box;
    display: inline-block;
}

.form_table .td_content4 input[type="text"] {
    width: 265px;
    height: 40px;
    padding: 0px 8px;
    margin: 0 0 0 16px;
    background-color: #fff;
    border: 1px solid #C4C9D1;
}

.form_table input[type="radio"] {
    font-size: 15px;
    letter-spacing: -0.025rem;
    margin: 0;
}

.form_table input[type="radio"] {
    font-size: 15px;
    letter-spacing: -0.025rem;
    margin: 0;
}

@media(max-width: 1023px) {
    .breadcrumb {
        padding: 70px 0;
    }

    .breadcrumb ul {
        margin-bottom: 20px;
    }

    .breadcrumb .page_title {
        font-size: 30px;
    }

    nav ul li a {
        font-size: 16px;
    }
}

@media(max-width: 767px) {
    .breadcrumb ul {
        margin-bottom: 10px;
    }

    .breadcrumb .page_title {
        font-size: 26px;
    }

    ul.pagination {
        margin-top: 40px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 15px 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        margin: 24px 0;
    }
}


/* page transition */
/* body {
    transition: opacity 0.5s ease;
    opacity: 1;
} */

/* body.fade-out {
opacity: 0;
}
body {
    position: relative;
}
body > .blank {
    position: fixed;
    inset: 0;
    background-color: #fff;
    z-index: 9999;
} */
