@import url("pretendardvariable.min.css");

@font-face {
    font-family: "FT Regola Neue";
    src: url("../fonts/FTRegolaNeue-Light.woff2") format("woff2"),
         url("../fonts/FTRegolaNeue-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "FT Regola Neue";
    src: url("../fonts/FTRegolaNeue-Regular.woff2") format("woff2"),
         url("../fonts/FTRegolaNeue-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "FT Regola Neue";
    src: url("../fonts/FTRegolaNeue-Medium.woff2") format("woff2"),
         url("../fonts/FTRegolaNeue-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "FT Regola Neue";
    src: url("../fonts/FTRegolaNeue-Bold.woff2") format("woff2"),
         url("../fonts/FTRegolaNeue-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

html{
    font-size: 14px;
}

html, body, span, div, ul, ol, li, table, tr, td, h1, h2, h3, h4, a, p, input, textarea, select, button, dl, dt, dd {
    font-size: inherit;
    font-family: "FT Regola Neue", "Pretendard Variable", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-decoration: none !important;
    list-style: none;
    margin: 0;
    word-break: keep-all;
    padding: 0;
    line-height: inherit;
    box-sizing: border-box;
    letter-spacing: 0 !important;
}

body, th, td, input, select, textarea, button, a{
    letter-spacing: 0 !important;
}

img{
    max-width: 100%;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

input {
    /* IE의 경우 */
    &::-ms-clear,
    &::-ms-reveal {
        display: none;
    }

    /* 크롬의 경우 */
    &::-webkit-search-decoration,
    &::-webkit-search-cancel-button,
    &::-webkit-search-results-button,
    &::-webkit-search-results-decoration {
        display: none;
    }
}

/*
Typography
*/
.fs-h1 {
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
}

.fs-h2 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
}

.fs-h3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
}

.fs-14 {
    font-size: 14px;
    line-height: var(--body-line-height);
}

.fs-16 {
    font-size: 16px;
    line-height: var(--body-line-height);
}

.fs-body {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

.fs-body.line-h-en{
    line-height: 20px;
}

.fs-body-strong{
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    font-weight: 700;
}

.fs-body-strong.line-h-en{
    line-height: 20px;
}

.fs-caption {
    font-size: var(--caption-font-size);
    line-height: var(--caption-line-height);
}

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700 !important;}

.text-upper{
    text-transform: uppercase;
}

/* Text Align */
.text-center {
    text-align: center;
}

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

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

@media (max-width: 767px) {
    .text-sm-center {
        text-align: center;
    }

    .text-sm-left {
        text-align: left;
    }

    .text-sm-right {
        text-align: right;
    }
}

/*

Color

*/

.gray-light-1 { color: var(--gray-light-1); }
.gray-light-2 { color: var(--gray-light-2); }
.gray-cool-1 { color: var(--gray-cool-1); }
.gray-cool-2 { color: var(--gray-cool-2); }
.gray-cool-3 { color: var(--gray-cool-3); }
.gray-cool-4 { color: var(--gray-cool-4); }
.gray-cool-5 { color: var(--gray-cool-5); }
.gray-cool-6 { color: var(--gray-cool-6); }

.blue-0 { color: var(--blue-0); }
.blue-1 { color: var(--blue-1); }
.blue-2 { color: var(--blue-2); }
.blue-3 { color: var(--blue-3); }
.blue-4 { color: var(--blue-4); }
.blue-5 { color: var(--blue-5); }

.green-1 { color: var(--green-1); }
.green-2 { color: var(--green-2); }
.green-3 { color: var(--green-3); }
.green-4 { color: var(--green-4); }
.green-5 { color: var(--green-5); }

.red { color: var(--red-red); }
.red-system { color: var(--red-system); }

.white { color: var(--white); }
.black { color: var(--black); }

@media (max-width: 767px) {
    .gray-sm-light-1 { color: var(--gray-light-1); }
    .gray-sm-light-2 { color: var(--gray-light-2); }
    .gray-sm-cool-1 { color: var(--gray-cool-1); }
    .gray-sm-cool-2 { color: var(--gray-cool-2); }
    .gray-sm-cool-3 { color: var(--gray-cool-3); }
    .gray-sm-cool-4 { color: var(--gray-cool-4); }
    .gray-sm-cool-5 { color: var(--gray-cool-5); }
    .gray-sm-cool-6 { color: var(--gray-cool-6); }

    .blue-sm-0 { color: var(--blue-0); }
    .blue-sm-1 { color: var(--blue-1); }
    .blue-sm-2 { color: var(--blue-2); }
    .blue-sm-3 { color: var(--blue-3); }
    .blue-sm-4 { color: var(--blue-4); }
    .blue-sm-5 { color: var(--blue-5); }

    .green-sm-1 { color: var(--green-1); }
    .green-sm-2 { color: var(--green-2); }
    .green-sm-3 { color: var(--green-3); }
    .green-sm-4 { color: var(--green-4); }
    .green-sm-5 { color: var(--green-5); }

    .red-sm { color: var(--red-red); }
    .red-sm-system { color: var(--red-system); }

    .white-sm { color: var(--white); }
    .black-sm { color: var(--black); }
}

.bg-gray-light-1 { background-color: var(--gray-light-1); }
.bg-gray-light-2 { background-color: var(--gray-light-2); }
.bg-gray-cool-1 { background-color: var(--gray-cool-1); }
.bg-gray-cool-2 { background-color: var(--gray-cool-2); }
.bg-gray-cool-3 { background-color: var(--gray-cool-3); }
.bg-gray-cool-4 { background-color: var(--gray-cool-4); }
.bg-gray-cool-5 { background-color: var(--gray-cool-5); }
.bg-gray-cool-6 { background-color: var(--gray-cool-6); }

.bg-blue-0 { background-color: var(--blue-0); }
.bg-blue-1 { background-color: var(--blue-1); }
.bg-blue-2 { background-color: var(--blue-2); }
.bg-blue-3 { background-color: var(--blue-3); }
.bg-blue-4 { background-color: var(--blue-4); }
.bg-blue-5 { background-color: var(--blue-5); }

.bg-green-1 { background-color: var(--green-1); }
.bg-green-2 { background-color: var(--green-2); }
.bg-green-3 { background-color: var(--green-3); }
.bg-green-4 { background-color: var(--green-4); }
.bg-green-5 { background-color: var(--green-5); }

.bg-red { background-color: var(--red-red); }
.bg-red-system { background-color: var(--red-system); }

.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }

@media (max-width: 767px) {
    .bg-sm-gray-light-1 { background-color: var(--gray-light-1); }
    .bg-sm-gray-light-2 { background-color: var(--gray-light-2); }
    .bg-sm-gray-cool-1 { background-color: var(--gray-cool-1); }
    .bg-sm-gray-cool-2 { background-color: var(--gray-cool-2); }
    .bg-sm-gray-cool-3 { background-color: var(--gray-cool-3); }
    .bg-sm-gray-cool-4 { background-color: var(--gray-cool-4); }
    .bg-sm-gray-cool-5 { background-color: var(--gray-cool-5); }
    .bg-sm-gray-cool-6 { background-color: var(--gray-cool-6); }

    .bg-sm-blue-0 { background-color: var(--blue-0); }
    .bg-sm-blue-1 { background-color: var(--blue-1); }
    .bg-sm-blue-2 { background-color: var(--blue-2); }
    .bg-sm-blue-3 { background-color: var(--blue-3); }
    .bg-sm-blue-4 { background-color: var(--blue-4); }
    .bg-sm-blue-5 { background-color: var(--blue-5); }

    .bg-sm-green-1 { background-color: var(--green-1); }
    .bg-sm-green-2 { background-color: var(--green-2); }
    .bg-sm-green-3 { background-color: var(--green-3); }
    .bg-sm-green-4 { background-color: var(--green-4); }
    .bg-sm-green-5 { background-color: var(--green-5); }

    .bg-sm-red { background-color: var(--red-red); }
    .bg-sm-red-system { background-color: var(--red-system); }

    .bg-sm-white { background-color: var(--white); }
    .bg-sm-black { background-color: var(--black); }
}

/* Select */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: auto;
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    background: var(--gray-light-1);
    padding: 10px 12px;
    color: var(--black) !important;
    border: none !important;
    background-image: url('../images/icon_dropbox_arrow.svg') !important;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center !important;
    background-size: 20px !important;
    border-radius: 0;
    outline: 0;
}

/* Input */
input[type=checkbox] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background:url("../images/icon_checkbox_default.svg") no-repeat center !important;
    width: 20px !important;
    height: 20px !important;
    background-size: 100% !important;
    border-radius: 0;
}

input[type=checkbox]:checked {
    background:url("../images/icon_checkbox_checked.svg") no-repeat center !important;
    background-size: 100% !important;
}

input[type=checkbox]:disabled {
    background:url("../images/icon_checkbox_disabled.svg") no-repeat center;
    background-size: 100%;
}

input[type=checkbox] + label {
    font-size: var(--body-font-size) !important;
    line-height: 20px !important;
    cursor: pointer !important;
    padding-left: 4px !important;
}

input[type=checkbox]:disabled + label {
    color: var(--gray-cool-5);
}

input[type=checkbox].checkbox-md {
    width: 24px;
    height: 24px;
}

input[type=checkbox].checkbox-md + label {
    line-height: 24px;
}

input[type=checkbox].checkbox-lg {
    width: 30px;
    height: 30px;
}

input[type=checkbox].checkbox-lg + label {
    line-height: 30px;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background:url("../images/icon_radio_default.svg") no-repeat center !important;
    width: 20px !important;
    height: 20px !important;
    background-size: 100% !important;
}

input[type="radio"]:checked {
    background:url("../images/icon_radio_checked.svg") no-repeat center !important;
}

input[type="radio"] + label {
    font-size: var(--body-font-size);
    line-height: 20px !important;
    cursor: pointer !important;
    padding-left: 4px !important;
}

input[type="text"], 
input[type="password"] {
    height: auto;
    height: 40px;
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    background: var(--gray-light-1);
    padding: 10px 12px;
    color: var(--black);
    border: none;
    border-radius: 0;
}

#wrap #container .form_element input[type='checkbox'],
#wrap #container .form_element input[type='radio'] {
    display: none;
}

#wrap #container .form_element input[type='checkbox'] + label {
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
    padding-left: 24px !important;
    background:url("../images/icon_checkbox_default.svg") no-repeat;
    background-position: left top !important;
    background-size: 20px;
}

#wrap #container .form_element input[type='checkbox'] + label.on {
    background:url("../images/icon_checkbox_checked.svg") no-repeat;
    background-position: left top !important;
    background-size: 20px;
}

#wrap #container .form_element input[type='radio'] + label {
    display: block;
    padding-left: 24px !important;
    background:url("../images/icon_radio_default.svg") no-repeat;
    background-position: left top !important;
    background-size: 20px;
}

#wrap #container .form_element input[type='radio'] + label.on {
    background:url("../images/icon_radio_checked.svg") no-repeat;
    background-position: left top !important;
    background-size: 20px;
}

/* Component - Buttons */
[class*="btn-"]{
    cursor: pointer;
}

.btn-primary {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    background: none !important;
    background-color: var(--blue-0) !important;
    border: 0 !important;
    border-top: 1px solid var(--black) !important;
    border-bottom: 1px solid var(--black) !important;
    padding: 13px 40px 12px;
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
    line-height: 1.2;
}

.btn-primary:hover:not(:disabled) {
    color: var(--blue-5);
    border-color: var(--blue-5);
}

.btn-primary:disabled {
    color: var(--gray-cool-5) !important;
    background-color: var(--gray-light-1) !important;
}

.btn-primary:focus-visible {
    background-color: var(--blue-1);
}

.btn-primary.btn-destructive {
    color: var(--red-system);
    border-color: var(--red-system);
}

.btn-primary.btn-md {
    font-size: 16px;
    padding: 20px 80px;
}

.btn-primary.btn-lg {
    font-size: 24px;
    padding-top: 23px;
    padding-bottom: 23px;
}

[class*="btn-"].full{
    width: 100%;
}

.btn-secondary {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--black);
    padding: 13px 20px 12px;
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
    line-height: 1.2;
}

.btn-secondary.top-line {
    border-top: 1px solid var(--black);
}

.btn-secondary:hover {
    color: var(--blue-5);
    border-color: var(--blue-5);
}

.btn-secondary:disabled {
    color: var(--gray-light-5);
}

.btn-secondary.btn-md {
    font-size: 16px;
    padding: 20px 30px;
}

.btn-secondary.btn-lg {
    font-size: 24px;
}

.btn-tertiary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

.btn-tertiary.top-line {
    border-top: 1px solid var(--black);
}

.btn-tertiary.bottom-line {
    border-bottom: 1px solid var(--black);
}

.btn-solid {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    color: var(--black);
    background-color: var(--blue-0);
    padding: 10px 20px;
    text-align: center;
}

.btn-tertiary::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url('../images/icon_btn_tertiary_arrow.svg') no-repeat center;
    background-size: 100%;
    margin-left: 8px;
}

.btn-tertiary.no-icon::after {
    display: none;
}

.btn-chip-outline {
    font-size: var(--caption-font-size);
    font-weight: var(--caption-font-weight);
    line-height: var(--caption-line-height);
    color: var(--black);
    text-align: center;
    padding: 8px 16px;
    border: 1px solid var(--black);
    background: #fff;
}

.btn-chip-outline.red-line {
    border-color: var(--red-system);
    color: var(--red-system)
}

.btn-chip-outline{
    transition: border-color 0.3s, color 0.3s;
}

.btn-chip-outline:hover:not(:disabled) {
    /* background: var(--gray-light-1); */
}

.btn-chip-outline:hover:not(:disabled){
    border-color: var(--blue-5);
    color: var(--blue-5);
}

.btn-chip-outline:focus-visible {
    background: var(--blue-0);
    color: var(--black);
}

.btn-chip-fill {
    font-size: var(--caption-font-size);
    font-weight: var(--caption-font-weight);
    line-height: var(--caption-line-height);
    color: var(--blue-5);
    padding: 8px 16px;
    border: 1px solid var(--blue-5);
    background: var(--gray-coay-);
}

.btn-chip-fill:hover:not(:disabled) {
    border: 1px solid var(--blue-0);
    background: var(--blue-0);
}

.btn-chip-fill:focus-visible {
    border: 1px solid var(--blue-1);
    background: var(--blue-1);
}

.btn-choice {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    color: var(--black);
    text-align: center;
    width: 100%;
    height: auto;
    padding: 30px 40px;
    background-color: transparent !important;
    border: 1px solid var(--black) !important;
    background-image: none !important;
    transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.btn-choice:hover:not(:disabled),
.btn-choice:focus-visible {
    color: var(--blue-5) !important;
    background-color: var(--blue-0) !important;
    border: 1px solid var(--blue-5) !important;
}

.btn-choice:disabled {
    color: var(--gray-cool-1) !important;
    border: 1px solid var(--gray-cool-1) !important;
}

.btn-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    padding-top: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 100;
}

.btn-fixed-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.btn-fixed [class*="btn-"]:not(.btn-fixed-inner),
.btn-sm-fixed [class*="btn-"]:not(.btn-fixed-inner) {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.btn-fixed.column .btn-fixed-inner,
.btn-sm-fixed.column .btn-fixed-inner {
    flex-direction: column;
}

.btn-fixed.column .btn-fixed-inner [class*="btn-"],
.btn-sm-fixed.column .btn-fixed-inner [class*="btn-"] {
    flex: 0 0 auto;
    width: 100%;
    border-top: 1px solid var(--black);
    border-bottom: none;
}

.btn-fixed.column .btn-fixed-inner [class*="btn-"]:last-child,
.btn-sm-fixed.column .btn-fixed-inner [class*="btn-"]:last-child {
    border-top: none;
    border-bottom: 1px solid var(--black);
}

.btn-sm-fixed.column .btn-fixed-inner [class*="btn-"]:last-child {
    border-top: 0;
}

#btnLater{
    height: 45px;
}

@media (max-width: 767px) {
    .btn-sm-fixed {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px;
        padding-top: 50px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        z-index: 100;
    }
}

/* 

Layout 

*/

/* section */
.section-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--black);
}

.section-title.border-top {
    padding-top: 10px;
    border-top: 1px solid var(--black);
}

.section-title .title {
    font-size: var(--h3-font-size);
    font-weight: var(--h3-font-weight);
    line-height: var(--h3-line-height);
    color: var(--black);
}

.section-title .link {
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    color: var(--blue-5);
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: var(--h3-mo-font-size);
    }
}

/* Toggle */
.toggle-item {
    border-bottom: 1px solid var(--black);
    cursor: pointer;
}

.toggle-item .subject {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.toggle-item .subject::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    /* display: inline-block; */
    width: 38px;
    height: 38px;
    background: url('../images/icon_toggle_arrow.svg') no-repeat center;
    background-size: 33px;
    margin-left: 8px;
    transition: transform 0.3s;
}

.toggle-item .subject .title {
    font-size: var(--body-font-size);
}

.toggle-item .content {
    display: none;
    padding: 20px 0;
    font-size: var(--body-font-size);
}

.toggle-item .content * {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

.toggle-item .content p {
    position: relative;
    padding-bottom: 5px;
    padding-left: 18px;
}

.toggle-item .content p::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 10px;
    left: 6px;
}

.toggle-item.active .subject::after {
    transform: rotate(180deg);
}

.toggle-item.link .subject::after {
    transform: rotate(-90deg);
    top: 2px;
}

.bullet-list li{
    position: relative;
    padding-left: 18px;
}

.bullet-list li::before{
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 10px;
    left: 6px;
}

/* title section (구조는 커피위키 참고!) + 모바일 디자인을 위해 .blank 추가 (sample_dev.html 구조 참고)*/
.title-section .container .title{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.title-section .container .title .blank {
    display: none;
}

.title-section .navigator{
    position: absolute;
    left: 30px;
}

@media (max-width: 767px) {
    .title-section{
        position: fixed;
        width: 100%;
        top: 50px;
        background: #fff;
        background: rgba(255, 255, 255, 0.9);
        z-index: 3;
    }

    .title-section .container .title {
        height: 70px;
        font-size: var(--h2-font-size);
    }

    .title-section .container .title br {
        display: none;
    }

    .title-section .container .title .blank {
        display: block;
    }

    .title-section.mo-toggle .container .title{
        position: relative;
    }

    .title-section.mo-toggle .container .title::after{
        content: "";
        position: absolute;
        right: 0;
        top: 18px;
        /* display: inline-block; */
        width: 33px;
        height: 33px;
        background: url('../images/icon_toggle_arrow.svg') no-repeat center;
        background-size: 100%;
        margin-left: 8px;
        transition: transform 0.3s;
    }

    .title-section.mo-toggle.active .title::after{
        transform: rotate(180deg);
    }

    .title-section.active{
        background: rgba(255, 255, 255, 1);
    }

    .page-mo-navi .title-section .container .title {
        margin-bottom: 0;
    }
}

/* common menu */

.common-menu{
    border-top: 1px solid #000;
}

.common-menu.main-menu{
    margin-bottom: 80px;
}

.common-menu .main-menu .title{
    padding: 8px 0;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #000;
    display: block;
}

.common-menu .main-menu.no-children .title {
    padding: 0;
}

.common-menu .main-menu .title.current{
    color: var(--blue-5);
}

.common-menu .main-menu .current *{
    color: var(--blue-5);
}

.common-menu .main-menu a{
    width: 100%;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

.page-info .common-menu .main-menu a{
    /* padding: 0; */
}

.common-menu .main-menu a:hover {
    color: var(--blue-5);
}

.common-menu .sub-menu{
    padding-left: 20px;
    position: relative;
    top: -1px;
    display: none;
}

.common-menu .sub-menu.active{
    display: block;
}

.common-menu .sub-menu li{
    border-bottom: 1px solid #000;
    cursor: pointer;
}

.common-menu .sub-menu li.active a,
.common-menu .sub-menu li.current a{
    color: var(--blue-5);
}

.common-menu.toggle-menu .main-menu .title::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 33px;
    height: 33px;
    background: url(../images/icon_toggle_arrow.svg) no-repeat center;
    background-size: 100%;
    transition: transform 0.3s;
}

.common-menu.toggle-menu .main-menu .title.active{
    border-color: transparent;
}

.common-menu.toggle-menu .main-menu .title.active::before{
    transform: rotate(180deg);
}

.common-menu.toggle-menu .main-menu.no-children .title::before{
    display: none;
}

.mo-sticky-btn{
    display: none;    
}

@media (max-width: 767px){
    .common-menu{
        border: 0;
        display: none;
        position: fixed;
        width: calc(100% - 20px);
        top: 120px;
        left: 10px;
        background: rgba(255,255,255,1);
        z-index: 2;
    }

    .common-menu .main-menu .title{
        font-size: var(--fs-caption);
        padding: 8px 0;
    }

    .common-menu .main-menu:has(.sub-menu) .title.current{
        border-bottom: 0;
    }

    .mo-sticky-btn{
        display: block;
        position: sticky;
        bottom: 0px;
        padding: var(--gutter);
        padding-top: 25px;
        margin-right: calc(-1 * var(--gutter));
        margin-left: calc(-1 * var(--gutter));
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%);
    }
}

/* Breadcrumb */

.breadcrumb {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    white-space: nowrap;
    width: 250px;
    overflow: visible;
}

.breadcrumb * {
    font-size: var(--caption-font-size);
    line-height: var(--caption-line-height);
}

.breadcrumb > li {
    display: flex;
    align-items: center;
}

.breadcrumb > li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../images/icon_breadcrumb_arrow.svg') no-repeat center;
    background-size: 100%;
    margin-top: -2px;
}

@media (max-width: 767px) {
    .breadcrumb {
        width: 100%;
    }

    .breadcrumb > li:last-child {
        flex: 1;
        display: inline-block;
        /* 말줄임 처리 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Dropbox */
.dropbox {
    width: 100px;
    position: relative;
}

.dropbox .dropbox-title,
.dropbox .dropbox-content {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

.dropbox .dropbox-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 6px 0;
    cursor: pointer;
}

.dropbox .dropbox-title::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('../images/icon_dropbox_arrow.svg') no-repeat center;
    background-size: 100%;
    transition: transform 0.3s;
}

.dropbox .dropbox-title.active::after {
    transform: rotate(180deg);
}

.dropbox .dropbox-content {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1;
}

.dropbox .dropbox-content li {
    padding: 6px 0;
    border-bottom: 1px solid var(--black);
    cursor: pointer;
}

.dropbox .dropbox-content li input[type="radio"] {
    display: none;
}

/* Tab */
.tab-list {
    display: flex;
    align-items: center;
}

.tab-item {
    margin-right: 20px;
}

.tab-item a,
.tab-item span,
.tab-item button {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    color: var(--black);
}

.tab-item.active a,
.tab-item.active span,
.tab-item.active button {
    color: var(--blue-5);
}

.tab-item a.fs-h2{
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
}

/* Sidebar */
.col-sidebar {
    /* width: 250px; */
    flex: 0 0 250px;
    margin-right: 100px;
}

.col-sidebar-content {
    flex: 1;
}

.sticky-wrapper{
    height: 100%;
}

.sticky-wrapper .row.row-sidebar {
    margin-left: 0;
    margin-right: 0;
}

.sticky-wrapper .row-sidebar .col-sidebar,
.sticky-wrapper .row-sidebar .col-sidebar-content{
    padding-left: 0;
    padding-right: 0;
}

.sticky-wrapper .col-sidebar .sidebar{
    padding-bottom: 180px;
}

.sticky-wrapper .col-sidebar .sidebar,
.sticky-wrapper .col-order-sidebar .sidebar{
    position: sticky;
    top: 290px;
    width: 100%;
    /* padding-bottom: 180px; */
}

.sticky-wrapper .col-order-sidebar .sidebar{
    top: 200px;
}

.page-mypage .main-section > .container > .row{
    flex-wrap: nowrap;
}

.sticky-wrapper .col-sidebar .location{
    top: 0;
    width: 250px;
    overflow: visible;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .col-sidebar{
        z-index: 2;
    }

    .col-sidebar-content {
        /* z-index: 1; */
    }

    .col-sidebar,
    .col-sidebar-content {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .sticky-wrapper .col-sidebar .sidebar{
        position: static;
        padding-bottom: 0;
    }

    .page-mypage .main-section > .container > .row{
        flex-wrap: wrap;
    }
}

/* Form */
.input-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.input-group div {
    flex: 0 0 50%;
    padding: 0 5px;
}

.member_email {
    display: flex !important;
    flex-wrap: wrap !important;
}

.member_email input[type="text"],
.member_email input[type="email"] {
    flex: 1;
    margin-right: 4px;
}

.member_email select {
    height: 100%;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 40px;
    width: 30%;
    margin-left: 5px;
}

.address_input input[type="text"] {
    margin-bottom: 14px;
}

.address_input input[type="text"]:last-child {
    margin-bottom: 0;
}

/* Pagination */
.pagination li span {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
}

.pagination li.on span {
    font-weight: 400;
    color: var(--blue-5);
    background: none;
}

/* 

etc 

*/

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

@media (max-width: 767px) {
    .w-sm-full { width: 100% !important; }
    .h-sm-full { height: 100% !important; }
    .w-sm-50 { width: 50% !important; }
}

.bt-0 { border-top: 0 !important; }
.bt-1 { border-top: 1px solid var(--black) !important; }

.bb-0 { border-bottom: 0 !important; }
.bb-1 { border-bottom: 1px solid var(--black) !important; }

@media (max-width: 767px) {
    .bt-sm-0 { border-top: 0 !important; }
    .bt-sm-1 { border-top: 1px solid var(--black) !important; }
    
    .bb-sm-0 { border-bottom: 0 !important; }
    .bb-sm-1 { border-bottom: 1px solid var(--black) !important; }
}

.help-text * {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    color: var(--gray-cool-6);
}

.help-text li {
    list-style: disc;
    margin-left: 18px;
}

.help-text .help-title.icon {
    display: flex;
    align-items: center;
}

.help-text .help-title.icon::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('../images/icon_help_text.svg') no-repeat center;
    background-size: 100%;
    margin-right: 4px;
}

.hide_c {
    display: none !important;
}

.info-circle{
    position: relative;
    padding-left: 18px;
    font-size: var(--body-font-size);
}

.info-circle::before{
    content: '';
    background: url('../images/icon_info_circle.svg') no-repeat;
    background-size: 100%;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
