@import url(https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.min.css);

@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css);

*,
::after,
::before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    font: inherit;
    vertical-align: baseline;
}

html,
body {
    overscroll-behavior: none;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    color: #191f28;
    font-family:
            Pretendard,
            -apple-system,
            BlinkMacSystemFont,
            system-ui,
            Roboto,
            'Helvetica Neue',
            'Segoe UI',
            'Apple SD Gothic Neo',
            'Noto Sans KR',
            'Malgun Gothic',
            'Apple Color Emoji',
            'Segoe UI Emoji',
            'Segoe UI Symbol',
            sans-serif;
    line-height: 1;
    letter-spacing: -0.03em;
    word-break: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
}

b,
strong {
    font-weight: bolder;
}

ol,
ul {
    list-style: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

button,
[type='button'],
[type='submit'],
[type='reset'] {
    cursor: pointer;
}

[type='search']::-webkit-search-decoration,
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-results-button,
[type='search']::-webkit-search-results-decoration {
    display: none;
}

[type='number'] {
    -moz-appearance: textfield;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:disabled {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: 0;
}

:focus-visible {
    outline: 2px dotted #e25147;
    outline-offset: 4px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-weight: 700;
    vertical-align: middle;
    user-select: none;
}

.button-primary {
    background-color: #e25147;
    color: #fff;
}

.button-secondary {
    background-color: #191f28;
    color: #fff;
}

.button-secondary .button-icon {
    filter: brightness(0) invert(1);
}

.button-ghost {
    border: 1px solid #191f28;
    background-color: #fff;
    color: #191f28;
}

.button-negative {
    border: 1px solid #dfe4eb;
    background-color: #fff;
    color: #a7b2bc;
}

.button-negative .button-icon {
    filter: brightness(0) saturate(100%) invert(80%) sepia(12%) saturate(258%)
    hue-rotate(167deg) brightness(88%) contrast(86%);
}

.button-sm {
    height: 32px;
    padding: 0 10px;
    font-size: 14px;
}

.button-sm .button-icon {
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

.button-md {
    height: 44px;
    padding: 0 12px;
    font-size: 16px;
}

.button-md .button-icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.button-lg {
    height: 56px;
    padding: 0 14px;
    font-size: 18px;
}

.button:disabled {
    border-color: #e5e8eb;
    background-color: #e5e8eb;
    color: #8b95a1;
}

.input-text,
.input-textarea {
    border-radius: 4px;
    border: 1px solid #e5e8eb;
    background-color: #fff;
    color: #333d4b;
    font-weight: 500;
    font-size: 14px;
    outline: 0;
    appearance: none;
    transition: border-color 0.1s ease;
}

.input-text:focus,
.input-text:hover,
.input-textarea:focus,
.input-textarea:hover {
    border-color: #a7b2bc;
}

.input-text::placeholder,
.input-textarea::placeholder {
    color: #b0b8c1;
}

.input-text {
    display: inline-block;
    height: 44px;
    padding: 0 16px;
    vertical-align: middle;
}

.input-textarea {
    width: 100%;
    padding: 16px 16px;
    line-height: 20px;
    resize: none;
}

.input-checkbox,
.input-radio {
    display: inline-block;
    margin: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: auto 100%;
    vertical-align: middle;
    cursor: pointer;
    appearance: none;
}

.input-checkbox:checked,
.input-radio:checked {
    background-position: -20px 0;
}

.input-checkbox :disabled,
.input-radio :disabled {
    background-position: -40px 0;
    cursor: default;
}

.input-checkbox :disabled:checked,
.input-radio :disabled:checked {
    background-position: -60px 0;
}

.input-checkbox.size-lg,
.input-radio.size-lg {
    width: 24px;
    height: 24px;
}

.input-checkbox.size-lg:checked,
.input-radio.size-lg:checked {
    background-position: -24px 0;
}

.input-checkbox.size-lg :disabled,
.input-radio.size-lg :disabled {
    background-position: -48px 0;
    cursor: default;
}

.input-checkbox.size-lg :disabled:checked,
.input-radio.size-lg :disabled:checked {
    background-position: -72px 0;
}

.input-checkbox.size-lg + .input-label-text,
.input-radio.size-lg + .input-label-text {
    padding-left: 8px;
    font-size: 16px;
    line-height: 24px;
}

.input-checkbox {
    background-image: url(./../images/common/checkbox.svg);
}

.input-radio {
    background-image: url(./../images/common/radio.svg);
}

.input-label {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
}

.input-label-text {
    padding-left: 6px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.input-password {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.input-password .input-text {
    width: 100%;
    padding-right: 52px;
}

.input-password .input-password-reveal {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.input-password [type='text'] + .input-password-reveal {
    background-position-x: -20px;
}

.input-password-reveal {
    overflow: hidden;
    width: 20px;
    height: 20px;
    background: url(./../images/common/reveal.svg) no-repeat 0 0 / auto 100%;
    white-space: nowrap;
    text-indent: 100%;
}

.button-radio {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.button-radio .input-radio {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.button-radio .input-radio:checked + .button-radio-label:before {
    border: 2px solid #e25147;
}

.button-radio-label {
    display: inline-flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 44px;
    padding: 0 52px 0 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

.button-radio-label:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    border: 1px solid #e5e8eb;
}

.button-radio-label .icon {
    width: auto;
    height: 24px;
    margin-right: 8px;
}

.input-spinner {
    display: inline-flex;
    vertical-align: middle;
}

.input-spinner-down,
.input-spinner-up {
    overflow: hidden;
    width: 30px;
    height: 30px;
    border: 1px solid #e5e8eb;
    background: no-repeat 50% 50%/20px 20px #fff;
    white-space: nowrap;
    text-indent: 100%;
}

.input-spinner-down:focus,
.input-spinner-up:focus {
    z-index: 1;
}

.input-spinner-down {
    border-radius: 2px 0 0 2px;
    background-image: url(./../images/common/input_spinner_down.svg);
}

.input-spinner-up {
    border-radius: 0 2px 2px 0;
    background-image: url(./../images/common/input_spinner_up.svg);
}

.input-spinner-value {
    width: 64px;
    height: 30px;
    border: solid #e5e8eb;
    border-width: 1px 0;
    background-color: #fff;
    color: #333d4b;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.input-spinner-value:focus {
    z-index: 1;
}

.input-select {
    display: inline-block;
    vertical-align: middle;
}

.input-select .selectric {
    border-radius: 4px;
    border: 1px solid #e5e8eb;
    background: #fff;
    transition:
            border-color 0.2s ease,
            background-color 0.2s ease;
}

.input-select .selectric-hover .selectric {
    border-color: #a7b2bc;
}

.input-select .selectric .label {
    height: 42px;
    margin: 0 42px 0 16px;
    color: #b0b8c1;
    font-weight: 500;
    font-size: 14px;
    line-height: 44px;
    transition: color 0.2s ease;
}

.input-select .selectric-open .selectric {
    border-radius: 4px 4px 0 0;
    border-color: #a7b2bc;
}

.input-select .selectric-open .selectric .label {
    color: #b0b8c1;
}

.input-select .selectric .arrow {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: url(./../images/common/ico_chevron_down.svg) no-repeat 50%
    50%/20px 20px;
}

.input-select .selectric .arrow:after {
    display: none;
}

.input-select .selectric-open .selectric .arrow {
    transform: rotate(180deg);
}

.input-select .selectric-items {
    overflow: hidden;
    top: 100%;
    width: 100% !important;
    border-radius: 0 0 8px 8px;
    border: solid #a7b2bc;
    border-width: 0 1px 1px;
    background: #fff;
    box-shadow: none;
}

.input-select .selectric-items .disabled {
    opacity: 0.6;
    color: #969696 !important;
}

.input-select .selectric-items ul {
    padding: 8px 0;
}

.input-select .selectric-items li {
    padding: 8px 16px;
    color: #333d4b;
    font-size: 14px;
}

.input-select .selectric-items li.highlighted,
.input-select .selectric-items li.selected,
.input-select .selectric-items li:hover {
    background: transparent;
}

.dropdown {
    position: relative;
}

.dropdown.active .dropdown-label {
    border-radius: 4px 4px 0 0;
    border-color: #a7b2bc;
}

.dropdown.active .dropdown-label:after {
    transform: rotate(180deg);
}

.dropdown.active .dropdown-items {
    display: block;
}

.dropdown-label {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 44px;
    padding: 0 44px 0 16px;
    border-radius: 4px;
    border: 1px solid #e5e8eb;
    background-color: #fff;
    color: #b0b8c1;
    font-weight: 500;
    font-size: 14px;
    transition: border-color 0.1s ease;
}

.dropdown-label:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    background: url(./../images/common/ico_chevron_down.svg) no-repeat 50%
    50%/20px 20px;
}

.dropdown-items {
    display: none;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    width: 100%;
    max-height: 244px;
    padding: 8px 0;
    border-radius: 0 0 4px 4px;
    border: solid #a7b2bc;
    border-width: 0 1px 1px;
    background-color: #fff;
}

.dropdown-items::-webkit-scrollbar {
    width: 16px;
}

.dropdown-items::-webkit-scrollbar-track {
    background-color: #fff;
}

.dropdown-items::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 6px solid #fff;
    background-color: #c2c2c2;
}

.dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 16px;
    background: none;
    color: #191f28;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    /* Custom */
}

.dropdown-item .name {
    font-weight: 500;
}

.dropdown-item .price {
    margin-left: auto;
    font-weight: 700;
}

.dropdown-item .img {
    flex-shrink: 0;
    align-self: flex-start;
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 4px;
}

.dropdown-item .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dropdown-item .txt .name {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
}

.dropdown-item .txt .price {
    margin: 4px 0 0 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination [class^='page-dir'] {
    overflow: hidden;
    width: 44px;
    height: 44px;
    background: no-repeat 50% 50%/24px 24px;
    white-space: nowrap;
    text-indent: 100%;
}

.pagination .page-dir-prev {
    margin-right: 4px;
    background-image: url(./../images/common/ico_chevron_left.svg);
}

.pagination .page-dir-next {
    margin-left: 4px;
    background-image: url(./../images/common/ico_chevron_right.svg);
}

.pagination .page-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    color: #b0b8c1;
    font-weight: 700;
    font-size: 18px;
}

.pagination .page-num.active {
    color: #1e2023;
}

.tablist {
    display: flex;
}

.tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
    height: 56px;
    padding: 0 16px 2px;
    background-color: #f2f5f8;
    color: #b0b8c1;
    font-weight: 700;
    font-size: 18px;
}

.tab:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: solid #e25147;
    border-width: 0 0 2px;
}

.tab.active {
    background-color: #fff;
    color: #1e2023;
}

.tab.active:before {
    border-width: 2px 2px 0;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1010;
    padding: 24px 24px;
    background-color: rgba(0, 0, 0, 0);
    transition:
            visibility 0.2s,
            background-color 0.2s ease;
}

.modal.visible {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.visible .modal-box {
    opacity: 1;
    transform: translateY(0);
}

.modal.size-xs .modal-box {
    max-width: 320px;
}

.modal-dialog .modal-box {
    max-width: 320px;
}

.modal-dialog .modal-contents .message {
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.modal-dialog .modal-contents .button-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-dialog .modal-contents .button-group .button {
    width: 100%;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding: 32px 32px;
    border-radius: 16px;
    background-color: #fff;
    opacity: 0;
    transform: translateY(24px);
    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.modal-box > .modal-close {
    overflow: hidden;
    position: absolute;
    top: 32px;
    right: 32px;
    width: 30px;
    height: 30px;
    background: url(./../images/common/ico_close.svg) no-repeat 0 0/100% 100%;
    white-space: nowrap;
    text-indent: 100%;
}

.modal-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.modal-header {
    padding-bottom: 24px;
}

.modal-contents {
    overflow-y: scroll;
    max-height: 452px;
}

.modal-contents.scrollbar-inner {
    margin-right: -18px !important;
    padding-right: 18px !important;
}

.modal-contents.scrollbar-inner > .scroll-element.scroll-x {
    display: none;
}

.modal-contents.scrollbar-inner > .scroll-element.scroll-y {
    right: 0;
    width: 4px;
}

.modal-contents.scrollbar-inner
> .scroll-element.scroll-y
.scroll-element_outer {
    border-radius: 2px;
}

.modal-contents.scrollbar-inner
> .scroll-element.scroll-y
.scroll-element_track {
    background-color: transparent;
}

.modal-contents.scrollbar-inner > .scroll-element.scroll-y .scroll-bar {
    background-color: #e5e8eb;
    opacity: 1;
}

.modal-contents.scrollbar-inner
> .scroll-element.scroll-y.scroll-scrollx_visible
.scroll-element_size {
    top: 0;
}

.modal-contents.scrollbar-inner
> .scroll-element.scroll-y.scroll-scrollx_visible
.scroll-element_track {
    top: 0;
}

.modal-footer {
    display: flex;
    justify-content: center;
    padding-top: 32px;
}

.modal-footer .button-lg {
    width: 284px;
}

.form .label {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.form .label ~ .label {
    margin-top: 24px;
}

.form .control {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.form .control .button {
    flex-shrink: 0;
}

.form .helper {
    margin-top: 8px;
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.form .option-helper {
    margin-top: 24px;
}

.form .option-helper .disc {
    margin-top: 8px;
}

.form .disc li {
    position: relative;
    padding-left: 20px;
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.form .disc li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
}

.bbs-list {
    margin-top: 40px;
}

.bbs-list .tablist {
    margin-bottom: 24px;
}

.bbs-list .pagination {
    margin-top: 24px;
}

.bbs-head {
    margin-bottom: 40px;
}

.bbs-head .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 234px;
    margin-bottom: 24px;
    padding: 24px 24px;
    border-radius: 16px;
    background: linear-gradient(93.42deg, #65eaff -7.79%, #1351f2 122.79%);
}

.bbs-head .banner:before {
    content: '';
    flex-shrink: 0;
    width: 172px;
    height: 185px;
    margin-right: 64px;
    background: url(./../images/common/inquiry_notice_speaker.png) no-repeat 0
    0/100% 100%;
}

.bbs-head .banner .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.bbs-head .banner strong {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 17px;
    background-color: #fff;
    color: #2572f5;
    font-size: 16px;
}

.bbs-head .banner p {
    margin-top: 12px;
    color: #fff;
    font-family: 'NanumSquare', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.05em;
}

.bbs-head .banner p b {
    color: #003267;
    font-weight: 800;
}

.bbs-head .control {
    display: flex;
    align-items: center;
}

.bbs-head .control .button {
    width: 196px;
    margin-left: auto;
}

.bbs-head .guide li {
    position: relative;
    padding-left: 24px;
    color: #6b7684;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.bbs-head .guide li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: currentColor;
}

.item-list > ul {
    display: flex;
    flex-direction: column;
}

.item-list.gap24 > ul {
    gap: 24px;
}

.item-list.gap16 > ul {
    gap: 16px;
}

.item-list .nodata {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 88px 0;
}

.item-list .nodata .icon {
    width: 120px;
    height: auto;
}

.item-list .nodata p {
    margin-top: 24px;
    color: #a7b2bd;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.item-list .pagination {
    margin-top: 24px;
}

.content-box {
    padding: 32px 32px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 28px 0 rgba(168, 184, 200, 0.3);
}

.content-box .box-head {
    display: flex;
    align-items: center;
    margin-top: -8px;
}

.content-box .box-head .control {
    margin-left: auto;
}

.content-box .box-heading {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.content-box .tablist {
    margin-bottom: 24px;
}

.content-box .guide {
    color: #333d4b;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.content-box .hr {
    margin: 24px -32px;
    height: 2px;
    background-color: #eaeef3;
}

.content-box .search-bar {
    display: flex;
    margin-bottom: 32px;
}

.content-box .search-bar .input-select {
    flex-shrink: 0;
    min-width: 140px;
    margin-right: 12px;
}

.content-box .search-bar .input-text {
    flex: 1;
}

.content-box .search-bar .button {
    flex-shrink: 0;
    margin-left: 8px;
    width: 74px;
}

.content-box .form .label {
    font-size: 16px;
    line-height: 24px;
}

.content-box .form .label ~ .label {
    margin-top: 20px;
}

.content-box .payment-type {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-box .submit {
    margin-top: 24px;
}

.product-list .list-heading {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.product-list .pagination {
    margin-top: 64px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 106px 32px;
}

.product-grid > li {
    width: calc(25% - 24px);
}

.product-grid-item {
    display: block;
}

.product-grid-item .img {
    position: relative;
}

.product-grid-item .img:before {
    content: '';
    display: block;
    padding-bottom: 141.2162%;
}

.product-grid-item .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-grid-item .txt {
    margin-top: 16px;
}

.product-grid-item .name {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
}

.product-grid-item .date {
    margin-top: 4px;
    color: #8b95a1;
    font-size: 14px;
    line-height: 18px;
}

.product-grid-item .product-tag {
    margin-top: 12px;
}

.product-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-tag li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    padding: 0 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

.product-tag li.red {
    background-color: rgba(226, 81, 71, 0.1);
    color: #e25147;
}

.product-tag li.blue {
    background-color: rgba(71, 146, 226, 0.1);
    color: #4792e2;
}

.product-tag li.green {
    background-color: rgba(33, 165, 139, 0.1);
    color: #21a58b;
}

.product-tag li.orange {
    background-color: rgba(237, 145, 17, 0.1);
    color: #ed9111;
}

.product-tag li.gray {
    background-color: rgba(101, 126, 161, 0.1);
    color: #657ea1;
}

.accordion-bbs {
    border-top: 2px solid #e8e8e8;
}

.accordion-bbs .head {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 20px 40px 20px 0;
    border-bottom: 1px solid #e5e8eb;
    background-color: transparent;
    text-align: left;
    user-select: none;
}

.accordion-bbs .head:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background: url(./../images/common/ico_chevron_down.svg) no-repeat 0 0/100%
    100%;
}

.accordion-bbs .head .meta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 16px;
}

.accordion-bbs .head .state {
    display: inline-flex;
    margin-right: 16px;
    padding: 6px 6px;
    border-radius: 4px;
    background-color: #f2f5f8;
    color: #b0b8c1;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
}

.accordion-bbs .head .state.complete {
    background-color: #edf5fd;
    color: #4792e2;
}

.accordion-bbs .head .date {
    color: #b0b8c1;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.accordion-bbs .head .subject {
    color: #6b7684;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.accordion-bbs .head .writer {
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.accordion-bbs .head.active:after {
    transform: rotate(180deg);
}

.accordion-bbs .content {
    padding: 32px 32px;
    background-color: #f2f5f8;
}

.accordion-bbs .content p {
    color: #333d4b;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.accordion-bbs .content-reply {
    padding: 32px 24px;
    border: solid #e5e8eb;
    border-width: 1px 0;
}

.accordion-bbs .content-reply .heading {
    display: block;
    margin-bottom: 8px;
    padding-left: 24px;
    background: url(./../images/common/bbs_ico_reply.svg) no-repeat top 50% left
    0/20px 20px;
    color: #4792e2;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.accordion-bbs .content-reply p {
    color: #333d4b;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.accordion-bbs .nodata {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
}

.accordion-bbs .nodata .icon {
    width: 120px;
    height: auto;
}

.accordion-bbs .nodata p {
    margin-top: 24px;
    color: #a7b2bd;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.accordion-bbs .nodata .register {
    max-width: 400px;
    margin-top: 40px;
}

.accordion-bbs.customer-center .head .subject {
    color: #333d4b;
}

.accordion-bbs.qna {
    border-top-width: 1px;
}

.accordion-bbs.qna .head {
    padding: 12px 0 12px 0;
    cursor: pointer;
}

.accordion-bbs.qna .head:after {
    display: none;
}

.accordion-bbs.qna .head .meta:last-child {
    margin-right: 0;
    margin-left: auto;
}

.accordion-bbs.qna .head .state {
    margin-right: 0;
}

.accordion-bbs.qna .head .subject {
    padding-right: 16px;
    font-weight: 500;
}

.accordion-bbs.qna .head .writer {
    width: 120px;
    text-align: center;
}

.accordion-bbs.qna .head .date {
    width: 120px;
    text-align: center;
}

.accordion-bbs.qna .head .control {
    display: flex;
    gap: 4px;
    margin-left: auto;
    margin-right: 16px;
}

.accordion-bbs.qna .head .control-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #dfe4eb;
    background-color: #fff;
    color: #a7b2bc;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.accordion-bbs.qna .head .control + .meta {
    margin-left: 0;
}

.accordion-bbs.qna .secret .head {
    cursor: default;
    pointer-events: none;
}

.accordion-bbs.qna .secret .head .subject:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    mask: url(./../images/common/ico_locked.svg) no-repeat 0 0/100% 100%;
    background-color: currentColor;
    vertical-align: -4px;
}

.accordion-bbs.qna + .pagination {
    margin-top: 24px;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.2s ease;
}

#header .inner {
    display: flex;
    align-items: center;
    position: relative;
    height: 112px;
    padding: 44px 24px 20px;
}

#header .logo {
    overflow: hidden;
    width: 103px;
    height: 38px;
    background: url(./../images/common/logo_header.png) no-repeat 0 0/100% 100%;
    white-space: nowrap;
    text-indent: 100%;
}

#header #gnb {
    margin-left: 48px;
}

#header .search {
    position: relative;
    width: 280px;
    margin-left: auto;
}

#header .search .input {
    width: 100%;
    height: 32px;
    padding: 0 42px 0 12px;
    border-radius: 16px;
    background-color: #f1f5fb;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

#header .search .submit {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 5px;
    width: 32px;
    height: 32px;
    background: url(./../images/common/ico_search.svg) no-repeat 50% 50%/18px
    18px;
    white-space: nowrap;
    text-indent: 100%;
    cursor: pointer;
}

#header .user {
    display: flex;
    margin: 0 -12px 0 12px;
}

#header .user .icon {
    padding: 12px 12px;
}

#header .help {
    display: flex;
    gap: 12px;
    position: absolute;
    top: 20px;
    right: 24px;
    margin-left: auto;
}

#header .help a {
    color: #6b7684;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
}

#header.scroll-down {
    background-color: #fff;
}

#header.scroll-down .search .input {
    background-color: #f1f5fb !important;
}

#gnb {
    display: flex;
    gap: 24px;
}

#gnb a {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.bg-sky #header .search .input {
    background-color: #fff;
}

#moHeader {
    display: none;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 56px;
    padding: 0 20px;
    background-color: #fff;
}

#moHeader .logo {
    overflow: hidden;
    width: 71px;
    height: 26px;
    background: url(./../images/common/logo_header.png) no-repeat 0 0/100% 100%;
    white-space: nowrap;
    text-indent: 100%;
}

#moHeader .menu {
    display: flex;
    margin: 0 -6px 0 auto;
}

#moHeader .menu .icon {
    padding: 6px 6px;
}

#moHeader.scroll-down {
    background-color: #fff;
}

#aside {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition:
            visibility 0.4s,
            background-color 0.4s ease;
}

#aside.visible {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

#aside.visible .sidebar {
    transform: translateX(0);
}

.sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 284px;
    height: 100%;
    padding: 56px 20px;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.sidebar .bottom {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #e5e8eb;
}

.sidebar .bottom:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 20px;
    background-color: #e5e8eb;
    transform: translate(-50%, -50%);
}

.sidebar .bottom a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 54px;
    font-weight: 700;
    font-size: 16px;
}

.sidebar .bottom a.logout:after {
    content: '';
    width: 20px;
    height: 20px;
    margin-left: 4px;
    background: url(./../images/common/ico_logout.svg) no-repeat 0 0/100% 100%;
}

.sidebar .aside-close {
    overflow: hidden;
    position: absolute;
    top: 16px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: url(./../images/common/ico_close.svg) no-repeat 0 0/100% 100%;
    white-space: nowrap;
    text-indent: 100%;
}

#moGnb .parent > li + li {
    margin-top: 20px;
}

#moGnb .parent > li > a {
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

#moGnb .parent > li > a.toggle {
    width: 100%;
}

#moGnb .parent > li > a.toggle:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background: url(./../images/common/ico_chevron_down.svg) no-repeat 0 0/100%
    100%;
}

#moGnb .parent > li > a.active:after {
    transform: rotate(180deg);
}

#moGnb .child {
    padding-top: 16px;
}

#moGnb .child > li + li {
    margin-top: 16px;
}

#moGnb .child > li > a {
    display: inline-block;
    color: #333d4b;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

#moSearch {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 990;
    width: 100%;
    height: calc(100% - 56px);
    background-color: rgba(0, 0, 0, 0);
    transition:
            visibility 0.2s,
            background-color 0.2s ease;
}

#moSearch .search-wrapper {
    padding: 12px 20px;
    border-radius: 0 0 20px 20px;
    background-color: #fff;
    transform: translateY(-100%);
    transition: transform 0.2s ease;
}

#moSearch .search {
    position: relative;
    width: 100%;
}

#moSearch .search .input {
    width: 100%;
    height: 44px;
    padding: 0 56px 0 16px;
    border-radius: 22px;
    background-color: #f1f5fb;
    font-size: 14px;
}

#moSearch .search .submit {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 6px;
    width: 44px;
    height: 44px;
    background: url(./../images/common/ico_search.svg) no-repeat 50% 50%/18px
    18px;
    white-space: nowrap;
    text-indent: 100%;
    cursor: pointer;
}

#moSearch.visible {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
}

#moSearch.visible .search-wrapper {
    transform: translateY(0);
}

.bg-sky {
    background-color: #f2f5f8;
}

#container {
    padding-top: 112px;
}

#contents {
    max-width: 1128px;
    margin: 0 auto;
    padding: 80px 24px 160px;
}

#contents.size-sm {
    max-width: 916px;
}

#contents.size-lg {
    max-width: 1328px;
}

.contents-heading {
    margin-bottom: 24px;
}

.h-size-1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
}

.h-size-2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
}

.h-size-3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.h-size-4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
}

#footer {
    position: relative;
    background-color: #fff;
    color: #6b7684;
}

#footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    border: solid #e5e8eb;
    border-width: 1px 0;
}

#footer .inner {
    position: relative;
    padding: 0 24px;
}

#footer .top {
    padding: 20px 0;
}

#footer .bottom {
    display: flex;
    align-items: center;
    padding: 56px 0 160px;
}

#footer .menu {
    display: flex;
    gap: 24px;
}

#footer .menu a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

#footer .menu a b {
    color: #191f28;
}

#footer .logo {
    overflow: hidden;
    width: 171px;
    height: 64px;
    background: url(./../images/common/logo_footer.png) no-repeat 0 0/100% 100%;
    white-space: nowrap;
    text-indent: 100%;
}

#footer .company {
    margin-left: 80px;
}

#footer .company .info {
    display: flex;
    gap: 8px;
}

#footer .company .info dl {
    display: flex;
    font-size: 12px;
    line-height: 18px;
}

#footer .company .info dt {
    flex-shrink: 0;
    margin-right: 2px;
    font-weight: 700;
}

#footer .company p {
    margin-top: 10px;
    color: #6f6f6f;
    font-size: 12px;
    line-height: 18px;
}

#footer .copyright {
    align-self: flex-end;
    margin-left: auto;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
}

.float-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 12px;
    bottom: calc(100% + 12px);
}

.float-menu.fixed {
    position: fixed;
    z-index: 990;
    bottom: 12px;
}

.float-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: none;
}

.top-button {
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
    transition:
            visibility 0.2s,
            opacity 0.2s ease;
}

.top-button.visible {
    visibility: visible;
    opacity: 1;
}

.home .visual {
    display: flex;
    align-items: center;
    height: 240px;
    margin-bottom: 72px;
    padding: 0 80px;
    border-radius: 24px;
    background: url(./../images/home/visual_bg.png) no-repeat 50% 50% / cover;
}

.home .visual p {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    line-height: 46px;
}

.search-result .nodata {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 0 76px;
}

.search-result .nodata:before {
    content: '';
    width: 120px;
    height: 120px;
    background: url(./../images/common/search_ico_zoom.svg) no-repeat 0 0/100%
    100%;
}

.search-result .nodata p {
    margin-top: 24px;
    color: #a7b2bc;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 40px auto 0;
}

.login-form .h1 {
    align-self: center;
}

.login-form .field-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form .help {
    margin-top: 16px;
}

.login-form .result {
    margin-top: 16px;
    padding: 16px 16px;
    border-radius: 6px;
    background-color: #f2f5f8;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.login-form .button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.login-form .find {
    align-self: center;
    margin-top: 24px;
    background-color: transparent;
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.login-form .sns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 64px;
}

#find-account .modal-container {
    max-width: 400px;
}

.find-account .help {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 20px;
}

.join-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 48px auto 0;
}

.join-form .h1 {
    align-self: center;
    padding-bottom: 8px;
}

.join-form .section .head {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid #191f28;
}

.join-form .section .head .help {
    margin-left: auto;
    color: #6b7684;
    font-size: 14px;
    line-height: 20px;
}

.join-form .form .label ~ .label {
    margin-top: 20px;
}

.join-form .section ~ .section {
    margin-top: 40px;
}

.join-form .agree-all .input-label-text {
    font-size: 16px;
    line-height: 24px;
}

.join-form .agree-all p {
    margin-top: 4px;
    padding-left: 26px;
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.join-form .agree .row {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.join-form .agree .view {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    background: transparent;
    color: #e25147;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.join-form .agree .view:after {
    content: '';
    width: 20px;
    height: 20px;
    mask: url(./../images/common/ico_chevron_right.svg) no-repeat top 50% right
    0/20px 20px;
    background-color: currentColor;
}

.join-form .submit {
    margin-top: 40px;
}

.terms {
    margin-top: 40px;
}

.terms:first-child {
    margin-top: 0;
}

.terms h2 {
    margin: 40px 0 12px;
}

.terms h2:first-child {
    margin-top: 0;
}

.terms p {
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.page-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 40px;
}

.page-success .icon {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
}

.page-success .heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
}

.page-success p {
    margin: 24px -48px 0;
    color: #333d4b;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.page-success .button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 40px;
}

.order-form {
    display: flex;
    gap: 3.546%;
}

.order-form > .col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.order-form > .col.aside {
    flex: 0 0 34.7222%;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 64px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 28px 0 rgba(168, 184, 200, 0.3);
}

.cart-empty .icon {
    width: 80px;
    height: auto;
}

.cart-empty p {
    margin-top: 24px;
    color: #a7b2bd;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.cart-empty .button {
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
}

.cart-empty {
    padding: 64px 20px;
}

.product-related {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-related .box-info {
    overflow: hidden;
    position: relative;
    width: 50%;
    border-radius: 20px;
    background: no-repeat 50% 50% / cover;
}

.product-related .box-info:before {
    content: '';
    display: block;
    padding-bottom: 141.25%;
}

.product-related .info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px 32px;
    background: linear-gradient(180deg, #000 8.41%, rgba(0, 0, 0, 0) 50%);
    color: #fff;
}

.product-related .info .date {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.product-related .info .name {
    margin-top: 4px;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
}

.product-related .list-box {
    width: 46.875%;
    padding: 40px 40px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 28px 0 rgba(168, 184, 200, 0.3);
}

.product-related .list-box .heading {
    margin-bottom: 32px;
    color: #6b7684;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.product-related .related-list > li + li {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e8eb;
}

.product-related .related-item {
    position: relative;
}

.product-related .related-item .sub-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.product-related .related-item .date {
    margin-top: 4px;
    color: #8b95a1;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

.product-related .related-item .product-tag {
    margin-top: 12px;
}

.product-related .related-item .purchase {
    position: absolute;
    top: 0;
    right: 0;
}

.product-detail {
    display: flex;
    justify-content: space-between;
    max-width: 1020px;
    margin: 0 auto;
}

.product-detail .box-info {
    align-self: flex-start;
    overflow: hidden;
    position: relative;
    width: 42.3529%;
    border-radius: 20px;
    background: no-repeat 50% 50% / cover;
}

.product-detail .box-info:before {
    content: '';
    display: block;
    padding-bottom: 141.25%;
}

.product-detail .box-info .info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 24px;
    background: linear-gradient(180deg, #000 8.41%, rgba(0, 0, 0, 0) 50%);
    color: #fff;
}

.product-detail .box-info .info .name {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.product-detail .box-info .info .item-name {
    margin-top: 4px;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
}

.product-detail .product-option {
    display: flex;
    width: 100%;
    gap: 8px;
}

.product-detail .product-option .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(20% - 6.4px);
    height: 87px;
    border-radius: 8px;
    background-color: #fff;
}

.product-detail .product-option .item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    border: 1px solid #e5e8eb;
}

.product-detail .product-option .item .icon {
    width: 32px;
    height: 32px;
}

.product-detail .product-option .item span {
    margin-top: 8px;
    color: #6b7684;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.product-detail .product-option .item.active:before {
    border: 2px solid #e25147;
}

.product-detail .product-option .item.active span {
    color: #e25147;
}

.product-detail .option-box {
    position: relative;
    padding: 12px 120px 12px 16px;
    border-radius: 8px;
    background-color: #f2f5f8;
}

.product-detail .option-box .name {
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.product-detail .option-box .input-spinner {
    margin-top: 12px;
}

.product-detail .option-box .price {
    position: absolute;
    right: 16px;
    bottom: 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.product-detail .option-box .remove {
    overflow: hidden;
    position: absolute;
    top: 2px;
    right: 6px;
    width: 40px;
    height: 40px;
    mask: url(./../images/common/ico_trashcan.svg) no-repeat 50% 50%/20px 20px;
    background-color: #6b7684;
    white-space: nowrap;
    text-indent: 100%;
}

.product-detail .box-form {
    position: relative;
    width: 53.7254%;
    padding: 40px 40px 140px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 28px 0 rgba(168, 184, 200, 0.3);
}

.product-detail .box-form .product-sub-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.product-detail .box-form .selected-option {
    margin-top: 24px;
}

.product-detail .box-form .selected-option .option-box + .option-box {
    margin-top: 8px;
}

.product-detail .box-form .total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.product-detail .box-form .total-price strong {
    color: #333d4b;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.product-detail .box-form .total-price p {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.product-detail .box-form .action {
    display: flex;
    gap: 8px;
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
}

.product-detail .box-form .action .button {
    flex: 1;
}

.product-additional {
    margin-top: 118px;
    border-top: 2px solid #e25147;
    background-color: #fff;
}

.product-additional .tablist {
    max-width: 1068px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-additional .tablist:first-child {
    margin-top: -56px;
}

.product-additional .tabpanel {
    max-width: 1068px;
    margin: 0 auto;
    padding: 64px 24px 120px;
    scroll-margin-top: 168px;
}

.product-additional .tabpanel > .heading {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 32px;
    line-height: 46px;
}

.product-additional .tabpanel .sub-heading {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.product-additional .tabpanel .sub-heading ~ .sub-heading {
    margin-top: 32px;
}

.product-additional .detail {
    overflow: hidden;
    position: relative;
    height: 560px;
}

.product-additional .detail:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 92.5%);
}

.product-additional .detail.visible {
    height: auto;
}

.product-additional .detail.visible:after {
    display: none;
}

.product-additional .more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    border-radius: 6px;
    border: 1px solid #1e2023;
    background-color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.product-additional .more:after {
    content: '';
    width: 20px;
    height: 20px;
    margin-left: 8px;
    background: url(./../images/common/ico_chevron_down.svg) no-repeat 0 0/100%
    100%;
}

.product-additional .table {
    width: 100%;
}

.product-additional .table th,
.product-additional .table td {
    padding: 12px 16px;
    border: 1px solid #e5e8eb;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.product-additional .table th {
    width: 200px;
    background-color: #f2f5f8;
    font-weight: 700;
}

.product-additional .table td {
    color: #6b7684;
    font-weight: 500;
}

.product-additional .disc li {
    position: relative;
    padding-left: 20px;
    color: #6b7684;
    font-size: 14px;
    line-height: 20px;
}

.product-additional .disc li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: currentColor;
}

.product-additional .disc.lg li {
    padding-left: 24px;
    font-size: 16px;
    line-height: 24px;
}

.product-additional .disc.lg li:before {
    top: 10px;
    left: 10px;
    width: 4px;
    height: 4px;
}

.product-additional .qna-top {
    display: flex;
    align-items: center;
}

.product-additional .qna-top .button {
    margin-left: auto;
}

.product-additional .qna {
    margin-top: 32px;
}

.mypage {
    display: flex;
    gap: 3.012%;
}

.mypage > .col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.mypage > .col.aside {
    flex: 0 0 29.2968%;
}

.myinfo {
    display: flex;
    flex-direction: column;
}

.myinfo .head {
    display: flex;
    align-items: center;
}

.myinfo .head .name {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.myinfo .head .logout {
    margin-left: auto;
    background: none;
    color: #a7b2bc;
    font-size: 14px;
    line-height: 20px;
}

.myinfo dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    margin-top: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.myinfo dt {
    display: flex;
    align-items: center;
}

.myinfo dt .icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.myinfo dd {
    font-weight: 700;
    text-align: right;
}

.myinfo .link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.myinfo .link .icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.myinfo .hr + .link {
    margin-top: 0;
}

.order-detail-info {
    color: #333d4b;
}

.order-detail-info .order-tag {
    margin-bottom: 8px;
}

.order-detail-info .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-detail-info .info .id {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.order-detail-info .info .date {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.account-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 16px 0;
}

.account-form .box-heading {
    margin-bottom: 40px;
    text-align: center;
}

.account-form .row {
    display: flex;
    align-items: center;
}

.account-form .row + .row {
    margin-top: 24px;
}

.account-form .label {
    flex-shrink: 0;
    width: 120px;
    margin-right: 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.account-form .control {
    display: flex;
    gap: 8px;
    flex: 1;
}

.account-form .submit {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.account-form .submit .button {
    flex: 1;
}

.payment-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.payment-info dd {
    color: #6b7684;
    text-align: right;
}

.order-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.order-tag > span {
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
    height: 26px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
}

.order-tag > span.blue {
    background-color: rgba(71, 146, 226, 0.1);
    color: #4792e2;
}

.order-tag > span.red {
    background-color: rgba(226, 81, 71, 0.1);
    color: #e25147;
}

.order-tag > span.gray {
    background-color: rgba(107, 118, 132, 0.1);
    color: #6b7684;
}

.ticket-info {
    display: flex;
    position: relative;
}

.ticket-info:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 159px;
    bottom: 7px;
    width: 4px;
    background: url(./../images/mypage/ticket_dotted_line.png) repeat-y 0 0/100%
    auto;
}

.ticket-info .img {
    flex-shrink: 0;
    position: relative;
    width: 161px;
}

.ticket-info .img:before {
    content: '';
    display: block;
    padding-bottom: 141.6149%;
}

.ticket-info .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.ticket-info .txt {
    flex: 1;
    padding: 24px 38px;
    border-radius: 12px;
    border: 1px solid #e5e8eb;
    background-color: #fff;
}

.ticket-info .txt .name {
    color: #333d4b;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.ticket-info .txt .sub-name {
    margin-top: 2px;
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.ticket-info .txt dl {
    display: grid;
    grid-template-columns: 86px auto;
    gap: 8px 12px;
    margin-top: 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.ticket-info .txt dl dt {
    color: #333d4b;
    font-weight: 700;
}

.ticket-info .txt dl dd {
    color: #6b7684;
}

.ticket-info .txt .button-group {
    display: flex;
    margin-top: 24px;
}

.order-info {
    display: flex;
    position: relative;
}

.order-info .input-checkbox {
    flex-shrink: 0;
    align-self: flex-start;
    margin-right: 12px;
}

.order-info .img {
    flex-shrink: 0;
    align-self: flex-start;
    overflow: hidden;
    position: relative;
    width: 129px;
    margin-right: 16px;
}

.order-info .img:before {
    content: '';
    display: block;
    padding-bottom: 141.6149%;
}

.order-info .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.order-info .input-checkbox + .img {
    width: 106px;
}

.order-info .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.order-info .txt .order-tag {
    margin-bottom: 8px;
}

.order-info .txt .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.order-info .txt .sub-name,
.order-info .txt .option {
    margin-top: 2px;
    color: #6b7684;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.order-info .txt .price {
    margin-top: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.order-info .txt .button-group {
    display: flex;
    gap: 4px;
    margin-top: auto;
    padding-top: 12px;
}

.order-info .txt .control {
    margin-top: auto;
    padding-top: 12px;
}

.order-info .txt .input-spinner-value {
    width: 40px;
}

.order-info .remove {
    flex-shrink: 0;
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin: -8px -8px 0 12px;
    mask: url(./../images/common/ico_trashcan.svg) no-repeat 50% 50%/24px 24px;
    background-color: #a7b2bc;
    white-space: nowrap;
    text-indent: 100%;
}

.order-info.size-sm .img {
    width: 87px;
}

.order-info.size-sm .txt .price {
    margin-top: auto;
    padding-top: 12px;
}

.submit-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
}

.submit-area .button {
    width: 100%;
}

.confirm-ticket {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.confirm-ticket .heading {
    display: flex;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.confirm-ticket .heading .icon {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.confirm-ticket .qr-area {
    padding: 28px 28px;
    border-radius: 12px;
    background-color: #f2f5f8;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

.text-primary {
    color: #e25147 !important;
}

.text-black {
    color: #1e2023 !important;
}

.text-gray {
    color: #6b7684 !important;
}

.w-full {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.border-none {
    border-style: none !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ml-auto {
    margin-left: auto !important;
}

.br-desk {
    display: block;
    font-size: 0;
}

.br-mo {
    display: inline;
    font-size: inherit;
}

@media (max-width: 1280px) {
    .modal-box {
        padding: 24px 24px;
    }

    .modal-box > .modal-close {
        top: 24px;
        right: 24px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-contents {
        max-height: calc(100vh - 304px);
    }

    .modal-footer {
        padding-top: 24px;
    }

    .modal-footer .button {
        width: 100%;
    }

    .bbs-head .banner {
        min-height: 120px;
        margin-bottom: 24px;
        padding: 8px 16px;
        border-radius: 12px;
    }

    .bbs-head .banner:before {
        width: 72px;
        height: 77px;
        margin-right: 24px;
    }

    .bbs-head .banner strong {
        height: 22px;
        padding: 0 8px;
        border-radius: 11px;
        font-size: 12px;
    }

    .bbs-head .banner p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 22px;
    }

    .bbs-head .control {
        flex-direction: column;
        align-items: flex-start;
    }

    .bbs-head .control .button {
        width: 100%;
        margin: 24px 0 0 0;
    }

    .item-list .nodata {
        padding: 56px 0 60px;
    }

    .item-list .nodata .icon {
        width: 96px;
    }

    .item-list .nodata p {
        margin-top: 16px;
        font-size: 16px;
        line-height: 24px;
    }

    .content-box {
        position: relative;
        padding: 20px 20px;
    }

    .content-box .box-head {
        margin-top: 0;
    }

    .content-box .box-heading {
        font-size: 20px;
        line-height: 30px;
    }

    .content-box .hr {
        margin: 20px -20px;
    }

    .content-box .guide {
        font-size: 16px;
        line-height: 24px;
    }

    .content-box .remove {
        position: absolute;
        right: -8px;
        bottom: -5px;
        margin: 0 0;
    }

    .product-list .list-heading {
        font-size: 18px;
        line-height: 26px;
    }

    .product-list .pagination {
        margin-top: 32px;
    }

    .product-grid {
        gap: 48px 16px;
    }

    .product-grid > li {
        width: calc(50% - 8px);
    }

    .product-grid-item .img img {
        border-radius: 8px;
    }

    .product-grid-item .txt {
        margin-top: 12px;
    }

    .product-grid-item .product-tag {
        gap: 4px;
    }

    .accordion-bbs .head {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 32px 14px 0;
    }

    .accordion-bbs .head .meta {
        margin: 0 0 8px 0;
    }

    .accordion-bbs .head .state {
        margin-right: 12px;
    }

    .accordion-bbs .content {
        padding: 24px 24px;
    }

    .accordion-bbs .content-reply {
        padding: 24px 24px;
    }

    .accordion-bbs .nodata .icon {
        width: 88px;
    }

    .accordion-bbs .nodata p {
        margin-top: 32px;
        font-size: 16px;
        line-height: 24px;
    }

    .accordion-bbs .nodata .register {
        margin-top: 24px;
    }

    .accordion-bbs.customer-center .head .subject {
        font-weight: 500;
    }

    .accordion-bbs.customer-center .head.active .subject {
        color: #1e2023;
        font-weight: 700;
    }

    .accordion-bbs.qna .head {
        padding: 14px 0 14px 0;
    }

    .accordion-bbs.qna .head .meta:last-child {
        margin: 10px 0 0;
    }

    .accordion-bbs.qna .head .state {
        margin-right: 0;
    }

    .accordion-bbs.qna .head .subject {
        padding-right: 0;
    }

    .accordion-bbs.qna .head .writer {
        width: auto;
        text-align: left;
    }

    .accordion-bbs.qna .head .date {
        width: auto;
        margin-left: 8px;
        text-align: left;
    }

    .accordion-bbs.qna .head .control {
        display: flex;
        order: 4;
        gap: 4px;
        margin: 8px 0 0 auto;
    }

    .accordion-bbs.qna .head .control-button {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 32px;
        padding: 0 10px;
        border-radius: 6px;
        border: 1px solid #dfe4eb;
        background-color: #fff;
        color: #a7b2bc;
        font-weight: 700;
        font-size: 14px;
        white-space: nowrap;
    }

    #header {
        display: none;
    }

    #moHeader {
        display: flex;
    }

    #aside,
    #moSearch {
        display: block;
    }

    #container {
        padding-top: 56px;
    }

    #contents {
        padding: 40px 20px 80px;
    }

    .h-size-1,
    .h-size-2 {
        font-size: 24px;
        line-height: 30px;
    }

    .h-size-3,
    .h-size-4 {
        font-size: 18px;
        line-height: 26px;
    }

    #footer:before {
        height: 176px;
    }

    #footer .inner {
        padding: 0 20px;
    }

    #footer .top {
        padding: 24px 0;
    }

    #footer .bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0 80px;
    }

    #footer .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    #footer .menu a {
        font-size: 14px;
        line-height: 20px;
    }

    #footer .logo {
        width: 108px;
        height: 40px;
    }

    #footer .company {
        margin: 40px 0 0 0;
    }

    #footer .company .info {
        flex-direction: column;
    }

    #footer .company .info dl {
        font-size: 14px;
        line-height: 20px;
    }

    #footer .company p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 20px;
    }

    #footer .copyright {
        align-self: flex-start;
        margin: 24px 0 0 0;
    }

    .home .visual {
        justify-content: center;
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .home .visual p {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }

    .search-result .nodata {
        padding: 0 0;
    }

    .search-result .nodata:before {
        width: 96px;
        height: 96px;
    }

    .search-result .nodata p {
        font-size: 16px;
        line-height: 24px;
    }

    .page-success {
        padding-top: 40px;
    }

    .page-success .icon {
        width: 96px;
    }

    .page-success .heading {
        font-size: 24px;
        line-height: 30px;
    }

    .page-success p {
        margin: 24px 0 0;
    }

    .order-form {
        flex-direction: column;
        gap: 24px;
    }

    .order-form > .col.aside {
        flex: 1;
    }

    .product-related {
        flex-direction: column;
    }

    .product-related .box-info {
        width: 100%;
    }

    .product-related .info .txt {
        padding: 24px 24px;
    }

    .product-related .info .name {
        margin-top: 8px;
        font-size: 24px;
        line-height: 30px;
    }

    .product-related .list-box {
        width: 100%;
        margin-top: 24px;
        padding: 20px 20px;
    }

    .product-related .list-box .heading {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 26px;
    }

    .product-related .related-item {
        padding-bottom: 56px;
    }

    .product-related .related-item .product-tag {
        margin-top: 12px;
    }

    .product-related .related-item .purchase {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .product-detail {
        flex-direction: column;
        padding: 24px 20px 0;
    }

    .product-detail .box-info {
        width: 100%;
    }

    .product-detail .box-info .info .item-name {
        font-size: 24px;
        line-height: 30px;
    }

    .product-detail .box-form {
        width: 100%;
        margin-top: 24px;
        padding: 20px 20px 116px;
    }

    .product-detail .box-form .category-option {
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-detail .box-form .category-option .item {
        width: calc(25% - 7.5px);
        height: 87px;
    }

    .product-detail .box-form .action {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .product-detail .box-form .action .cart {
        flex: none;
        overflow: hidden;
        width: 56px;
        border-color: #e5e8eb;
        background: url(./../images/common/ico_cart_gray.svg) no-repeat 50%
        50%/32px 32px;
        white-space: nowrap;
        text-indent: 100%;
    }

    .product-additional {
        margin-top: 96px;
    }

    .product-additional .tablist {
        padding: 0 0;
    }

    .product-additional .tab {
        font-size: 15px;
        line-height: 24px;
    }

    .product-additional .tabpanel {
        padding: 40px 20px 64px;
        scroll-margin-top: 112px;
    }

    .product-additional .tabpanel > .heading {
        font-size: 20px;
        line-height: 28px;
    }

    .product-additional .detail {
        height: 540px;
    }

    .product-additional .more {
        height: 56px;
        border-radius: 4px;
        font-size: 15px;
    }

    .product-additional .more:after {
        width: 18px;
        height: 18px;
        margin-left: 4px;
    }

    .product-additional .table th {
        width: 28.6567%;
    }

    .product-additional .qna-top {
        display: flex;
        flex-direction: column;
    }

    .product-additional .qna-top .button {
        width: 100%;
        margin: 16px 0 0;
    }

    .mypage {
        flex-direction: column;
        gap: 24px;
    }

    .mypage > .col.aside {
        flex: 1;
    }

    .order-detail-info .order-tag {
        margin-bottom: 8px;
    }

    .order-detail-info .info {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-detail-info .info .date {
        margin-top: 4px;
    }

    .order-info .img {
        width: 67px;
        margin-right: 12px;
    }

    .order-info .txt .order-tag {
        margin-bottom: 4px;
    }

    .order-info.size-sm .img {
        width: 67px;
    }

    .ticket-info {
        align-items: flex-start;
        padding: 20px 12px;
        border-radius: 12px;
        border: 1px solid #e5e8eb;
        background-color: #fff;
    }

    .ticket-info:after {
        display: none;
    }

    .ticket-info .img {
        width: 67px;
        margin-right: 12px;
    }

    .ticket-info .img img {
        border-radius: 6px;
    }

    .ticket-info .txt {
        padding: 0;
        border-radius: 0;
        border: 0;
    }

    .ticket-info .txt dl {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 16px;
    }

    .ticket-info .txt dd {
        margin-top: 2px;
    }

    .ticket-info .txt dt ~ dt {
        margin-top: 8px;
    }

    .ticket-info .txt .button-group {
        margin-top: 16px;
    }

    .ticket-info .txt .button-group .button {
        width: 100%;
    }

    .account-form {
        padding: 0 0;
    }

    .account-form .box-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .account-form .row {
        flex-direction: column;
        align-items: stretch;
    }

    .account-form .row + .row {
        margin-top: 20px;
    }

    .account-form .label {
        width: auto;
        margin: 0 0 8px 0;
    }

    .account-form .submit {
        flex-direction: column;
        gap: 12px;
    }

    .account-form .submit .button {
        flex: auto;
    }

    .br-desk {
        display: inline;
        font-size: inherit;
    }

    .br-mo {
        display: block;
        font-size: 0;
    }
}

@media (max-width: 1024px) {
    .tab {
        font-size: 16px;
        padding: 0 4px 2px;
    }
}


/**************************************************
 * COMPONENT | MODAL
 **************************************************/
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: visibility .4s ease,
    background-color .4s ease;
}

.modal_container {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .4s ease,
    transform .4s ease;
}

.modal.visible {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.visible .modal_container {
    opacity: 1;
    transform: translateY(0);
}

.dialog_footer .modal-close {
    background-color: #fff3e7;
    color: #fd8e00;
}
/**************************************************
 * COMPONENT | DIALOG
 **************************************************/
.dialog {
    overflow: hidden;
    width: 384px;
    border-radius: 8px;
    background-color: #fff;
    border: none !important;
}

.dialog_header {
    padding: 24px 32px 0;
}

.dialog_header > strong {
    font-size: 20px;
    font-weight: 700;
}

.dialog_body {
    padding: 16px 32px 32px;
}

.dialog_body .message {
    color: #5c524a;
    font-size: 16px;
    line-height: 1.6;  /* 줄 간격 증가 */
}

.dialog_body p.message {
    margin: 0 !important;
    border: none !important;
}

.dialog_footer {
    display: flex;
}

.dialog_footer [type="button"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    padding: 0 24px;
    border: none;
    background-color: #000000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.dialog_footer .modal-close {
    background-color: #fff3e7;
    color: #fd8e00;
}

.dialog_footer [type="button"]:focus {
    outline: none;
}