@charset "UTF-8";
/* font */
@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css);
/* === RESET CSS === */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    color: #333;
    font-family: "NanumSquare", "noto sans KR", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
}

textarea {
    resize: none;
}

fieldset,
img {
    border: 0;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

li,
ol,
ul {
    list-style: none;
}

address,
em,
i {
    font-style: normal;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

strong,
th,
b,
em {
    font-style: normal;
    font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

input,
select,
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    background: transparent;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

legend,
caption {
    position: absolute;
    z-index: -10;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    font-size: medium;
    line-height: normal;
    word-break: break-all;
}

a:focus,
button:focus {
    outline: 1px solid #333;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: 0;
}

button {
    border: none;
    cursor: pointer;
}

.blind {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
}

.ft-noto {
    font-family: "Noto Sans KR" !important;
}

/* === UTILITIES === */
/* utilities */
.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.border {
    border: 1px solid #ddd !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #ddd !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right {
    border-right: 1px solid #ddd !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left {
    border-left: 1px solid #ddd !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-black {
    border-color: #000 !important;
}

.border-basic {
    border-color: #333 !important;
}

.border-cont {
    border-color: #666 !important;
}

.border-gray {
    border-color: #888 !important;
}

.border-border {
    border-color: #ddd !important;
}

.border-point {
    border-color: #3bc0cc !important;
}

.border-point2 {
    border-color: #2e3c46 !important;
}

.border-blur {
    border-color: #eee !important;
}

.border-white {
    border-color: #fff !important;
}

.border-red {
    border-color: #cd0b0b !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-40 {
    margin: 40px !important;
}

.m-50 {
    margin: 50px !important;
}

.m-60 {
    margin: 60px !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
}

.mx-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
}

.mx-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
}

.mx-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
}

.mx-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
}

.mx-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
}

.mx-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
}

.mx-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
}

.mx-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-60 {
    padding: 60px !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
}

.px-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.px-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.px-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.px-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
}

.px-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
}

.px-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
}

.px-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
}

.px-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: 100 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: 900 !important;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.align-center {
    text-align: center !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-black {
    color: #000 !important;
}

.text-basic {
    color: #333 !important;
}

.text-cont {
    color: #666 !important;
}

.text-gray {
    color: #888 !important;
}

.text-border {
    color: #ddd !important;
}

.text-point {
    color: #3bc0cc !important;
}

.text-point2 {
    color: #2e3c46 !important;
}

.text-blur {
    color: #eee !important;
}

.text-white {
    color: #fff !important;
}

.text-red {
    color: #cd0b0b !important;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
    color: inherit !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-basic {
    background-color: #333 !important;
}

.bg-cont {
    background-color: #666 !important;
}

.bg-gray {
    background-color: #888 !important;
}

.bg-border {
    background-color: #ddd !important;
}

.bg-point {
    background-color: #3bc0cc !important;
}

.bg-point2 {
    background-color: #2e3c46 !important;
}

.bg-blur {
    background-color: #eee !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-red {
    background-color: #cd0b0b !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/* === COMMON MODULES === */
/* board */
.boardview-wrap .board-head .tit {
    padding: 0 12px 30px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -1px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-head .tit {
        font-size: 20px;
        line-height: 28px;
    }
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-head .tit {
        padding-bottom: 15px;
    }
}

.boardview-wrap .board-head .info {
    padding-top: 20px;
    font-size: 0;
    white-space: nowrap;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-head .info {
        padding-top: 10px;
    }
}

.boardview-wrap .board-head .info li {
    display: inline-block;
    vertical-align: top;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-head .info li {
        font-size: 14px;
        line-height: 22px;
    }
}

.boardview-wrap .board-head .info li::before {
    content: ' ';
    display: inline-block;
    vertical-align: top;
    width: 1px;
    height: 12px;
    margin: 6px 15px 0;
    background: #ddd;
}

.boardview-wrap .board-head .info li:first-child::before {
    display: none;
}

.boardview-wrap .board-content {
    padding-top: 60px;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content {
        padding-top: 30px;
    }
}

.boardview-wrap .board-content .cont {
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    color: #666;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content .cont {
        font-size: 14px;
        line-height: 22px;
    }
}

.boardview-wrap .board-content .cont:last-child {
    padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content .cont:last-child {
        padding-bottom: 30px;
    }
}

.boardview-wrap .board-content .files {
    margin-top: 50px;
    padding: 16px 0;
    border-top: 1px solid #ddd;
}

.boardview-wrap .board-content .files::after {
    content: " ";
    display: block;
    clear: both;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content .files {
        margin-top: 30px;
        padding: 10px 0;
    }
}

.boardview-wrap .board-content .files .tit {
    float: left;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    color: #000;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content .files .tit {
        font-size: 14px;
        line-height: 22px;
    }
}

.boardview-wrap .board-content .files .file-lists {
    margin-left: 100px;
    padding: 1px 0;
    font-size: 0;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content .files .file-lists {
        margin-left: 80px;
        padding: 0;
    }
}

.boardview-wrap .board-content .files .file-lists li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content .files .file-lists li {
        display: block;
        margin-top: 5px;
    }
    .boardview-wrap .board-content .files .file-lists li:first-child {
        margin-top: 0;
    }
}

.boardview-wrap .board-content .files .file-lists li a {
    display: block;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    color: #888;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-content .files .file-lists li a {
        font-size: 13px;
    }
}

@media screen and (min-width: 1025px) {
    .boardview-wrap .board-content .files .file-lists li a:hover {
        text-decoration: underline;
    }
}

.boardview-wrap .board-foot .more-view {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-foot .more-view {
        padding: 10px 0;
    }
}

.boardview-wrap .board-foot .more-view li {
    position: relative;
    flex: 1;
    width: 50%;
}

.boardview-wrap .board-foot .more-view li.prev {
    padding-left: 40px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-foot .more-view li.prev {
        padding-left: 20px;
    }
}

.boardview-wrap .board-foot .more-view li.next {
    padding-right: 40px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-foot .more-view li.next {
        padding-right: 20px;
    }
}

.boardview-wrap .board-foot .more-view li::before {
    content: ' ';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border: 1px solid #666;
    border-right: none;
    border-bottom: none;
}

.boardview-wrap .board-foot .more-view li.prev::before {
    transform: rotate(-45deg);
    left: 20px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-foot .more-view li.prev::before {
        left: 6px;
    }
}

.boardview-wrap .board-foot .more-view li.next::before {
    transform: rotate(-225deg);
    right: 20px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-foot .more-view li.next::before {
        right: 6px;
    }
}

.boardview-wrap .board-foot .more-view li dl {
    display: flex;
    align-items: center;
}

.boardview-wrap .board-foot .more-view li dl dt {
    white-space: nowrap;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-foot .more-view li dl dt {
        font-size: 14px;
        line-height: 22px;
    }
}

.boardview-wrap .board-foot .more-view li dl dd {
    white-space: nowrap;
    padding: 0 10px;
    overflow: hidden;
}

.boardview-wrap .board-foot .more-view li dl dd a {
    display: inline-block;
    max-width: 100%;
    color: #888;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .boardview-wrap .board-foot .more-view li dl dd a {
        font-size: 13px;
    }
}

@media screen and (min-width: 1025px) {
    .boardview-wrap .board-foot .more-view li dl dd a:hover, .boardview-wrap .board-foot .more-view li dl dd a:active {
        text-decoration: underline;
    }
}

.boardview-wrap .board-foot .more-view li.next dl {
    flex-direction: row-reverse;
}

.boardview-wrap.qna-type .tit {
    position: relative;
    padding-left: 40px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap.qna-type .tit {
        padding-left: 20px;
    }
}

.boardview-wrap.qna-type .tit::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
}

.boardview-wrap.qna-type .q-box .tit::before {
    content: 'Q.';
}

.boardview-wrap.qna-type .a-box .board-head {
    background: transparent;
}

.boardview-wrap.qna-type .a-box .board-head .tit::before {
    content: 'A.';
}

.boardview-wrap.qna-type .board-content .cont {
    padding-left: 80px;
}

@media screen and (max-width: 767px) {
    .boardview-wrap.qna-type .board-content .cont {
        padding-left: 40px;
    }
}

.board-btn {
    position: relative;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .board-btn {
        margin-top: 30px;
    }
}

.board-btn .btn {
    position: absolute;
    right: 0;
    top: -114px;
}

@media screen and (max-width: 767px) {
    .board-btn .btn {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
    }
}

/* button */
.btn {
    display: inline-block;
    min-width: 140px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    font-size: 16px;
    line-height: 38px;
    vertical-align: top;
    cursor: pointer;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    white-space: nowrap;
    text-align: center;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .btn {
        font-size: 14px;
    }
}

.btn span {
    display: inline-block;
    vertical-align: top;
}

.btn.rounded {
    border-radius: 20px;
}

.btn.no-round {
    border-radius: 0 !important;
}

.btn.btn-black {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .btn.btn-black:hover, .btn.btn-black:active {
        background-color: #262626;
        border-color: #262626;
    }
}

.btn.btn-border-black {
    border-color: #000;
    color: #000;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-black:hover, .btn.btn-border-black:active {
        background-color: #000;
        color: #fff;
    }
}

.btn.btn-basic {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .btn.btn-basic:hover, .btn.btn-basic:active {
        background-color: #525252;
        border-color: #525252;
    }
}

.btn.btn-border-basic {
    border-color: #333;
    color: #333;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-basic:hover, .btn.btn-border-basic:active {
        background-color: #333;
        color: #fff;
    }
}

.btn.btn-cont {
    background-color: #666;
    border-color: #666;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .btn.btn-cont:hover, .btn.btn-cont:active {
        background-color: #7d7d7d;
        border-color: #7d7d7d;
    }
}

.btn.btn-border-cont {
    border-color: #666;
    color: #666;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-cont:hover, .btn.btn-border-cont:active {
        background-color: #666;
        color: #fff;
    }
}

.btn.btn-gray {
    background-color: #888;
    border-color: #888;
    color: #333;
}

@media screen and (min-width: 1025px) {
    .btn.btn-gray:hover, .btn.btn-gray:active {
        background-color: #7a7a7a;
        border-color: #7a7a7a;
    }
}

.btn.btn-border-gray {
    border-color: #888;
    color: #888;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-gray:hover, .btn.btn-border-gray:active {
        background-color: #888;
        color: #666;
    }
}

.btn.btn-border {
    background-color: #ddd;
    border-color: #ddd;
    color: #333;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border:hover, .btn.btn-border:active {
        background-color: #c7c7c7;
        border-color: #c7c7c7;
    }
}

.btn.btn-border-border {
    border-color: #ddd;
    color: #ddd;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-border:hover, .btn.btn-border-border:active {
        background-color: #ddd;
        color: #666;
    }
}

.btn.btn-point {
    background-color: #3bc0cc;
    border-color: #3bc0cc;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .btn.btn-point:hover, .btn.btn-point:active {
        background-color: #58c9d4;
        border-color: #58c9d4;
    }
}

.btn.btn-border-point {
    border-color: #3bc0cc;
    color: #3bc0cc;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-point:hover, .btn.btn-border-point:active {
        background-color: #3bc0cc;
        color: #fff;
    }
}

.btn.btn-point2 {
    background-color: #2e3c46;
    border-color: #2e3c46;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .btn.btn-point2:hover, .btn.btn-point2:active {
        background-color: #4d5962;
        border-color: #4d5962;
    }
}

.btn.btn-border-point2 {
    border-color: #2e3c46;
    color: #2e3c46;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-point2:hover, .btn.btn-border-point2:active {
        background-color: #2e3c46;
        color: #fff;
    }
}

.btn.btn-blur {
    background-color: #eee;
    border-color: #eee;
    color: #333;
}

@media screen and (min-width: 1025px) {
    .btn.btn-blur:hover, .btn.btn-blur:active {
        background-color: #d6d6d6;
        border-color: #d6d6d6;
    }
}

.btn.btn-border-blur {
    border-color: #eee;
    color: #eee;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-blur:hover, .btn.btn-border-blur:active {
        background-color: #eee;
        color: #666;
    }
}

.btn.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #333;
}

@media screen and (min-width: 1025px) {
    .btn.btn-white:hover, .btn.btn-white:active {
        background-color: #e6e6e6;
        border-color: #e6e6e6;
    }
}

.btn.btn-border-white {
    border-color: #fff;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-white:hover, .btn.btn-border-white:active {
        background-color: #fff;
        color: #666;
    }
}

.btn.btn-red {
    background-color: #cd0b0b;
    border-color: #cd0b0b;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .btn.btn-red:hover, .btn.btn-red:active {
        background-color: #d53030;
        border-color: #d53030;
    }
}

.btn.btn-border-red {
    border-color: #cd0b0b;
    color: #cd0b0b;
}

@media screen and (min-width: 1025px) {
    .btn.btn-border-red:hover, .btn.btn-border-red:active {
        background-color: #cd0b0b;
        color: #fff;
    }
}

.btn.btn-sm {
    padding: 0 14px;
    font-size: 14px;
    line-height: 26px;
}

@media screen and (max-width: 767px) {
    .btn.btn-sm {
        font-size: 13px;
    }
}

.btn.btn-sm.rounded {
    border-radius: 14px;
}

.btn.btn-lg {
    padding: 0 36px;
    font-size: 18px;
    line-height: 43px;
}

@media screen and (max-width: 767px) {
    .btn.btn-lg {
        font-size: 16px;
    }
}

.btn.btn-lg.rounded {
    border-radius: 22.5px;
}

.btn.full {
    display: block;
    width: 100%;
}

.btn-group {
    display: flex;
    margin-top: 60px;
    justify-content: center;
}

.btn-group > * {
    min-width: 150px;
    margin-left: 40px;
}

.btn-group > *:first-child {
    margin-left: 0;
}

@media screen and (max-width: 767px) {
    .btn-group {
        margin-top: 40px;
    }
    .btn-group > * {
        min-width: inherit;
        flex: 1;
        margin-left: 10px;
    }
    .btn-group > *:first-child {
        margin-left: 0;
    }
}

/* text link */
.link-black {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-black:hover, .link-black:active {
        text-decoration: underline;
        color: #262626;
    }
}

.link-basic {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-basic:hover, .link-basic:active {
        text-decoration: underline;
        color: #525252;
    }
}

.link-cont {
    display: inline-block;
    vertical-align: middle;
    color: #666;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-cont:hover, .link-cont:active {
        text-decoration: underline;
        color: #7d7d7d;
    }
}

.link-gray {
    display: inline-block;
    vertical-align: middle;
    color: #888;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-gray:hover, .link-gray:active {
        text-decoration: underline;
        color: #7a7a7a;
    }
}

.link-border {
    display: inline-block;
    vertical-align: middle;
    color: #ddd;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-border:hover, .link-border:active {
        text-decoration: underline;
        color: #c7c7c7;
    }
}

.link-point {
    display: inline-block;
    vertical-align: middle;
    color: #3bc0cc;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-point:hover, .link-point:active {
        text-decoration: underline;
        color: #58c9d4;
    }
}

.link-point2 {
    display: inline-block;
    vertical-align: middle;
    color: #2e3c46;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-point2:hover, .link-point2:active {
        text-decoration: underline;
        color: #4d5962;
    }
}

.link-blur {
    display: inline-block;
    vertical-align: middle;
    color: #eee;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-blur:hover, .link-blur:active {
        text-decoration: underline;
        color: #d6d6d6;
    }
}

.link-white {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-white:hover, .link-white:active {
        text-decoration: underline;
        color: #e6e6e6;
    }
}

.link-red {
    display: inline-block;
    vertical-align: middle;
    color: #cd0b0b;
    font-size: inherit;
    font-weight: 700;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transform: skew(-0.05deg);
}

@media screen and (min-width: 1025px) {
    .link-red:hover, .link-red:active {
        text-decoration: underline;
        color: #d53030;
    }
}

/* flag */
.flag {
    display: inline-block;
    vertical-align: top;
    min-width: 65px;
    height: 28px;
    padding: 0 10px;
    border: 1px solid transparent;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .flag {
        min-width: 50px;
        height: 24px;
        font-size: 13px;
        line-height: 22px;
        padding: 0 6px;
    }
}

.flag.flag-black {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.flag.flag-border-black {
    border-color: #000;
    color: #000;
}

.flag.flag-basic {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

.flag.flag-border-basic {
    border-color: #333;
    color: #333;
}

.flag.flag-cont {
    background-color: #666;
    border-color: #666;
    color: #fff;
}

.flag.flag-border-cont {
    border-color: #666;
    color: #666;
}

.flag.flag-gray {
    background-color: #888;
    border-color: #888;
    color: #333;
}

.flag.flag-border-gray {
    border-color: #888;
    color: #888;
}

.flag.flag-border {
    background-color: #ddd;
    border-color: #ddd;
    color: #333;
}

.flag.flag-border-border {
    border-color: #ddd;
    color: #ddd;
}

.flag.flag-point {
    background-color: #3bc0cc;
    border-color: #3bc0cc;
    color: #fff;
}

.flag.flag-border-point {
    border-color: #3bc0cc;
    color: #3bc0cc;
}

.flag.flag-point2 {
    background-color: #2e3c46;
    border-color: #2e3c46;
    color: #fff;
}

.flag.flag-border-point2 {
    border-color: #2e3c46;
    color: #2e3c46;
}

.flag.flag-blur {
    background-color: #eee;
    border-color: #eee;
    color: #333;
}

.flag.flag-border-blur {
    border-color: #eee;
    color: #eee;
}

.flag.flag-white {
    background-color: #fff;
    border-color: #fff;
    color: #333;
}

.flag.flag-border-white {
    border-color: #fff;
    color: #fff;
}

.flag.flag-red {
    background-color: #cd0b0b;
    border-color: #cd0b0b;
    color: #fff;
}

.flag.flag-border-red {
    border-color: #cd0b0b;
    color: #cd0b0b;
}

.flag.flag-lg {
    font-size: 18px;
}

.text-flag {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    font-weight: 700;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .text-flag {
        font-size: 14px;
        line-height: 22px;
    }
}

.text-flag.text-flag-black {
    color: #000;
}

.text-flag.text-flag-basic {
    color: #333;
}

.text-flag.text-flag-cont {
    color: #666;
}

.text-flag.text-flag-gray {
    color: #888;
}

.text-flag.text-flag-border {
    color: #ddd;
}

.text-flag.text-flag-point {
    color: #3bc0cc;
}

.text-flag.text-flag-point2 {
    color: #2e3c46;
}

.text-flag.text-flag-blur {
    color: #eee;
}

.text-flag.text-flag-white {
    color: #fff;
}

.text-flag.text-flag-red {
    color: #cd0b0b;
}

/* form */
.form-wrap .row {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.form-wrap .row:first-child {
    margin-top: 0;
}

.form-wrap .row > * {
    margin-left: 5px;
}

.form-wrap .row > *:first-child {
    margin-left: 0;
}

.form-wrap .row .form-control.auto {
    width: 50%;
    max-width: 200px;
}

@media screen and (max-width: 767px) {
    .form-wrap .row .form-control.auto {
        width: 100%;
    }
}

.form-wrap .row .form-control.half {
    flex: 1;
    max-width: 360px;
}

.form-wrap .row .btn {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .form-wrap .row .btn {
        font-size: 13px;
    }
}

.form-wrap .row > label {
    padding-right: 20px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .form-wrap .row > label {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .form-wrap .row.m-col {
        flex-direction: column;
    }
    .form-wrap .row.m-col > * {
        width: 100%;
        margin: 0;
        margin-top: 5px;
    }
    .form-wrap .row.m-col > *:first-child {
        margin-top: 0;
    }
}

/* search */
.list-filter {
    display: flex;
    margin-bottom: 30px;
}

.list-filter .search-wrap {
    display: flex;
    width: 60%;
    max-width: 500px;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .list-filter .search-wrap {
        width: 100%;
        max-width: 100%;
    }
}

.list-filter .search-wrap .selectbox-wrap .nice-select {
    min-width: 140px;
    height: 50px;
    font-size: 16px;
    line-height: 48px;
    border-right: 1px solid transparent;
    border-radius: 0;
}

@media screen and (max-width: 767px) {
    .list-filter .search-wrap .selectbox-wrap .nice-select {
        min-width: 110px;
        font-size: 14px;
        height: 40px;
        line-height: 38px;
    }
}

.list-filter .search-wrap .selectbox-wrap .nice-select.open {
    border-color: #333;
}

.list-filter .search-wrap .selectbox-wrap .nice-select.open .list {
    border-radius: 0;
    border-color: #333;
}

.list-filter .search-wrap .selectbox-wrap .nice-select .option {
    min-height: 50px;
    line-height: 50px;
}

@media screen and (max-width: 767px) {
    .list-filter .search-wrap .selectbox-wrap .nice-select .option {
        min-height: 40px;
        line-height: 40px;
    }
}

.list-filter .search-wrap .selectbox-wrap .nice-select .option:hover, .list-filter .search-wrap .selectbox-wrap .nice-select .option.focus, .list-filter .search-wrap .selectbox-wrap .nice-select .option.selected, .list-filter .search-wrap .selectbox-wrap .nice-select .option.selected.focus {
    background-color: #333;
    color: #fff;
}

.list-filter .search-wrap .selectbox-wrap .nice-select .list:hover .option:not(:hover) {
    color: #333;
    background-color: transparent;
}

.list-filter .search-wrap .input-wrap {
    flex: 1;
}

.list-filter .search-wrap .input-wrap input {
    height: 50px;
    padding: 12px 14px;
    border-radius: 0;
}

.list-filter .search-wrap .input-wrap input:focus {
    border-color: #333;
}

.list-filter .search-wrap .input-wrap input::placeholder, .list-filter .search-wrap .input-wrap input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .list-filter .search-wrap .input-wrap input::placeholder, .list-filter .search-wrap .input-wrap input::-webkit-input-placeholder {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .list-filter .search-wrap .input-wrap input {
        height: 40px;
        padding: 10px 14px;
    }
}

.list-filter .search-wrap .btn-search {
    display: block;
    width: 50px;
    height: 50px;
    background: #333 url("/images/icon/icon-search.png") center no-repeat;
}

@media screen and (max-width: 767px) {
    .list-filter .search-wrap .btn-search {
        width: 40px;
        height: 40px;
        background-size: 20px;
    }
}

/* input */
.form-control {
    display: block;
    max-width: 500px;
    width: 100%;
    min-height: 40px;
    height: 40px;
    padding: 7px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: transparent;
    font-size: 16px;
    line-height: normal;
    transform: skew(-0.05deg);
    transition: border-color 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
    .form-control {
        font-size: 14px;
        padding: 7px 10px;
    }
}

.form-control:focus {
    outline: none;
    border-color: #3bc0cc;
}

.form-control::placeholder, .form-control::-webkit-input-placeholder {
    font-size: 14px;
    color: #999;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .form-control::placeholder, .form-control::-webkit-input-placeholder {
        font-size: 13px;
    }
}

.form-control::-webkit-outer-spin-button, .form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.form-control:disabled {
    background: #f5f5f5;
    color: #888;
}

.form-control:read-only {
    background: rgba(245, 245, 245, 0.4);
    color: #666;
}

input[type=password].form-control {
    font-family: sans-serif;
}

input[type=password].form-control::placeholder, input[type=password].form-control::-webkit-input-placeholder {
    font-family: "NanumSquare", "noto sans KR", sans-serif;
    transform: translateY(-2px);
}

textarea.form-control {
    resize: none;
    max-width: 100%;
    height: 125px;
}

/* checkbox, radio */
.chk-wrap {
    display: inline-block;
    position: relative;
    min-height: 24px;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .chk-wrap {
        min-height: 22px;
    }
}

.chk-wrap input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.chk-wrap input + label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    user-select: none;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .chk-wrap input + label {
        font-size: 14px;
        line-height: 22px;
    }
}

.chk-wrap input + label::before {
    content: ' ';
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .chk-wrap input + label::before {
        top: 1px;
    }
}

.chk-wrap input:disabled + label {
    color: #888;
}

.chk-wrap input:disabled + label::before {
    background: #f5f5f5;
}

.chk-wrap input:checked + label::after {
    content: ' ';
    position: absolute;
    top: 4px;
    left: 5px;
    width: 8px;
    height: 12px;
    border: 3px solid #3bc0cc;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .chk-wrap input:checked + label::after {
        top: 2px;
    }
}

.rdo-wrap {
    display: inline-block;
    position: relative;
    min-height: 24px;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .rdo-wrap {
        min-height: 22px;
    }
}

.rdo-wrap input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.rdo-wrap input + label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    user-select: none;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .rdo-wrap input + label {
        font-size: 14px;
        line-height: 22px;
    }
}

.rdo-wrap input + label::before {
    content: ' ';
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 9px;
}

@media screen and (max-width: 767px) {
    .rdo-wrap input + label::before {
        top: 1px;
    }
}

.rdo-wrap input:disabled + label {
    color: #888;
}

.rdo-wrap input:disabled + label::before {
    background: #f5f5f5;
}

.rdo-wrap input:checked + label::after {
    content: ' ';
    position: absolute;
    top: 7px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #3bc0cc;
}

@media screen and (max-width: 767px) {
    .rdo-wrap input:checked + label::after {
        top: 5px;
    }
}

.rdo-btn-wrap {
    display: inline-block;
    position: relative;
    min-height: 24px;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .rdo-btn-wrap {
        min-height: 22px;
    }
}

.rdo-btn-wrap input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.rdo-btn-wrap input + label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    user-select: none;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .rdo-btn-wrap input + label {
        font-size: 14px;
        line-height: 22px;
    }
}

.rdo-btn-wrap input:disabled + label {
    color: #888;
}

.rdo-btn-wrap input:disabled + label::before {
    background: #f5f5f5;
}

.rdo-btn-wrap input:checked + label {
    border-color: #2e3c46;
    background: #fff;
    color: #2e3c46;
}

/* list */
.thumb-list-wrap {
    overflow: hidden;
}

.thumb-list-wrap .lists {
    display: flex;
    flex-wrap: wrap;
    margin-top: -4.285714%;
    margin-left: -2.142857%;
}

.thumb-list-wrap .lists .items {
    width: 25%;
    margin-top: 4.195804%;
    padding-left: 2.097902%;
}

@media screen and (max-width: 767px) {
    .thumb-list-wrap .lists .items {
        width: 33.33%;
    }
}

@media screen and (max-width: 480px) {
    .thumb-list-wrap .lists .items {
        width: 50%;
    }
}

.thumb-list-wrap .lists .items .thumb {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100.609756%;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.thumb-list-wrap .lists .items .thumb.video {
    padding-top: 56.25%;
}

.thumb-list-wrap .lists .items .info {
    margin-top: 20px;
}

.thumb-list-wrap .lists .items .info .tit {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .thumb-list-wrap .lists .items .info .tit {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (min-width: 1025px) {
    .thumb-list-wrap .lists .items .info .tit:hover, .thumb-list-wrap .lists .items .info .tit:active {
        text-decoration: underline;
    }
}

.thumb-list-wrap .lists .items .info .desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    color: #888;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
    .thumb-list-wrap .lists .items .info .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.thumb-list-wrap .lists .items .info .src {
    display: none !important;
}

.masonry-list-wrap {
    overflow: hidden;
}

.masonry-list-wrap .item-wrap {
    margin-top: -4.285714%;
    margin-left: -2.142857%;
}

.masonry-list-wrap .item-wrap::after {
    content: " ";
    display: block;
    clear: both;
}

.masonry-list-wrap .item-wrap .items {
    float: left;
    width: 25%;
    margin-top: 4.195804%;
    padding-left: 2.097902%;
}

@media screen and (max-width: 767px) {
    .masonry-list-wrap .item-wrap .items {
        width: 33.33%;
    }
}

@media screen and (max-width: 480px) {
    .masonry-list-wrap .item-wrap .items {
        width: 50%;
    }
}

.masonry-list-wrap .item-wrap .items .thumb {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.masonry-list-wrap .item-wrap .items .thumb img {
    width: 100%;
}

.masonry-list-wrap .item-wrap .items .info {
    position: relative;
}

.masonry-list-wrap .item-wrap .items .info .tit {
    display: block;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 700;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .masonry-list-wrap .item-wrap .items .info .tit {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (min-width: 1025px) {
    .masonry-list-wrap .item-wrap .items .info .tit:hover, .masonry-list-wrap .item-wrap .items .info .tit:active {
        text-decoration: underline;
    }
}

.masonry-list-wrap .item-wrap .items .info .desc {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .masonry-list-wrap .item-wrap .items .info .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.masonry-list-wrap .item-wrap .items .info .date {
    margin-top: 15px;
    color: #888;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .masonry-list-wrap .item-wrap .items .info .date {
        font-size: 13px;
    }
}

.masonry-list-wrap .item-wrap .items .info .src {
    display: none !important;
}

.slt-lists {
    font-size: 0;
}

.slt-lists li {
    display: inline-block;
    vertical-align: top;
}

.slt-lists.auto li {
    margin-right: 40px;
}

.slt-lists.auto li:last-child {
    margin-left: 0;
}

@media screen and (max-width: 1024px) {
    .slt-lists.auto li {
        display: block;
        margin-right: 0;
        margin-top: 5px;
    }
    .slt-lists.auto li:first-child {
        margin-top: 0;
    }
}

.sns-login-list {
    font-size: 0;
}

.sns-login-list li {
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
}

.sns-login-list li:first-child {
    margin-left: 0;
}

.sns-login-list li a {
    display: block;
    width: 46px;
    height: 46px;
    background-image: url("/images/icon/icon-snslogin.png");
    background-repeat: no-repeat;
}

.sns-login-list li a.sns01 {
    background-position: 0 0;
}

.sns-login-list li a.sns02 {
    background-position: right 0;
}

.sns-login-list li a.off {
    background-position-y: bottom;
}

.bullet-list {
    color: #333;
}

.bullet-list li {
    padding-left: 14px;
    color: inherit;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .bullet-list li {
        font-size: 14px;
        line-height: 22px;
    }
}

.bullet-list li::before {
    content: '-';
    display: inline-block;
    vertical-align: top;
    width: 14px;
    margin-left: -14px;
}

.bullet-list li sup {
    display: inline-block;
    vertical-align: top;
    font-size: 0.8em;
    line-height: 1;
}

.bullet-list.dot li {
    margin-top: 5px;
}

.bullet-list.dot li:first-child {
    margin-top: 0;
}

.bullet-list.dot li::before {
    content: '·';
}

/* modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1000;
    outline: 0;
}

.modal .modal-wrap {
    display: flex;
    align-items: center;
    width: auto;
    max-width: 710px;
    height: calc(100% - 140px);
    margin: 70px auto;
}

.modal .modal-wrap .modal-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.5);
    z-index: 1010;
}

.modal .modal-wrap .modal-container .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    .modal .modal-wrap .modal-container .modal-header {
        padding: 10px 12px;
    }
}

.modal .modal-wrap .modal-container .modal-header .modal-title {
    padding-right: 20px;
    font-size: 20px;
    line-height: 28px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .modal .modal-wrap .modal-container .modal-header .modal-title {
        font-size: 18px;
        line-height: 26px;
    }
}

.modal .modal-wrap .modal-container .modal-header .btn-close {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
}

.modal .modal-wrap .modal-container .modal-header .btn-close::before, .modal .modal-wrap .modal-container .modal-header .btn-close::after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 24px;
    margin-top: -12px;
    margin-left: -1px;
    background: #333;
}

.modal .modal-wrap .modal-container .modal-header .btn-close::before {
    transform: rotate(45deg);
}

.modal .modal-wrap .modal-container .modal-header .btn-close::after {
    transform: rotate(-45deg);
}

.modal .modal-wrap .modal-container .modal-body {
    max-height: 100%;
    overflow-y: auto;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .modal .modal-wrap .modal-container .modal-body {
        padding: 20px 12px;
    }
}

.video-modal-area {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 710px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 60px 20px 50px;
    box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    z-index: 1010;
}

@media screen and (max-width: 767px) {
    .video-modal-area {
        width: 90%;
        padding: 50px 12px 40px;
    }
}

.video-modal-area .video-area {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-modal-area .video-area iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-area .video-info {
    margin-top: 26px;
}

.video-modal-area .video-info .tit {
    position: relative;
    padding-top: 15px;
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -1px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .video-modal-area .video-info .tit {
        font-size: 20px;
        line-height: 28px;
    }
}

.video-modal-area .video-info .tit::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 4px;
    background: #3bc0cc;
}

.video-modal-area .video-info .desc {
    margin-top: 15px;
    color: #888;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .video-modal-area .video-info .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.video-modal-area .video-info .date {
    margin-top: 6px;
    color: #888;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .video-modal-area .video-info .date {
        font-size: 13px;
    }
}

.video-modal-area .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

.video-modal-area .btn-close::before, .video-modal-area .btn-close::after {
    content: ' ';
    position: absolute;
    width: 2px;
    height: 24px;
    bottom: 10px;
    right: 29px;
    background: #000;
}

@media screen and (max-width: 767px) {
    .video-modal-area .btn-close::before, .video-modal-area .btn-close::after {
        right: 21px;
    }
}

.video-modal-area .btn-close::before {
    transform: rotate(45deg);
}

.video-modal-area .btn-close::after {
    transform: rotate(-45deg);
}

/* pagination */
.pagination {
    margin-top: 60px;
    font-size: 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .pagination {
        margin-top: 30px;
    }
}

.pagination .control-btn,
.pagination .page-btn-wrap,
.pagination .page-btn-wrap .now,
.pagination .page-btn-wrap a {
    display: inline-block;
    vertical-align: top;
}

.pagination .control-btn,
.pagination .page-btn-wrap .now,
.pagination .page-btn-wrap a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    color: #666;
    line-height: 30px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .pagination .control-btn,
    .pagination .page-btn-wrap .now,
    .pagination .page-btn-wrap a {
        font-size: 14px;
    }
}

.pagination .control-btn {
    position: relative;
    margin: 0 3px;
}

@media screen and (max-width: 767px) {
    .pagination .control-btn {
        margin: 0 2px;
    }
}

.pagination .control-btn::before, .pagination .control-btn::after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border: 1px solid #666;
    border-bottom: none;
    border-right: none;
}

@media screen and (max-width: 767px) {
    .pagination .control-btn::before, .pagination .control-btn::after {
        width: 8px;
        height: 8px;
        margin-top: -4px;
    }
}

.pagination .control-btn.prev::before, .pagination .control-btn.prev::after, .pagination .control-btn.pprev::before, .pagination .control-btn.pprev::after {
    transform: rotate(-45deg);
}

.pagination .control-btn.prev::before {
    margin-left: -3px;
}

.pagination .control-btn.pprev::before {
    margin-left: -5px;
}

.pagination .control-btn.next::before, .pagination .control-btn.next::after, .pagination .control-btn.nnext::before, .pagination .control-btn.nnext::after {
    transform: rotate(135deg);
}

.pagination .control-btn.next::before {
    margin-left: -9px;
}

@media screen and (max-width: 767px) {
    .pagination .control-btn.next::before {
        margin-left: -6px;
    }
}

.pagination .control-btn.nnext::before {
    margin-left: -11px;
}

@media screen and (max-width: 767px) {
    .pagination .control-btn.nnext::before {
        margin-left: -8px;
    }
}

.pagination .control-btn.nnext::after {
    margin-left: -6px;
}

@media screen and (max-width: 767px) {
    .pagination .control-btn.nnext::after {
        margin-left: -3px;
    }
}

.pagination .control-btn.prev::after, .pagination .control-btn.next::after {
    display: none;
}

.pagination .page-btn-wrap {
    margin: 0;
}

.pagination .page-btn-wrap > * {
    margin: 0 3px;
}

@media screen and (max-width: 767px) {
    .pagination .page-btn-wrap > * {
        margin: 0 2px;
    }
}

.pagination .page-btn-wrap .now {
    color: #333;
    font-weight: 700;
}

.selectbox-wrap .nice-select {
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    padding-left: 14px;
    padding-right: 24px;
    position: relative;
    text-align: left !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    color: #333;
    z-index: 50;
}

.selectbox-wrap .nice-select > span {
    display: block;
    transform: skew(-0.05deg);
}

.selectbox-wrap .nice-select.open {
    border-color: #3bc0cc;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media screen and (max-width: 1024px) {
    .selectbox-wrap .nice-select {
        padding-left: 10px;
        font-size: 13px;
    }
}

.selectbox-wrap .nice-select:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid #888;
    border-top: none;
    border-left: none;
    display: block;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.selectbox-wrap .nice-select.open:after {
    transform: rotate(225deg);
    margin-top: -2px;
}

.selectbox-wrap .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    border-color: #3bc0cc;
    border-radius: 0 0 6px 6px;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.selectbox-wrap .nice-select.disabled {
    background: #f5f5f5;
    color: #888;
    pointer-events: none;
}

.selectbox-wrap .nice-select.disabled:after {
    border-color: #cccccc;
}

.selectbox-wrap .nice-select .list {
    background-color: #fff;
    border: 1px solid transparent;
    border-top: none;
    box-sizing: border-box;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    z-index: 9;
}

.selectbox-wrap .nice-select .list:hover .option:not(:hover) {
    background-color: transparent;
}

.selectbox-wrap .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 14px;
    padding-right: 14px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    transform: skew(-0.05deg);
}

.selectbox-wrap .nice-select .option:hover,
.selectbox-wrap .nice-select .option.focus,
.selectbox-wrap .nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.selectbox-wrap .nice-select .option.selected {
    font-weight: bold;
}

.selectbox-wrap .nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.selectbox-wrap .no-csspointerevents .nice-select .list {
    display: none;
}

.selectbox-wrap .no-csspointerevents .nice-select.open .list {
    display: block;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-container-pointer-events {
    touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

:root {
    --swiper-navigation-size: 44px;
    /*
    --swiper-navigation-color: var(--swiper-theme-color);
    */
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
    --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
    --swiper-navigation-color: #000000;
}

.swiper-button-lock {
    display: none;
}

:root {
    /*
    --swiper-pagination-color: var(--swiper-theme-color);
    */
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
:root {
    /*
    --swiper-preloader-color: var(--swiper-theme-color);
    */
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-filter: blur(50px);
    filter: blur(50px);
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-controls .swiper-btn {
    display: block;
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid #eee;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    z-index: 10;
}

.swiper-controls .swiper-btn::before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border: 2px solid #333;
    border-top: none;
    border-left: none;
}

.swiper-controls .swiper-btn.prev::before {
    transform: rotate(135deg);
    margin-left: -3px;
}

.swiper-controls .swiper-btn.next::before {
    transform: rotate(-45deg);
    margin-left: -8px;
}

/* tab */
.sub-tab-wrap {
    position: relative;
}

.sub-tab-wrap::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #ddd;
}

.sub-tab-wrap.collapse ul.tabs {
    flex-wrap: wrap;
}

.sub-tab-wrap.collapse ul.tabs li {
    flex: initial;
}

@media screen and (min-width: 1025px) {
    .sub-tab-wrap.collapse ul.tabs li {
        width: calc(100% / 7);
    }
}

@media screen and (max-width: 1024px) {
    .sub-tab-wrap.collapse ul.tabs li {
        width: calc(100% / 6);
    }
}

@media screen and (max-width: 767px) {
    .sub-tab-wrap.collapse ul.tabs li {
        width: calc(100% / 3);
    }
}

@media screen and (min-width: 1025px) {
    .sub-tab-wrap.collapse ul.tabs.open li:nth-child(7) ~ li {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    .sub-tab-wrap.collapse ul.tabs.open li:nth-child(6) ~ li {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .sub-tab-wrap.collapse ul.tabs.open li:nth-child(3) ~ li {
        display: block;
    }
}

.sub-tab-wrap ul.tabs {
    display: flex;
}

@media screen and (max-width: 767px) {
    .sub-tab-wrap ul.tabs {
        flex-wrap: wrap;
    }
}

.sub-tab-wrap ul.tabs li {
    flex: 1;
}

@media screen and (max-width: 767px) {
    .sub-tab-wrap ul.tabs li {
        flex: auto;
        width: 50%;
    }
}

.sub-tab-wrap ul.tabs li a {
    display: block;
    color: #888;
    font-size: 16px;
    line-height: 60px;
    text-align: center;
    white-space: nowrap;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .sub-tab-wrap ul.tabs li a {
        font-size: 14px;
        line-height: 40px;
    }
}

.sub-tab-wrap ul.tabs li.active a {
    background: #3bc0cc;
    color: #fff;
    font-weight: 700;
}

/* table */
.tbl-wrap .tbl-count {
    margin-top: -1em;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    transform: skew(-0.05deg);
    line-height: 1 !important;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .tbl-count {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .tbl-wrap .tbl-count {
        margin-top: 0;
    }
}

.tbl-wrap .table {
    table-layout: fixed;
    width: 100%;
}

.tbl-wrap .table.col-tbl {
    vertical-align: middle;
    border-top: 1px solid #333;
    text-align: center;
}

.tbl-wrap .table.col-tbl .col1 {
    width: 10%;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.col-tbl .col1 {
        width: 80px;
    }
}

.tbl-wrap .table.col-tbl .col2 {
    width: 15%;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.col-tbl .col2 {
        width: 100px;
    }
}

.tbl-wrap .table.col-tbl .col3 {
    width: 20%;
}

.tbl-wrap .table.col-tbl thead th {
    height: 60px;
    padding: 12px;
    border-bottom: 1px solid #333;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.col-tbl thead th {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.col-tbl thead th {
        height: 50px;
        padding: 10px;
    }
}

.tbl-wrap .table.col-tbl tbody th,
.tbl-wrap .table.col-tbl tbody td {
    height: 60px;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    vertical-align: middle;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.col-tbl tbody th,
    .tbl-wrap .table.col-tbl tbody td {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.col-tbl tbody th,
    .tbl-wrap .table.col-tbl tbody td {
        height: 50px;
        padding: 10px;
    }
}

.tbl-wrap .table.col-tbl tbody th .flag-title,
.tbl-wrap .table.col-tbl tbody td .flag-title {
    display: flex;
    align-items: center;
}

.tbl-wrap .table.col-tbl tbody th .flag-title .flag,
.tbl-wrap .table.col-tbl tbody td .flag-title .flag {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.col-tbl tbody th .flag-title .flag,
    .tbl-wrap .table.col-tbl tbody td .flag-title .flag {
        margin-right: 15px;
    }
}

.tbl-wrap .table.col-tbl.type2 {
    border-top-color: #3bc0cc;
}

.tbl-wrap .table.col-tbl.type2 thead th {
    height: 55px;
    border-left: 1px solid #fff;
    border-bottom-color: #3bc0cc;
    background: #3bc0cc;
    color: #fff;
    font-weight: 700;
    word-break: keep-all;
}

.tbl-wrap .table.col-tbl.type2 thead th:first-child {
    border-left: none;
}

.tbl-wrap .table.col-tbl.type2 tbody th,
.tbl-wrap .table.col-tbl.type2 tbody td {
    border-left: 1px solid #ddd;
    word-break: keep-all;
}

.tbl-wrap .table.col-tbl.type2 tbody th:first-child,
.tbl-wrap .table.col-tbl.type2 tbody td:first-child {
    border-left: none;
}

.tbl-wrap .table.col-tbl.type2 tbody th.bg,
.tbl-wrap .table.col-tbl.type2 tbody td.bg {
    background-color: #eee;
}

.tbl-wrap .table.row-tbl .col1 {
    width: 220px;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.row-tbl .col1 {
        width: 110px;
    }
}

.tbl-wrap .table.row-tbl tbody tr:first-child th,
.tbl-wrap .table.row-tbl tbody tr:first-child td {
    border-top: 1px solid #333;
}

.tbl-wrap .table.row-tbl tbody th,
.tbl-wrap .table.row-tbl tbody td {
    height: 55px;
    padding: 10px 10px 10px 75px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    text-align: left;
    vertical-align: middle;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.row-tbl tbody th,
    .tbl-wrap .table.row-tbl tbody td {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 1024px) {
    .tbl-wrap .table.row-tbl tbody th,
    .tbl-wrap .table.row-tbl tbody td {
        padding-left: 25px;
    }
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.row-tbl tbody th,
    .tbl-wrap .table.row-tbl tbody td {
        padding-left: 10px;
    }
}

.tbl-wrap .table.row-tbl tbody th {
    background: #f5f5f5;
    font-weight: 700;
}

.tbl-wrap .table.row-tbl.type2 tbody th {
    background: transparent;
    border-right: 1px solid #ddd;
    text-align: left;
}

.tbl-wrap .table.row-tbl.type2 tbody th, .tbl-wrap .table.row-tbl.type2 tbody td {
    padding: 25px 60px;
}

@media screen and (max-width: 1024px) {
    .tbl-wrap .table.row-tbl.type2 tbody th, .tbl-wrap .table.row-tbl.type2 tbody td {
        padding: 25px 30px;
    }
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table.row-tbl.type2 tbody th, .tbl-wrap .table.row-tbl.type2 tbody td {
        padding: 20px;
    }
}

.tbl-wrap .table a[class^="link-"] {
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
}

.tbl-wrap .table a[class^="link-"].new {
    position: relative;
    padding-right: 20px;
}

.tbl-wrap .table a[class^="link-"].new::after {
    content: 'N';
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #cd0b0b;
    color: #fff;
    border-radius: 4px;
    margin-top: -8px;
    font-family: sans-serif;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
}

.tbl-wrap .table a[class^="link-"].file {
    position: relative;
    padding-right: 20px;
}

.tbl-wrap .table a[class^="link-"].file::before {
    content: ' ';
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background: url("/images/icon/icon-clip.png") center no-repeat;
}

.tbl-wrap .table a[class^="link-"].new.file {
    padding-right: 40px;
}

.tbl-wrap .table a[class^="link-"].new.file::before {
    right: 20px;
}

.tbl-wrap .table .alert {
    margin-top: 5px;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    color: #666;
}

@media screen and (max-width: 767px) {
    .tbl-wrap .table .alert {
        font-size: 13px;
    }
}

@media screen and (max-width: 1024px) {
    .tbl-wrap .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .tbl-wrap .table-responsive .table {
        table-layout: auto;
    }
    .tbl-wrap .table-responsive .table th,
    .tbl-wrap .table-responsive .table td {
        white-space: nowrap;
    }
    .tbl-wrap .table-responsive .table a[class^="link-"] {
        max-width: 200px;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: keep-all;
        overflow: hidden;
    }
}

/* === COMMON LAYOUT === */
/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 32px 0;
    border-bottom: 1px solid #ddd;
    background: #fff;
    transition: top 0.2s ease-in-out;
}

header.scroll {
    top: -99px;
}

header .head-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (max-width: 1024px) {
    header .head-cont {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    header .head-cont {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media screen and (min-width: 1025px) {
    header {
        height: 99px;
    }
    header.p-evt {
        top: 0 !important;
    }
    header.p-evt::before {
        height: 70px;
    }
    header::before {
        content: ' ';
        position: absolute;
        height: 0px;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: height 0.2s ease-in-out;
    }
    header .head-cont h1 a {
        display: block;
    }
    header .head-cont .btn-menu-all {
        display: none !important;
    }
    header .head-cont #gnb {
        display: block !important;
        width: 80%;
    }
    header .head-cont #gnb ul {
        display: flex;
        justify-content: space-between;
    }
    header .head-cont #gnb ul li {
        position: relative;
    }
    header .head-cont #gnb ul li a.dep1 {
        position: relative;
        display: block;
        font-size: 20px;
        line-height: 35px;
        font-weight: 700;
        transition: color 0.15s linear;
    }
    header .head-cont #gnb ul li a.dep1::after {
        content: ' ';
        position: absolute;
        right: -6px;
        top: -1px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #3bc0cc;
        opacity: 0;
        transition: opacity 0.15s linear;
    }
    header .head-cont #gnb ul li a.dep1:hover, header .head-cont #gnb ul li a.dep1.active {
        color: #3bc0cc;
    }
    header .head-cont #gnb ul li a.dep1:hover::after, header .head-cont #gnb ul li a.dep1.active::after {
        opacity: 1;
    }
    header .head-cont #gnb ul li .dep2-open {
        display: none !important;
    }
    header .head-cont #gnb ul li .depth2 {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        margin-top: 52px;
        font-size: 0;
        white-space: nowrap;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.1s ease-in-out;
    }
    header .head-cont #gnb ul li .depth2.hover {
        opacity: 1;
    }
    header .head-cont #gnb ul li .depth2 li {
        display: inline-block;
        vertical-align: top;
        margin-left: 50px;
    }
    header .head-cont #gnb ul li .depth2 li:first-child {
        margin-left: 0;
    }
    header .head-cont #gnb ul li .depth2 li a {
        display: block;
        color: #666;
        font-size: 18px;
        line-height: 30px;
        font-weight: 700;
    }
    header .head-cont #gnb ul li .depth2 li a:hover {
        color: #3bc0cc;
    }
}

@media screen and (max-width: 1024px) {
    header {
        height: 59px;
        padding: 12px 0;
    }
    header.scroll {
        top: -59px;
    }
    header.m-evt {
        top: 0 !important;
    }
    header h1 a {
        display: block;
    }
    header .btn-menu-all {
        position: relative;
        display: block;
        width: 35px;
        height: 35px;
    }
    header .btn-menu-all .bar {
        position: absolute;
        right: 0;
        width: 24px;
        height: 3px;
        margin-top: -1px;
        background: #333;
    }
    header .btn-menu-all::before, header .btn-menu-all::after {
        content: ' ';
        position: absolute;
        top: 50%;
        right: 0;
        width: 24px;
        height: 3px;
        background: #333;
        transition: all 0.2s ease-in-out;
    }
    header .btn-menu-all::before {
        margin-top: -10px;
    }
    header .btn-menu-all::after {
        margin-top: 8px;
    }
    header .btn-menu-all.open .bar {
        display: none;
    }
    header .btn-menu-all.open::before {
        transform: rotate(45deg);
        margin-top: -1px;
        background: #3bc0cc;
    }
    header .btn-menu-all.open::after {
        transform: rotate(-45deg);
        margin-top: -1px;
        background: #3bc0cc;
    }
    header #gnb {
        position: fixed;
        top: 59px;
        right: -100%;
        bottom: 0;
        width: 100%;
        height: calc(100% - 59px);
        background: #fff;
        overflow-y: auto;
        transition: right 0.2s ease-in-out;
    }
    header #gnb.open {
        right: 0;
    }
    header #gnb > ul > li {
        position: relative;
        border-bottom: 1px solid #ddd;
    }
    header #gnb > ul > li a.dep1 {
        display: block;
        position: relative;
        padding: 12px 20px;
        font-size: 18px;
        line-height: 26px;
        transform: skew(-0.05deg);
        font-weight: 700;
    }
}

@media screen and (max-width: 1024px) and (max-width: 767px) {
    header #gnb > ul > li a.dep1 {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 1024px) {
    header #gnb > ul > li a.dep1.active {
        color: #3bc0cc;
    }
    header #gnb > ul > li a.dep1.open::after {
        transform: rotate(225deg);
        margin-top: -2px;
    }
    header #gnb > ul > li a.dep1::after {
        content: ' ';
        position: absolute;
        top: 50%;
        right: 22px;
        width: 10px;
        height: 10px;
        margin-top: -8px;
        border: 2px solid #333;
        border-top: none;
        border-left: none;
        transform: rotate(45deg);
        transition: transform 0.2s ease-in-out;
    }
    header #gnb > ul > li a.dep1:only-child::after {
        display: none;
    }
    header #gnb > ul > li .dep2-open {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 46px;
    }
    header #gnb > ul > li .depth2 {
        display: none;
        padding: 20px;
        background: #f5f5f5;
        border-top: 1px solid #eee;
    }
    header #gnb > ul > li .depth2 li {
        margin-top: 5px;
    }
    header #gnb > ul > li .depth2 li:first-child {
        margin-top: 0;
    }
    header #gnb > ul > li .depth2 li a {
        display: block;
        padding: 5px 10px;
        color: #666;
        font-size: 16px;
        line-height: 24px;
        transform: skew(-0.05deg);
        letter-spacing: -0.3px;
    }
}

@media screen and (max-width: 1024px) and (max-width: 767px) {
    header #gnb > ul > li .depth2 li a {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 1024px) {
    header #gnb > ul > li .depth2 li a.active {
        color: #3bc0cc;
    }
}

@media screen and (max-width: 767px) {
    header {
        height: 50px;
        padding: 10px 0;
    }
    header.scroll {
        top: -50px;
    }
    header h1 a {
        height: 30px;
    }
    header h1 a img {
        height: 100%;
    }
    header .btn-menu-all {
        height: 30px;
    }
    header .btn-menu-all .bar, header .btn-menu-all::before, header .btn-menu-all::after {
        width: 20px;
    }
    header .btn-menu-all::before {
        margin-top: -8px;
    }
    header .btn-menu-all::after {
        margin-top: 6px;
    }
    header #gnb {
        top: 50px;
        height: calc(100% - 50px);
    }
}

/* footer */
footer {
    padding: 55px 0;
    background: #444;
}

@media screen and (max-width: 767px) {
    footer {
        padding: 30px 0;
    }
}

footer .foot-cont {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    footer .foot-cont {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    footer .foot-cont {
        padding-left: 12px;
        padding-right: 12px;
    }
}

footer .foot-cont .cont {
    font-size: 0;
}

footer .foot-cont .cont span {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    footer .foot-cont .cont span {
        font-size: 13px;
        line-height: 23px;
    }
}

footer .foot-cont .cont span::before {
    content: ' ';
    display: inline-block;
    vertical-align: top;
    width: 1px;
    height: 10px;
    margin: 7px 10px 0;
    background: #fff;
}

footer .foot-cont .cont span:first-child::before {
    display: none;
}

@media screen and (max-width: 767px) {
    footer .foot-cont .cont:nth-child(2) ~ .cont span {
        display: block;
    }
    footer .foot-cont .cont:nth-child(2) ~ .cont span::before {
        display: none;
    }
}

footer .foot-cont .copy {
    margin-top: 25px;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    transform: skew(-0.05deg);
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    footer .foot-cont .copy {
        font-size: 13px;
        line-height: 18px;
        margin-top: 22px;
    }
}

footer .foot-cont .logo {
    position: absolute;
    top: 5px;
    right: 20px;
}

@media screen and (max-width: 767px) {
    footer .foot-cont .logo {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
    }
    footer .foot-cont .logo img {
        height: 26px;
    }
}

/* common layout */
.skip-navigation {
    position: absolute;
    z-index: 9999;
}

.skip-navigation a {
    display: block;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

body {
    overflow: initial !important;
}

body #wrap {
    overflow: hidden;
}

/* container */
.container {
    position: relative;
    padding-top: 99px;
}

@media screen and (max-width: 1024px) {
    .container {
        padding-top: 59px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding-top: 50px;
    }
}

.container.cate01 .sub-visual {
    background-image: url("/images/img/img-sub-visual01.jpg");
}

.container.cate02 .sub-visual {
    background-image: url("/images/img/img-sub-visual02.jpg");
}

.container.cate03 .sub-visual {
    background-image: url("/images/img/img-sub-visual03.jpg");
}

.container.cate04 .sub-visual {
    background-image: url("/images/img/img-sub-visual04.jpg");
}

.container.cate05 .sub-visual {
    background-image: url("/images/img/img-sub-visual05-1.jpg");
}

.container.cate06 .sub-visual {
    background-image: url("/images/img/img-sub-visual06.jpg");
}

.container.cate07 .sub-visual {
    background-image: url("/images/img/img-sub-visual07.jpg");
}

.container .sub-visual {
    padding: 155px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 767px) {
    .container .sub-visual {
        padding: 80px 0;
    }
}

.container .sub-visual .title {
    color: #fff;
    font-size: 35px;
    line-height: 40px;
    font-weight: 900;
    text-align: center;
    text-shadow: 3px 4px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
    .container .sub-visual .title {
        font-size: 30px;
        line-height: 35px;
    }
}

.container .page-tab-wrap {
    position: relative;
    padding: 0 20px;
}

@media screen and (max-width: 767px) {
    .container .page-tab-wrap {
        padding: 0;
    }
}

.container .page-tab-wrap::before {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.container .page-tab-wrap .scroll {
    max-width: 1400px;
    margin: 0 auto;
}

.container .page-tab-wrap ul.tabs {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .container .page-tab-wrap ul.tabs li {
        flex: 1;
    }
}

@media screen and (max-width: 767px) {
    .container .page-tab-wrap ul.tabs li {
        width: auto;
    }
}

.container .page-tab-wrap ul.tabs li a {
    position: relative;
    display: block;
    color: #666;
    font-size: 18px;
    line-height: 70px;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease-in-out;
}

.container .page-tab-wrap ul.tabs li a::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3bc0cc;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
    .container .page-tab-wrap ul.tabs li a {
        padding: 0 14px;
        font-size: 15px;
        line-height: 50px;
        transform: skew(-0.05deg);
    }
}

@media screen and (min-width: 1025px) {
    .container .page-tab-wrap ul.tabs li a:hover {
        color: #3bc0cc;
    }
    .container .page-tab-wrap ul.tabs li a:hover::after {
        opacity: 1;
    }
}

.container .page-tab-wrap ul.tabs li.active a {
    color: #3bc0cc;
    font-weight: 700;
}

.container .page-tab-wrap ul.tabs li.active a::after {
    opacity: 1;
}

.container .page-title {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 105px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .container .page-title {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .container .page-title {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.container .page-title span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 10px 6px 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
}

.container .page-title span::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: rgba(59, 192, 204, 0.3);
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .container .page-title {
        margin-top: 55px;
    }
    .container .page-title span {
        padding-top: 6px;
        font-size: 24px;
    }
    .container .page-title span::before {
        width: 16px;
        height: 16px;
    }
}

.container .contents-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 110px;
}

@media screen and (max-width: 1024px) {
    .container .contents-wrap {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .container .contents-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media screen and (max-width: 767px) {
    .container .contents-wrap {
        padding-top: 30px;
        padding-bottom: 70px;
    }
}

.container .contents-wrap.full {
    max-width: none;
    padding: 70px 0 0;
}

/* nodata */
.nodata {
    padding: 100px 0;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .nodata {
        font-size: 14px;
        line-height: 22px;
    }
}

/* dim */
.common-dim {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1005;
}

/* product info */
.product-intro {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    position: relative;
    width: 100%;
    padding-left: 51.785714%;
}

@media screen and (max-width: 767px) {
    .product-intro {
        padding-left: 0;
    }
}

.product-intro.type2 {
    align-content: space-between;
}

.product-intro.type2 .intro {
    padding-top: 30px;
}

@media screen and (max-width: 1024px) {
    .product-intro.type2 .intro {
        padding-top: 0;
    }
}

.product-intro .img-view {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48.571429%;
    padding-top: 35.714286%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
    .product-intro .img-view {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-bottom: 10px;
        padding-top: 73.529412%;
        order: 2;
    }
}

.product-intro .intro {
    width: 100%;
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .product-intro .intro {
        order: 1;
        text-align: center;
    }
}

.product-intro .intro .eyebrow {
    margin-bottom: 10px;
    color: #3bc0cc;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.product-intro .intro .tit {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -1px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .product-intro .intro .tit {
        font-size: 20px;
        line-height: 28px;
    }
}

.product-intro .intro .desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .product-intro .intro .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.product-intro .intro .btn {
    width: 140px;
    margin-top: 20px;
}

.product-intro .img-slider {
    position: relative;
    width: 100%;
    padding-right: 21px;
}

@media screen and (max-width: 767px) {
    .product-intro .img-slider {
        order: 3;
        padding-right: 0;
    }
}

.product-intro .img-slider .swiper-slide .thumb {
    position: relative;
    display: block;
    padding-top: 73.015873%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
    .product-intro .img-slider .swiper-slide .thumb:hover::before, .product-intro .img-slider .swiper-slide .thumb:hover::after {
        opacity: 1;
    }
}

.product-intro .img-slider .swiper-slide .thumb.active::before, .product-intro .img-slider .swiper-slide .thumb.active::after {
    opacity: 1;
}

.product-intro .img-slider .swiper-slide .thumb::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.product-intro .img-slider .swiper-slide .thumb::after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 37px;
    height: 37px;
    margin-top: -18px;
    margin-left: -18px;
    background: url("/images/icon/icon-plus.png") center no-repeat;
    background-size: 100%;
    z-index: 11;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.product-intro .img-slider .swiper-controls .swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.product-intro .img-slider .swiper-controls .swiper-btn.prev {
    left: 0;
    margin-left: -21px;
}

@media screen and (max-width: 767px) {
    .product-intro .img-slider .swiper-controls .swiper-btn.prev {
        left: -10px;
        margin-left: 0;
    }
}

.product-intro .img-slider .swiper-controls .swiper-btn.next {
    right: 0;
}

@media screen and (max-width: 767px) {
    .product-intro .img-slider .swiper-controls .swiper-btn.next {
        right: -10px;
    }
}

/* member, 마이페이지 */
.container.mypage .withdrawal-wrap .top {
    padding: 40px 40px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
    .container.mypage .withdrawal-wrap .top {
        padding: 40px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .container.mypage .withdrawal-wrap .top {
        padding: 30px 0 0;
    }
}

.container.mypage .withdrawal-wrap .top p {
    margin-top: 10px;
    padding: 0 60px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .container.mypage .withdrawal-wrap .top p {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.mypage .withdrawal-wrap .top p:first-child {
    margin-top: 0;
}

.container.mypage .withdrawal-wrap .top p.bold {
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.mypage .withdrawal-wrap .top p {
        padding: 0 20px;
    }
}

.container.mypage .withdrawal-wrap .top .form-wrap {
    margin-top: 40px;
    padding: 25px 60px;
    border-top: 1px solid #ddd;
}

.container.mypage .withdrawal-wrap .top .form-wrap label {
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .container.mypage .withdrawal-wrap .top .form-wrap {
        margin-top: 20px;
        padding: 10px 20px;
    }
}

.container.mypage .withdrawal-wrap .bottom {
    margin-top: 60px;
    padding: 30px 100px;
    border: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
    .container.mypage .withdrawal-wrap .bottom {
        padding: 30px 60px;
    }
}

@media screen and (max-width: 767px) {
    .container.mypage .withdrawal-wrap .bottom {
        margin-top: 40px;
        padding: 30px 20px;
    }
}

.container.mypage .withdrawal-wrap .bottom .sect {
    margin-top: 30px;
}

.container.mypage .withdrawal-wrap .bottom .sect:first-child {
    margin-top: 0;
}

.container.mypage .withdrawal-wrap .bottom .sect p {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.mypage .withdrawal-wrap .bottom .sect p {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.mypage .withdrawal-wrap .bottom .sect.type2 p {
    float: left;
}

@media screen and (max-width: 1024px) {
    .container.mypage .withdrawal-wrap .bottom .sect.type2 p {
        float: none;
    }
}

.container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists {
    margin-left: 200px;
}

@media screen and (max-width: 1024px) {
    .container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists {
        margin-left: 0;
    }
}

@media screen and (min-width: 768px) {
    .container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists li {
        width: 25%;
    }
    .container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists li:nth-child(1), .container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists li:nth-child(4) {
        width: 50%;
    }
    .container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists li:nth-child(3) ~ li {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists li {
        width: 100%;
        margin-top: 5px;
    }
    .container.mypage .withdrawal-wrap .bottom .sect.type2 .slt-lists li:first-child {
        margin-top: 0;
    }
}

.container.member .login-wrap {
    max-width: 570px;
    margin: 0 auto;
}

.container.member .login-wrap .tit-wrap {
    text-align: center;
}

.container.member .login-wrap .login-input {
    margin-top: 20px;
    position: relative;
    padding-right: 140px;
}

@media screen and (max-width: 767px) {
    .container.member .login-wrap .login-input {
        padding-right: 110px;
    }
}

.container.member .login-wrap .login-input .input-wrap {
    display: block;
    margin-top: 10px;
}

.container.member .login-wrap .login-input .input-wrap:first-child {
    margin-top: 0;
}

.container.member .login-wrap .login-input .input-wrap .form-control {
    padding: 10px;
    height: 46px;
}

.container.member .login-wrap .login-input .chk-wrap {
    display: block;
    margin-top: 10px;
}

.container.member .login-wrap .login-input .btn-login {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 102px;
}

@media screen and (max-width: 767px) {
    .container.member .login-wrap .login-input .btn-login {
        width: 100px;
    }
}

.container.member .login-wrap .sns-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}

.container.member .login-wrap .sns-login p {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .container.member .login-wrap .sns-login p {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.member .login-wrap .sns-login .btns {
    text-align: right;
}

.container.member .login-wrap .sns-login .btns a {
    display: inline-block;
    vertical-align: top;
    width: 46px;
    height: 46px;
    margin-left: 10px;
}

.container.member .login-wrap .sns-login .btns a:first-child {
    margin-left: 0;
}

.container.member .login-wrap .sns-login .btns a.btn-sns1 {
    background: url("/images/bg/bg-sns.png") 0 0 no-repeat;
}

.container.member .login-wrap .sns-login .btns a.btn-sns2 {
    background: url("/images/bg/bg-sns.png") right 0 no-repeat;
}

.container.member .login-wrap .find-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dotted #ddd;
}

.container.member .login-wrap .find-info p {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .container.member .login-wrap .find-info p {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.member .login-wrap .find-info .btn-find {
    display: block;
    text-align: center;
    line-height: 48px;
}

@media screen and (max-width: 767px) {
    .container.member .login-wrap .find-info .btn-find {
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
        line-height: 38px;
    }
}

.container.member .login-wrap .btn-join {
    display: block;
    margin-top: 25px;
    border-width: 2px;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
}

@media screen and (max-width: 767px) {
    .container.member .login-wrap .btn-join {
        font-size: 16px;
        line-height: 44px;
    }
}

.container.member .join-select-list {
    max-width: 500px;
    margin: 0 auto;
}

.container.member .join-select-list li {
    margin-top: 10px;
}

.container.member .join-select-list li:first-child {
    margin-top: 0;
}

.container.member .join-select-list li a {
    display: block;
    width: 100%;
    font-weight: 700;
    line-height: 52px;
}

.container.member .join-select-list li a.btn01 {
    background: #21c502;
    color: #fff;
}

.container.member .join-select-list li a.btn01 span::before {
    content: ' ';
    display: inline-block;
    vertical-align: top;
    width: 46px;
    height: 46px;
    margin-top: 3px;
    margin-right: 10px;
    background: url("/images/icon/icon-snslogin.png") 0 0 no-repeat;
}

.container.member .join-select-list li a.btn02 {
    background: #fff100;
    color: #3b201e;
}

.container.member .join-select-list li a.btn02 span::before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    margin-right: 10px;
    background: url("/images/icon/icon-snslogin.png") right 0 no-repeat;
}

.container.member .form-wrap.join-type {
    max-width: 600px;
    margin: 0 auto;
}

.container.member .form-wrap.join-type .form-control {
    max-width: 100%;
    height: 50px;
}

.container.member .form-wrap.join-type .row {
    margin-top: 10px;
}

.container.member .form-wrap.join-type .row:first-child {
    margin-top: 0;
}

.container.member .form-wrap.join-type .row .btn {
    height: 50px;
}

.container.member .join-agree-cont {
    max-width: 600px;
    margin: 60px auto 0;
    border-top: 1px solid #333;
}

@media screen and (max-width: 767px) {
    .container.member .join-agree-cont {
        margin-top: 40px;
    }
}

.container.member .join-agree-cont .tit {
    padding: 15px 12px;
    border-bottom: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.member .join-agree-cont .tit {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.member .join-agree-cont .all {
    border-bottom: 1px solid #ddd;
    padding: 15px 12px;
}

.container.member .join-agree-cont .all p {
    margin-top: 5px;
    padding-left: 30px;
    color: #888;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .container.member .join-agree-cont .all p {
        font-size: 13px;
    }
}

.container.member .join-agree-cont .agrees {
    border-bottom: 1px solid #ddd;
    padding: 15px 12px;
}

.container.member .join-agree-cont .agrees li {
    position: relative;
    margin-top: 5px;
}

.container.member .join-agree-cont .agrees li:first-child {
    margin-top: 0;
}

.container.member .join-agree-cont .agrees li .link-cont {
    position: absolute;
    top: 3px;
    right: 0;
}

.container.member .join-agree-cont .agrees li .link-cont::after {
    content: ' ';
    display: inline-block;
    vertical-align: top;
    width: 7px;
    height: 7px;
    margin: 2px 0 0 5px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: rotate(135deg);
    transition: all 0.2s ease-in-out;
}

.container.member .join-agree-cont .agrees li .link-cont.open::after {
    transform: rotate(315deg);
    margin-top: 6px;
}

.container.member .join-agree-cont .agrees li .terms-box {
    display: none;
    height: 100px;
    border: 1px solid #ddd;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 30px;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    color: #666;
}

@media screen and (max-width: 767px) {
    .container.member .join-agree-cont .agrees li .terms-box {
        font-size: 13px;
    }
}

.container.member .join-complete {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.container.member .join-complete .welcome {
    position: relative;
    padding-top: 70px;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -3px;
}

@media screen and (max-width: 767px) {
    .container.member .join-complete .welcome {
        font-size: 35px;
    }
}

.container.member .join-complete .welcome::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 50%;
    width: 55px;
    height: 32px;
    margin-left: -30px;
    border: 7px solid #3bc0cc;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

.container.member .join-complete .welcome small {
    display: block;
    margin-top: 5px;
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -1px;
    font-weight: 400;
    letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
    .container.member .join-complete .welcome small {
        font-size: 20px;
        line-height: 28px;
    }
}

.container.member .join-complete .welcome small em {
    font-weight: 700;
}

.container.member .join-complete .desc {
    margin-top: 30px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .container.member .join-complete .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .container.member .join-complete .desc {
        margin-top: 20px;
    }
}

.container.member .join-complete .desc em {
    color: #3bc0cc;
    font-weight: 700;
}

.container.member .find-wrap {
    max-width: 450px;
    margin: 0 auto;
}

.container.member .find-wrap .tit-wrap {
    margin-bottom: 50px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .container.member .find-wrap .tit-wrap {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .container.member .find-wrap .tit-wrap {
        margin-bottom: 30px;
    }
}

.container.member .find-wrap .button-tab-wrap .tabs {
    font-size: 0;
}

.container.member .find-wrap .button-tab-wrap .tabs li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.container.member .find-wrap .button-tab-wrap .tabs li a {
    display: block;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    line-height: 54px;
    text-align: center;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .container.member .find-wrap .button-tab-wrap .tabs li a {
        line-height: 46px;
        font-size: 14px;
    }
}

.container.member .find-wrap .button-tab-wrap .tabs li.active a {
    border-color: #2e3c46;
    background: #2e3c46;
    color: #fff;
}

.container.member .find-wrap .button-tab-contents .slt-lists {
    padding: 20px 0;
    text-align: center;
}

.container.member .find-wrap .button-tab-contents .slt-lists li {
    margin-left: 50px;
}

.container.member .find-wrap .button-tab-contents .slt-lists li:first-child {
    margin-left: 0;
}

.container.member .find-wrap .button-tab-contents .find-input .input-wrap {
    display: block;
    margin-top: 10px;
}

.container.member .find-wrap .button-tab-contents .find-input .input-wrap:first-child {
    margin-top: 0;
}

.container.member .find-wrap .button-tab-contents .find-input .input-wrap input {
    height: 46px;
    padding: 10px;
}

.container.member .find-wrap .button-tab-contents .btn-group {
    margin-top: 10px;
}

.container.member .find-wrap .button-tab-contents .btn-group .btn {
    line-height: 52px;
}

/* === PAGES(CATEGORY) === */
/* 블루샤크 */
.container.cate01 .introduce {
    position: relative;
}

.container.cate01 .introduce .area {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 480px;
    background-image: url("/images/img/img-sub0101.jpg");
    background-position: right 0;
    background-repeat: no-repeat;
    background-size: auto;
}

@media screen and (max-width: 1024px) {
    .container.cate01 .introduce .area {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .area {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .container.cate01 .introduce .area {
        padding-top: 330px;
        background-size: 70% auto;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .area {
        background-size: 100%;
        padding-top: 58.823529%;
    }
}

.container.cate01 .introduce .hello {
    position: absolute;
    top: 95px;
    left: 0;
    padding: 10px 40px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 300;
    letter-spacing: -2px;
    word-break: keep-all;
}

@media screen and (max-width: 1024px) {
    .container.cate01 .introduce .hello {
        max-width: 460px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .hello {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0 20px;
        font-size: 30px;
        line-height: 36px;
        text-align: center;
    }
}

.container.cate01 .introduce .hello::before, .container.cate01 .introduce .hello::after {
    content: ' ';
    position: absolute;
    width: 26px;
    height: 21px;
    background: url("/images/icon/icon-qt.png") no-repeat;
}

.container.cate01 .introduce .hello::before {
    top: 0;
    left: 0;
}

.container.cate01 .introduce .hello::after {
    bottom: 50px;
    right: 0;
    transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .hello::after {
        bottom: 0;
    }
}

.container.cate01 .introduce h4.tit {
    text-align: center;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.container.cate01 .introduce h4.tit::before {
    content: ' ';
    display: block;
    width: 2px;
    height: 140px;
    margin: 0 auto 30px;
    background: #3bc0cc;
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce h4.tit::before {
        height: 80px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce h4.tit {
        font-size: 22px;
    }
}

.container.cate01 .introduce .bg-area {
    background: url("/images/bg/bg-sub0101.jpg") center no-repeat;
    background-size: cover;
}

.container.cate01 .introduce .list-wrap {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 35px;
    padding: 30px 20px 110px;
    overflow: hidden;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .list-wrap {
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 70px;
    }
}

.container.cate01 .introduce .list-wrap .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -2.142857%;
    margin-top: -2.857143%;
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .list-wrap .lists {
        margin-left: 0;
        margin-top: 0;
    }
}

.container.cate01 .introduce .list-wrap .lists li {
    position: relative;
    width: 25%;
    margin-top: 2.797203%;
    padding-left: 2.097902%;
    padding-top: 12px;
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .list-wrap .lists li {
        width: 100%;
        margin-top: 15px;
        padding-left: 0;
    }
    .container.cate01 .introduce .list-wrap .lists li:first-child {
        margin-top: 0;
    }
}

.container.cate01 .introduce .list-wrap .lists li:nth-child(1) .inner::before {
    content: "01";
}

.container.cate01 .introduce .list-wrap .lists li:nth-child(2) .inner::before {
    content: "02";
}

.container.cate01 .introduce .list-wrap .lists li:nth-child(3) .inner::before {
    content: "03";
}

.container.cate01 .introduce .list-wrap .lists li:nth-child(4) .inner::before {
    content: "04";
}

.container.cate01 .introduce .list-wrap .lists li:nth-child(5) .inner::before {
    content: "05";
}

.container.cate01 .introduce .list-wrap .lists li:nth-child(6) .inner::before {
    content: "06";
}

.container.cate01 .introduce .list-wrap .lists li:nth-child(7) .inner::before {
    content: "07";
}

.container.cate01 .introduce .list-wrap .lists li .inner {
    position: relative;
    height: 100%;
    padding: 70px 20px 45px;
    border: 1px solid #eee;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .list-wrap .lists li .inner {
        padding: 44px 20px 20px;
    }
}

.container.cate01 .introduce .list-wrap .lists li .inner::before {
    content: ' ';
    position: absolute;
    top: -12px;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translateX(-50%);
    background: #3bc0cc;
    color: #fff;
    text-align: center;
    font-size: 25px;
    line-height: 48px;
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .list-wrap .lists li .inner::before {
        width: 36px;
        height: 36px;
        font-size: 20px;
        line-height: 36px;
    }
}

.container.cate01 .introduce .list-wrap .lists li .inner .tit {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    word-break: keep-all;
}

.container.cate01 .introduce .list-wrap .lists li .inner .tit::after {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 2px;
    margin-left: -20px;
    background: #3bc0cc;
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .list-wrap .lists li .inner .tit {
        margin-bottom: 20px;
        padding-bottom: 20px;
        font-size: 18px;
        line-height: 1;
        font-weight: 900;
    }
}

.container.cate01 .introduce .list-wrap .lists li .inner .desc {
    color: #666;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .container.cate01 .introduce .list-wrap .lists li .inner .desc {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate01 .sns-wrap section {
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section {
        margin-top: 60px;
    }
}

.container.cate01 .sns-wrap section:first-child {
    margin-top: 0;
}

.container.cate01 .sns-wrap section .tit-wrap {
    margin-bottom: 45px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .tit-wrap {
        margin-bottom: 20px;
    }
}

.container.cate01 .sns-wrap section .tit-wrap .tit {
    color: #3bc0cc;
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .tit-wrap .tit {
        font-size: 20px;
    }
}

.container.cate01 .sns-wrap section .tit-wrap .desc {
    margin-top: 15px;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .tit-wrap .desc {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .tit-wrap .desc {
        margin-top: 10px;
    }
}

.container.cate01 .sns-wrap section .link-lists {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .link-lists {
        flex-wrap: wrap;
    }
}

.container.cate01 .sns-wrap section .link-lists li {
    width: 31.428571%;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .link-lists li {
        width: 100%;
        margin-top: 10px;
    }
    .container.cate01 .sns-wrap section .link-lists li:first-child {
        margin-top: 0;
    }
}

.container.cate01 .sns-wrap section .link-lists li a {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

@media screen and (min-width: 1025px) {
    .container.cate01 .sns-wrap section .link-lists li a:hover::before {
        opacity: 1;
    }
    .container.cate01 .sns-wrap section .link-lists li a:hover .hover {
        opacity: 1;
    }
}

.container.cate01 .sns-wrap section .link-lists li a::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

@media screen and (max-width: 1024px) {
    .container.cate01 .sns-wrap section .link-lists li a::before {
        opacity: 1;
    }
}

.container.cate01 .sns-wrap section .link-lists li a img {
    width: 100%;
}

.container.cate01 .sns-wrap section .link-lists li a .hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 10;
}

.container.cate01 .sns-wrap section .link-lists li a .hover::before {
    content: ' ';
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 1024px) {
    .container.cate01 .sns-wrap section .link-lists li a .hover {
        opacity: 1;
    }
}

.container.cate01 .sns-wrap section .link-lists li a.sns01 .hover::before {
    background-image: url("/images/icon/icon-sns01.png");
}

.container.cate01 .sns-wrap section .link-lists li a.sns02 .hover::before {
    background-image: url("/images/icon/icon-sns02.png");
}

.container.cate01 .sns-wrap section .link-lists li a.sns03 .hover::before {
    background-image: url("/images/icon/icon-sns03.png");
}

.container.cate01 .sns-wrap section .naver-blog-lists li {
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li {
        margin-top: 10px;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li:first-child {
    margin-top: 0;
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    padding: 40px;
    padding-right: 31.473534%;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner {
        padding: 20px 12px;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info {
        order: 1;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .thumb {
    display: block;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    overflow: hidden;
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .thumb img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .thumb {
        width: 24px;
        height: 24px;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .writer {
    font-size: 16px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .writer {
        max-width: 50%;
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: keep-all;
        overflow: hidden;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .date {
    color: #888;
    font-size: 16px;
    transform: skew(-0.05deg);
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .date::before {
    content: ' ';
    display: inline-block;
    width: 1px;
    height: 10px;
    margin: 3px 10px 0;
    background: #eee;
    vertical-align: top;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .date {
        font-size: 14px;
    }
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .info .date::before {
        height: 8px;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .title {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .title {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        order: 2;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .desc {
    width: 100%;
    height: 48px;
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .desc {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        width: calc(100% - 100px);
        height: 88px;
        order: 3;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .hashs {
    width: 100%;
    height: 34px;
    margin-top: 15px;
    font-size: 0;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .hashs {
        width: auto;
        height: auto;
        margin: 15px -12px 0;
        padding: 0 12px;
        overflow-x: auto;
        white-space: nowrap;
        order: 5;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .hashs .hash {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    padding: 0 12px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    font-size: 16px;
    line-height: 34px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .hashs .hash {
        font-size: 14px;
        line-height: 28px;
    }
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .imgs {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 188px;
    height: 128px;
    border-radius: 16px;
    overflow: hidden;
}

.container.cate01 .sns-wrap section .naver-blog-lists li a.inner .imgs img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .imgs {
        width: 160px;
        height: 109px;
        border-radius: 4px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .imgs {
        position: relative;
        top: auto;
        right: auto;
        order: 4;
        width: 88px;
        height: 88px;
        margin-top: 15px;
        margin-left: auto;
    }
    .container.cate01 .sns-wrap section .naver-blog-lists li a.inner .imgs img {
        position: relative;
        left: 50%;
        width: auto;
        max-width: none;
        height: 100%;
        transform: translateX(-50%);
    }
}

.container.cate01 .product-list-wrap {
    overflow: hidden;
}

.container.cate01 .product-list-wrap .lists {
    display: flex;
    flex-wrap: wrap;
    margin-top: -4.285714%;
    margin-left: -2.142857%;
}

@media screen and (max-width: 767px) {
    .container.cate01 .product-list-wrap .lists {
        margin-top: -15px;
        margin-left: -10px;
    }
}

.container.cate01 .product-list-wrap .lists li {
    width: 25%;
    margin-top: 4.195804%;
    padding-left: 2.097902%;
}

@media screen and (max-width: 767px) {
    .container.cate01 .product-list-wrap .lists li {
        width: 50%;
        margin-top: 15px;
        padding-left: 10px;
    }
}

.container.cate01 .product-list-wrap .lists .inner {
    display: block;
    position: relative;
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.container.cate01 .product-list-wrap .lists .inner:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.container.cate01 .product-list-wrap .lists .inner .thumb {
    display: block;
    padding-top: 62.5%;
    background-color: #e5e7eb;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container.cate01 .product-list-wrap .lists .inner .info {
    padding: 16px;
    padding-bottom: 58px;
}

@media screen and (max-width: 767px) {
    .container.cate01 .product-list-wrap .lists .inner .info {
        padding: 12px;
        padding-bottom: 54px;
    }
}

.container.cate01 .product-list-wrap .lists .inner .info .name {
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 900;
    color: #111827;
}

@media screen and (max-width: 767px) {
    .container.cate01 .product-list-wrap .lists .inner .info .name {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate01 .product-list-wrap .lists .inner .info .desc {
    min-height: 40px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    color: #6b7280;
}

@media screen and (max-width: 767px) {
    .container.cate01 .product-list-wrap .lists .inner .info .desc {
        font-size: 13px;
    }
}

.container.cate01 .product-list-wrap .lists .inner .info .product-actions {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.container.cate01 .product-list-wrap .lists .inner .info .price {
    flex: 1 1 auto;
    min-width: 0;
    color: #3bc0cc;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 700;
}

.container.cate01 .product-list-wrap .lists .inner .info .reserve-link {
    flex: 0 0 auto;
    display: inline-block;
    padding: 6px 13px;
    border: 1px solid #3bc0cc;
    border-radius: 999px;
    background: #3bc0cc;
    color: #fff;
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    transform: skew(-0.05deg);
}

.container.cate01 .product-list-wrap .lists .inner .info .reserve-link:hover,
.container.cate01 .product-list-wrap .lists .inner .info .reserve-link:active {
    background: #fff;
    color: #3bc0cc;
}

@media screen and (max-width: 767px) {
    .container.cate01 .product-list-wrap .lists .inner .info .price {
        font-size: 16px;
        line-height: 24px;
    }

    .container.cate01 .product-list-wrap .lists .inner .info .reserve-link {
        padding: 5px 10px;
        font-size: 12px;
        line-height: 17px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .product-list-wrap .lists .inner .info .product-actions {
        left: 12px;
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }
}

.container.cate01 .map-wrap {
    margin-bottom: 30px;
}

.container.cate01 .map-wrap .root_daum_roughmap {
    width: 100% !important;
}

.container.cate01 .map-wrap .root_daum_roughmap .map_border {
    display: none;
}

.container.cate01 .map-wrap .root_daum_roughmap .wrap_controllers {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .container.cate01 .map-wrap .root_daum_roughmap .wrap_map {
        height: 300px !important;
    }
}

.container.cate01 .tbl-wrap .table.row-tbl tbody tr th,
.container.cate01 .tbl-wrap .table.row-tbl tbody tr td {
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .container.cate01 .tbl-wrap .table.row-tbl tbody tr th,
    .container.cate01 .tbl-wrap .table.row-tbl tbody tr td {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate01 .howto {
    padding: 50px 0;
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto {
        padding: 20px 0;
    }
}

.container.cate01 .howto dl {
    margin-bottom: 25px;
}

.container.cate01 .howto dl::after {
    content: " ";
    display: block;
    clear: both;
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto dl {
        margin-bottom: 15px;
    }
}

.container.cate01 .howto dl:nth-child(1) dt::before {
    background-image: url("/images/icon/icon-vehicle01.png");
}

.container.cate01 .howto dl:nth-child(2) dt::before {
    background-image: url("/images/icon/icon-vehicle02.png");
}

.container.cate01 .howto dl dt {
    float: left;
    width: 130px;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    line-height: 32px !important;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto dl dt {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto dl dt {
        float: none;
        width: 100%;
        margin-bottom: 5px;
    }
}

.container.cate01 .howto dl dt::before {
    content: ' ';
    display: inline-block;
    vertical-align: top;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.container.cate01 .howto dl dd {
    margin-left: 130px;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    line-height: 32px;
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto dl dd {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto dl dd {
        margin-left: 0;
    }
}

.container.cate01 .howto p {
    padding-left: 130px;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate01 .howto p {
        padding-left: 0;
    }
}

/* 수상레져 */
.container.cate02 .tab-contents {
    padding-top: 70px;
}

@media screen and (max-width: 767px) {
    .container.cate02 .tab-contents {
        padding-top: 30px;
    }
}

.container.cate02 .tit-wrap {
    text-align: center;
}

.container.cate02 .tit-wrap .tit {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -1px;
    color: #3bc0cc;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate02 .tit-wrap .tit {
        font-size: 20px;
        line-height: 28px;
    }
}

.container.cate02 .tit-wrap .desc {
    margin-top: 20px;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .container.cate02 .tit-wrap .desc {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate02 .pkg-list-wrap {
    margin-top: 45px;
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap {
        margin-top: 20px;
    }
}

.container.cate02 .pkg-list-wrap .lists > li {
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists > li {
        margin-top: 15px;
    }
}

.container.cate02 .pkg-list-wrap .lists > li:first-child {
    margin-top: 0;
}

.container.cate02 .pkg-list-wrap .lists .inner {
    position: relative;
    padding: 24px 190px 24px 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.container.cate02 .pkg-list-wrap .lists .inner::after {
    content: " ";
    display: block;
    clear: both;
}

@media screen and (max-width: 1024px) {
    .container.cate02 .pkg-list-wrap .lists .inner {
        padding-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner {
        padding: 20px;
    }
}

.container.cate02 .pkg-list-wrap .lists .inner .thumb {
    display: block;
    width: 310px;
    float: left;
}

@media screen and (max-width: 1024px) {
    .container.cate02 .pkg-list-wrap .lists .inner .thumb {
        width: 260px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner .thumb {
        float: none;
        width: 100%;
        margin-bottom: 15px;
    }
}

.container.cate02 .pkg-list-wrap .lists .inner .thumb img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.container.cate02 .pkg-list-wrap .lists .inner .info {
    margin-left: 360px;
}

@media screen and (max-width: 1024px) {
    .container.cate02 .pkg-list-wrap .lists .inner .info {
        margin-left: 290px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner .info {
        margin-left: 0;
    }
}

.container.cate02 .pkg-list-wrap .lists .inner .info .price {
    margin-top: 10px;
    color: #3bc0cc;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

.container.cate02 .pkg-list-wrap .lists .inner .info .options {
    font-size: 0;
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner .info .options {
        margin-top: 5px;
    }
}

.container.cate02 .pkg-list-wrap .lists .inner .info .options li {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    margin-right: 10px;
    padding: 4px 10px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner .info .options li {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner .info .options li {
        margin-top: 5px;
        margin-right: 4px;
    }
}

.container.cate02 .pkg-list-wrap .lists .inner .info .more {
    margin-top: 15px;
}

.container.cate02 .pkg-list-wrap .lists .inner .info .more li {
    margin-top: 4px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner .info .more li {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.cate02 .pkg-list-wrap .lists .inner .btn {
    position: absolute;
    bottom: 24px;
    right: 40px;
}

@media screen and (max-width: 1024px) {
    .container.cate02 .pkg-list-wrap .lists .inner .btn {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        margin-left: 290px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .pkg-list-wrap .lists .inner .btn {
        margin-left: 0;
    }
}

.container.cate02 .dl-list {
    margin-top: 50px;
}

.container.cate02 .dl-list dt {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate02 .dl-list dt {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate02 .dl-list dd {
    margin-top: 4px;
    color: #666;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .container.cate02 .dl-list dd {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.cate02 .comx-pkg-cont > .desc {
    margin-bottom: 45px;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    text-align: center;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont > .desc {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont > .desc {
        margin-bottom: 20px;
    }
}

.container.cate02 .comx-pkg-cont .top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .container.cate02 .comx-pkg-cont .top {
        flex-wrap: wrap;
    }
}

.container.cate02 .comx-pkg-cont .top .thumb {
    width: 52.5%;
}

.container.cate02 .comx-pkg-cont .top .thumb img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .container.cate02 .comx-pkg-cont .top .thumb {
        width: 100%;
        margin-top: 25px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .thumb {
        margin-top: 15px;
    }
}

.container.cate02 .comx-pkg-cont .top .info {
    width: 46.285714%;
    padding: 50px 40px 30px;
    border: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
    .container.cate02 .comx-pkg-cont .top .info {
        order: -1;
        width: 100%;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info {
        padding: 20px 12px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .tit {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .tit {
        font-size: 18px;
        line-height: 26px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .desc.small {
    margin-top: 5px;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    color: #666;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .desc.small {
        font-size: 13px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .box {
    margin-top: 25px;
    font-size: 0;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .box {
        margin-top: 15px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .box .btn {
    vertical-align: middle;
}

.container.cate02 .comx-pkg-cont .top .info .box .call {
    display: inline-block;
    vertical-align: middle;
    margin-left: 35px;
    color: #3bc0cc;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    line-height: 28px !important;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .box .call {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .box .call::before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background: url("/images/icon/icon-call.jpg") center no-repeat;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .box .call {
        margin-left: 20px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list {
    display: flex;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .pkg-list {
        display: block;
        margin-top: 20px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list li {
    flex: 1;
    padding: 0 10px;
    border-left: 1px solid #ddd;
    text-align: left;
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list li:first-child {
    border-left: none;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .pkg-list li {
        margin-top: 15px;
        padding: 15px 0 0;
        border: none;
        border-top: 1px solid #ddd;
    }
    .container.cate02 .comx-pkg-cont .top .info .pkg-list li:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner {
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner .name {
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner .name {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner .price {
    color: #3bc0cc;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner .price {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner .options {
    margin-top: 15px;
    font-size: 0;
}

.container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner .options span {
    display: inline-block;
    margin-right: 7px;
    padding: 4px 6px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .top .info .pkg-list li .inner .options span {
        font-size: 14px;
        line-height: 22px;
    }
}

.container.cate02 .comx-pkg-cont .img-list {
    margin-top: 25px;
    font-size: 0;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .img-list {
        margin-top: 15px;
    }
}

.container.cate02 .comx-pkg-cont .img-list li {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 50px) / 3);
    margin-left: 25px;
}

.container.cate02 .comx-pkg-cont .img-list li:first-child {
    margin-left: 0;
}

@media screen and (max-width: 767px) {
    .container.cate02 .comx-pkg-cont .img-list li {
        width: calc((100% - 30px) / 3);
        margin-left: 15px;
    }
}

/* 숙박 */
.container.cate03 .rooms-list {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .container.cate03 .rooms-list {
        flex-wrap: wrap;
    }
}

.container.cate03 .rooms-list li {
    width: 23.428571%;
}

@media screen and (max-width: 1024px) {
    .container.cate03 .rooms-list li {
        width: calc((100% - 20px) / 2);
    }
    .container.cate03 .rooms-list li:nth-child(2) ~ li {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate03 .rooms-list li {
        width: calc((100% - 10px) / 2);
    }
    .container.cate03 .rooms-list li:nth-child(2) ~ li {
        margin-top: 10px;
    }
}

.container.cate03 .rooms-list li .inner {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 5px 12px 2px rgba(221, 221, 221, 0.75);
}

.container.cate03 .rooms-list li .inner .thumb {
    display: block;
}

.container.cate03 .rooms-list li .inner .thumb img {
    width: 100%;
}

.container.cate03 .rooms-list li .inner .info {
    padding: 20px;
}

.container.cate03 .rooms-list li .inner .info .tit {
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate03 .rooms-list li .inner .info .tit {
        font-size: 16px;
        line-height: 24px;
    }
}

.container.cate03 .rooms-list li .inner .info .desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
    transform: skew(-0.05deg);
    color: #666;
}

@media screen and (max-width: 767px) {
    .container.cate03 .rooms-list li .inner .info .desc {
        font-size: 13px;
    }
}

.container.cate03 .rooms-list li .inner .info .price {
    margin-top: 10px;
    color: #3bc0cc;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate03 .rooms-list li .inner .info .price {
        font-size: 16px;
        line-height: 24px;
    }
}

/* 제휴관광지 */
.container.cate04 .tour-list-wrap.type2 .intro {
    position: relative;
    padding-top: 245px;
    padding-left: 55%;
}

@media screen and (max-width: 1024px) {
    .container.cate04 .tour-list-wrap.type2 .intro {
        padding-top: 17.5%;
    }
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap.type2 .intro {
        padding: 0;
    }
}

.container.cate04 .tour-list-wrap.type2 .intro .thumb {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    max-width: 80%;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap.type2 .intro .thumb {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
    }
}

.container.cate04 .tour-list-wrap.type2 .intro .info {
    position: relative;
    margin-left: 0;
    width: 100%;
    max-width: 420px;
    padding: 35px 35px 70px;
    box-shadow: 3px 4px 5px 0px rgba(221, 221, 221, 0.75);
    background: #fff;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap.type2 .intro .info {
        max-width: 80%;
        margin-left: auto;
        margin-top: -80px;
        padding: 20px;
    }
}

.container.cate04 .tour-list-wrap .intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro {
        display: block;
    }
}

.container.cate04 .tour-list-wrap .intro .thumb {
    display: block;
    width: 45.357143%;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro .thumb {
        width: 100%;
    }
}

.container.cate04 .tour-list-wrap .intro .info {
    align-self: flex-start;
    width: 52.142857%;
    padding-top: 3.571429%;
    padding-bottom: 3.571429%;
}

@media screen and (max-width: 1024px) {
    .container.cate04 .tour-list-wrap .intro .info {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro .info {
        width: 100%;
        margin-top: 20px;
    }
}

.container.cate04 .tour-list-wrap .intro .info .eyebrow {
    margin-bottom: 10px;
    color: #3bc0cc;
    font-size: 18px;
    line-height: 26px;
    transform: skew(-0.05deg);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro .info .eyebrow {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro .info .eyebrow {
        margin-bottom: 5px;
    }
}

.container.cate04 .tour-list-wrap .intro .info .tit {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -1px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro .info .tit {
        font-size: 20px;
        line-height: 28px;
    }
}

.container.cate04 .tour-list-wrap .intro .info .desc {
    margin-top: 25px;
    font-size: 16px;
    line-height: 24px;
    transform: skew(-0.05deg);
    letter-spacing: -0.3px;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro .info .desc {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .intro .info .desc {
        margin-top: 10px;
    }
}

.container.cate04 .tour-list-wrap .img-list {
    display: flex;
    margin-top: 35px;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .container.cate04 .tour-list-wrap .img-list {
        margin-top: 20px;
    }
}

.container.cate04 .tour-list-wrap .img-list li {
    width: 32.285714%;
}

.pkg-img-lists {
    display:flex;
}

.pkg-img-lists li {
    flex:1;
    text-align:center;
}

@media screen and (max-width: 767px) {
    .pkg-img-lists {
        display:block;
    }

    .pkg-img-lists li {
        margin-top:-10px;
        text-align:center;
    }

    .pkg-img-lists li:first-child {
        margin-top:0;
    }
}

.main-layer-popup {
    position:fixed;
    height:auto !important;
    z-index:2000;
    background:#fff;
    border-radius:10px;
    box-shadow: 5px 2px 10px 0px rgba(0, 0, 0, 0.5);
}

.main-layer-popup .popup-cont {
    padding:20px;
}

.main-layer-popup .popup-foot {
    display:flex;
    justify-content:space-between;
    padding:0 20px 10px;
}

.main-layer-popup .popup-foot .btn-close {
    position:relative;
    width:24px;
    height:24px;
}

.main-layer-popup .popup-foot .btn-close::before,
.main-layer-popup .popup-foot .btn-close::after {
    content:' ';
    position:absolute;
    top:50%;
    left:50%;
    width:2px;
    height:20px;
    margin-top:-10px;
    margin-left:-1px;
    background:#333;
}

.main-layer-popup .popup-foot .btn-close::before {
    transform:rotate(45deg);
}

.main-layer-popup .popup-foot .btn-close::after {
    transform:rotate(-45deg);
}
