@charset "utf-8";

/* component */
/* btn */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 4px;
    font-family: var(--font-text);
    cursor: pointer;
}
.btn[class*='-primary']:hover,
.btn[class*='-primary']:active {
    background-color: var(--Primary-Color-Red);
    color: var(--Primary-Color-White);
}
.btn[class*='-outline']:hover,
.btn[class*='-outline']:active {
    color: var(--Primary-Color-White);
    background-color: var(--Primary-Color-Red);
    box-shadow: 0 0 0 2px var(--Primary-Color-Black) inset;
}
.btn[class*='txt-btn']:hover,
.btn[class*='txt-btn']:active {
    position: relative;
    color: var(--Primary-Color-Red) !important;
    background-color: transparent !important;
}
.btn[class*='lg-txt-btn']:hover::after,
.btn[class*='lg-txt-btn']:active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: var(--Primary-Color-Red);
}
.btn[class*='md-txt-btn']:hover::after,
.btn[class*='md-txt-btn']:active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--Primary-Color-Red);
}
.btn[class*='btn-only-icon-notbg']:hover,
.btn[class*='btn-only-icon-notbg']:active {background-color: transparent;}
.btn:hover [class*='icon-down'],
.btn:active [class*='icon-down'] {
    background: url(/inc/images/icon/icon-arrow01_down_white.svg);
    background-size: contain;
}
.btn:hover [class*='icon-right'],
.btn:active [class*='icon-right'] {
    background: url(/inc/images/icon/icon-arrow01_right_white.svg);
    background-size: contain;
}
.btn[class*='btn-only-icon-notbg']:hover [class*='icon-right'],
.btn[class*='btn-only-icon-notbg']:active [class*='icon-right'] {
    background: url(/inc/images/icon/icon-arrow01_right_red.svg);
    background-size: contain;
}
.btn[class*='btn-only-icon-notbg']:hover [class*='icon-left'],
.btn[class*='btn-only-icon-notbg']:active [class*='icon-left'] {
    background: url(/inc/images/icon/icon-arrow01_left_red.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-right'],
.btn[class*='txt-btn']:active [class*='icon-right'] {
    background: url(/inc/images/icon/icon-arrow01_right_red.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-left'],
.btn[class*='txt-btn']:active [class*='icon-left'] {
    background: url(/inc/images/icon/icon-arrow01_left_red.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-play'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-play'] {
    background: url(/inc/images/icon/icon-play_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-pause'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-pause'] {
    background: url(/inc/images/icon/icon-pause_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-soundon'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-soundon'] {
    background: url(/inc/images/icon/icon-soundon_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-soundoff'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-soundoff'] {
    background: url(/inc/images/icon/icon-soundoff_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-search'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-search'] {
    background: url(/inc/images/icon/icon-search_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-copylink'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-copylink'] {
    background: url(/inc/images/icon/icon-copylink_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-facebook'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-facebook'] {
    background: url(/inc/images/icon/icon-facebook_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-instagram'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-instagram'] {
    background: url(/inc/images/icon/icon-Instagram_white.svg);
    background-size: contain;
}
.btn:not(.btn-only-icon-notbg):hover [class*='icon-twitter'],
.btn:not(.btn-only-icon-notbg):active [class*='icon-twitter'] {
    background: url(/inc/images/icon/icon-twitter_white.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-right'],
.btn[class*='txt-btn']:active [class*='icon-right'] {
    background: url(/inc/images/icon/icon-arrow01_right_red.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-left'],
.btn[class*='txt-btn']:active [class*='icon-left'] {
    background: url(/inc/images/icon/icon-arrow01_left_red.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-copylink'],
.btn[class*='txt-btn']:active [class*='icon-copylink'] {
    background: url(/inc/images/icon/icon-copylink_red.svg);
    background-size: contain;
}
[class*='btn-lg'] {
    padding: 20px 32px;
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-sm);
}
[class*='xl-txt-btn'] {
    font-size: 32px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
[class*='lg-txt-btn'] {
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-sm);
}
[class*='btn-md'] {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}
[class*='md-txt-btn'] {
    font-size: 16px;
    font-weight: 700;
    line-height: var(--lh-sm)
}
[class*='btn-xs'] {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
}
[class*='sm-txt-btn'] {
    font-size: 14px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
[class*='-primary01'] {
    background: var(--Primary-Color-Black);
    color: var(--Primary-Color-White);
}
[class*='-primary02'] {
    background: var(--Primary-Color-White);
    color: var(--Primary-Color-Black);
}
[class*='-primary01']:disabled {
    background-color: var(--Line-Color-Line_e6e6e6) !important;
    color: var(--Line-Color-Line_a1a1a1) !important;
}
[class*='-outline01'] {
    box-shadow: 0 0 0 2px var(--Primary-Color-Black) inset;
    color: var(--Primary-Color-Black);
}
[class*='-outline02'] {
    box-shadow: 0 0 0 2px var(--Primary-Color-White) inset;
    color: var(--Primary-Color-White);
}
[class*='-outline01']:disabled {
    box-shadow: 0 0 0 2px var(--Line-Color-Line_a1a1a1) inset !important;
    color: var(--Line-Color-Line_a1a1a1) !important;
    background-color: transparent !important;;
}
/* 웹접근성 처리용 예외 케이스 추가 : Start */
[class*='txt-btn00'] {color: var(--Primary-Color-Black);}
[class*='txt-btn00'] .icon-right-wh {background: url(/inc/images/icon/icon-arrow01_right.svg);}
/* 웹접근성 처리용 예외 케이스 추가 : End */
[class*='txt-btn01'] {color: var(--Primary-Color-Black);}
/* active 클래스 추가 시, 폰트 색상 변경 */
[class*='txt-btn01 active'] {color: var(--Primary-Color-Red);}
[class*='txt-btn02'] {color: var(--Primary-Color-White);}
[class*='txt-btn03'] {color: var(--Line-Color-Line_a1a1a1) !important;}
[class*='txt-btn04'] {color: var(--Primary-Color-Red);}
.btn[class*='txt-btn03']:hover::after,
.btn[class*='txt-btn03']:active::after {display: none;}
[class*='btn-icon'] {
    display: inline-block;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
[class*='btn-icon20'] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
[class*='btn-icon16'] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
[class*='btn-icon24'] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
[class*='btn-icon36'] {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
[class*='btn-icon52'] {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}
.btn[class*='-primary'] [class*='btn-icon20'],
.btn[class*='-outline'] [class*='btn-icon20'] {margin-left: 8px;}
.btn[class*='-primary'] [class*='btn-icon16'],
.btn[class*='-outline'] [class*='btn-icon16'] {margin-left: 4px;}
.btn[class*='txt-btn'] [class*='icon-right'],
.btn[class*='txt-btn'] [class*='icon-right'] {margin-left: 4px;}
.btn[class*='txt-btn'] [class*='icon-left'],
.btn[class*='txt-btn'] [class*='icon-left'] {margin-right: 4px;}
.btn[class*='btn-lg-outline'] .btn-paging {margin-left: 8px;}
.btn[class*='btn-md-outline'] .btn-paging {margin-left: 4px;}
.btn-sound__type--red {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.btn-sound__type--red:hover {background-color: transparent !important;}
.btn-sound__type--red::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
}
.btn-sound__type--red::after {background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.7603 17.6547L13.6953 16.5897C16.2303 14.0547 16.2303 9.94473 13.6953 7.40973L14.7603 6.34473C17.8803 9.46473 17.8803 14.5197 14.7603 17.6397V17.6547Z" fill="rgb(255 255 255)"/><path d="M17.774 20.6998L16.709 19.6348C18.749 17.5948 19.874 14.8798 19.874 11.9998C19.874 9.1198 18.749 6.4048 16.709 4.3648L17.774 3.2998C20.099 5.6248 21.374 8.7148 21.374 11.9998C21.374 15.2848 20.099 18.3748 17.774 20.6998Z" fill="rgb(255 255 255)"/><path d="M11.325 5.7749V18.2249L6.36 15.1049H2.625V8.8949H6.36L11.325 5.7749Z" fill="rgb(255 255 255)"/></svg>');}
.btn-sound__type--red:hover:after {background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.7603 17.6547L13.6953 16.5897C16.2303 14.0547 16.2303 9.94473 13.6953 7.40973L14.7603 6.34473C17.8803 9.46473 17.8803 14.5197 14.7603 17.6397V17.6547Z" fill="%23DE3111"/><path d="M17.774 20.6998L16.709 19.6348C18.749 17.5948 19.874 14.8798 19.874 11.9998C19.874 9.1198 18.749 6.4048 16.709 4.3648L17.774 3.2998C20.099 5.6248 21.374 8.7148 21.374 11.9998C21.374 15.2848 20.099 18.3748 17.774 20.6998Z" fill="%23DE3111"/><path d="M11.325 5.7749V18.2249L6.36 15.1049H2.625V8.8949H6.36L11.325 5.7749Z" fill="%23DE3111"/></svg>');}
.btn-sound__type--red.on::after {background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 20 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.44547 0.774902V13.2249L4.46547 10.1049H0.730469V3.8949H4.46547L9.44547 0.774902Z" fill="%23DE3111"/><path d="M19.2703 4.0899L18.2053 3.0249L15.2953 5.9349L12.3853 3.0249L11.3203 4.0899L14.2303 6.9999L11.3203 9.9099L12.3853 10.9749L15.2953 8.0649L18.2053 10.9749L19.2703 9.9099L16.3603 6.9999L19.2703 4.0899Z" fill="%23DE3111"/></svg>');}
.icon-right {
    background: url(/inc/images/icon/icon-arrow01_right.svg);
    background-size: contain;
}
.icon-right-wh {
    background: url(/inc/images/icon/icon-arrow01_right_white.svg);
    background-size: contain;
}
.icon-write-w {
    background: url(/inc/images/icon/icon-write.svg);
    background-size: contain;
}
.icon-comm-w {
    background: url(/inc/images/icon/icon-comm-white.svg);
    background-size: contain;
}
.icon-comm-b {
    background: url(/inc/images/icon/icon-comm-black.svg);
    background-size: contain;
}
.icon-my-comm-w {
    background: url(/inc/images/icon/icon-my-comm-white.svg);
    background-size: contain;
}
.icon-my-comm-b {
    background: url(/inc/images/icon/icon-my-comm-black.svg);
    background-size: contain;
}
.icon-check-comm-w {
    background: url(/inc/images/icon/icon-check-comm-white.svg);
    background-size: contain;
}
.icon-check-comm-b {
    background: url(/inc/images/icon/icon-check-comm-black.svg);
    background-size: contain;
}
.icon-point-b {
    background: url(/inc/images/icon/icon-point-black.svg);
    background-size: contain;
}
.btn:hover .icon-point-b {
    background: url(/inc/images/icon/icon-point-white.svg);
    background-size: contain;
}
.icon-challenge-w {
    background: url(/inc/images/icon/icon-challenge-white.svg);
    background-size: contain;
}
.icon-right-red {
    background: url(/inc/images/icon/icon-arrow01_right_red.svg);
    background-size: contain;
}
[class*='icon-right'].icon-disabled {
    background: url(/inc/images/icon/icon-arrow01_right_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-right'].icon-disabled,
.btn:active [class*='icon-right'].icon-disabled {
    background: url(/inc/images/icon/icon-arrow01_right_disabled.svg);
    background-size: contain;
}
.icon-left {
    background: url(/inc/images/icon/icon-arrow01_left.svg);
    background-size: contain;
}
.icon-left-wh {
    background: url(/inc/images/icon/icon-arrow01_left_white.svg);
    background-size: contain;
}
.icon-left.icon-disabled {
    background: url(/inc/images/icon/icon-arrow01_left_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-left'].icon-disabled,
.btn:active [class*='icon-left'].icon-disabled {
    background: url(/inc/images/icon/icon-arrow01_left_disabled.svg);
    background-size: contain;
}
.icon-link {
    background: url(/inc/images/icon/icon-link.svg);
    background-size: contain;
}
.icon-outlink {background: url(/inc/images/icon/icon-link.svg) no-repeat center;}
a:hover .icon-outlink,
span:hover .icon-outlink,
button:hover .icon-outlink { background: url(/inc/images/icon/icon-link_red.svg) no-repeat center; }
.navigation-menu a.gnb-outlink:focus { color: var(--Primary-Color-Black) !important; }
.btn:hover [class*='icon-link'],
.btn:active [class*='icon-link'] {
    background: url(/inc/images/icon/icon-link_white.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-link'],
.btn[class*='txt-btn']:active [class*='icon-link'] {
    background: url(/inc/images/icon/icon-link_red.svg);
    background-size: contain;
}
.icon-link-wh {
    background: url(/inc/images/icon/icon-link_white.svg);
    background-size: contain;
}
a:hover .icon-link-wh {
    background: url(/inc/images/icon/icon-link_white_hover.svg);
    background-size: contain;
}
.icon-down {
    background: url(/inc/images/icon/icon-arrow01_down.svg);
    background-size: contain;
}
.icon-down-wh {
    background: url(/inc/images/icon/icon-arrow01_down_white.svg);
    background-size: contain;
}
.icon-down.icon-disabled {
    background: url(/inc/images/icon/icon-arrow01_down_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-down'].icon-disabled,
.btn:active [class*='icon-down'].icon-disabled {
    background: url(/inc/images/icon/icon-arrow01_down_disabled.svg);
    background-size: contain;
}
.icon-up-wh {
    background: url(/inc/images/icon/icon-arrow01_up_white.svg);
    background-size: contain;
}
.icon-play {
    background: url(/inc/images/icon/icon-play.svg);
    background-size: contain;
}
.icon-play-wh {
    background: url(/inc/images/icon/icon-play_white.svg);
    background-size: contain;
}
.icon-soundon-wh {
    background-image: url(/inc/images/icon/icon-soundon_white.svg);
}
.icon-soundoff-wh {
    background-image: url(/inc/images/icon/icon-soundoff_white.svg);
}
.icon-play.icon-disabled {
    background: url(/inc/images/icon/icon-play_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-play'].icon-disabled,
.btn:active [class*='icon-play'].icon-disabled {
    background: url(/inc/images/icon/icon-play_disabled.svg);
    background-size: contain;
}
.icon-pause {
    background: url(/inc/images/icon/icon-pause.svg);
    background-size: contain;
}
.icon-pause-wh {
    background: url(/inc/images/icon/icon-pause_white.svg);
    background-size: contain;
}
.icon-pause.icon-disabled {
    background: url(/inc/images/icon/icon-pause_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-pause'].icon-disabled,
.btn:active [class*='icon-pause'].icon-disabled {
    background: url(/inc/images/icon/icon-pause_disabled.svg);
    background-size: contain;
}
.icon-soundon {
    background: url(/inc/images/icon/icon-soundon.svg);
    background-size: contain;
}
.icon-soundon-wh {
    background: url(/inc/images/icon/icon-soundon_white.svg);
    background-size: contain;
}
.icon-soundon.icon-disabled {
    background: url(/inc/images/icon/icon-soundon_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-soundon'].icon-disabled,
.btn:active [class*='icon-soundon'].icon-disabled {
    background: url(/inc/images/icon/icon-soundon_disabled.svg);
    background-size: contain;
}
.icon-soundoff {
    background: url(/inc/images/icon/icon-soundoff.svg);
    background-size: contain;
}
.icon-soundoff-wh {
    background: url(/inc/images/icon/icon-soundoff_white.svg);
    background-size: contain;
}
.icon-soundoff.icon-disabled {
    background: url(/inc/images/icon/icon-soundoff_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-soundoff'].icon-disabled,
.btn:active [class*='icon-soundoff'].icon-disabled {
    background: url(/inc/images/icon/icon-soundoff_disabled.svg);
    background-size: contain;
}
.icon-search {
    background: url(/inc/images/icon/icon-search.svg);
    background-size: contain;
}
.icon-search-wh {
    background: url(/inc/images/icon/icon-search_white.svg);
    background-size: contain;
}
.icon-search.icon-disabled {
    background: url(/inc/images/icon/icon-search_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-search'].icon-disabled,
.btn:active [class*='icon-search'].icon-disabled {
    background: url(/inc/images/icon/icon-search_disabled.svg);
    background-size: contain;
}
.icon-copylink {
    background: url(/inc/images/icon/icon-copylink.svg);
    background-size: contain;
}
.icon-copylink-wh {
    background: url(/inc/images/icon/icon-copylink_white.svg);
    background-size: contain;
}
.icon-copylink.icon-disabled {
    background: url(/inc/images/icon/icon-copylink_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-copylink'].icon-disabled,
.btn:active [class*='icon-copylink'].icon-disabled {
    background: url(/inc/images/icon/icon-copylink_disabled.svg);
    background-size: contain;
}
.icon-facebook {
    background: url(/inc/images/icon/icon-facebook.svg);
    background-size: contain;
}
.icon-facebook-wh {
    background: url(/inc/images/icon/icon-facebook_white.svg);
    background-size: contain;
}
.icon-facebook.icon-disabled {
    background: url(/inc/images/icon/icon-facebook_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-facebook'].icon-disabled,
.btn:active [class*='icon-facebook'].icon-disabled {
    background: url(/inc/images/icon/icon-facebook_disabled.svg);
    background-size: contain;
}
.icon-instagram {
    background: url(/inc/images/icon/icon-Instagram.svg);
    background-size: contain;
}
.icon-instagram-wh {
    background: url(/inc/images/icon/icon-Instagram_white.svg);
    background-size: contain;
}
a:hover .icon-instagram-wh {
    background: url(/inc/images/icon/icon-Instagram_white_hover.svg);
    background-size: contain;
}
.icon-instagram.icon-disabled {
    background: url(/inc/images/icon/icon-Instagram_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-instagram'].icon-disabled,
.btn:active [class*='icon-instagram'].icon-disabled {
    background: url(/inc/images/icon/icon-Instagram_disabled.svg);
    background-size: contain;
}
.icon-twitter {
    background: url(/inc/images/icon/icon-twitter.svg);
    background-size: contain;
}
.icon-twitter-wh {
    background: url(/inc/images/icon/icon-twitter_white.svg);
    background-size: contain;
}
.icon-twitter.icon-disabled {
    background: url(/inc/images/icon/icon-twitter_disabled.svg);
    background-size: contain;
}
.btn:hover [class*='icon-twitter'].icon-disabled,
.btn:active [class*='icon-twitter'].icon-disabled {
    background: url(/inc/images/icon/icon-twitter_disabled.svg);
    background-size: contain;
}
.icon-youtube-wh {
    background: url(/inc/images/icon/icon-youtube_white.svg);
    background-size: contain;
}
a:hover .icon-youtube-wh {
    background: url(/inc/images/icon/icon-youtube_white_hover.svg);
    background-size: contain;
}
.icon-close {
    background: url(/inc/images/icon/icon-close.svg);
    background-size: contain;
}
.btn:not([class*='only-icon-bg'], [class*='btn-reset']):hover [class*='icon-close'],
.btn:not([class*='only-icon-bg'], [class*='btn-reset']):active [class*='icon-close'] {
    background: url(/inc/images/icon/icon-close_red.svg);
    background-size: contain;
}
.icon-close-wh {
    background: url(/inc/images/icon/icon-close_white.svg);
    background-size: contain;
}
.icon-close-gray {
    background: url(/inc/images/icon/icon-close_gray.svg);
    background-size: contain;
}
.btn:hover [class*='icon-close-gray'],
.btn:active [class*='icon-close-gray'] {
    background: url(/inc/images/icon/icon-close_red.svg);
    background-size: contain;
}
.icon-change-gray {
    background: url(/inc/images/icon/icon-change_gray.svg);
    background-size: contain;
}
.btn:hover [class*='icon-change-gray'],
.btn:active [class*='icon-change-gray'] {
    background: url(/inc/images/icon/icon-change_red.svg);
    background-size: contain;
}
.btn:hover .icon-heart {
    background: url(/inc/images/icon/icon-heart-hover.svg);
    background-size: contain;
}
.icon-heart {
    background: url(/inc/images/icon/icon-heart.svg);
    background-size: contain;
}
.btn:hover .icon-heart-red {
    background: url(/inc/images/icon/icon-heart-hover.svg);
    background-size: contain;
}
.icon-heart-red {
    background: url(/inc/images/icon/icon-heart_red.svg);
    background-size: contain;
}
.icon-share {
    background: url(/inc/images/icon/icon-share.svg);
    background-size: contain;
}
.btn:hover [class*='icon-share'],
.btn:active [class*='icon-share'] {
    background: url(/inc/images/icon/icon-share_red.svg);
    background-size: contain;
}
.icon-favorites {
    background: url(/inc/images/icon/icon-favorites.svg);
    background-size: contain;
}
.btn.is-active .icon-favorites,
.btn:hover [class*='icon-favorites'],
.btn:active [class*='icon-favorites'] {
    background: url(/inc/images/icon/icon-favorites-on.svg);
    background-size: contain;
}
.icon-trans {
    background: url(/inc/images/icon/icon-trans.svg);
    background-size: contain;
}

.btn .on[class*='icon-trans'],
.btn:hover [class*='icon-trans'],
.btn:active [class*='icon-trans'] {
    background: url(/inc/images/icon/icon-trans_red.svg);
    background-size: contain;
}
.icon-download {
    background: url(/inc/images/icon/icon-download.svg);
    background-size: contain;
}
.icon-download-wh {
    background: url(/inc/images/icon/icon-download-wh.svg);
    background-size: contain;
}
.icon-refresh {
    background: url(/inc/images/icon/icon-refresh.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-refresh'],
.btn[class*='txt-btn']:active [class*='icon-refresh'] {
    background: url(/inc/images/icon/icon-reset_active.svg);
    background-size: contain;
}
.icon-control-bar {
    background: url(/inc/images/icon/icon-control-bar.svg);
    background-size: contain;
}
.icon-check {
    background: url(/inc/images/icon/icon-check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-wechat-wh {
    background: url(/inc/images/icon/icon-wechat-wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-weibo-wh {
    background: url(/inc/images/icon/icon-weibo-wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-tiktok-wh {
    background: url(/inc/images/icon/icon-tiktok-wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-user {
    background: url(/inc/images/icon/icon-user.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-user-wh {
    background: url(/inc/images/icon/icon-user_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-user-gray {
    background: url(/inc/images/icon/icon-user_gray.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-user-black {
    background: url(/inc/images/icon/icon-user_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.btn:hover [class*='icon-download'],
.btn:active [class*='icon-download'] {
    background: url(/inc/images/icon/icon-download-wh.svg);
    background-size: contain;
}
.btn[class*='txt-btn']:hover [class*='icon-download'],
.btn[class*='txt-btn']:active [class*='icon-download'] {
    background: url(/inc/images/icon/icon-download-red.svg);
    background-size: contain;
}
.icon-comments {
    background: url(/inc/images/icon/icon-comments.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.btn:hover [class*='icon-comments'],
.btn:active [class*='icon-comments'] {
    background: url(/inc/images/icon/icon-comments-hover.svg);
    background-size: contain;
}
.icon-favorite {
    background: url(/inc/images/icon/icon-favorites.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.btn:hover [class*='icon-favorite'],
.btn.is-active [class*='icon-favorite'],
.btn:active [class*='icon-favorite'] {
    background: url(/inc/images/icon/icon-favorites-on.svg);
    background-size: contain;
}
.icon-favorite-on {
    background: url(/inc/images/icon/icon-favorites-on.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.no-hover {cursor: auto;}
.no-hover:hover [class*='icon-comments'],
.no-hover:active [class*='icon-comments'] {
    background: url(/inc/images/icon/icon-comments.svg);
    background-size: contain;
}
[class*='btn-only-icon'] {
    display: inline-flex;
    width: 40px;
    height: 40px;
}
.btn[class*='btn-only-icon-notbg'] {
    align-items: stretch;
    width: auto;
    height: auto;
}
[class*='-square'] {border-radius: 0;}
[class*='-circle'] {border-radius: 50%;}
[class*='only-icon-bg01'] {background-color: var(--Primary-Color-Black);}
[class*='only-icon-bg02'] {background-color: var(--Primary-Color-White);}
[class*='only-icon-bg03'] {background-color: rgba(0, 0, 0, 0.2);}
[class*='only-icon-bg04'] {background-color: var(--Line-Color-Line_01);}
[class*='only-icon-bg01'].disabled {
    background-color: var(--Primary-Color-Black) !important;
    opacity: 50% !important;
}
[class*='btn-wrap-'] {display: flex;}
.btn-wrap-default {
    justify-content: center;
    align-items: center;
}
.btn-wrap-type2 {
    justify-content: center;
    gap: 8px;
}
.btn-wrap-type3 {
    justify-content: center;
    gap: 8px;
}
.btn-wrap-type4 {
    justify-content: center;
    gap: 8px;
}
.btn-wrap-type5 {justify-content: space-between;}
.btn-wrap-type6 {
    justify-content: center;
    gap: 10px;
}
.btn-wrap-type6 > .btn {width: calc(100% / 3);}
.btn-wrap-type5 > div:first-child,
.btn-wrap-type5 > button {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-wrap-type5 > button:hover p {color: var(--Primary-Color-Red);}
.btn-wrap-type5 > div:last-child {
    display: flex;
    gap: 12px;
}
.btn--full .btn { width:100% }
.btn-group {
    display: inline-flex;
    align-items: center;
    margin-right: 24px;
}
.btn-group .btn:not(:last-child) {margin-right: 8px;}
@media screen and (max-width: 1023px) {
    [class*='btn-lg'] {
        padding: 17px 20px;
        font-size: 16px;
        line-height: var(--lh-sm);
    }
    [class*='lg-txt-btn'] {
        font-size: 16px;
        line-height: var(--lh-sm);
    }
    [class*='xl-txt-btn'] {
        font-size: 20px;
        line-height: var(--lh-lg);
    }
    [class*='btn-md'] {
        padding: 12px 16px;
        font-size: 14px;
        line-height: var(--lh-sm);
    }
    [class*='md-txt-btn'] {
        font-size: 14px;
        line-height: var(--lh-sm);
    }
    [class*='btn-icon'] {
        display: inline-block;
        background-repeat: no-repeat !important;
        background-position: center;
    }
    [class*='btn-lg'] [class*='btn-icon20'],
    [class*='lg-txt-btn'] [class*='btn-icon20'] {
        width: 16px;
        height: 16px;
    }
    .btn[class*='-primary'] [class*='btn-icon20'],
    .btn[class*='-outline'] [class*='btn-icon20'] {margin-left: 4px;}
    .btn[class*='btn-lg-outline'] .btn-paging {margin-left: 4px;}
    .btn[class*='btn-lg-outline'] .btn-paging ~ .btn-icon20 {
        width: 20px;
        height: 20px;
        margin-left: 4px;
    }
    .btn-wrap-type1 > .btn {width: 100%;}
    .btn-wrap-type2 > .btn {width: 50%;}
    .btn-wrap-type2 > .btn-100 {width: 100%;}
    .btn-wrap-type3 {
        flex-wrap: wrap;
        width: 100%;
    }
    .btn-wrap-type3 > .btn {width: 100%;}
    .btn-wrap-type4 {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0;
    }
    .btn-wrap-type4 > .btn:not(:last-child) {width: calc(50% - 6px);}
    .btn-wrap-type4 > .btn:first-child {margin-right: 12px;}
    .btn-wrap-type4 > .btn:last-child {
        width: 100%;
        margin-top: 8px;
    }
    .btn-wrap-type6 {flex-direction: column;}
    .btn-wrap-type6 > .btn {width: 100%;}
    .btn-sound__type--red {
        padding: 8px;
        margin-left: -8px;
        color: var(--Primary-Color-Black);
    }
    .btn-sound__type--red:after {
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }
}

/* 컴포넌트는 c-prefix */
.c-text {width: 100%;}
.c-text__desc { margin-top: 20px; }
.c-text.has-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
} 
.c-text--padded .c-text__title,
.c-text--padded .c-text__subtitle,
.c-text--padded .c-text__desc {padding:0 16px}
.c-media-bg { 
    position: relative;
    background-color: var(--Primary-Color-Black)
}
.c-media-bg__media {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
}
.c-media-bg__media img { width: auto; }
.c-media-bg__content {
    z-index: 1;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 240px;
    left: 0;
    width: 100%;
}
.c-media-bg .content-body {
    text-align: center;
    color: var(--Primary-Color-White);
}
.c-media-bg--light .content-body { color: var(--Primary-Color-Black); }
.c-media-bg--mo-light .content-body { color: var(--Primary-Color-White); }
@media screen and (min-width: 1921px) {
    .c-media-bg__media img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
@media screen and (max-width: 1023px) {
    .c-text__desc { margin-top: 12px; }
    .c-text--padded .c-text__title,
    .c-text--padded .c-text__subtitle,
    .c-text--padded .c-text__desc {padding:0}
    .c-media-bg__content {
        position: relative;
        top: 0;
        padding: 152px 24px 0;
    }
    .c-media-bg__media { margin-top: -72px; }
    .c-media-bg__media img { width: 100%; }
    .c-media-bg--mo-light { background-color: var(--Primary-Color-White); }
    .c-media-bg--mo-light .c-media-bg__content {padding: 0;}
    .c-media-bg--mo-light .content-body {color: var(--Primary-Color-Black);}
    .c-media-bg--mo-light .c-media-bg__media  {margin-top: 28px;}
}
.c-list {
    padding: 0 16px;
    margin-top: 8px;
    text-align: left;
}
.c-list__item {
    position: relative;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 500;
}
.c-list__item::before {
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--Primary-Color-Black);
    border-radius: 50%;
    content: "";
}
.c-list--info {
    display: flex;
    justify-content: center;
    margin-top: 80px;
    padding: 0;
}
.c-list--info .c-list__item {
    position: relative;
    padding-left: 20px;
    font-weight: 400;
    color: var(--Secondary-Color-Black_666666);
}
.c-list--info .c-list__item::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "※";
    background-color: transparent;
    width: auto;
    height: auto;
}
.c-list--light .c-list__item {color: var(--Primary-Color-White);}
.c-list--light .c-list__item::before { background: var(--Primary-Color-White); }
.c-btn--bottom {
    margin-top: 80px;
    text-align:center;
}
@media screen and (max-width: 1023px) {
    .c-list {padding: 0;}
    .c-list--info {margin-top: 44px;}
    .c-btn--bottom { margin-top: 44px; }
}

/* tab  */
.c-tab__list {display: flex; }
.c-tab__item {
    flex: 0 1 100%;
    border: 1px solid var(--Secondary-Color-Black_777777);
    border-right: none;
}
.c-tab__item:last-child {border-right: 1px solid var(--Secondary-Color-Black_777777);}
.c-tab__item.on {
    border: 1px solid var(--Primary-Color-Black);
    background-color: var(--Primary-Color-Black);
}
.c-tab__link {
    display: block;
    padding: 11px 32px;
    font-size: 16px;
    font-family: var(--font-text);
    text-align: center;
    color: var(--Secondary-Color-Black_777777);
}
.c-tab__item.on .c-tab__link {
    font-weight: 700;
    color: var(--Primary-Color-White);
}
.c-tab__item.on .c-tab__link:focus-visible {
    outline: 3px dashed var(--Primary-Color-White);
    outline-offset: -2px;
    color: var(--Primary-Color-White);
}
.c-tab__item .c-tab__link:focus-visible {
    font-weight: 700;
    outline: 3px dashed var(--Primary-Color-Black);
    color: var(--Primary-Color-Black);
}
.c-tab__content { margin-top: 40px; }
.c-tab__panel { display: none; }
.c-tab__panel.on { display: block; }
/* tab--border-w */
.c-tab--border-w .c-tab__item { border-color: var(--Primary-Color-White); }
.c-tab--border-w .c-tab__link { 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--Primary-Color-White)
}
.c-tab--border-w .c-tab__item.on {background-color: transparent;}
.c-tab--border-w .c-tab__item.on .c-tab__link {
    background-color: var(--Primary-Color-White);
    color: var(--Primary-Color-Black);
}
.c-tab--border-w .c-tab__item .c-tab__link:focus-visible {
    font-weight: 700;
    outline: 3px dashed var(--Primary-Color-White);
    outline-offset: -2px;
    color: var(--Primary-Color-White);
}
.c-tab--border-w .c-tab__item.on .c-tab__link:focus-visible {
    outline-color: var(--Primary-Color-Black);
    color: var(--Primary-Color-Black);
}
/* tab--border */
.c-tab--xs .c-tab__list {
    --size: 154px;
    width: calc(var(--size) * 3);
    margin: 0 auto;
}
.c-tab--sm .c-tab__list {
    --size: 304px;
    width: calc(var(--size) * 2);
    margin: 0 auto;
}
.c-tab--sm-row .c-tab__list {
    --size: 155px;
    width: calc(var(--size) * 3);
    margin: 0 auto;
}
.c-tab--md .c-tab__list {
    --size: 221px;
    width: calc(var(--size) * 3);
    margin: 0 auto;
}
/* tab - underline */
.c-tab--underline .c-tab__item {
    position: relative;
    flex: 1;
    border: none;
}
.c-tab--underline .c-tab__item:last-child {border: none;}
.c-tab--underline .c-tab__item::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--Secondary-Color-Black_Natural_30);
}
.c-tab--underline .c-tab__link {
    position: relative;
    text-align: center;
    padding: 11px 0;
    font-size: 32px;
    font-family: var(--font-head);
    font-weight: 700;
    line-height: var(--lh-base);
    color: var(--Secondary-Color-Black_Natural_30);
}
.c-tab--underline .c-tab__item.on { background-color: transparent; }
.c-tab--underline .c-tab__item.on .c-tab__link { color: var(--Primary-Color-Black); }
.c-tab--underline .c-tab__item.on::after {
    height: 4px;
    background-color: var(--Primary-Color-Black);
}
/* flag */
.c-tab--flag .c-tab__list { justify-content: center }
.c-tab--flag .c-tab__item {
    flex: unset;
    width: 240px;
}
.c-tab--flag .c-tab__link {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 11px 5px;
    text-align: left;
}
.c-tab--flag .c-tab__flag {
    display: flex;
    width: 36px;
    height: 24px;
}
.c-tab--flag .c-tab__text {
    flex: 0 1 auto;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 500;
}
.c-tab--flag .on .c-tab__text {font-weight: 700;}
@media screen and (max-width: 1023px) {
    .c-tab__list {
        flex-direction: column;
        width: 100%;
    }
    .c-tab__item {
        border-bottom: none;
        border-right: 1px solid var(--Primary-Color-Black)
    }
    .c-tab__item:last-child { border-bottom: 1px solid var(--Primary-Color-Black)}
    .c-tab--border-w .c-tab__list { flex-direction: column; }
    .c-tab--border-w .c-tab__item {
        border-bottom: none;
        border-right: 1px solid var(--Primary-Color-White);
    }
    .c-tab--border-w .c-tab__item:last-child { border-bottom: 1px solid var(--Primary-Color-White); }
    .c-tab--sm .c-tab__list {width: 100%;}
    .c-tab--sm-row .c-tab__list {
        flex-direction: row;
        width: 100%;
    }
    .c-tab--sm-row .c-tab__item {
        flex:1;
        border-right: none;
        border-bottom: 1px solid var(--Primary-Color-Black);
    }
    .c-tab--sm-row .c-tab__item:last-child {border-right: 1px solid var(--Primary-Color-Black)}
    .c-tab--xs .c-tab__list {width: 100%;}
    .c-tab--md .c-tab__list {width: 100%;}
    .c-tab--md .c-tab__item { border-right: 1px solid var(--Secondary-Color-Black_777777) }
    .c-tab--md .c-tab__item:last-child { border-bottom: 1px solid var(--Secondary-Color-Black_777777) }
    .c-tab--underline .c-tab__list { flex-direction: row }
    .c-tab--underline .c-tab__link {
        padding: 8px 0;
        font-size: 16px;
        font-family: var(--font-text);
    }
    .c-tab--underline .c-tab__item { flex: 1 0 auto; }
    .c-tab--underline .c-tab__item::after { height: 1px; }
    .c-tab--underline .c-tab__item.on::after { height: 3px; }
    .c-tab--flag .c-tab__list {padding: 0 25px}
    .c-tab--flag .c-tab__item {width: 100%;}
    .c-tab--flag .c-tab__link {
        gap: 8px;
        padding: 11px 32px
    }
    .c-tab--flag .c-tab__text {
        flex: 0 1 200px;
        font-weight: 500;
    }
    .c-tab--flag .on .c-tab__text { font-weight: 700; }
}

/* c-card */
.c-card {
    position: relative;
    width: 100%;
    height: 100%;
}
.c-card--padded .c-card__title,
.c-card--padded .c-card__subtitle,
.c-card--padded .c-card__desc {padding:0 16px}
.c-card__media { position: relative; }
.c-card__image {}
.c-card__video {
    width: 100%;
    height: 100%;
}
.c-video-player {
    position: relative;
    aspect-ratio:  16/9;
}
.c-video-player__iframe { 
    position: relative;
    width: 100%;
    height: 100%;
}
.c-video-player__thumbs {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.c-video-player__thumbs img {
    object-fit: contain;
}
.c-video-player__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
}
.c-video-player__play .c-btn-play {}
.c-video-player__play .c-btn-play::before {
    content: "";
    display: block;
    width: 92px;
    height: 92px;
    background: url(/inc/images/icon/icon-play-video.svg) no-repeat center center / 100%;
}
.c-video-player__play .c-btn-play--lg::before {
    width: 138px;
    height: 138px;
}
.c-card__body {}
.c-card__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    --gap-2: 24px;
    row-gap: 40px;
    column-gap: var(--gap-2);
}
.c-card__media + .c-card__list {margin-top: 40px;}
.c-card__list-item {
    width: calc((100% - var(--gap-2) * 2) / 2);
    padding: 0 16px;
}
.c-card__list--3col .c-card__list-item {
    width: calc((100% - var(--gap-2) * 2) / 3);
}
.c-card__list-desc {margin-top: 4px;}
.c-card__list--square {
    padding: 0 16px;
    margin-top: 8px;
    text-align: left;
    counter-reset: list-num;
    column-gap: 12px;
}
.c-card__list--square .c-card__list-item {
    display: flex;
    position: relative;
    flex-direction: column;
    padding-left: 52px;
    align-items: flex-start;
}
.c-card__list--square .c-card__list-item::before {
    content: '';
    display: inline-flex;
    position: absolute;
    left: 0;
    top: 4px;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 20px;
    font-family: var(--font-head);
    font-weight: 700;
    background-color: var(--Primary-Color-Red);
    color: var(--Primary-Color-White);
    counter-increment: list-num;
    content: counter(list-num, decimal);
}
.c-list__item::before {
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--Primary-Color-Black);
    border-radius: 50%;
    content: "";
}
.c-card__title {}
.c-card__subtitle {}
.c-card__desc {}
.c-card__title + .c-card__desc {margin-top: 4px;}
.c-card--reverse {}
.c-card--horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
.c-card--horizontal-reverse {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
.c-card--horizontal-reverse .c-card__media { flex: 1 0 49.35%; }
.c-card--horizontal-reverse .c-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-card--horizontal-left {}
.c-card--horizontal-right {}
.c-card--overlay {}
.c-card--overlay .c-card__media {
    position: relative;
    width: 100%;
    height: auto;
}
.c-card--overlay .c-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-card--overlay .c-card__body {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 0;
}
.c-card--overlay .c-card__body--center {
    align-items: center;
    justify-content: space-between;
}
.c-card--overlay .c-card__body--left {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 0 136px 60px;
}
.c-card--overlay .c-card__buttons {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}
/* c-card--subgrid */
.flex-layout:has(.c-card--subgrid) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: var(--gap-2);
    row-gap: 0;
}
.c-card--subgrid {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    width: auto !important;
}
.c-card--block .c-card__body {
    min-height:262px;
    padding: 20px 12px 40px 20px;
    background-color: var(--Primary-Color-White);
}
.c-card--block .c-card__title { color: var(--Primary-Color-Red); }
.c-card--block .c-card__desc { margin-top: 12px; }
.c-card--block .btn-wrap { margin-top: 24px; }
@media screen and (max-width: 1023px) {
    .c-card__list {
        flex-direction: column;
        row-gap: 28px;
    }
    .c-card__media + .c-card__list {margin-top: 28px;}
    .c-card__list-item {
        width: 100%;
        padding: 0 0 28px;
        border-bottom: 1px solid var(--Line-Color-Line_02);
    }
    .c-card__list-item:last-child {border: none;}
    .c-card__list--square {
        padding: 0;
        text-align: left;
    }
    .c-card__list--square .c-card__list-item { padding-left: 43px; }
    .c-card__list--square .c-card__list-item::before {
        top: 0;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    .c-card__list--square .c-card__list-item:last-child { border-bottom: 1px solid var(--Line-Color-Line_02); }
    .c-card__list--3col .c-card__list-item { width: 100% }
    .c-card--padded .c-card__title,
    .c-card--padded .c-card__subtitle,
    .c-card--padded .c-card__desc {padding:0}
    .c-card--padded .c-card__group + .c-card__group {padding-top: 8px;}
    .c-video-player__play .c-btn-play::before ,
    .c-video-player__play .c-btn-play--lg::before {
        width: 67px;
        height: 67px;
    }
    .c-card--horizontal-reverse {
        gap: 28px;
        flex-direction: column-reverse;
        text-align: center;
    }
    .c-card--overlay .c-card__body--left {padding: 0 0 80px 24px;}
    .c-card--overlay .c-card__buttons {margin-top: 24px;}
    /* c-card--subgrid */
    .flex-layout--2col:has(.c-card--subgrid) {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 44px;
    }
    .c-card--subgrid {
        grid-row: auto;
        grid-template-rows: auto;
    }
    .c-card--block .c-card__body {
        min-height:262px;
        padding: 20px 12px 40px 20px;
        background-color: var(--Primary-Color-White);
    }
    .c-card--block .c-card__title { color: var(--Primary-Color-Red); }
    .c-card--block .c-card__desc { margin-top: 12px; }
    .c-card--block .btn-wrap { margin-top: 24px; }
}

/* table */
table {border-collapse: collapse;}
/* swiper */
/* swiper common */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide .mo-only { display: none; }
.swiper-bottom-wrap {
    width: calc(100% - 120px);
    position: absolute;
    bottom: 60px;
    left: 50px;
}
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0; 
    display: inline-block;
    content: ""; 
    width: 100%; 
    height: 100%;
}
.swiper-button-next:after { background: url(/inc/images/icon/icon-arrow-box_right.svg) no-repeat center top / 100%; }
.swiper-button-prev:after { background: url(/inc/images/icon/icon-arrow-box_left.svg) no-repeat center top / 100%; }
.swiper-button-prev:hover::after { background-image: url(/inc/images/icon/icon-arrow-box-red_left.svg); }
.swiper-button-next:hover::after { background-image: url(/inc/images/icon/icon-arrow-box-red_right.svg); }
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled { display: none; }
.swiper .swiper-status-wrap {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.swiper-status-wrap .btn-wrap {
    display: flex;
    margin-left: 24px;
}
.swiper-status-wrap .btn-wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--Primary-Color-Black);
    opacity: 0.5;
    border-radius: 2px;
}
.swiper-status-wrap .btn-wrap .btn::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-size: contain;
}
.swiper-status-wrap .btn-wrap .btn-play::before { background-image: url(/inc/images/icon/icon-play_white.svg) }
.swiper-status-wrap .btn-wrap .btn-play.on::before { background-image: url(/inc/images/icon/icon-pause_white.svg); }
.swiper .swiper-status-wrap .swiper-pagination,
.swiper .swiper-status-wrap .swiper-pagination-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    margin-left: 6px;
    flex: 0;
}
.swiper .swiper-pagination-bullet {
    width: 8px;
    height: 4px;
    border-radius: 0;
    transition: width 0.3s;
    opacity: 0.5;
    position: relative;
    background: var(--Primary-Color-Black);
}
.swiper .swiper-pagination-bullet:not(:last-child) { margin: 0 6px 0 0 !important; }
.swiper .swiper-pagination-bullet:last-child { margin: 0 !important; }
.swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 84px;
    background: var(--Primary-Color-Red);
}
.swiper .swiper-pagination-custom .swiper-pagination-bullet-active .seek-bar {
    display: block;
    --time: 0;
    z-index: 1;
    height: 4px;
    width: calc(var(--time));
    background: var(--Primary-Color-Red);
}
.swiper-bottom-wrap .btn-wrap {
    display: flex;
    margin-left: 24px;
}
.swiper-bottom-wrap .btn-wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--Primary-Color-Black);
    border-radius: 2px;
    opacity: 0.5;
}
.swiper-bottom-wrap .btn-wrap .btn:not(:last-child) { margin-right: 8px; }
.swiper-bottom-wrap .btn-wrap .btn::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-size: contain;
}
.swiper-bottom-wrap .btn-wrap .btn-play::before { background-image: url(/inc/images/icon/icon-play_white.svg); }
.swiper-bottom-wrap .btn-wrap .btn-play.on::before { background-image: url(/inc/images/icon/icon-pause_white.svg); }
.swiper-bottom-wrap .btn-wrap .btn-sound::before { background-image: url(/inc/images/icon/icon-soundoff_white.svg); }
.swiper-bottom-wrap .btn-wrap .btn-sound.on::before { background-image: url(/inc/images/icon/icon-soundon_white.svg); }
@media screen and (max-width: 1023px) {
    .swiper .swiper-button-next,
    .swiper .swiper-button-prev { display: none; }
    .swiper-slide .pc-only { display: none; }
    .swiper-slide .mo-only { display: block; }
}

/* c-swiper--kv */
.c-swiper--kv {
    position: relative;
    height: calc(var(--vh, 1vh) * 100 - 70px);
    margin: 0 auto;
    background-color: #1c1c1c;
}
.c-swiper--kv .swiper-slide {
    display: flex;
    justify-content: center;
}
.c-swiper--kv .swiper-slide .c-media {
    width: 100%;
}
.c-swiper--kv .swiper-slide .c-media__image {height: 100%;}
.c-swiper--kv .swiper-slide .c-media__image img {height: 100%;}
.c-swiper--kv .c-text {
    position: absolute;
    bottom: 136px;
    left: 60px;
    color: var(--Primary-Color-White);
}
.c-swiper--kv .c-text__title {
    font-size: 68px;
    line-height: var(--lh-base);
    font-weight: 700;
}
.c-swiper--kv .c-text__desc {
    margin-top: 12px;
    font-size: 20px;
    line-height:  var(--lh-lg);
    font-weight: 500;
}
.c-swiper--kv .c-btn {margin-top: 32px;}
.c-swiper--kv .c-btn .btn:not(:last-child) {margin-right: 12px;}
.c-swiper--kv .swiper-status-wrap {
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
}
.c-swiper--kv .swiper-bottom-wrap .swiper-button-next,
.c-swiper--kv .swiper-bottom-wrap .swiper-button-prev {
    width: 36px;
    height: 36px;
    opacity: 0.5;
}
.c-swiper--kv .swiper-bottom-wrap .swiper-button-prev:after,
.c-swiper--kv .swiper-bottom-wrap .swiper-button-next:after {
    width: 100%;
    height: 100%;
    font-size: 0;
}
.c-swiper--kv .swiper-bottom-wrap .swiper-button-prev:after { background-image: url(/inc/images/icon/icon-arrow01_left_white.svg);}
.c-swiper--kv .swiper-bottom-wrap .swiper-button-next:after { background-image: url(/inc/images/icon/icon-arrow01_right_white.svg);}
.c-swiper--kv .swiper-pagination-bullet {background: var(--Primary-Color-White);}
.c-swiper--kv .swiper-pagination-bullet-active {
    height: 4px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1023px) {
    .c-swiper--kv .swiper-slide .c-media__image img {min-height: 640px;}
    .c-swiper--kv .c-text {
        bottom: 80px;
        left: 24px;
    }
    .c-swiper--kv .c-text__title {
        font-size: 30px;
        line-height: 42px;
    }
    .c-swiper--kv .c-text__desc {margin-top: 9px;}
    .c-swiper--kv .c-btn {margin-top: 24px;}
    .c-swiper--kv .c-btn .btn:not(:last-child) {margin-right: 8px;}
    .c-swiper--kv .swiper-bottom-wrap {
        position: absolute;
        width: calc(100% - 120px);
        bottom: 40px;
        left: 50px;
    }
    .c-swiper--kv .swiper-bottom-wrap {
        position: absolute;
        width: calc(100% - 132px);
        bottom: 20px;
        left: 66px;
        margin: 0 auto;
    }
    .c-swiper--kv .swiper-status-wrap .btn-wrap .btn {
        width: 28px;
        height: 28px;
    }
}
/* c-swiper--gallery */
.c-swiper--gallery { --swiper-navigation-top-offset: -40px; }
.c-swiper--gallery .swiper-wrapper {
    align-items: center;
    margin: 0 0 60px;
}
.c-swiper--gallery .swiper-slide { width: 1196px; }
.c-swiper--gallery .img-area .btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    bottom: 40px;
    right: 40px;
}
.c-swiper--gallery .img-area .btn span + span {margin-left: 12px;}
.c-swiper--gallery .swiper-bottom-wrap {
    z-index: 10;
    top: 50%;
    left: 50%;
    bottom: revert;
    width: calc(100% - (100% - 1196px));
    transform: translate(-50%, -50%);
}
.c-swiper--gallery .swiper-button-prev,
.c-swiper--gallery .swiper-button-next {
    width: 80px;
    height: 80px;
}
@media screen and (max-width: 1023px) {
    .c-swiper--gallery .swiper-wrapper { margin-bottom: 40px; }
    .c-swiper--gallery .img-area .btn {
        bottom: 20px;
        right: 20px;
    }
}
/* c-swiper--single */
.c-swiper--single .swiper-bottom-wrap {
    top: 202px;
    left: 0;
    width: 100%;
    bottom: auto;
}
.c-swiper--single .swiper-button-prev,
.c-swiper--single .swiper-button-next {margin-top: 0;}
.c-swiper--single .swiper-button-prev:after { background-image: url(/inc/images/icon/icon-arrow-box-white_left.svg); }
.c-swiper--single .swiper-button-next:after { background-image: url(/inc/images/icon/icon-arrow-box-white_right.svg); }
.c-swiper--single .swiper-status-wrap {
    bottom: 0;
    height: fit-content;
}
.c-swiper--single .swiper-pagination-bullet {background-color: var(--Primary-Color-White);}
.c-swiper--single .swiper-pagination-bullet-active {background-color: var(--Primary-Color-Red);}
/* c-swiper--multi-3 */
.c-swiper--multi-3 .swiper-wrapper {padding-bottom: 115px;}
.c-swiper--multi-3 .swiper-wrapper a {width: 100%;}
.c-swiper--multi-3 .collection_swiper-txt {
    margin-top: 20px;
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--Primary-Color-White);
}
.c-swiper--multi-3 .swiper-bottom-wrap {
    width: 100%;
    left: 0;
    top: 35%;
    bottom: auto;
}
.c-swiper--multi-3 .swiper-pagination-bullet {
    background-color: var(--Primary-Color-White); }
.c-swiper--multi-3 .swiper-pagination-bullet-active { background-color: var(--Primary-Color-Red); }
@media screen and (max-width: 1023px) {
    .c-swiper--multi-3 .swiper-wrapper {padding-bottom: 38px;}
    .c-swiper--multi-3 .collection_swiper-txt {
        margin-top: 12px;
        font-size: 18px;
    }
}
/* c-swiper--multi-3-loop */
.c-swiper--multi-3-loop { padding: 0 0 46px }
.c-swiper--multi-3-loop .swiper-slide{ max-width: 464px; }
.c-swiper--multi-3-loop .swiper-bottom-wrap {
    top: 0;
    left: 0;
    width: 100%;
}
.c-swiper--multi-3-loop .swiper-button-prev,
.c-swiper--multi-3-loop .swiper-button-next  {top: 37%}
@media screen and (max-width: 1023px) {
    .c-swiper--multi-3-loop { padding: 0 0 34px }
}
/* c-swiper--video */
.c-swiper--video {
    width: 100%;
    height: auto;
    padding-bottom: 64px;
}
.c-swiper--video .swiper-pagination {
    display: flex;
    justify-content: center;
    bottom: 0;
}
@media screen and (max-width: 1023px) {
    .c-swiper--video {padding-bottom: 40px;}
}
/* c-swiper--video-main */
.c-swiper--video-main .video-box {
    position: relative;
    width: 100%;
}
.c-swiper--video-main .swiper-img-area {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: var(--Primary-Color-Black);
}
.c-swiper--video-main .swiper-img-area img {object-fit: contain;}
.c-swiper--video-main .btn-option {
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:15;
}
.c-swiper--video-main .btn-video-play {vertical-align: top;}
.c-swiper--video-main .btn-video-play::before {
    content: "";
    display: block;
    width: 138px;
    height: 138px;
    background: url(/inc/images/icon/icon-play-video.svg) no-repeat center center / 100%;
}
.c-swiper--video-main .btn-video-play:hover::before {background-image: url(/inc/images/icon/icon-play-video-hover.svg);}
.c-swiper--video-main .swiper-button-prev {left:0}
.c-swiper--video-main .swiper-button-next {right:0}
.c-swiper--video-main .swiper-status-wrap {bottom:5.43%;}
.c-swiper--video-main .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {background-color: var(--Primary-Color-White)}
@media screen and (max-width: 1023px) {
    .c-swiper--video-main {
        margin: 0 24px;
        padding-bottom: 18px;
    }
    .c-swiper--video-main .btn-video-play::before {
        width: 67px;
        height: 67px;
    }
    .c-swiper--video-main .swiper-status-wrap {bottom:0}
    .c-swiper--video-main .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {background-color: var(--Primary-Color-Black);}
}
/* c-swiper--video-thumb */
.c-swiper--video-thumb {
    position:absolute;
    bottom:8.33%;
    left:50%;
    transform: translateX(-50%);
    width:34.16%;
}
.c-swiper--video-thumb .swiper-slide{
    width:auto;
    cursor: pointer;
}
.c-swiper--video-thumb .swiper-slide:not(.swiper-slide-thumb-active) .el-visual::before{
    content:'';
    display:block;
    position:absolute;
    top:0;right:0;
    bottom:0;left:0;
    background-color: rgba(0, 0, 0, 0.4);
}
.c-swiper--video-thumb .swiper-slide .el-visual:hover::before{ background-color:var(--Primary-Color-Black); }
@media screen and (max-width: 1023px) {
    .c-swiper--video-thumb {
        position:relative;
        bottom:0;
        left:0;
        right:0;
        transform: translateX(0);
        width:100%;
        margin:30px 0 0;
        padding:0 24px;
    }
    .c-swiper--video-thumb .swiper-slide {
        width:26.66%;
        margin-right:3.05%;
        cursor: pointer;
    }
}
/* c-swiper--multi-navi */
.c-swiper--multi-navi {padding-bottom: 64px;}
.c-swiper--multi-navi .swiper-slide {text-align: left;}
.c-swiper--multi-navi .c-card__body {padding: 20px 16px 0; }
.c-swiper--multi-navi .c-card__desc {
    font-family: var( --font-text);
    display: flex;
    flex-direction: column;
    max-height: 90px;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    font-size: 16px;
    font-weight: 500;
    color: var(--Primary-Color-Black);
    margin-top: 5px;
    padding-right: 8px;
    word-break: keep-all;
}
.c-swiper--multi-navi .c-card__desc span {margin-top: 4px;}
.c-swiper--multi-navi .c-card__desc::-webkit-scrollbar {width: 4px;}
.c-swiper--multi-navi .c-card__desc::-webkit-scrollbar-thumb {
    background: var(--Secondary-Color-Black_999999);
    border-radius: 100px;
}
.c-swiper--multi-navi .swiper-bottom-wrap {
    z-index: 10;
    width: 100%;
    top: 144px;
    left: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
}
.c-swiper--multi-navi .swiper-button-next, 
.c-swiper--multi-navi .swiper-button-prev {
    width: 60px;
    height: 60px;
    margin-top: 0;
}
@media screen and (1024px <= width <= 1600px) {
    .c-swiper--multi-navi .c-card__title {font-size: 2.15vw;}
    .c-swiper--multi-navi .swiper-bottom-wrap {top: 9vw;}
    .c-swiper--multi-navi .swiper-button-next, 
    .c-swiper--multi-navi .swiper-button-prev {
        width: 4vw;
        height: 4vw;
    }
}
@media screen and (max-width: 1023px) {
    .c-swiper--multi-navi .models-design .c-btn {width: 100%}
    .c-swiper--multi-navi .models-design .c-btn .btn {
        display: block;
        width: calc(100% - 48px);
        margin: 0 auto;
    }
    .c-swiper--multi-navi {padding: 0 0 60px 24px;}
    .c-swiper--multi-navi .c-card__body {padding: 28px 8px 0;}
    .c-swiper--multi-navi .c-card__desc {word-break: keep-all;}
    .c-swiper--multi-navi .swiper-status-wrap {height: 24px;}
    .c-swiper--multi-navi .swiper-status-wrap .swiper-pagination-custom {
        margin-left: 0;
        font-size: 16px;
        color: var(--Secondary-Color-Black_777777);
    }
    .c-swiper--multi-navi .swiper-bottom-wrap {
        top: unset;
        bottom: 24px;
        width: calc(100% - 48px);
    }
    .c-swiper--multi-navi .swiper-button-next, 
    .c-swiper--multi-navi .swiper-button-prev {
        display: block;
        width: 24px;
        height: 24px;
        top: 0;
        margin-top: 0;
    }
}

/* c-swiper--schedule */
.c-swiper--schedule {
    width: 100%;
    height: 100%;
    max-width: 1800px;
}
.c-swiper--schedule .swiper-slide {
    position: relative;
    width: 140px;
    transition: width 0.3s ease-out;
}
.c-swiper--schedule .swiper-slide.active { width: 360px; }
.c-swiper--schedule .swiper-button-next {right: 60px;}
.c-swiper--schedule .swiper-button-prev {left: 0;}
/* c-swiper--schedule contents */
.c-swiper--schedule .schedule-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 320px;
    min-height: revert;
    width: 100%;
    max-height: revert;
    font-family: var(--font-head);
    color: var(--Primary-Color-Black);
}
.c-swiper--schedule .schedule-card__cover {
    width: 360px;
    max-width: revert;
    height: 100%;
    max-height: revert;
    opacity: 0;
    transition: opacity 0.2s;
}
.c-swiper--schedule .schedule-card__top {
    z-index: 10;
    position: absolute;
    top: 0;
    padding: 24px 20px;
    text-align: left;
}
.c-swiper--schedule .schedule-card__round {
    z-index: 1;
    font-size: 24px;
    font-weight: 700;
    line-height: var(--lh-lg);
    color: inherit;
}
.c-swiper--schedule .schedule-card__bottom {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    bottom: 0;
    text-align: left;
    height: revert;
    padding: 32px 20px;
    background-color: transparent;
}
.c-swiper--schedule .schedule-card__month {
    font-size: 20px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.c-swiper--schedule .schedule-card__title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    line-height: var(--lh-lg);
}
.c-swiper--schedule .schedule-card__subtitle {
    margin-top: 4px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 500;
    line-height: var(--lh-lg);
    letter-spacing: -0.1px;
    color: inherit;
    opacity: 0.8;
}
/* blue */
.c-swiper--schedule .schedule-card--blue {
    background: var(--Primary-Color-Blue);
    color: var(--Primary-Color-Black)
}
/* black */
.c-swiper--schedule .schedule-card--black {
    background: var(--Primary-Color-Black);
    color: var(--Primary-Color-White)
}
/* active */
.c-swiper--schedule .active .schedule-card__cover {opacity: 1;}
.c-swiper--schedule .active .schedule-card__top {color: var(--Primary-Color-White);}
.c-swiper--schedule .active .schedule-card__bottom {color: var(--Primary-Color-White);}
@media screen and (min-width: 1024px) {
    /* only pc */
    /* hover */
    .c-swiper--schedule .schedule-card:hover,
    .c-swiper--schedule .schedule-card:focus {
        background-color: var(--Primary-Color-Red);
        color: var(--Primary-Color-White);
    }
}
@media screen and (max-width: 1023px) {
    .swiper-container:has(.c-swiper--schedule) {margin-left: 24px;}
    .c-swiper--schedule .swiper-slide {
        position: relative;
        width: 96px;
    }
    .c-swiper--schedule .swiper-slide.active {width: 204px;}
    .c-swiper--schedule .swiper-slide:first-child { margin-left: 0; }
    /* c-swiper--schedule contents */
    .c-swiper--schedule .schedule-card { height: 265px; }
    .c-swiper--schedule .schedule-card__top { padding: 20px 12px }
    .c-swiper--schedule .schedule-card__round {
        font-size: 20px;
        line-height: var(--lh-lg);
    }
    .c-swiper--schedule .schedule-card__bottom { padding: 12px; }
    .c-swiper--schedule .schedule-card__month { font-size: 18px; }
    .c-swiper--schedule .schedule-card__title { font-size: 24px; }
    .c-swiper--schedule .schedule-card__subtitle {font-size: 16px }
}

/* c-swiper--mo-half */
.c-swiper--mo-half .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 80px;
    --column-gap: 24px;
    column-gap: var(--column-gap);
}
.c-swiper--mo-half .swiper-slide {
    display: flex;
    flex-direction: column;
    width: calc((100% - var(--column-gap) * 2) / 3);
}
.c-swiper--mo-half .c-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: var(--Line-Color-Line_e6e6e6);
}
.c-swiper--mo-half .c-card__body {
    padding: 0 16px;
    margin-top: 20px;
}
.c-swiper--mo-half .c-card__desc li {
    margin-top: 4px;
}
@media screen and (max-width: 1023px) {
    .c-swiper--mo-half {
        overflow: visible;
        padding-left: 24px;
        margin-right: 24px;
    }
    .c-swiper--mo-half .swiper-wrapper {
        flex-direction: initial;
        justify-content: initial;
        flex-wrap: initial;
        gap: 0;
        padding-bottom: 36px;
    }
    .c-swiper--mo-half .swiper-slide {
        display: initial;
        width: 90%;
    }
    .c-swiper--mo-half .swiper-status-wrap {
        display: block;
        position: relative;
        width: 100%;
        height: 24px;
    }
    .c-swiper--mo-half .swiper-pagination {
        height: 100%;
        padding-top: 1px;
        color: var(--Secondary-Color-Black_777777);
        font-weight: 500;
    }
    .c-swiper--mo-half .swiper-button-next,
    .c-swiper--mo-half .swiper-button-prev {
        display: block;
        height: 24px;
        width: 24px;
        top: 0;
        margin-top:0;
    }
    .c-swiper--mo-half .swiper-button-disabled { opacity: 0; }
}

/* form */
/* form - search */
.c-search {
    overflow:hidden;
    max-width: 708px;
    margin: 0 auto;
}
.c-search__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    padding: 28px 4px 27px 8px;
    color: var(--Primary-Color-Black);
    border-bottom: 4px solid var(--Primary-Color-Black);
}
input[type='text'].c-search__field {
    width: 100%;
    border: 0;
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: var(--lh-base);
}
input[type='text'].c-search__field::placeholder {
    font-family: var(--font-head);
    font-size: 32px;
    line-height: var(--lh-base);
    color: var(--Secondary-Color-Black_777777);
}
.c-search__box .btn-icon,
.clear-text .btn-icon {
    width: 100%;
    height: 100%;
}
.c-search__clear, 
.clear-text {
    display: flex;
    align-items: center;
}
.clear-text .btn-reset,
.c-search__clear .btn-reset {
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
}
.clear-text .btn-reset:hover,
.clear-text .btn-reset:active,
.c-search__clear .btn-reset:hover,
.c-search__clear .btn-reset:active { background-color: var(--Primary-Color-Red) }
.c-search__btn .btn-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--Primary-Color-Black);
}
.clear-text .btn-search:hover,
.clear-text .btn-search:active,
.c-search__btn .btn-search:hover,
.c-search__btn .btn-search:active { background-color: var(--Primary-Color-Red) }
/* form - search sm */
.c-search--sm {
    max-width: 300px;
    margin: unset;
}
.c-search--sm .c-search__box {
    column-gap: 10px;
    padding: 10px 8px 6px;
}
.c-search--sm input[type='text'].c-search__field {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 500;
    line-height: var(--lh-base);
    background-color: transparent;
}
.c-search--sm input[type='text'].c-search__field::placeholder {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: var(--lh-base);
}
.c-search--sm .c-search__clear .btn-reset {
    width: 20px;
    height: 20px;
}
.c-search--sm .btn-search {
    width: 24px;
    height: 24px;
}
/* form - search full */
.c-search--full {
    width: 100%;
    max-width: unset;
}
.c-search__result {
    padding: 140px 0 56px;
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    line-height: var(--lh-base);
    text-align: center;
}
.c-search__result span { color: var(--Primary-Color-Red); }

@media screen and (max-width: 1023px) {
    .c-search__box,
    .clear-text {
        padding: 12px 4px 9px 0;
        border-bottom-width: 3px;
    }
    input[type='text'].c-search__field { font-size: 20px; }
    input[type='text'].c-search__field::placeholder { font-size: 20px; }
    .c-search__btn .btn-search,
    .clear-text .btn-search {
        width: 36px;
        height: 36px;
    }
    .c-search__btn .btn-search [class*='btn-icon'],
    .clear-text .btn-search [class*='btn-icon'] {
        width: 18px;
        height: 18px;
    }
    .c-search--sm {max-width: 100%;}
    .c-search--sm .btn-search {
        width: 24px;
        height: 24px;
    }
    .c-search__btn .btn-search [class*='btn-icon'],
    .clear-text .btn-search [class*='btn-icon'] {
        width: 16px;
        height: 16px;
    }
    .c-search__result {
        padding: 76px 0 0;
        font-size: 24px;
        line-height: var(--lh-lg);
    }
}
/* c-pagination */
.c-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 80px;
}
.c-pagination__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.c-pagination__item button {
    width: 48px;
    height: 48px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-text);
    color: var(--Secondary-Color-Black_777777);
}
.c-pagination__item button:hover { color: var(--Primary-Color-Black); }
.c-pagination__item--active button,
.c-pagination__item--active button:hover { color: var(--Primary-Color-Red); }
.c-pagination__prev,
.c-pagination__next {
    width: 46px;
    height: 46px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid var(--Line-Color-Line_01);
} 
.c-pagination__prev {background-image: url(/inc/images/icon/icon-arrow01_left_gray_12.svg);}
.c-pagination__next {background-image: url(/inc/images/icon/icon-arrow01_right_gray_12.svg);}
.c-pagination__prev:hover ,
.c-pagination__next:hover { border-color: var(--Primary-Color-Black); }
.c-pagination__prev:disabled {background-image: url(/inc/images/icon/icon-arrow01_left_disabled_12.svg);}
.c-pagination__next:disabled {background-image: url(/inc/images/icon/icon-arrow01_right_disabled_12.svg)}
.c-pagination__prev:disabled:hover,
.c-pagination__next:disabled:hover {border-color: var(--Line-Color-Line_01);}
@media screen and (max-width: 1023px) {
    .c-pagination {position:relative;gap: 0;}
    .c-pagination__prev,
    .c-pagination__next {
        position:absolute;
        top:0;
        width: 48px;
        height: 48px;
    }
    .c-pagination__prev {
        left:0;
    }
    .c-pagination__next {
        right:0;
    }
}
/* spec */
.content-header + .content-body:has(.c-spec-detail) { padding-top: 40px; }
.c-spec-detail__media {
    width: 952px;
    margin: 0 auto;
}
.c-spec-detail__body {
    max-width: 864px;
    margin: 20px auto 0 auto;
}
.c-spec-detail__item {
    display: flex;
    align-items: center;
    padding: 32px 0;
    font-family: var(--font-text);
    line-height: var(--lh-lg);
    border-bottom: 1px solid var(--Line-Color-Line_02);
}
.c-spec-detail__item:first-child {border-top: 1px solid var(--Line-Color-Line_02);}
.c-spec-detail__label {
    flex: 0 0 222px;
    font-size: 20px;
    font-weight: 500;
}
.c-spec-detail__data {
    font-size: 24px;
    font-weight: 700;
}
.c-spec-detail__value--separate { margin-top: 8px; }
.c-spec-detail__desc {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
}
.c-spec-detail__notice {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 400;
    color: var(--Secondary-Color-Black_666666);
}
@media screen and (max-width: 1023px) {
    .content-header + .content-body:has(.c-spec-detail) { padding-top: 28px; }
    .c-spec-detail__media { width: 100%; }
    .c-spec-detail__item {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0;
    }
    .c-spec-detail__label {
        flex: none;
        font-size: 16px;
    }
    .c-spec-detail__data {
        padding: 8px 0 0;
        font-size: 20px;
    }
    .c-spec-detail__value { font-size: 20px }
    .c-spec-detail__desc { font-size: 16px; }
    .c-spec-detail__notice { margin-top: 24px; }
}

/* select */
.selectbox-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}
.selectbox-wrap > div {
    position: relative;
    display: inline-block;
}
.selectbox-trigger {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    min-width: 124px;
    padding: 9px 8px;
    border-bottom: 4px solid var(--Primary-Color-Black);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    line-height: var(--lh-lg);
    cursor: pointer;
}
.selectbox-trigger2 {
    padding: 27px 8px 23px 8px;
    min-width: 240px;
    font-size: 32px;
    line-height: var(--lh-lg);
}
.selectbox-trigger::after,
.selectbox-trigger2::after {
    content: "";
    background: url(/inc/images/icon/icon-arrow01_down.svg) center no-repeat;
    background-size: 100%;
}
.selectbox-trigger::after {
    width: 16px;
    height: 16px;
}
.selectbox-trigger2::after {
    position: absolute;
    width: 36px;
    height: 36px;
    right: 8px;
}
.selectbox-trigger.active::after { transform: rotate(180deg); }
.selectbox-options {
    position: absolute;
    z-index: 3;
    top: 52px;
    /* width: 100%; */
    background-color:var(--Primary-Color-White);
}
.selectbox-trigger2 + .selectbox-options { top: 105px; }
.selectbox-options .option {
    width: 100%;
    min-width: 272px;
    padding: 10px 11px;
    font-weight: 8;
    background-color: var(--Primary-Color-White);
    border-width:1px 1px 0 1px;
    border-color: var(--Primary-Color-Black);
    border-style: solid;
    cursor: pointer;
    text-align: initial;
}
.selectbox-options .option.fw-type03 {font-weight: 700;}
.selectbox-options .option:last-child { border-width: 1px; }
.selectbox-options .option:hover,
.selectbox-options .option:hover button {
    background-color: var(--Secondary-Color-Black_Natural);
    color: var(--Primary-Color-Red);
}
.selectbox-options .option.active {
    background-color:var(--Primary-Color-Red);
    color:var(--Primary-Color-White);
}
.selectbox-overlay,
.moclose-btn { display: none; }
.select-large { height: fit-content; }
.select-large .selectbox-trigger { width: 300px; }
.select-type04 .selectbox-trigger {
    min-width: auto;
    padding: 0;
    border-bottom: 0;
    text-align: right;
}
.select-type04 .selectbox-trigger i > img {
    width: 26px;
    height: 26px;
}
.select-type04 .selectbox-options { top: 36px; }
.select-type04 .selectbox-trigger::after,
.selectbox-wrap.evtLayout-type .selectbox-group > div,
.selectbox-wrap.type-setting .selectbox-trigger::after { display: none; }
.selectbox-wrap.evtLayout-type .selectbox-group > div.on { display: block; }
.selectbox-wrap.type-setting { padding-right:65px; }
.selectbox-wrap.type-setting .selectbox-trigger {
    width:36px;
    min-width: auto;
    height:36px;
    padding:0;
    border: 0;
}
.selectbox-wrap.type-setting .icon-setting {
    display:flex;
    align-items: center;
    justify-content: center;
    gap:4px;
    width:36px;
    height:36px;
}
.selectbox-wrap.type-setting .icon-setting::before,
.selectbox-wrap.type-setting .icon-setting::after { content:''; }
.selectbox-wrap.type-setting .icon-setting::before,
.selectbox-wrap.type-setting .icon-setting::after,
.selectbox-wrap.type-setting .icon-setting span {
    display:block;
    width:6px;
    height:6px;
    border-radius: 50%;
    background-color:var(--Primary-Color-Black);;
}
.selectbox-wrap.type-setting .selectbox-trigger:hover .icon-setting span,
.selectbox-wrap.type-setting .selectbox-trigger:hover .icon-setting::before,
.selectbox-wrap.type-setting .selectbox-trigger:hover .icon-setting::after { background-color: var(--Primary-Color-Red); }
.selectbox-wrap.type-setting .selectbox-options { top:44px; }
.selectbox-wrap.type-setting .selectbox-options .option { min-width:120px; }
.selectbox-wrap.type-setting .selectbox-options .option button {
    width: 100%;
    text-align: left;
}
@media screen and (max-width: 1023px) {
    .selectbox-overlay,
    .moclose-btn { display: block; }
    .selectbox-wrap {
        flex-wrap: wrap;
        gap: 20px 12px;
    }
    .selectbox-wrap > div { width: 100%; }
    .selectbox-trigger2 + .selectbox-options { top: auto; }
    .selectbox-overlay {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--Primary-Color-Black);
        opacity: 50%;
    }
    .moclose-btn {
        position: absolute;
        display: flex;
        justify-content: flex-end;
        top: 0;
        left: 0;
        width: 100%;
        padding: 18px 24px 18px 0;
        border-bottom: 1px solid var(--Line-Color-Line_01);
    }
    .moclose-btn [class*="btn-only-icon"] {
        width: 24px;
        height: 24px;
        border-radius: 0;
    }
    .moclose-btn .btn[class*="btn-only-icon"]:hover,
    .moclose-btn .btn[class*="btn-only-icon"]:active { background-color: transparent; }
    .selectbox-wrap.select-type01,
    .selectbox-wrap.select-type03 > div,
    .selectbox-wrap.select-type02 > div:nth-child(3n),
    .selectbox-trigger {
        width: 100%;
        font-size: 16px;
    }
    .selectbox-wrap.select-type02 > div { width: calc(50% - 6px); }
    .selectbox-options {
        position: fixed;
        z-index:100;
        top: auto;
        bottom: 0;
        width: 100%;
        padding-top: 61px;
    }
    .selectbox-options.options-scroll {
        max-height:65vh;
        overflow-y: auto;
    }
    .selectbox-options .option {
        padding: 19px 48px 19px 24px;
        border-width:0 0 1px 0;
        border-bottom-color: var(--Line-Color-Line_01);
        width: 100%;
    }
    .selectbox-options .option.active,
    .selectbox-options .option:last-child { border-bottom: 0; }
    .selectbox-trigger2 {
        padding: 12px 16px 8px 4px;
        width: 100%;
        font-size: 20px;
        line-height: var(--lh-lg);
    }
    .selectbox-trigger2::after {
        width: 16px;
        height: 16px;
    }
    .select-large .selectbox-trigger { width: 100%; }
    .select-type04 .selectbox-trigger i > img {
        width: 24px;
        height: 24px;
    }
    .select-type04 .selectbox-options { top: auto; }
    .selectbox-wrap.type-setting { padding-right:35px; }
    .selectbox-wrap.type-setting .selectbox-trigger {
        width: 24px;
        height: 24px;
    }
    .selectbox-wrap.type-setting .icon-setting {
        width: 24px;
        height: 24px;
    }
    .selectbox-wrap.type-setting .icon-setting::before,
    .selectbox-wrap.type-setting .icon-setting::after,
    .selectbox-wrap.type-setting .icon-setting span {
        width:4px;
        height:4px;
    }
    .selectbox-wrap.type-setting .selectbox-options {
        position: fixed;
        overflow-y: auto;
        z-index: 3;
        top: auto !important;
        bottom:0;
        max-height: 65% !important;
        padding-bottom: 0 !important;
    }
}

/* c-banner */
.c-banner {
    position: relative;
    max-width: 1600px;
    padding: 0 80px;
    margin-top: 240px;
    margin-left: auto;
    margin-right: auto;
}
.c-banner__link {display: block;}
.gallery-wrap + .content-banner .c-banner {margin-top: 0;}
@media screen and (max-width: 1023px) {
    .c-banner {
        padding: 0 24px;
        margin-top: 152px;
    }
}