@charset "utf-8";
@import url('base.css');

/* 공통 */
.muz-hidden {
    display: none !important;
}

.muz-invisible {
    visibility: hidden !important;
}

.cursor-pointer {
    cursor: pointer;
}

.logo-img {
    max-width: 125px;
}

body {
    font-size: 16px
}

.mt-20 {
    margin-top: 20px;
}

.mt-60 {
    margin-top: 60px;
}

.bb-0 {
    border-bottom: 0 !important;
}

.p-10 {
    padding: 10px;
}

.p-50 {
    padding: 50px;
}

.text-left {
    text-align: left;
}

#wrap {
    /* max-width: 1920px; */
    /* margin: 0 auto; */
}

.mo {
    display: none;
}

.tabl {
    display: none;
}

.mo-tabl {
    display: none;
}

body.scroll_out {
    overflow: hidden;
    height: 100%
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.scroll_out:after {
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 3;
}

.mo-gnb>div {
    display: none;
}

.scroll_out2:after {
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 2;
}

.neue {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
}

.pc-hidden {
    display: block !important;
}

.mobile-hidden {
    display: none !important;
}

.img-inner {
    overflow: hidden;
}

.img-inner img {
    transition: all 0.8s;
    width: 100%;
    /* height:100%; */
}

.img-inner:hover img {
    transform: scale(1.05);
}

section>div h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.scroll-top {
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 1
}

.srh-form {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.srh-form.on {
    top: 0;
    z-index: 5;
    transform: translateY(0);
}

.srh-form form {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.srh-form input {
    border: 0;
    font-size: 16px;
    width: calc(100% - 30px);
    height: 100%;
}

.srh-form .srh-btn02 {
    margin-right: 10px;
}

.srh-form .close_btn {
    width: 20px;
}

.submenubg {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 64px;
    background: #fff;
    display: none;
    opacity: 0;
    z-index: 9
}

.txt-blue {
    color: #1A48C4 !important
}

.txt-red {
    color: #E5433E !important;
}

.span-k {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background-color: #1A48C4;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 13px;
    vertical-align: top;
    font-weight: 500;
}

.spank-div {
    position: relative;
}

.spank-div .span-k {
    position: absolute;
    bottom: -3px;
    right: 0;
}

/* .submenubg:after{display:block;content:'';background-color:red;height:100%;width:100%;position:absolute;top:410px;} */

/* #wrap{padding:15px;} */
header {
    width: 100%;
}

header .header-img p {
    font-size: 54px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
}

header .header-inner {
    transition: transform 0.3s ease;
    height: 64px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    justify-content: space-between;
    padding: 0 48px;
    background-color: #fff;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr 24px 24px auto;
    grid-template-areas: 'area1 area2 area3 area4 area5';
    column-gap: 16px;
}

.not-scroll header .header-inner {
    position: fixed;
    width: 100%;
}

header.scrolled .header-inner {
    position: fixed;
    width: 100%;
    top: -0;
    left: 0;
    z-index: 3;
    transform: translateY(-100%)
}

header .header-inner.hidden {
    transform: translateY(0);
}

header .header-inner>.gnb {
    display: flex;
    grid-area: area1;
    align-self: stretch;
    align-items: center;
}

header .header-inner>.gnb>li {
    padding-right: 60px;
    position: relative;
}

header .header-inner>.gnb>li>a {
    position: relative;
    font-weight: 600;
    display: flex;
    height: 60px;
    align-items: center;
}

header .header-inner>.gnb>li>a:after {
    width: 0;
    transition: width ease .3s;
    content: '';
    display: block;
    position: absolute;
    bottom: 15px;
    left: 0;
}

header .header-inner>.gnb>li:hover>a:after {
    width: 100%;
    height: 3px;
    background: #000;
}

header .header-inner>.gnb>li .submenu {
    position: absolute;
    top: 60px;
    z-index: 10;
    width: 100%;
    left: 0;
    padding-top: 40px;
    height: 420px;
    display: none;
}

header .header-inner>.gnb>li .submenu li {
    margin-bottom: 17px;
}

header .header-inner>.gnb>li .submenu li:last-of-type {
    margin-bottom: 0;
}

header .header-inner>.gnb>li .submenu li a {
    font-size: 14px;
    font-weight: 500;
}

header .header-inner>.gnb>li .submenu li:hover a {
    text-decoration: underline;
}

header .header-inner h1 {
    grid-area: area2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header .header-inner h1 a {
    display: flex;
}

header .header-inner a.srh-btn01 {
    grid-area: area3;
}

header .header-inner a.srh-btn01.off {
    display: none;
}

header.scrolled .header-inner a.srh-btn01.on {
    display: none;
}

header.scrolled .header-inner a.srh-btn01.off {
    display: block;
}

header .header-inner a.login-btn {
    grid-area: area4;
}

header .header-inner a.top-instagram-btn {
    display: none;
}

header .header-inner .social {
    border-left: 1px solid #f0f0f0;
    padding-left: 20px;
    grid-area: area5;
    display: flex;
    gap: 20px;
}

header .header-inner .social li {}

.not-scroll .container {
    padding-top: 60px
}

section {
    padding: 48px;
    max-width: 1920px;
    margin: 0 auto;
}

.ad-div {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    padding: 16px;
}

.header-img .ad-div {
    margin-bottom: 0;
}

.ad-div img {
    width: 100%;
}

.sec01 {
    padding-bottom: 30px;
}

.sec01>div {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
}

.sec01>div div {
    margin-bottom: 0px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.sec01>div p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    height: 210px;
    width: 100%;
    z-index: 1;
    padding: 0 30px;
    color: #000;
    font-weight: bold;
    font-size: 66px;
    padding-top: 60px;
}

.sec02 {}

.sec02 ul {
    display: flex;
    gap: 16px;
}

.sec02 ul li {
    width: 33.3%;
}

.sec02 ul li a>div {
    margin-bottom: 20px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sec02 ul li a>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec02 ul li a .sec02-txt01 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #000;
}

.sec02 ul li a .sec02-txt02 {
    margin-bottom: 17px;
    font-weight: 500;
}

.sec02 ul li a .sec02-txt03 {
    color: #737373;
}

.sec03 {}

.sec03>div ul li {
    margin-bottom: 60px;
}

.sec03>div ul li:last-of-type {}

.sec03>div ul li a {
    display: flex;
}

.sec03>div ul li a .img-inner {
    width: 51%;
}

.sec03>div ul li a .img-inner img {
    max-width: 900px;
    aspect-ratio: 450 / 300;
    object-fit: cover;
}

.sec03>div ul li a>.sec03-inner {
    width: 49%;
    margin-left: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec03>div ul li a>.sec03-inner>div {}

.sec03>div ul li a>.sec03-inner .sec03-txt01 {
    font-weight: bold;
    font-size: 36px;
    ;
    color: #000;
}

.sec03>div ul li a>.sec03-inner .sec03-txt02 {
    margin-bottom: 10px;
    font-weight: 500;
    ;
}

.sec03>div ul li a>.sec03-inner .sec03-txt03 {
    color: #737373;
    font-size: 16px;
}

.sec03>div ul li a>.sec03-inner .sec03-icon {
    width: 34px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    background-color: #1a47c4;
    margin-bottom: 35px;
    ;
}

.sec03 .more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background-color: #111;
    cursor: pointer;
    ;
}

.sec04 {}

.sec04 {
    /* padding-bottom:30px; */
    position: relative;
}

.sec04 .sec04-inner .swiper {
    position: unset;
    margin-right: -48px;
}

.sec04 .sec04-inner ul li {
    position: relative;
    width: 418px;
    height: 740px;
    overflow: hidden;
    border-radius: 15px;
}

.sec04 .sec04-inner ul li .video-container {
    width: 100%;
    border-radius: 15px;
    position: relative;
    height: 740px;
    overflow: hidden;
    display: inline-block;
}

.sec04 .sec04-inner ul li a .img-inner {
    border-radius: 15px;
    ;
}

.sec04 .sec04-inner ul li a>.sec04-txt {
    position: absolute;
    bottom: 20px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sec04 .sec04-inner ul li a>.sec04-txt .sec04-div01 {
    display: flex;
}

.sec04 .sec04-inner ul li a>.sec04-txt .sec04-txt01 {
    color: #fff;
    display: flex;
    align-items: center;
}

.sec04 .sec04-inner ul li a>.sec04-txt .sec04-txt01 i {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(../images/b_icon.jpg)no-repeat 0 0;
    background-size: 100%;
    border-radius: 18px;
    margin-right: 10px;
}

.sec04 .sec04-inner ul li a>.sec04-txt .sec04-txt02 {
    color: #000;
    width: 50px;
    height: 34px;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-left: 20px;
    font-size: 14px;
}

.sec04 .sec04-inner .swiper-button-prev {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background: url(../images/left_btn.png)no-repeat 0 0;
    margin: 0 10px;
    margin-top: 0;
    z-index: 1;
}

.sec04 .sec04-inner .swiper-button-prev:after {
    display: none;
}

.sec04 .sec04-inner .swiper-button-next {
    position: absolute;
    left: auto;
    right: 30px;
    width: 40px;
    height: 40px;
    background: url(../images/right_btn.png)no-repeat 0 0;
    margin: 0 10px;
    margin-top: 0;
    z-index: 1;
}

.sec04 .sec04-inner .swiper-button-next:after {
    display: none;
}

.sec04 .sec04-inner ul li a>.sec04-txt .sec04-txt03 {
    color: #fff;
    font-size: 18px;
}

.sec05 {}

.sec05 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 60px;
    ;
}

.sec05 ul li {}

.sec05 ul li a {}

.sec05 ul li a .img-inner {}

.sec05 ul li a .img-inner img {
    max-width: 280px;
}

.sec05 ul li a .sec05-inner {
    margin-top: 24px;
}

.sec05 ul li a .sec05-inner .sec05-txt01 {
    font-size: 18px;
    font-weight: bold;
}

.sec05 ul li a .sec05-inner .sec05-txt02 {
    font-size: 16px;
    margin-top: 14px;
}

.sec05 .swiper-button {
    margin-top: 60px;
}

footer {
    padding: 0 48px;
}

footer .foot-inner {
    border-top: 1px solid #f0f0f0;
    padding: 40px 0 48px;
}

footer .foot-inner>div {
    /* display: flex;
    justify-content: space-between; */
}

footer .foot-inner>div ul {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

footer .foot-inner>div ul li:after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 22px;
    background-color: #f0f0f0;
    margin: 0 10px;
    vertical-align: middle;
}

footer .foot-inner>div ul li:last-of-type:after {
    display: none;
}

footer .foot-inner>div ul li a {
    font-weight: 600;
}

footer .foot-inner .foot-menu {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .foot-inner .foot-info {
    margin-top: 20px;
    text-align: left;
}

footer .foot-inner .foot-info>div,
footer .foot-inner .foot-info dl {
    display: flex;
    padding: 1px 0;
    align-items: center;
    flex-wrap: wrap;
}

footer .foot-inner .foot-info dl:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 10px;
    background: #737373;
    margin: 0 8px;
}

footer .foot-inner .foot-info dt,
footer .foot-inner .foot-info dd {
    margin: 0;
    color: #737373;
    font-size: 14px;
    line-height: 1.8;
}

footer .foot-inner .foot-info dt {
    margin-right: 4px;
}

/* sub */
.container.detail .sub-inner {
    margin-bottom: 0;
}

.container .chart .sub-inner {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 50px;
}

.sub-inner {
    display: flex;
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 60px;
    margin-bottom: 120px;
}

.sub-inner .sub-div01 {
    width: 960px;
    margin-right: 60px;
}

.sub-inner .sub-div01 h3 {
    font-size: 60px;
    font-weight: bold;
    color: #000
}

/* .sub-inner .sub-div01 .sub-div01-main{margin-top: 10px;} */
.sub-inner .sub-div01 .sub-div01-main a {}

.sub-inner .sub-div01 .sub-div01-main a img {}

.sub-inner .sub-div01 .sub-div01-main a p {
    font-size: 36px;
    font-weight: bold;
    margin-top: 30px;
    color: #000
}

.sub-inner .sub-div01 .sub-div01-main a span {
    display: block;
    color: #737373;
    margin-top: 14px;
}

.sub-inner .sub-div01 .sub-div01-list {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    padding-bottom: 60px;
}

.sub-inner .sub-div01 .sub-div01-list li {
    width: 50%;
}

.sub-inner .sub-div01 .sub-div01-list a {}

.sub-inner .sub-div01 .sub-div01-list a img {
    aspect-ratio: 450 / 300;
    object-fit: cover;
}

.sub-inner .sub-div01 .sub-div01-list a p {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.sub-inner .sub-div01 .sub-div01-list a span {
    display: block;
    color: #737373;
    margin-top: 14px;
}

.sub-div02 {
    width: 300px;
}

.sub-inner .sec03 {
    padding: 0;
    margin-top: 60px;
}

.sub-inner .sec03>div ul li a>.sec03-inner .sec03-txt01 {
    font-size: 20px;
    line-height: 1.5;
    word-break: keep-all;
}

.sub-inner .sec03>div ul li a>.sec03-inner {
    margin-left: 30px;
}

.swiper-button {
    position: relative;
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
}

.swiper-button .swiper-button-prev {
    position: relative;
    top: unset;
    left: 0;
    right: 0;
    margin-top: 0;
    background: url(../images/left_arrow.png)no-repeat 0 0;
    width: 25px;
    height: 25px;
}

.swiper-button .swiper-button-next {
    position: relative;
    top: unset;
    left: 0;
    right: 0;
    margin-top: 0;
    background: url(../images/right_arrow.png)no-repeat 0 0;
    width: 25px;
    height: 25px;
}

.swiper-button .swiper-button-prev:after,
.swiper-button .swiper-button-next:after {
    display: none;
}

.swiper-button .swiper-pagination {
    position: relative;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 50px);
    gap: 15px;
    overflow: hidden;
}

.swiper-button .swiper-pagination span {
    background: unset;
    font-size: 18px;
    font-weight: 500;
    color: #999;
    margin: 0;
    width: auto;
    height: auto;
    opacity: 1;
    font-size: 16px;
}

.swiper-button .swiper-pagination span.swiper-pagination-bullet-active {
    color: #000;
}

.sub-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.sub-title .social {
    display: flex;
    gap: 20px;
}

.sub-title.borderbottom {
    border-bottom: 1px solid #f0f0f0
}

.sub-title-txt {}

.sub-title-txt p {
    font-size: 36px;
    font-weight: 600;
    margin-top: 30px;
    color: #000;
}

.sub-title-txt span {
    color: #737373;
    margin-top: 14px;
    display: block;
}

.sub-title.sub-section {
    margin-top: 48px;
}

.search-div .sub-title.sub-section h3 {
    margin-top: 0;
}

.sub-div-info {
    margin-top: 60px;
}

.sub-div-info img {}

.sub-div-info p {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
    word-break: keep-all;
    white-space: pre-line;
    line-height: 1.5;
}

.sub-list {
    margin-top: 120px;
    ;
}

.sub-list p {
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.sub-list ul {
    margin-top: 30px;
}

.sub-list ul li {
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    ;
}

.sub-list ul li a {
    background: url(../images/link_icon_off.png)no-repeat 100% 50%;
    width: 100%;
}

.sub-list ul li a span {
    font-weight: 600;
}

.sub-list ul li:hover a {
    background: url(../images/link_icon.png)no-repeat 100% 50%;
}

.sub-list ul li:hover a span {
    font-weight: bold;
}

.sub-list ul li a:before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: #737373;
    margin-right: 10px;
    vertical-align: top;
    margin-top: 6px;
}

.sub-list ul li a span {
    width: 95%;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}



.trend-div .hot-link {
    position: relative;
    width: 300px;
    background: url(../images/right_icon.png)no-repeat 100% 50%;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    height: 60px;
    display: flex;
    align-items: center;
}

.trend-div .hot-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.trend-div ul li a {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 300px;
    border-bottom: 1px solid #000000;
    flex-direction: column;
    height: 180px;
    justify-content: center;
}

.trend-div ul li a .trend_txt01 {
    font-size: 20px;
    font-weight: bold;
}

.trend-div ul li a .trend_txt02 {
    margin-top: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

.trend-div ul li a .trend_txt03 {
    color: #999;
    font-size: 14px;
    display: block;
    margin-top: 12px;
    font-weight: 400;
}

.trend-div ul li a:after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: 0.5s;
}

.trend-div ul li:last-of-type a {
    border-bottom: 0;
}

/* .trend-div ul li a:hover:after{width:100%;background-color:#1A48C4;} */
.trend-div .swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    bottom: 0;
    margin-top: 24px;
    gap: 10px;
}

.trend-div .swiper-pagination span {
    width: 6px;
    height: 6px;
}

.trend-div .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #000;
}


/* sub page */
.sub-div input {
    outline: 0px;
    border: 0px;
}

.pass-input input.type-txt:focus {
    border-bottom: 1px solid #000;
}

.sub-div h2 {
    font-weight: bold;
    font-size: 60px;
    margin: 60px 0 60px;
    text-align: center;
}

.sub-div h2.password-title {
    margin-bottom: 20px;
}

.login-form {
    max-width: 660px;
    margin: 0 auto 120px;
    ;
}

.login-form .login-txt {
    text-align: center;
    background: url(../images/login_icon02.png)no-repeat 50% 0;
    font-size: 16px;
    padding: 120px 0 60px;
    line-height: 1.5;
}

.login-form .login-txt span {
    font-size: 24px;
    display: block;
    margin-bottom: 20px;
}

.login-form .login-btn {
    display: flex;
    height: 66px;
    align-items: center;
    justify-content: center;
    background-color: #111;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}


.join-txt {
    font-weight: bold;
    font-size: 20px;
}

.join-txt.txt02 {
    margin-top: 100px;
}

.pass-input.join {
    padding-top: 30px;
    margin-top: 30px;
}

.join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #fff;
    color: #111;
    border: 1px solid #999
}

.join-btn:hover {
    background-color: #999;
    color: #fff;
}

.password-form {
    width: 660px;
    margin: 0 auto 120px;
}

.pass-info {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

.pass-input {
    margin-top: 60px;
    border-top: 2px solid #000;
    padding-top: 60px;
}

.pass-input div {
    position: relative;
}

.pass-input>div+div {
    margin-top: 40px;
}

.pass-input p {
    font-weight: 600;
}

.pass-input.join p:before {
    content: '*';
    display: inline-block;
    color: red;
    margin-right: 10px;
}

.pass-input input.type-txt {
    width: 100%;
    height: 60px;
    border: 0;
    border-bottom: 1px solid #c3c3c3;
    padding: 0 15px;
    margin-top: 15px;
    font-weight: 400;
    font-size: 14px;
    transition: 1s;
}

.pass-input input.type-txt.blue {
    color: #1A48C4;
}

.pass-input input.type-txt.blue:focus {
    border-bottom: 1px solid #1A48C4
}

.pass-input input.type-txt.red {
    color: #E5433E;
}

.pass-input input.type-txt.red:focus {
    border-bottom: 1px solid #E5433E
}

.alert-txt {
    margin-top: 10px;
}

.alert-txt img {
    margin-right: 10px;
}

.alert-txt span {
    font-size: 13px;
}

.pass-btn {
    margin-top: 40px;
}

.pass-btn>a {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    ;
}

.pass-btn p {
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.pass-btn p span {
    font-size: 14px;
}

.pass-btn p span:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #D9D9D9;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 2px;
}

.pass-btn p a {
    font-weight: bold;
    font-size: 14px;
}

.pass-btn p a:hover {
    text-decoration: underline;
}

.acc-form {
    max-width: 660px;
    margin: 0 auto 180px;
}

.acc-tab {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.acc-tab a {
    width: 180px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #000;
    color: #000;
}

.acc-tab a.on {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
}

.acc-input {
    margin-top: 40px;
}

.acc-input p {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.acc-input input {
    width: 100%;
    height: 60px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    background-color: #F3F3F3;
    border: 0;
    border-bottom: 1px solid #e3e3e3;
    font-weight: 500;
    font-size: 14px;
}

.acc-input input::placeholder {
    color: #999
}

.acc-a {
    text-align: right;
    margin-top: 30px;
}

.acc-a a {
    font-weight: 600;
    font-size: 14px;
}

.acc-a a:hover {
    text-decoration: underline;
}

.acc-txt {
    text-align: center;
    background: url(../images/login_icon02.png) no-repeat 50% 0;
    font-size: 24px;
    padding: 120px 0 60px;
    line-height: 1;
}

.acc-txt2 {
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
}

.acc-subbtn {
    display: flex;
    height: 66px;
    align-items: center;
    justify-content: center;
    background-color: #1A48C4;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-top: 60px;
}

.acc-txt span {
    font-size: 24px;
}

.acc-cancel {
    text-align: right;
    margin-top: 10px;
    position: relative;
    ;
}

.acc-cancel a {
    font-weight: 500;
    font-size: 14px;
    color: #999;
    text-decoration: underline;
}

.acc-cancel .acc-can-txt {
    display: none;
    padding: 20px;
    border: 1px solid #999;
    box-shadow: 20px 20px 20px 0px #0000000D;
    text-align: left;
    position: absolute;
    width: 84%;
    top: 40px;
    right: 0;
    z-index: 1;
    background-color: #fff;
}

.acc-cancel .acc-can-txt.on {
    display: block;
}

.acc-cancel .acc-can-txt:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: url(../images/up_arrow.png)no-repeat 0 0;
    position: absolute;
    top: -6px;
    right: 6px;
}

.acc-cancel .acc-can-txt img {
    display: inline-block;
    vertical-align: top;
}

.acc-cancel .acc-can-txt p {
    display: inline-block;
    font-size: 12px;
    vertical-align: middle;
    margin-left: 10px;
    line-height: 1.5;
    width: calc(100% - 35px);
}

.acc-cancel .acc-can-txt p span {
    font-size: 12px;
}

.join-check>div {
    display: flex;
    padding-bottom: 20px;
}

.join-check.first-div {
    border-bottom: 1px solid #e3e3e3;
}

.join-check.first-div label {
    font-size: 14px;
    font-weight: 800
}

.join-check input[type='checkbox'] {
    appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: #3D404B 1px solid;
    cursor: pointer;
    margin-right: 10px;
}

.join-check input[type='checkbox']:checked {
    background: url(../images/check_on.png)no-repeat 0 0;
}

.join-check input[type='checkbox']:disabled {
    opacity: .3;
}

.join-check .join-txtarea {
    border: 1px solid #c3c3c3;
    height: 350px;
    padding-bottom: 0;
}

.join-check .join-txtarea>div {
    padding: 25px 20px;
    overflow-y: scroll;
}

.join-check .join-txtarea>div dl {
    margin-bottom: 20px;
}

.join-check .join-txtarea>div dl dt {
    font-size: 15px;
    font-weight: 600;
}

.join-check .join-txtarea>div dl dd {
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
}

.join-check .join-txtarea>div dl:last-of-type {
    margin-bottom: 0;
}

.join-check .join-txtarea .agree-form {
    margin: 0px;
}

.join-check .join-txtarea .agree-form .agree-title h2 {
    margin-top: 15px;
}


.join-login {
    margin-top: 30px;
}

.join-login li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.join-login li p {
    font-size: 14px;
    word-break: keep-all;
    padding-left: 10px;
    position: relative;
}

.join-login li p:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #D9D9D9;
    vertical-align: middle;
    position: absolute;
    top: 6px;
    left: 0;
}

.join-login li a {
    font-weight: bold;
    font-size: 14px;
}

.join-login li a:hover {
    text-decoration: underline;
}

.mem-info01 {
    border: 1px solid #e3e3e3;
    background-color: #fbfbfb;
    padding: 20px;
}

.mem-info01 li+li {
    margin-top: 15px;
}

.mem-info01 li p {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 10px;
}

.mem-info01 li p span:first-of-type {
    display: inline-block;
    font-size: 14px;
}

.mem-info01 li p span:last-of-type {
    display: inline-block;
    margin-left: 30px;
    font-weight: 600;
    color: #1A48C4;
    font-size: 14px;
    ;
}

.mem-info01 li p:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #D9D9D9;
    position: absolute;
    top: 6px;
    left: 0;
}

.mem-info02 {
    margin-top: 30px;
    border-top: 1px solid #000;
}

.mem-info02 li {
    border-bottom: 1px solid #e3e3e3;
    height: 60px;
    display: flex;
    align-items: center;
}

.mem-info02 li:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background-color: #D9D9D9;
    vertical-align: middle;
}

.mem-info02 li p {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.mem-info02 li p span:first-of-type {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
}

.mem-info02 li p span:last-of-type {
    display: inline-block;
    margin-left: 30px;
    font-weight: 600;
    color: #111;
    font-size: 14px;
    ;
}

.mem-pay {
    margin-top: 40px;
}

.mem-pay .mem-btn {
    height: 66px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1A48C4;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.mem-pay p {
    font-size: 14px;
    text-align: right;
    vertical-align: middle;
    margin-top: 10px;
}

.mem-pay p img {
    vertical-align: middle;
    margin-bottom: 5px;
}

/* popup */
.popup_open {
    display: none;
}

.popup_open .acc-pop {
    width: 420px;
    position: fixed;
    z-index: 11;
    background-color: #fff;
}

.popup_open .acc-pop-inner {
    padding: 30px;
}

.popup_open .acc-pop-inner .acc-pop-title {
    display: flex;
    justify-content: space-between;
}

.popup_open .acc-pop-inner .acc-pop-title h3 {
    font-size: 18px;
    font-weight: 600;
}

.popup_open .acc-pop-inner .acc-pop-title a {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/close_icon.png) no-repeat 0 0;
    background-size: 15px;
    text-indent: -9999px;
    background-size: 100%;
}

.popup_open .acc-pop-txt {
    margin-top: 30px;
}

.popup_open .acc-pop-txt p {
    font-size: 14px;
}

.popup_open .acc-pop-txt p span {
    font-size: 14px;
}

.popup_open .acc-pop-btn {
    display: flex;
}

.popup_open .acc-pop-btn a {
    height: 60px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_open .acc-pop-btn a:first-of-type {
    color: #777;
    border: 1px solid #C3C3C3
}

.popup_open .acc-pop-btn a:last-of-type {
    color: #fff;
    border: 1px solid #000;
    background-color: #000;
}

.popup_open {
    display: none;
}

.popup_open .out-pop {
    width: 600px;
    position: fixed;
    z-index: 11;
    background-color: #fff;
}

.popup_open .out-pop-inner .out-pop-title {
    display: flex;
    justify-content: space-between;
    height: 90px;
    border-bottom: 1px solid #111;
    padding: 0 45px;
    align-items: center;
}

.popup_open .out-pop-inner .out-pop-title h3 {
    font-size: 24px;
    font-weight: bold;
}

.popup_open .out-pop-inner .out-pop-title a {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/close_icon.png) no-repeat 0 0;
    background-size: 15px;
    text-indent: -9999px;
    background-size: 100%;
}

.popup_open .out-pop-info {
    padding: 30px 45px
}

.popup_open .out-pop-info .out-pop-input>div {
    position: relative;
}

.popup_open .out-pop-info .type-txt {
    width: 100%;
    height: 60px;
    padding: 15px;
    display: flex;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #c3c3c3;
    font-size: 14px;
    font-weight: 600;
    outline: 0px;
}

.popup_open .out-pop-info input.type-txt:focus {
    border-bottom: 1px solid #000;
}

.bt-eyes {
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -14px;
    width: 28px;
    height: 28px;
}

.bt-eyes input {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 22px;
    height: 22px;
    -webkit-appearance: none;
    cursor: pointer;
}

.bt-eyes input+span {
    width: 28px;
    height: 28px;
    display: block;
    background: url(../images/change_off.png) no-repeat 0 0;
    background-size: 100%;
}

.bt-eyes input:checked+span {
    background: url(../images/change_on.png) no-repeat 50% 50%;
    background-size: 80%;
}

.popup_open .out-pop-info .login-button {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    background-color: #000;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.popup_open .out-pop-info .join-login li {
    margin-bottom: 10px;
}

.popup_open .out-pop-info .join-login p {
    font-size: 14px;
    font-weight: 500;
}

.popup_open .out-pop-info .join-login p:before {
    margin-top: -2px;
}

.popup_open .out-pop-info .join-login a {
    font-size: 14px;
    font-weight: bold;
}

.popup_open .out-pop-info .join-login a:hover {
    text-decoration: underline;
}

.popup_open .out-pop-info .join-sns {
    position: relative;
    ;
    text-align: center;
    margin-top: 60px;
}

.popup_open .out-pop-info .join-sns p {
    font-size: 14px;
    font-weight: 700;
}

.popup_open .out-pop-info .join-sns p:before {
    content: '';
    display: inline-block;
    width: 35%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 5px;
}

.popup_open .out-pop-info .join-sns p:after {
    content: '';
    display: inline-block;
    width: 35%;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 5px;
}

.popup_open .out-pop-info .join-sns ul {
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


.login-cont {
    max-width: 660px;
    margin: 0 auto 120px;
}

.login-cont .out-pop-info {}

.login-cont .out-pop-info .out-pop-input>div {
    position: relative;
}

.login-cont .out-pop-info .type-txt {
    width: 100%;
    height: 60px;
    padding: 15px;
    display: flex;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #c3c3c3;
    font-size: 14px;
    font-weight: 600;
    outline: 0px;
}

.login-cont .out-pop-info input.type-txt:focus {
    border-bottom: 1px solid #000;
}

.bt-eyes {
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -14px;
    width: 28px;
    height: 28px;
}

.bt-eyes input {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 22px;
    height: 22px;
    -webkit-appearance: none;
    cursor: pointer;
}

.bt-eyes input+span {
    width: 28px;
    height: 28px;
    display: block;
    background: url(../images/change_off.png) no-repeat 0 0;
    background-size: 100%;
}

.bt-eyes input:checked+span {
    background: url(../images/change_on.png) no-repeat 50% 50%;
    background-size: 80%;
}

.login-cont .out-pop-info .login-button {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    background-color: #000;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.login-cont .out-pop-info .join-login li {
    margin-bottom: 10px;
}

.login-cont .out-pop-info .join-login p {
    font-size: 14px;
    font-weight: 500;
}

.login-cont .out-pop-info .join-login p:before {
    margin-top: -2px;
}

.login-cont .out-pop-info .join-login a {
    font-size: 14px;
    font-weight: bold;
}

.login-cont .out-pop-info .join-login a:hover {
    text-decoration: underline;
}

.login-cont .out-pop-info .join-sns {
    position: relative;
    ;
    text-align: center;
    margin-top: 60px;
}

.login-cont .out-pop-info .join-sns p {
    font-size: 14px;
    font-weight: 700;
}

.login-cont .out-pop-info .join-sns p:before {
    content: '';
    display: inline-block;
    width: 35%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 5px;
}

.login-cont .out-pop-info .join-sns p:after {
    content: '';
    display: inline-block;
    width: 35%;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 5px;
}

.login-cont .out-pop-info .join-sns ul {
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}



/* 개인정보 */
.agree-form {
    max-width: 960px;
    margin: 90px auto 120px;
}

.agree-form .agree-title {
    border-bottom: 2px solid #111;
}

.agree-form .agree-title h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
}

.agree-form .agree-title p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.5;
}

.agree-form .agree-txt {}

.agree-form .agree-txt>dl {
    margin-top: 40px;
}

.agree-form .agree-txt>dl>dt {
    font-size: 18px;
    font-weight: bold;
    ;
}

.agree-form .agree-txt>dl>dd {
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    line-height: 1.8;
}

.agree-form .agree-txt>dl p {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0;
    ;
}

.agree-form .agree-txt>dl span {
    display: block;
    ;
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0;
}

.agree-form .agree-txt>dl ul {
    margin: 20px 0;
}

.agree-form .agree-txt>dl ul li {
    margin-bottom: 10px;
    position: relative;
    margin-left: 15px;
}

.agree-form .agree-txt>dl ul li:before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 6px;
    background-color: #d9d9d9;
    margin-right: 12px;
    margin-left: -15px;
    vertical-align: super;
    margin-top: 2px;
}

.agree-form .agree-txt>dl dl {
    margin-top: 20px;
}

.agree-form .agree-txt>dl dl dt {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
}

.agree-form .agree-txt>dl dl dd {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #777
}

.coming-div {
    margin: 210px auto;
    max-width: 660px;
}

.coming-div img {}

.coming-div p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #777;
    margin-top: 40px;
}

/* search */
.search-div .sub-title h3 {
    font-size: 60px;
    font-weight: bold;
    margin-top: 60px;
}

.search-div .search-div-inner {
    max-width: 1200px;
    margin: 60px auto 0;
}

.search-div .search-form {
    position: relative;
}

.search-div .search-form form input::placeholder {
    color: #aaa;
}

.search-div .search-form form {
    display: flex;
    position: relative;
    z-index: 2
}

.search-div .search-form form input {
    outline: 0px;
    width: 100%;
    border: 2px solid #c3c3c3;
    font-size: 18px;
    font-weight: 500;
    height: 74px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    color: #000;
}

.search-div .search-form form input:focus {
    border: 2px solid #000;
}

.search-div .search-form form a {
    width: 74px;
    height: 74px;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    outline: none;
    /* border:2px solid #000; */
    border-left: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: none;
}

.search-div .search-form form a:hover {
    cursor: pointer;
}

.search-div .search-form form a i {
    position: absolute;
    top: 0;
    left: 0;
    width: 74px;
    height: 74px;
}

.search-div .search-form form a i:before,
.search-div .search-form form a i:after {
    content: "";
    position: absolute;
}

.search-div .search-form form a i:before {
    width: 27px;
    height: 27px;
    border: 2px solid #c3c3c3;
    border-radius: 50%;
    top: 52%;
    left: 44%;
    margin-top: -18px;
    margin-left: -13px;
    z-index: 2;
}

.search-div .search-form form a i:after {
    width: 2px;
    height: 8px;
    background-color: #c3c3c3;
    transform: rotate(130deg);
    left: 45px;
    top: 44px;
    border-radius: 5px;
    z-index: 1;
}

/* .search-div .search-form form a:hover i:before{border:2px solid #000}
.search-div .search-form form a:hover i:after{background-color:#000;} */
.search-div .search-form form a.active i:before {
    border: 2px solid #000;
}

.search-div .search-form form a.active i:after {
    background-color: #000;
}

.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: block;
}

.search-overlay.hidden {
    display: none;
}

.search-sub {
    padding-bottom: 48px;
    border-bottom: 1px solid #f0f0f0;
}

.search-sub h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.search-sub h3 span {
    /* display:inline-block; */
    /* font-size:16px; */
    /* vertical-align: top; */
    font-weight: bold;
}

.search-sub .chart-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px 18px;
    ;
}

.search-sub .chart-list li {
    width: 100%;
}

.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: block;
}

/* .search-sub ul li{margin-bottom:60px;} */
.search-sub .chart-list li a .search-info-txt01 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    ;
}

.search-sub .chart-list li a .search-info-txt02 {
    font-weight: 400;
    margin-top: 10px;
    color: #999
}

.search-sub .chart-list li a>div {
    position: relative;
}

.search-sub .chart-list li a img {
    width: 100%;
}

.search-sub .search-none-txt {
    font-size: 24px;
    font-weight: 400;
    color: #777;
    ;
}

.search-sub .search-news {}

.search-sub .search-news li {
    max-width: 100%;
    margin-bottom: 48px;
}

/* .search-sub .search-news li:last-of-type{margin-bottom:0;} */
.search-sub .search-news li a {
    display: flex;
    gap: 30px;
}

.search-sub .search-news li a .search-new-img {
    max-width: 390px;
    position: relative;
}

.search-sub .search-news li a .search-new-img p {
    position: relative;
}

.search-sub .search-news li a .news-txt {
    margin-top: 30px;
    max-width: 360px;
}

.search-sub .search-news li a .search-news-txt01 {
    font-size: 18px;
    font-weight: bold;
}

.search-sub .search-news li a .search-news-txt02 {
    font-size: 24px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 15px;
}

.search-sub .search-news li a .search-news-txt03 {
    margin-top: 15px;
}

.search-sub .search-news li a .search-news-txt03 span {
    color: #000;
    margin-right: 5px;
    font-weight: 400
}

.search-sub .search-news li a .search-news-txt04 {
    margin-top: 25px;
    font-weight: 400;
    color: #999
}

.search-sub .sec03>div ul li a>.sec03-inner .sec03-txt01 {
    font-size: 20px;
    line-height: 1.5;
    word-break: keep-all;
}




/* chart */
.chart-main {
    background-color: #fff;
    padding: 35px 30px;
}

.chart-main-inner {}

.chart-main-inner h4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-main-inner h4 p {
    font-size: 30px;
    font-weight: bold;
    color: #1a48c4;
    text-align: center;
    padding: 0 22px;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.chart-main-inner h4 span {
    display: block;
    height: 12px;
    background-color: #1a48c4;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.chart-main-img {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-main-img img {
    max-width: 590px;
}

.chart-main-ul {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.chart-main-ul>li {
    border: 1px solid #d7d7d7;
    display: flex;
    flex-direction: column;
}

.chart-main-ul>li .chart-main-list {
    margin: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    max-height: none;
}

.chart-main-ul>li .chart-main-list>img {
    max-width: 105px;
    width: 50%;
}

.chart-main-ul>li .chart-main-list div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: calc(100% - 105px);
}

.chart-main-ul>li .chart-main-list div p:first-of-type {
    font-sizE: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-main-ul>li .chart-main-list div p:last-of-type {
    width: 100%;
}

.chart-main-ul>li .chart-main-list div p:last-of-type span {
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 40px;
}

.chart-main-ul>li .chart-main-list div p:last-of-type span:first-of-type {
    font-size: 18px;
    font-weight: 700;
}

.chart-main-ul>li .chart-main-list div p:last-of-type span:last-of-type {
    font-size: 16px;
    font-weight: 700;
}

.chart-main-ul>li .chart-main-num {
    background-color: #f0f0f0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
}

.chart-main-ul>li .chart-main-num p {
    font-size: 22px;
    font-weight: bold;
    color: #1a48c4;
}

.chart-main-ul>li .chart-main-num ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.chart-main-ul>li .chart-main-num ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border-right: 1px solid #fff;
    padding: 10px 0;
}

.chart-main-ul>li .chart-main-num ul li:last-of-type {
    border-right: 0;
}

.chart-main-ul>li .chart-main-num ul li p:first-of-type {
    font-size: 12px;
    flex: 1;
    display: flex;
    align-items: center;
}

.chart-main-ul>li .chart-main-num ul li p:last-of-type {
    font-size: 25px;
    color: #111;
    height: 32px;
    display: flex;
    align-items: center;
}

a.chrat-link {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    gap: 10px;
}

a.chrat-link p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

a.chrat-link img {}

.chart-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 0 30px;
    margin-top: 65px;
    padding-bottom: 90px;
}

.chart-list>div {}

.chart-list>div h4 {
    height: 45px;
    background-color: #1a48c4;
    font-size: 27px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-list>div ul {}

.chart-list>div ul li {
    display: flex;
}

.chart-list>div ul li .chart-list-p01 {
    width: 37%;
    border-right: 1px solid #d7d7d7;
    margin: 15px 10px;
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    gap: 10px;
}

.chart-list>div ul li .chart-list-p02 {
    width: 63%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-break: break-all;
    min-height: ;
}

.chart-list>div ul li .chart-list-p02 span {
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 48px;
    line-height: 1.2;
}

.chart-list>div ul li .chart-list-p02 span:first-of-type {
    font-size: 20px;
    font-weight: bold;
}

.chart-list>div ul li .chart-list-p02 span:last-of-type {
    font-size: 16px;
    font-weight: 600;
}

.chart-list>div ul li img {
    max-width: 115px;
    width: 30%;
    max-width: unset;
}

.chart-list>div ul li p img {
    max-width: 27px;
    width: 100%;
}

.chart-list>div ul li p .rank {
    font-size: 30px;
    font-weight: bold;
    width: 25%;
    text-align: center;
}

.chart-list>div>a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #000;
}

.chart-list>div>a p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.chart .trend-div .hot-link {
    color: #000000;
    background: url(../images/award_icon03.png) no-repeat 100% 50%;
}

.chart .trend-div .hot-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.chart .trend-div ul li a .trend_txt01 {
    color: #000000;
}

.chart .trend-div ul li a .trend_txt02 {
    color: #000000;
    font-weight: 400;
}

.chart .trend-div ul li a .trend_txt03 {
    color: #999;
}

.chart .trend-div .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

.blt-img {
    max-width: 27px;
}

.blt-img.img01 {
    max-width: 32px;
    font-size: 10px;
    padding: 3px 6px 4px 5px;
    background-color: #fff100;
    font-weight: bold;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

/* chart-list */

.panel {
    height: auto !important;
}

.panel.off {
    display: block !important;
    height: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}


.allchart {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.allchart-div01 {
    width: 50%;
    border-right: 1px solid #d7d7d7;
    padding-right: 30px;
}

.allchart-div01-div01 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #d7d7d7;
}

.allchart-div01-div01 img {
    max-width: 100px;
}

.allchart-div01-div01 div {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: calc(100% - 100px);
}

.allchart-div01-div01 div p:first-of-type {
    font-size: 75px;
    font-weight: bold;
    line-height: 100%;
}

.allchart-div01-div01 div p:last-of-type {
    overflow: hidden;
}

.allchart-div01-div01 div p:last-of-type span:first-of-type {
    font-size: 26px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 줄 수 지정 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 5px;
}

.allchart-div01-div01 div p:last-of-type span:last-of-type {
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.allchart-div01-div01 div img {}


.allchart-div01-div02 {}

.allchart-div01-div02>ul {
    display: flex;
}

.allchart-div01-div02>ul li {
    /* width: 25%; */
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

.allchart-div01-div02>ul li a {
    font-size: 12px;
    font-weight: bold;
    color: #737373;
    position: relative;
}

.allchart-div01-div02>ul li.on a {
    color: #1a48c4;
}

.allchart-div01-div02>ul li.on a:after {
    content: '';
    display: block;
    height: 4px;
    background-color: #2a48c4;
    width: 100%;
    position: absolute;
    bottom: -10px;
}

.tab_panel {
    margin-top: 30px;
}

.allchart-div02 {
    width: 50%;
}

.allchart-div02 h4 {
    color: #727a92;
    font-size: 25px;
    font-weight: bold;
}

.allchart-div02 img {
    width: 100%;
    /* margin-top: 30px; */
}

.allchart-div02.empty h4,
.allchart-div02.empty img {
    visibility: hidden;
}

.sub-inner02 {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.sub-inner02 .sub-div03 {
    width: 100%;
    max-width: 65.7%;
    margin-top: -60px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 60px;
}

.sub-div03-inner {
    max-width: 1020px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-right: 60px;
    padding-left: 60px;
}

.chartdet-div01 {
    /* padding-right: 60px; */
    width: 100%;
}

.chartdet-title {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-between;
}

.chartdet-title-inner {
    width: 100%;
    display: flex;
    padding-bottom: 30px;
    justify-content: space-between;
}

.chartdet-title h3 {
    font-size: 50px;
    font-weight: 700;
    font-style: normal;
    line-height: 62px;
    color: #000000;
    letter-spacing: 1.3px;
}

.chartdet-title-inner>div {
    position: relative;
    max-width: 180px;
    width: 100%;
    text-align: right;
}

.chartdet-title-inner>div>a {
    color: #fff;
    padding-right: 30px;
    font-size: 16px;
    font-weight: 600;
    ;
    background: url(../images/chart_dot01.png)no-repeat 100% center;
}

.chartdet-title-inner>div>a.on {
    background: url(../images/chart_dot01_on.png)no-repeat 100% center;
}

.chartdet-day {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
}

.chartdet-day-inner {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chartdet-day-inner .week {
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 12px;
    color: #000000;
    letter-spacing: 1.3px;
}

.chartdet-day-inner>a {
    padding-left: 15px;
    font-size: 18px;
    font-weight: bold;
    background: url(../images/chart_arrow01.png)no-repeat 0 center;
    color: #1a48c4;
}

.chartdet-day-inner .link-btn {
    position: relative;
    width: 90px;
    text-align: right;
}

.chartdet-day-inner .link-btn>div {
    display: none;
    background-color: #fff;
    padding: 20px;
    position: absolute;
    width: 100%;
    width: 180px;
    text-align: left;
    right: -30px;
    top: 30px;
    z-index: 2;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .3019607843);
}

.chartdet-day-inner .link-btn>div.on {
    display: block;
}

.chartdet-day-inner .link-btn>div div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chartdet-day-inner .link-btn>div ul li {
    margin-bottom: 20px;
}

.chartdet-day-inner .link-btn>div ul li:last-of-type {
    margin-bottom: 0;
}

.chartdet-day-inner .link-btn>div ul li a {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.chartdet-day-inner .link-btn>div ul li a:hover {
    color: #01FF9A;
}





.chartdet-day .chartdet-day-icon {
    display: flex;
    gap: 18px;
}

.chartdet-day .chartdet-day-icon01,
.chartdet-day .chartdet-day-icon02,
.chartdet-day .chartdet-day-icon03 {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .chartdet-day .chartdet-day-icon01 img,
.chartdet-day .chartdet-day-icon02 img,
.chartdet-day .chartdet-day-icon03 img {
    width: 22px;
    height: 22px;
} */

@media (min-width: 769px) {

    .chartdet-day .chartdet-day-icon01,
    .chartdet-day .chartdet-day-icon02,
    .chartdet-day .chartdet-day-icon03 {
        background-color: #000000;
        border-radius: 5px;
    }
}

.chartdet-pop01 {
    display: none;
    width: 250px;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    z-index: 1;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .3019607843);
}

.chartdet-pop01.on {
    display: block;
}

.chartdet-pop01 .pop01-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chartdet-pop01 .pop01-title p {
    font-size: 15px;
    font-weight: 600;
}

.chartdet-pop01 .pop01-title a {
    display: inline-flex;
}

.chartdet-pop01 .pop01-div01 {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.chartdet-pop01 .pop01-div01 p {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.chartdet-pop01 .pop01-div01 div {
    display: flex;
    gap: 10px;
}

.chartdet-pop01 .pop01-div01 div a {
    display: inline-flex;
}

.chartdet-pop01 .pop01-div02 {
    margin-top: 20px;
}

.chartdet-pop01 .pop01-div02 .cal-day {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    height: 30px;
    align-items: center;
}

.chartdet-pop01 .pop01-div02 .cal-day span {
    font-size: 11px;
    text-align: center;
}

.chartdet-pop01 .pop01-div02 .cal-num {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    height: 30px;
    align-items: center;
}

.chartdet-pop01 .pop01-div02 .cal-num.this {
    background-color: #01FF9A;
    border-radius: 4px;
}

.chartdet-pop01 .pop01-div02 .cal-num span {
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chartdet-pop01 .pop01-div02 .cal-num span:hover {
    background-color: #01FF9A;
    border-radius: 4px;
}

.chartdet-pop01 .pop01-div02 .cal-num.this span {
    color: #000000;
}

.chartdet-pop01 .pop01-div02 .cal-num.this span.on {
    background-color: #005ba3;
    border-radius: 4px;
}

.chartdet-pop01 .pop01-div02 .cal-num span.another {
    opacity: 0.25 !important;
}

.chartdet-pop02 {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 50px;
    right: -120px;
    width: 240px;
    z-index: 1;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .3019607843);
}

.chartdet-pop02.on {
    display: block;
    height: 345px;
    overflow: auto;
    right: 0;
}

.chartdet-pop02 div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chartdet-pop02 .divide-line {
    border: 1px dashed #d7d7d7;
    margin: 20px 0px;
}

.chartdet-pop02 div p {
    font-size: 16px;
    font-weight: 600;
}

.chartdet-pop02 div a {
    display: flex;
}

.chartdet-pop02>p {
    margin-top: 20px;
    font-size: 14px;
}

.chartdet-pop03 {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 50px;
    right: -60px;
    width: 240px;
    z-index: 1;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .3019607843);
}

.chartdet-pop03.on {
    display: block;
}

.chartdet-pop03 div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chartdet-pop03 div p {
    font-size: 14px;
    color: #111;
    font-weight: bold;
}

.chartdet-pop03 div a {
    display: flex;
}

.chartdet-pop03 ul {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.chartdet-pop03 ul li {
    width: 25%;
}

.chartdet-div02 {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
    padding-right: 60px;
    width: 100%;
    padding-left: 60px;
}

.chartdet-div02>h4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 50px;
}

.chartdet-div02>h4 p:first-of-type {
    font-size: 30px;
    font-weight: bold;
    ;
}

.chartdet-div02>h4 p:last-of-type {
    font-size: 16px;
    font-weight: 600;
    ;
}

.chartdet-div02-inner {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 60px;
    margin-top: 25px;
}

.chartdet-div02-title {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    background-color: #1a48c4;
    justify-content: space-between;
}

.chartdet-div02-title>p {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    width: 100%;
    text-align: center;
    max-width: 100px;
}

.chartdet-div02-title .chartdet-div02-title-div01 {
    width: 43.5%;
}

.chartdet-div02-title .chartdet-div02-title-div02 {}

.chartdet-div02-title .chartdet-div02-title-div03 {}

.chartdet-div02-title .chartdet-div02-title-div04 {
    display: flex;
    width: 100%;
    max-width: 390px;
    justify-content: flex-end;
}

.chartdet-div02-title.scroll {
    position: sticky;
    top: 80px;
    z-index: 2;
    max-width: 900px;
}

.chartdet-div02-title .chartdet-div02-title-div04>span {
    font-size: 12px;
    display: flex;
    width: 100%;
    max-width: 70px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.chartdet-div02-title .chartdet-div02-title-div04>span:first-of-type {
    position: relative;
    flex-direction: column;
    cursor: pointer;
}

.chartdet-div02-title .chartdet-div02-title-div04>span:first-of-type>i {
    display: block;
}

.chartdet-div02-title .chartdet-div02-title-div04>span:first-of-type:hover .chartdet-pop04 {
    display: block;
}

/* .chartdet-div02-ul {
    background-color: #fff;
} */

.chartdet-div02-ul>li {
    border-bottom: 1px solid #d7d7d7;
}

.chartdet-div02-ul>li.on {}

.chartdet-div02-ul>li:hover {}

.chartdet-div02-ul>li>a {
    display: flex;
    width: 100%;
    align-items: center;
    height: 100px;
}

.chartdet-div02-ul>li.on>a {
    height: 100px;
}

.chartdet-div02-ul-num {
    font-weight: 500;
    width: 100px;
    max-width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    background-color: #000;
}

.chartdet-div02-ul-num .chartdet-div02-ul-txt01 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}

.chartdet-div02-ul-num i {
    width: 10px;
    height: 10px;
}

.chartdet-div02-ul-num i.up {
    background: url(../images/chart_up.png)no-repeat center 80%;
}

.chartdet-div02-ul-num i.down {
    background: url(../images/chart_down.png)no-repeat center 80%;
}

.chartdet-div02-ul-num i.safe {
    background: url(../images/chart_safe.png)no-repeat center 80%;
}

.chartdet-div02-ul-num .cir-n {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #01FF9A;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.chartdet-div02-ul-num .cir-r {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #999;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.chartdet-div02-ul-img {
    width: 100%;
    max-width: 100px;
    display: flex;
    margin-right: 20px;
}

.chartdet-div03 {
    width: calc(100% - 220px);
    display: flex;
    height: 100%;
}

.chartdet-div02-ul-title {
    width: calc(100% - 280px);
    display: flex;
    height: 100%;
    align-items: center;
    gap: 20px;
    background: url(../images/plus_icon.png)no-repeat 92% center;
}

.chartdet-div02-ul li.active .chartdet-div02-ul-title {
    background: url(../images/minus_icon.png)no-repeat 92% center;
}

.chartdet-div02-ul-img img {
    width: 100px;
    max-width: unset;
}

.chartdet-div02-ul li.on .chartdet-div02-ul-img img {
    width: 100px;
    height: 100px;
}

.chartdet-div02-ul-title div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chartdet-div02-ul-title div:nth-child(1) {
    width: 32px;
}

.chartdet-div02-ul-title div:nth-child(2) {
    flex: 1;
    padding-right: 50px;
    overflow: hidden;
}

.chartdet-div02-ul li.on .chartdet-div02-ul-title div p {
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 48px;
    line-height: 1.2;
    word-break: break-all;
}

.chartdet-div02-ul-title .chartdet-div02-ul-txt01 {
    font-size: 20px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 5px;
}

.chartdet-div02-ul-title .chartdet-div02-ul-txt02 {
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 5px;
    word-break: break-word;
}

.chartdet-div02-ul-txt {
    width: 100%;
    display: flex;
    max-width: 280px;
    justify-content: flex-end;
}

.chartdet-div02-ul-txt span {
    color: #000;
    font-size: 18px;
    display: flex;
    /* width: 100%; */
    width: 70px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
}

.chartdet-div02-ul-txt span:first-of-type {
    display: none;
}

.chartdet-div02-ul-txt span:nth-of-type(2) {
    background-color: #edebeb;
}

.chartdet-div02-ul-txt span:nth-of-type(4) {
    background-color: #edebeb;
}

.chartdet-div02-ul li.on .chartdet-div02-ul-txt span {
    font-size: 30px;
    font-weight: bold;
}

.active .chartdet-div02-ul-txt span {
    color: #1a48c4;
}

.active .chartdet-div02-ul-txt span:nth-of-type(2) {
    background-color: #fff;
}

.active .chartdet-div02-ul-txt span:nth-of-type(4) {
    background-color: #fff
}




.chartdet-div02-ul li.active .active-div {
    display: flex;
    width: 100%;
}

.active-div {
    display: none;
}

.active-div01 {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 285px;
}

.active-div01:after {
    content: "";
    background: rgba(16, 17, 25, .65);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.active-div01 img {
    padding: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 250px;
}

.active-div02 {
    width: 50%;
    padding: 25px;
}

.active-div02 .tabmenu02 {
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.active-div02 .tabmenu02 li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 50px;
}

.active-div02 .tabmenu02 li a {
    font-size: 12px;
    color: #1a48c4;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-weight: 600;
    height: 100%;
}

.active-div02 .tabmenu02 li.on a:after {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background-color: #1a48c4;
    margin-top: 5px;
}

.tab-content>div {
    display: none;
}

.share-div {}

.share-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 0;
}

.share-form li {}

.share-form li a {
    height: 36px;
    display: flex;
    justify-content: center;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    gap: 10px;
    align-items: center;
}

.share-form li a img {}

.share-form li a span {
    font-size: 12px;
    font-weight: 600;
    color: #1a48c4;
}

.share-div {}

.share-form02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0;
    width: 100%;
    margin: 0 auto;
    max-width: 220px;
}

.share-form02.single {
    display: block;
}

.share-form02.single li:first-of-type {
    border-right: none;
}

.share-form02 li {}

.share-form02 li:first-of-type {
    border-right: 1px solid #ccc
}

.share-form02 li a {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-form02 li a p {
    width: 30px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-form02 li a img {}

.share-form02 li a span {
    font-size: 12px;
    font-weight: 600;
    color: #1a48c4;
}



.new-text {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a48c4;
}

.tab-div01 {}

.tab-div01 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.tab-div01 ul li {
    border-right: 1px solid #d7d7d7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 11px;
}

.tab-div01 ul li span:first-of-type {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: 12px;
    font-weight: bold;
}

.tab-div01 ul li span:last-of-type {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: 25px;
    font-weight: bold;
}

.tab-div01 ul li:last-of-type {
    border-right: 0;
}

.tab-div02 {}

.tab-div03 {
    display: flex;
    gap: 20px;
}

.tab-div03 img {
    max-width: 100px;
}

.tab-div03 p {
    font-size: 16px;
}











.chart-more {
    color: #e3e3e3;
    font-size: 14px;
    height: 60px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.chartdet-pop04 {
    display: none;
    width: 240px;
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    top: 30px;
    right: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .3019607843);
    z-index: 2;
    cursor: default;
}

.chartdet-pop04.on {
    display: block;
}

/* .chartdet-pop04:before{content:'';display:block;width:8px;height:8px;background:url(../images/dot_icon.png)no-repeat 0 0;background-size:100%;position: absolute;top: -8px;right: 10px;} */
.chartdet-pop04 .pop04-div01 {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.chartdet-pop04 .pop04-div01 p {
    font-size: 16px;
    font-weight: 600;
}

.chartdet-pop04 ul {
    padding: 0 20px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.chartdet-pop04 ul li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.chartdet-pop04 ul li i {
    width: 36px;
}

.chartdet-pop04 ul li p {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.chartdet-pop04 .pop04-div02 {
    padding: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chartdet-pop04 .pop04-div02 p {
    font-size: 14px;
    font-weight: 600;
}


/* 가수 상세 */
.det-div01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.det-div01 h3 {}

.det-div01 .social {
    border-left: 1px solid #f0f0f0;
    display: flex;
    gap: 20px;
}

.det-div02 {
    margin-top: 60px;
}

.det-div02 .swiper {}

.det-div02 .swiper-button {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.det-div02 .swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.det-div02 .swiper .swiper-slide img {
    width: -webkit-fill-available;
    max-width: 645px;
}

.det-div02 .swiper-button .swiper-button-next {
    background: url(../images/right_arrow02.png) no-repeat 0 0;
    width: 30px;
    height: 15px;
    position: absolute;
    top: unset;
    left: unset;
    right: 0;
}

.det-div02 .swiper-button .swiper-button-prev {
    background: url(../images/left_arrow02.png) no-repeat 0 0;
    width: 30px;
    height: 15px;
    position: absolute;
    left: 0;
    top: unset;
}

.det-div03 {
    border-top: 1px solid #111;
    margin-top: 60px;
}

.det-div03 ul {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.det-div03 ul li {}

.det-div03 ul li:first-of-type {
    border-right: 1px solid #111;
}

.det-div03 ul li a {
    padding: 0 30px;
    font-size: 18px;
    font-weight: bold;
    color: #999;
    ;
}

.det-div03 ul li.on a {
    color: #111;
}

.det-div04 {
    margin-top: 30px;
    position: relative;
}

.det-div04>p {
    padding: 0 30px;
    height: 60px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    background: url(../images/det_dot01.png)no-repeat 96% center #111;
    cursor: pointer;
}

.det-div04>div {
    background-color: #fff;
    padding: 20px;
    position: absolute;
    width: 100%;
    max-width: 180px;
    text-align: left;
    right: 0;
    top: 0;
    z-index: 2;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .3019607843);
}

.det-div04>div.on {
    display: block;
}

.det-div04>div div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.det-div04>div ul li {
    margin-bottom: 20px;
}

.det-div04>div ul li:last-of-type {
    margin-bottom: 0;
}

.det-div04>div ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    display: block;
}

.det-div04>div ul li a:hover {
    color: rgb(32, 121, 222);
}



.det-div05 {
    margin-top: 10px;
}

.det-div05 ul {}

.det-div05 ul:first-of-type li:first-of-type {
    display: flex;
}

.det-div05 ul li {
    height: 60px;
    display: flex;
    padding-left: 30px;
    border-bottom: 1px solid #111;
}

.det-div05 ul li:first-of-type {
    display: none;
    background-color: #999;
    border-bottom: 0;
}

.det-div05 ul li:first-of-type span {
    color: #fff !important;
}

.det-div05 ul li span {
    width: 12.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500
}

.det-div05 ul li span:nth-of-type(1) {
    width: 50%;
    justify-content: left;
}

.det-div05 ul li span:nth-of-type(2) {
    color: #999;
}

.det-div05 ul li span:nth-of-type(3) {}

.det-div05 ul li span:nth-of-type(4) {
    color: #999;
}

.det-div05 ul li span:nth-of-type(5) {}













.det-div06.search-sub {
    margin-top: 60px;
}

.det-div06.search-sub h4 {
    font-size: 30px;
    font-weight: 600;
    ;
}

.det-div06.search-sub .sec03 {
    margin-top: 30px;
}

.search-sub .sec03 .sec03-txt04 {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    ;
}

.star01 {
    background: url(../images/chart_star.png)no-repeat center;
    width: 16px;
    height: 14px;
}

.star02 {
    background: url(../images/chart_star.png)no-repeat center;
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active .star01 {
    background: url(../images/chart_star_on.png)no-repeat center;
}

.active .star02 {
    background: url(../images/chart_star_on.png)no-repeat center;
    border: 1px solid #1a48c4;
}

.info-div {
    max-width: 960px;
    margin: 90px auto 20px;
}

.info-div .title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
}

.info-div .description {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.5;
    margin-bottom: 8rem;
}

/* TOP IMAGE SWIPER */
/* 커스텀 버튼 */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
    /* 또는 display:none */
}

.top-container .custom-prev {
    background: url(../images/arrow_left.png) no-repeat center;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 1%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.top-container .custom-next {
    background: url(../images/arrow_right.png) no-repeat center;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    right: 1%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* 슬라이드 아이템 */
.top-container .swiper-slide .swiper-slide-item {
    position: relative;
}

.top-container .swiper-slide .swiper-slide-item .txt-wrap {
    position: absolute;
    bottom: 5%;
    height: fit-content;
    width: 100%;
    top: unset;
}

/* 3초 동안 점점 보이기 */
@keyframes capFadeUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.top-container .swiper-slide .swiper-slide-item .txt-wrap .title {
    background-color: revert;
    font-size: 42px;
    color: #FFFFFF;
    animation: capFadeUp 5s ease forwards;
}

@media screen and (max-width:1200px) {
    .top-container .swiper-slide .swiper-slide-item .txt-wrap .title {
        font-size: 32px;
    }
}

@media screen and (max-width:960px) {
    .top-container .swiper-slide .swiper-slide-item .txt-wrap {
        bottom: 7%;
    }

    .top-container .swiper-slide .swiper-slide-item .txt-wrap .title {
        font-size: 24px;
    }
}

@media screen and (max-width:768px) {

    .top-container .custom-prev,
    .top-container .custom-next {
        display: none;
    }

}

/* 페이드 + 확대 효과 */
.top-container .swiper-slide .img-wrap img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 3s ease-in-out;
}

.top-container .swiper-slide-active .img-wrap img {
    transform: scale(1.1);
    /* 슬라이드 넘어가면서 점점 커짐 */
}

/* 불릿 */
.top-container .swiper-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    bottom: 5%;
}

/* 불릿 기본 점(컨테이너) */
.top-container .swiper-pagination-bullet {
    width: 50px;
    /* 길게: 진행바 느낌 */
    height: 2px;
    padding: 0;
    background: rgba(255, 255, 255, .3);
    border-radius: 9999px;
    overflow: hidden;
    /* 내부 bar 가 넘치지 않게 */
    opacity: 1;
    /* Swiper 기본 투명도 제거 */
}

/* 채워지는 막대 */
.top-container .swiper-pagination-bullet .bar {
    display: block;
    width: 0%;
    height: 100%;
    background: #FFFFFF;
    transform-origin: left center;
}

/* 활성 불릿에만 3초 동안 0→100% */
@keyframes fill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.top-container .swiper-pagination-bullet-active .bar {
    animation: fill 3s linear forwards;
}

@media screen and (max-width:1400px) {
    .sub-inner {
        max-width: 100%;
    }

    .sub-inner .sub-div01 {
        width: 65%;
        margin-right: 5%;
        padding-left: 20px;
    }

    .sub-div02 {
        width: 30%;
        padding-right: 20px;
    }
}

@media screen and (max-width:1200px) {
    .mo-tabl {
        display: block;
    }

    .sub-inner02 .sub-div03 {
        max-width: 100%;
    }

    header .header-inner h1 {}

    header .header-inner>.gnb>li>a {
        font-size: 14px;
    }

    header .header-inner {
        column-gap: 10px;
    }

    header .header-inner>.gnb>li {
        padding-right: 30px;
    }

    header .header-inner>.gnb>li .submenu {
        width: 95%;
    }

    .pc {
        display: none;
    }

    .tabl {
        display: block;
    }

    .sec03>div ul li a>.sec03-inner .sec03-txt01 {
        font-size: 28px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sec03>div ul li a>.sec03-inner .sec03-icon {
        margin-bottom: 15px;
    }

    .sec04 .sec04-inner ul li {
        width: 250px;
        height: 400px;
    }

    .sec04 .sec04-inner ul li .video-container {
        height: 400px;
    }

    footer {
        padding: 0 3rem;
    }

    footer .foot-inner {
        padding: 3rem 0;
    }

    footer .foot-inner>div {
        flex-direction: column;
        gap: 3rem;
    }

    footer .foot-inner>div ul {
        gap: 15px;
        ;
        align-items: flex-start;
    }

    /* footer .foot-inner>div ul li {
        margin-bottom: 2rem;
    } */

    footer .foot-inner>div ul li:after {
        display: none;
    }

    footer .foot-inner>div p {
        margin-top: 3rem;
    }

    footer .foot-inner .foot-info {
        margin-top: 24px;
    }

    footer .foot-inner .foot-info p {
        font-size: 13px;
        line-height: 1.6;
        word-break: keep-all;
        margin-bottom: 8px;
    }

    footer .foot-inner .foot-info .foot-sep {
        display: none;
    }

    footer .foot-inner .foot-info p span {
        display: block;
    }

    .sec04 .sec04-inner ul li a>.sec04-txt {
        padding: 10px;
        left: 0;
    }

    .sec04 .sec04-inner .swiper-button-prev {
        margin-top: -40px;
    }

    .sec04 .sec04-inner .swiper-button-next {
        margin-top: -40px;
        right: 0
    }

    /* .sec04 .sec04-inner .swiper{margin-right:-5%} */




    .new-right-div01 .hot-link {
        margin-left: 40px;
        width: 80%;
    }

    .new-right-div01 ul {
        margin-top: 45px;
    }

    /* .new-right-div01 ul.swiper-slide-active{margin-top:0;} */
    .trend-div .hot-link,
    .special-div .hot-link {
        width: 100%;
        margin-left: 0;
        padding-bottom: 26px;
    }

    .trend-div .hot-link {
        height: auto;
        line-height: 1.6;
        padding: 0;
        margin-bottom: 26px;
    }

    .trend-div .hot-link::after,
    .chart .trend-div .hot-link::after {
        bottom: -26px;
    }

    .new-right-div01 .swiper-pagination {
        margin-left: 60px;
    }

    .new-right-div01 ul.swiper-slide-active li.first:after {
        width: 22px;
        left: -21px;
    }

    .sub-left .news-left-inner ul li a {
        flex-direction: column;
        padding: 0 40px;
        gap: 30px
    }

    .sub-left .news-left-inner ul li a .news-img {
        max-width: 100%;
    }

    .sub-left .news-left-inner ul li a .news-txt {
        max-width: 100%;
        margin-top: 0;
    }

    .new-right-div01 ul li a {
        margin-left: 40px;
        padding: 20px 0;
    }

    .sub-right>div {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 6px;
    }

    .sub-right>div.new-right-div01 {
        padding-right: 0;
    }

    .sub-right>div.trend-div {
        padding-top: 5px;
    }

    .footer .foot-div-inner {
        padding: 0 40px;
    }

    .footer .foot-div02 div>ul {
        gap: 20%;
    }

    .footer .foot-div02 div>ul li:last-of-type {
        width: 25%;
    }

    /* .sub-title .sub-list{gap:15px;} */
    .sub-left .swiper-button {
        padding: 0 40px
    }

    .spec-div {
        padding-left: 40px;
    }

    .spec-div .spec-txt {
        margin: 20px 0;
        padding: 0 10px;
    }

    .spec-div .spec-div01>div img {
        max-width: 100%;
        max-height: 100%
    }

    .spec-div .spank-div {
        margin-top: 20px;
    }

    .spec-div .spec-div01 .spec-txt {
        padding-left: 10px;
        padding-right: 50px;
        margin-left: 0;
    }

    .spec-div .spec-div02 {
        justify-content: center;
        margin: 60px 0 50px;
    }

    .spec-div .spec-div02 ul {
        gap: 20px;
    }

    .spec-div .spec-div02 ul li {
        max-width: 100%;
    }

    .spec-div .spec-div02 ul li a img {
        max-width: 100%;
        max-height: 100%;
    }

    .spec-div .spec-div01>div:before {
        left: -100px;
        height: 70%
    }

    .search-div .search-div-inner {
        padding: 0 40px;
    }

    .border-img .border-img-inner {
        --b: 0;
        --g: 0;
    }

    .first .border-img .border-img-inner {
        --b: 0;
        --g: 0;
    }

    /* .sub-left.spec{padding-left:20px;} */
    .sub-form {
        width: 100%;
    }

    .acc-cancel .acc-can-txt.on {
        display: none;
    }

    .search {
        display: none;
    }

    .mo-srh-btn {
        width: 40px;
        height: 40px;
        display: block;
        border: 0;
        padding: 0;
        position: relative;
    }

    .mo-srh-btn i {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px
    }

    .mo-srh-btn i:before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        border: 2px solid #fff;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        margin-top: -12px;
        margin-left: -9px;
        z-index: 2;
    }

    .mo-srh-btn i:after {
        content: "";
        position: absolute;
        width: 2px;
        height: 8px;
        background-color: #fff;
        transform: rotate(130deg);
        left: 32px;
        top: 25px;
        border-radius: 5px;
        z-index: 1;
    }

    .spec-detail {
        padding-left: 40px;
    }

    .menu-open02 {
        background-color: #000;
        position: absolute;
        width: 100%;
        top: -100vh;
        height: 30vh;
        transition: all 0.4s ease-in-out;
        border-top: 1px solid #222;
        z-index: 10;
        display: block;
    }

    .menu-open02.open {
        top: 110px;
    }

    .menu-open02 .menu-inner {
        padding: 0 40px;
    }

    .menu-open02.open .menu-bg {
        display: block;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        ;
    }

    .menu-open02 .menu-search {
        position: relative;
        margin-top: 40px;
    }

    .menu-open02 .menu-search form {
        display: flex;
    }

    .menu-open02 .menu-search form input {
        outline: 0px;
        border: 0;
        width: calc(100% - 60px);
        background: #000;
        font-size: 16px;
        font-weight: 500;
        height: 60px;
        padding: 0 10px;
        display: flex;
        align-items: center;
        color: #fff;
        border-bottom: 1px solid #fff;
    }

    .menu-open02 .menu-search form a {
        width: 60px;
        height: 60px;
        border: 0;
        padding: 0;
        position: relative;
        box-sizing: border-box;
        outline: none;
        background-color: #000;
        border-bottom: 1px solid #fff;
    }

    .menu-open02 .menu-search form a i {
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
    }

    .menu-open02 .menu-search form a i:before,
    .menu-open02 .menu-search form a i:after {
        content: "";
        position: absolute;
    }

    .menu-open02 .menu-search form a i:before {
        width: 20px;
        height: 20px;
        border: 2px solid #fff;
        border-radius: 50%;
        top: 48%;
        left: 50%;
        margin-top: -9px;
        margin-left: -6px;
        z-index: 2;
        transition: all 0.2s ease-in-out
    }

    .menu-open02 .menu-search form a i:after {
        width: 2px;
        height: 8px;
        background-color: #fff;
        transform: rotate(130deg);
        left: 46px;
        top: 38px;
        border-radius: 5px;
        z-index: 1;
        transition: all 0.2s ease-in-out
    }

    .mo-srh-btn.open i {
        display: none;
    }

    .mo-srh-btn.open {
        background: url(../images/gnb_on.png) no-repeat center;
        width: 40px;
        height: 40px;
        background-size: 50%;
    }

    .mo-srh-btn.off {
        display: none;
    }

    .new-right-div01 ul li a:hover:after {
        width: 0;
    }

    .trend-div ul li a:hover:after {
        width: 0
    }

    .trend-div ul li a {
        padding: 20px 0;
    }

    .trend-div ul li:first-of-type a {
        padding-top: 30px;
    }

    .trend-div ul li a .trend_txt02 {
        margin-top: 25px;
    }

    .trend-div ul li a .trend_txt03 {
        margin-top: 20px;
    }

    .special-div ul li a:hover:after {
        width: 0;
    }

    .coming-div {
        margin: 120px auto;
    }

    .sub-form .sub-form-inner .sub-form-txt {
        padding: 40px 0 40px 40px;
    }

    .sub-form p {
        font-size: 26px;
    }

    .spec-div .spec-div01 .border-img .border-img-inner P:after {
        width: 60px;
        height: 60px;
        background-size: 100%;
    }

    .spec-div .spec-txt .spec-txt04 {
        margin-top: 20px;
    }

    .trend-div .swiper-backface-hidden .swiper-slide {
        margin-top: 5px;
    }

    /* .spec-detail .spec-photo p{height:400px;} */
    .spec-detail .spec-photo .none-login01,
    .spec-detail .spec-photo .none-login02 {
        height: 27rem;
    }

    .special-div ul li a {
        padding: 20px 0;
    }

    .sub-left .swiper-button02 {
        padding-left: 40px;
    }

    /* .chartdet-div01,.chartdet-div02{padding-left:20px;} */
    /* .sub-inner02{flex-direction: column;} */
    .sub-div03-inner,
    .chartdet-div02 {
        padding: 0;
    }

    .chartdet-div02-ul-num {
        width: 10%;
    }

    .chartdet-div02-ul>li.on>a {
        height: 100px;
    }

    .chartdet-div02-ul li.on .chartdet-div02-ul-img img {
        width: 100px;
        max-width: unset;
        height: 100px;
    }

    .chartdet-div02-ul-img {
        width: 20%;
        margin-right: 0;
    }

    .chartdet-div03 {
        width: 78%;
        justify-content: space-between;
    }

    .chartdet-div02-title>p {
        width: 10%;
    }

    .chartdet-div02-title .chartdet-div02-title-div04 {
        max-width: 290px;
        max-width: 70%;
        width: unset;
    }

    .chartdet-div02-ul-txt {
        max-width: 70%;
        width: unset;
    }

    .chartdet-div02-title .chartdet-div02-title-div04 span {
        width: 50px;
    }

    .chartdet-div02-ul-txt span {
        width: 50px;
    }

    .chart-list {
        gap: 30px;
    }

    .chart-list>div ul li .chart-list-p01 {
        flex-direction: column;
        justify-content: center;
        padding-right: 10px;
    }

    .chart-main-ul>li .chart-main-list div p:first-of-type {
        font-size: 20px;
    }

    /* .chart-main-ul > li .chart-main-list div img{max-width: 27px;}
    .chart-main-ul > li .chart-main-list div img.new{max-width: 32px;} */
    .chart-main-ul>li .chart-main-list div p:last-of-type span:first-of-type {
        font-size: 14px;
    }

    .chart-main-ul>li .chart-main-list div p:last-of-type span:last-of-type {
        font-size: 12px;
    }

    .chart-main-ul>li .chart-main-num {}

    .chart-main-ul>li .chart-main-num ul li p:first-of-type {
        font-size: 10px;
    }

    .chart-main-ul>li .chart-main-num ul li p:last-of-type {
        font-size: 18px;
    }

    .sub-inner02 {
        padding: 0 1rem;
    }

    .chartdet-div02-ul-title {
        gap: 10px;
        /* padding-right: 2rem; */
        width: 100%;
    }

    .chartdet-div02-ul-title div:nth-child(1) {
        display: none;
    }

    .chartdet-div02-ul-title div:nth-child(2) {
        padding-right: 45px;
        padding-left: 5px;
    }

    .chartdet-div02-ul-title .chartdet-div02-ul-txt01 {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }

    .chartdet-div02-ul-title .chartdet-div02-ul-txt02 {
        font-size: 14px
    }

    .allchart-div02 h4 {
        font-size: 20px;
    }

    .chart-list>div ul li div {
        margin: 0 5px;
    }

    .chart-list>div ul li .chart-list-p02 {
        margin: 0 5px;
    }

    .chart-list>div ul li img {
        height: 100px;
        width: 100px;
    }

    .chart-list>div ul li .chart-list-p02 span:first-of-type {
        font-size: 18px;
    }

    .chart-list>div ul li .chart-list-p02 span:last-of-type {
        font-size: 14px;
    }

    .allchart-div01-div01 div p:last-of-type span:first-of-type {
        font-size: 24px;
    }

    .info-div {
        margin: 6rem auto 9rem;
        padding: 0 2rem;
    }

    .info-div .title {
        font-size: 40px;
        font-weight: 700;
    }

    .info-div .description {
        font-size: 18px;
        font-weight: 400;
    }
}

@media screen and (max-width:960px) {

    .sub-inner {
        flex-direction: column;
        margin: 3rem 0 0;
        gap: 3rem;
    }

    .sub-inner .sub-div01 {
        width: 100%;
        padding: 0 2rem;
    }

    .sub-div02 {
        width: 100%;
        padding: 0 2rem;
        padding-bottom: 4rem;
    }

    .sub-inner .sub-div01 h3 {
        flex: 1;
        font-size: 4rem;
    }

    .sub-inner .sub-div01 .sub-div01-main a p {
        font-size: 2.4rem;
        margin-top: 2rem;
    }

    .sub-inner .sub-div01 .sub-div01-list a p {
        margin-top: 2rem;
        font-size: 1.8rem;
    }

    .sub-inner .sub-div01 .sub-div01-list {
        /* flex-direction: column; */
        margin-top: 4.8rem;
        padding-bottom: 3rem;
        gap: 2rem;
    }

    .trend-div .hot-link {
        width: 100%;
    }

    .trend-div ul li a {
        width: 100%;
        max-width: 100%;
        padding: 2rem 0;
    }

    .sub-list {
        margin-top: 6rem;
        margin-bottom: 3rem;
    }

    .sub-list ul li a {
        width: 100%;
        padding-right: 5%;
    }

    .sub-list ul li a span {}

    .sub-inner02 {
        flex-direction: column;
    }
}

@media screen and (max-width:768px) {
    .pctabl {
        display: none;
    }

    .mobile-hidden {
        display: block !important;
    }

    .pc-hidden {
        display: none !important;
    }

    header {
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
    }

    .ad-div {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-bottom: 3rem;
        padding: 1rem;
    }

    .ad-div img {
        width: 100%;
        /* transform-origin: center; */
        /* transform: scale(3); */
    }

    html {
        font-size: 10px;
        width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 1.4rem;
        width: 100%;
        overflow-x: hidden;
    }

    .pc {
        display: none;
    }

    .tabl {
        display: none;
    }

    .mo {
        display: block
    }

    .img-inner img {
        height: auto;
    }

    .scroll-top {
        right: 3rem;
        bottom: 3rem;
    }

    .srh-form {
        padding: 0 2rem;
    }

    .sub-title.sub-section {
        margin-top: 0rem;
    }

    .search-div .sub-title h3 {
        font-size: 4rem;
        margin-top: 0;
    }

    .search-sub h3 {
        font-size: 2rem;
        margin-top: -2rem;
    }

    header .header-img {
        order: 2;
        padding-top: 121px;
    }

    header.scrolled .header-img {
        margin-top: 12rem;
    }

    header .header-img p {
        font-size: 3rem;
    }

    header .header-inner {
        position: fixed;
        width: 100%;
        height: auto;
        padding: 0;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            'area3 area2 area4'
            'area1 area1 area1';
        grid-template-rows: 6rem 6rem;
        /* position: absolute; */
        /* top: 0; */
        /* left: 0; */
        /* */
        order: 1;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, .1607843137);
    }

    header.scrolled .header-inner {
        transform: translateY(0);
    }

    header .header-inner .social {
        display: none;
    }

    header .header-inner .srh-btn01 {
        padding-left: 3rem;
    }

    header .header-inner .login-btn {
        display: none;
    }

    header .header-inner a.top-instagram-btn {
        grid-area: area4;
        padding-right: 3rem;
        display: block;
    }

    header .header-inner a.top-instagram-btn img {
        width: 32px;
    }

    header .header-inner>.gnb {
        border-top: 1px solid #f0f0f0;
    }

    header .header-inner>.gnb>li {
        padding-right: 0;
        width: 100%;
        border-right: 1px solid #f0f0f0;
    }

    header .header-inner>.gnb>li:last-of-type {
        border-right: 0;
    }

    header .header-inner>.gnb>li a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .header-inner>.gnb>li>a:after {
        display: none;
    }

    .mo-gnb>div {
        display: block;
        bottom: 0;
        height: 100vh;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        background-color: #fff;
        z-index: 5;
        transform: translateX(-100%);
        transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .mo-gnb>div.active {
        transform: translateX(0);
    }

    .mo-gnb .mo-gnb-inner {}

    .mo-gnb .mo-gnb-inner .mo-gnb-title {
        height: 6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .mo-gnb .mo-gnb-inner .mo-gnb-title p {
        font-size: 1.4rem;
        font-weight: 600;
    }

    .mo-gnb .mo-gnb-inner .mo-gnb-title .mo-close-btn {
        display: block;
        width: 1.8rem;
        position: absolute;
        right: 1.5rem;
    }

    .mo-gnb .mo-gnb-inner .mo-gnb-txt {
        height: calc(100dvh - 6rem);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mo-gnb .mo-gnb-inner .mo-submenu {
        margin-top: 4rem;
    }

    .mo-gnb .mo-gnb-inner .mo-submenu li {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .mo-gnb .mo-gnb-inner .mo-submenu li a {
        font-size: 2rem;
        font-weight: 600;
        width: 100%;
        display: block;
    }

    .mo-gnb .mo-gnb-inner .social {
        display: flex;
        gap: 3rem;
        align-items: center;
        justify-content: center;
        height: 6rem;
        border-top: 1px solid #f0f0f0;
    }

    .mo-gnb .mo-gnb-inner .social li {}

    .mo-gnb .mo-gnb-inner .social li a {}

    section {
        padding: 0;
    }

    .sec01>div p {
        font-size: 3rem;
        height: 10rem;
        padding-top: 3rem;
    }

    section>div h3 {
        font-size: 2rem;
        margin-bottom: 2.4rem;
    }

    .sec02,
    .sec03,
    .sec04 {
        padding: 2rem 1.6rem;
    }

    /* .sec02 ul {
        flex-direction: column;
    } */

    .sec02 ul li {
        width: 100%;
    }

    .sec02 ul li a>div {
        height: auto;
        margin-bottom: 2rem;
    }

    .sec03>div ul li {
        margin-bottom: 3rem;
    }

    .sec03>div ul li:last-of-type {
        margin-bottom: 2rem;
    }

    .sec03>div ul li a {
        flex-direction: column;
    }

    .sec03>div ul li a .img-inner {
        width: 100%;
    }

    .sec03>div ul li a>.sec03-inner>div {
        margin-bottom: 1rem;
    }

    .sec03>div ul li a>.sec03-inner {
        width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }

    .sec03>div ul li a>.sec03-inner .sec03-txt01 {
        font-size: 2rem;
    }

    .sec03>div ul li a>.sec03-inner .sec03-txt02 {
        font-size: 1.5rem;
    }

    .sec03>div ul li a>.sec03-inner .sec03-txt03 {
        font-size: 1.4rem;
    }

    .sec03>div ul li a>.sec03-inner .sec03-icon {
        margin-bottom: 1rem;
    }

    .sec03 .more-btn {
        font-size: 1.5rem;
        height: 4rem;
    }

    .sec04 .sec04-inner ul li {
        width: 16rem;
        height: 30rem;
    }

    .sec04 .sec04-inner ul li .video-container {
        height: 30rem;
    }

    .sec04 .sec04-inner ul li a>.sec04-txt {
        gap: 2rem;
        bottom: 2rem;
        left: 0rem;
    }

    .sec04 .sec04-inner ul li a>.sec04-txt .sec04-txt02 {
        position: absolute;
        top: -15rem;
        right: 1rem;
        font-size: 1.4rem;
    }

    .sec04 .sec04-inner ul li a>.sec04-txt .sec04-txt03 {
        font-size: 1.6rem;
    }

    .sec04 .sec04-inner .swiper {
        margin-right: -1.5rem;
        padding: 0;
    }

    .sec04 .sec04-inner .swiper-button-prev {
        left: -3rem;
        margin-top: -45px;
    }

    .sec04 .sec04-inner .swiper-button-next {
        right: -2rem;
        margin-top: -45px;
    }

    footer {
        padding: 0 3rem;
    }

    footer .foot-inner {
        padding: 3rem 0;
    }

    footer .foot-inner>div {
        flex-direction: column;
        gap: 3rem;
    }

    footer .foot-inner>div ul {
        flex-direction: column;
        align-items: flex-start;
        gap: unset;
    }

    footer .foot-inner>div ul li {
        margin-bottom: 1.2rem;
    }

    footer .foot-inner>div ul li:after {
        display: none;
    }

    footer .foot-inner>div p {
        margin-top: 3rem;
    }

    footer .foot-inner .foot-menu {
        flex-direction: row;
        gap: 50px;
    }

    footer .foot-inner .foot-info {
        margin-top: 20px;
    }

    footer .foot-inner .foot-info p {
        font-size: 12px;
        line-height: 1.6;
        word-break: keep-all;
        margin-bottom: 6px;
    }

    footer .foot-inner .foot-info dt,
    footer .foot-inner .foot-info dd {
        font-size: 12px;
    }

    footer .foot-inner .foot-info .foot-sep {
        display: none;
    }

    footer .foot-inner .foot-info p span {
        display: block;
    }

    .trend-div ul li a .trend_txt02 {
        font-size: 1.6rem;
    }

    .sub-title-txt p {
        font-size: 3rem;
    }

    .sub-div-info p {
        margin-top: 2rem;
        font-size: 1.6rem;
    }

    .sub-inner .sec03>div ul li a>.sec03-inner {
        margin-left: 0;
    }

    .not-scroll .container {
        padding-top: 10rem;
    }

    .popup_open .out-pop {
        width: 90%
    }

    .popup_open .out-pop-inner .out-pop-title {
        height: 6rem;
        padding: 0 2rem;
    }

    .popup_open .out-pop-inner .out-pop-title h3 {
        font-size: 2rem;
    }

    .popup_open .out-pop-info {
        padding: 2rem;
    }

    .popup_open .out-pop-info .login-button {
        height: 6rem;
        margin-top: 3rem;
    }

    .popup_open .out-pop-info .join-login p {
        width: calc(100% - 4rem);
        display: none;
    }

    .popup_open .out-pop-info .join-login li {
        /* display:block; */
        margin-bottom: 2rem;
    }

    .popup_open .out-pop-info .join-login li a {
        text-align: center;
        display: block;
        width: 100%;
        text-align: left;
        background: url(../images/btn_arrow.png)no-repeat 100% 50%;
    }

    .popup_open .out-pop-info .join-sns {
        margin-top: 3rem;
    }

    .popup_open .out-pop-info .join-sns ul {
        margin: 3rem 0;
        gap: 3rem;
    }

    .popup_open .out-pop-info .join-sns ul li a {
        width: 5rem;
        display: block;
    }

    .sub-div h2 {
        margin: 6rem 0 3rem;
        font-size: 4rem;
    }

    .password-form {
        width: 100%;
        padding: 0 2rem;
        margin: 0 auto 9rem;
    }

    .pass-btn>a {
        height: 6rem;
    }

    .join-check input[type='checkbox'] {
        width: 2rem;
    }

    .join-check.first-div label {
        width: calc(100% - 2rem)
    }

    .join-login li p {
        display: none;
    }

    .join-login li a {
        display: block;
        background: url(../images/btn_arrow.png)no-repeat 100% 50%;
        width: 100%;
    }

    .join-btn {
        width: 10rem;
        height: 6rem;
    }

    .pass-input input.type-txt {
        height: 6rem;
    }

    .login-form {
        max-width: 100%;
        padding: 0 2rem;
        margin: 0 auto 9rem;
        ;
    }

    .login-form .login-txt {
        font-size: 1.5rem;
        padding: 12rem 0 4rem;
    }

    .login-form .login-txt span {
        font-size: 1.8rem
    }

    .login-form .login-btn {
        height: 6rem;
    }

    .mem-pay {
        margin-top: 6rem;
    }

    .mem-pay .mem-btn {
        height: 6rem;
    }

    .mem-info01 {
        padding: 2rem 1rem;
        ;
    }

    .mem-info01 li p span:first-of-type {
        display: block;
    }

    .mem-info01 li p span:last-of-type {
        display: block;
        margin-left: 0;
        margin-top: 1rem;
    }

    .acc-form {
        max-width: 100%;
        margin: 0 auto 9rem;
        padding: 0 2rem;
    }

    .acc-cancel .acc-can-txt {
        padding: 1.5rem;
    }

    .acc-subbtn {
        height: 6rem;
        margin-top: 4rem;
    }

    .acc-txt {
        word-break: keep-all;
    }

    .pass-btn {
        margin-top: 4rem;
    }

    .popup_open .acc-pop {
        width: 90%;
    }

    .acc-cancel .acc-can-txt.on {
        display: none;
    }

    .pass-btn p span {
        display: none;
    }

    .pass-btn p a {
        background: url(../images/btn_arrow.png)no-repeat 100% 50%;
        width: 100%;
    }

    .footer .scroll-top {
        width: 4rem;
        height: 4rem;
        right: 2rem;
        position: absolute;
        bottom: 5rem;
    }

    .acc-a {
        text-align: left;
    }

    .acc-a a {
        display: block;
        background: url(../images/btn_arrow.png)no-repeat 100% 50%;
        width: 100%;
        ;
    }

    .sub-title {
        margin: 0;
        width: 100%;
    }

    .sub-title h2 {
        font-size: 4rem;
    }

    .sub-title .slide-bx {
        overflow: hidden;
        width: 100%
    }

    .sub-title .slide-bx ul {
        transform: translate3d(0px, 0, 0);
        transition: 0.5s;
    }

    .sub-title .slide-bx.slide-off ul {
        transform: translate3d(-100%, 0px, 0px);
    }

    .sub-title .sub-list {
        gap: 0;
        margin-top: 3rem;
    }

    .sub-title .sub-list.news {
        gap: 3rem
    }

    .sub-title .sub-list li {
        width: auto;
    }

    .sub-title .sub-list li.on:after {
        bottom: 0;
    }

    .sub-title .sub-list li a {
        font-size: 2rem;
        padding-bottom: 2rem;
    }

    .sub-title .sub-list li a:hover {
        color: #aaa;
    }

    .sub-news {
        flex-direction: column;
        margin-top: 0;
        padding: 0;
    }

    .sub-left {
        width: 100%;
    }

    .sub-left .news-div {
        justify-content: center;
    }

    .sub-left .news-left-inner {
        max-width: 100%;
        margin: 6rem 0;
    }

    .sub-left .news-left-inner ul li {
        margin-bottom: 6rem;
    }

    .sub-left .news-left-inner ul li a {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }

    .sub-left .news-left-inner ul li a .news-txt {
        max-width: 100%;
        margin-top: 0;
        padding: 0 1rem
    }

    .sub-left .news-left-inner ul li a .news-img {
        max-width: 100%;
    }

    .sub-left .news-left-inner ul li a .news-img p img {
        width: 100%;
    }

    .sub-left .news-left-inner ul li a .news-txt .news-txt-p01 {
        font-size: 1.6rem;
    }

    .sub-left .news-left-inner ul li a .news-txt .news-txt-p02 {
        font-size: 2.2rem;
        margin-top: 2rem;
    }

    .sub-left .news-left-inner ul li a .news-txt .news-txt-p03 {
        margin-top: 1.5rem;
    }

    .sub-left .news-left-inner ul li a .news-txt .news-txt-p03 span {
        font-size: 1.6rem;
    }

    .sub-left .news-left-inner ul li a .news-txt-p04 {
        margin-top: 2rem;
        font-size: 1.6rem;
    }

    .sub-left .swiper-button {
        display: none;
    }

    .more-btn {
        display: block;
        padding: 0 1rem;
    }

    .more-btn a {
        display: flex;
        background-color: #222;
        font-size: 1.5rem;
        font-weight: bold;
        height: 6rem;
        align-items: center;
        justify-content: center;
        color: #fff;
        ;
    }

    .sub-right {
        width: 100%;
        margin-top: 0;
        background-color: #fff;
        padding-bottom: 9rem;
    }

    .sub-right>div {
        margin-top: 6rem;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 3rem;
    }

    .sub-right>div.new-right-div01 {
        padding-left: 0 !important;
    }

    .new-right-div01 .hot-link {
        font-size: 2rem;
        padding: 0 2rem;
        width: 100%;
        margin: 0;
        background: url(../images/arrow_icon.svg) no-repeat 95% 50%;
    }

    .new-right-div01 ul li a {
        margin-left: 0;
        padding: 2rem;
        width: 100%;
        gap: 4rem;
        border-bottom: 1px solid #f3f3f3;
    }

    .new-right-div01 ul li:last-of-type a {
        border-bottom: 0;
    }

    .new-right-div01 ul li.first a {
        border-bottom: 0;
    }

    .new-right-div01:before {
        display: none;
    }

    .new-right-div01 ul.first.swiper-slide.swiper-slide-active:before {
        display: none;
    }

    .new-right-div01 ul li.first:before {
        display: none;
    }

    .new-right-div01 ul li a>div {
        display: flex;
        gap: 4rem;
    }

    .new-right-div01 ul li a:hover:after {
        width: 0;
    }

    .new-right-div01 ul li.first a:hover .hot-img:after,
    .new-right-div01 ul li.first a:hover .hot-img:before {
        height: 0;
    }

    .new-right-div01 ul li.first a:hover .hot-img p:after,
    .new-right-div01 ul li.first a:hover .hot-img p:before {
        width: 0;
    }

    .new-right-div01 ul li a:hover .hot-img:after,
    .new-right-div01 ul li a:hover .hot-img:before {
        height: 0;
    }

    .new-right-div01 ul li a:hover .hot-img p:after,
    .new-right-div01 ul li a:hover .hot-img p:before {
        width: 0;
    }

    .new-right-div01 .swiper-pagination {
        justify-content: center;
        margin: 0;
        margin-top: 4rem;
        ;
    }

    .new-right-div01 ul li a .hot-txt p {
        font-size: 1.8rem;
    }

    .new-right-div01 ul li a .hot-txt span {
        font-size: 1.6rem;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-weight: 400;
        height: auto;
    }

    .spec-div .spec-txt .spec-txt04 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    /* .spec-div .spec-txt .span-k{right:1rem} */
    .sub-right>div img {
        width: 100%;
    }

    .sub-right>div.trend-div {
        padding: 0 2rem;
    }

    .trend-div .hot-link {
        padding-bottom: 0;
        width: 100%;
        margin: 0;
        font-size: 2rem;
        margin-bottom: 2rem;
        /* border-bottom:0; */
    }

    .trend-div .hot-link::after {
        bottom: -2rem;
    }

    .trend-div ul li a {
        padding: 2rem 0;
        max-width: 100%;
        display: flex;
        gap: 2rem;
    }

    .trend-div ul li a .trend_txt01 {
        font-size: 2rem;
        line-height: 1.5;
    }

    .trend-div ul li a .trend_txt02 {
        margin-top: 0;
        font-size: 1.8rem;
        letter-spacing: -0.03em;
    }

    .trend-div ul li a .trend_txt03 {
        font-size: 1.6rem;
        margin-top: 2rem;
    }

    .trend-div ul li a:hover:after {
        width: 0
    }

    .trend-div .swiper-pagination {
        justify-content: center;
        margin: 0;
        margin-top: 4rem;
        ;
    }

    .sub-title .sub-title-inner {
        width: 100%;
    }

    .spec-div .spec-div01 {
        padding: 0 1rem;
    }

    .spec-div .spec-div01>div:before {
        display: none;
    }

    .spec-div .spec-div01>div a img {
        max-width: 100%;
        max-height: 100%;
    }

    .spec-div .spec-div01 .spec-txt {
        background-color: #fff;
        padding: 0 1rem;
        padding-bottom: 0;
        padding-top: 3rem;
    }

    .spec-div .spec-txt {
        padding: 2rem 1rem 0 1rem;
        max-width: 100%;
        margin: 0;
    }

    .spec-div .spec-txt .spec-txt01 {
        font-size: 1.6rem;
    }

    .spec-div .spec-txt .spec-txt02 {
        font-size: 2.4rem;
    }

    .spec-div .spec-txt .spec-txt03 {
        font-size: 1.6rem;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-weight: 400;
        height: auto;
    }

    .spec-div .spec-txt .spec-txt04 {
        font-size: 1.6rem;
        margin-top: 2rem;
    }

    .spec-div .spec-div02 {
        margin: 6rem 1rem;
    }

    .spec-div .spec-div02 ul {
        gap: 1rem;
    }

    .spec-div .spec-div02 ul li {
        max-width: 100%;
    }

    .spec-div .spec-div02 ul li a img {
        max-width: 100%;
        max-height: 100%;
    }

    .spec-div .spec-div02 ul li .spec-txt02 {
        font-size: 1.8rem;
        width: 90%;
    }

    .sub-right>div.special-div {
        margin: 6rem 2rem 0;
        padding-left: 0 !important;
        padding-bottom: 0;
    }

    .special-div .hot-link {
        padding-bottom: 0;
        width: 100%;
        margin: 0;
        font-size: 2rem;
        border-bottom: 0;
    }

    .special-div ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .special-div .swiper-pagination {
        justify-content: center;
        margin: 0;
        margin-top: 4rem;
        ;
    }

    .special-div ul li a:hover:after {
        width: 0;
    }

    .special-div ul li a .special-img {
        max-width: 100%;
        max-height: 100%;
        ;
    }

    .special-div ul li a .spec-txt {
        margin-left: 0rem;
        padding: 0 0.5rem;
    }

    .special-div ul li a .special-txt02 {
        font-size: 1.8rem;
        margin-top: 2rem;
        width: 90%
    }

    .special-div ul li a {
        padding: 2rem 0;
        max-width: 100%;
    }

    .special-sns {
        padding: 2rem 0
    }

    .spec-news {
        position: relative;
        padding: 0 1rem;
    }

    /* .spec-news:after{content: '';display: block;width: 105%;height: 2px;background-color: #000;margin-left: -3%;} */
    .spec-div {
        padding-left: 0
    }

    .spec-detail {
        padding: 0 1rem;
    }

    .spec-detail .spec-detail-title {
        margin-bottom: 4rem;
        padding: 0 1rem;
    }

    .spec-detail .spec-detail-title .spec-title-txt03 {
        margin-top: 2rem;
        font-size: 2.4rem;
    }

    .spec-detail .spec-detail-title .spec-info {
        margin-top: 2rem;
        align-items: center;
    }

    .spec-detail .spec-detail-title .spec-info:after {
        content: '';
        display: block;
        clear: both;
    }

    .spec-detail .spec-news ul {
        margin-bottom: 4rem;
    }

    .spec-detail .spec-news p {
        font-size: 2rem;
        padding-bottom: 2rem;
    }

    .spec-detail .spec-news ul li {
        display: flex;
        height: 60px;
        align-items: center;
    }

    .spec-detail .spec-news ul li a {
        font-size: 1.8rem;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-weight: 400;
        height: auto;
    }

    .search-div {}

    .search-div .search-div-inner {
        max-width: 100%;
        margin: auto;
        margin-top: 4rem;
        padding: 0 1rem;
    }

    .search-div .search-div-inner>div {
        padding: 0 1rem;
        padding-bottom: 3rem;
    }

    .search-div .search-div-inner>div.chart-div {
        margin-top: 0;
        border-bottom: 0;
        padding-bottom: 2rem;
    }

    .search-news.sec05 {
        margin-top: 3rem;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .search-div .search-div-inner>div.child-div {
        border-bottom: 0;
    }

    .search-div .search-form form input {
        height: 6rem;
        width: 100%;
        padding: 0 2rem;
        /* border-right: 0; */
    }

    .search-div .search-form form a {
        height: 6rem;
        border: 0;
    }

    .search-div .search-form form a i {
        height: 6rem;
    }

    .search-div .search-form form a i:before {
        width: 2rem;
        height: 2rem;
        top: 57%;
        left: 56%;
    }

    .search-div .search-form form a i:after {
        left: 49px;
        top: 33px;
    }

    .search-sub {
        margin-top: 0;
        padding-bottom: 4rem;
        margin-bottom: 3rem;
    }

    .search-sub.mt-60 {
        padding-top: 3rem !important;
    }

    .search-sub h3 {
        margin-bottom: 0rem;
    }

    .search-sub .chart-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
        height: 100%
    }

    .search-sub .chart-list li {}

    .search-sub .chart-list li a {}

    .search-sub .chart-list li a img {
        width: 100%;
    }

    .search-sub .chart-list li a .search-info-txt01 {
        font-size: 1.6rem;
        margin-top: 2rem;
        padding: 0 0.5rem
    }

    .search-sub .chart-list li a .search-info-txt02 {
        margin-top: 0.5rem;
        padding: 0 0.5rem
    }

    .search-sub .swiper-button {
        margin-top: 4rem;
    }

    .search-sub .swiper-button .swiper-pagination {
        width: 100%;
        gap: 2rem;
    }

    .search-sub .swiper-button .swiper-pagination span {
        font-size: 0;
        width: 6px;
        height: 6px;
        background-color: #c3c3c3;
    }

    .search-sub .swiper-button .swiper-pagination span.swiper-pagination-bullet-active {
        background-color: #000;
    }

    .search-sub .swiper-button .swiper-button-prev,
    .search-sub .swiper-button .swiper-button-next {
        display: none;
    }

    .search-sub .search-none-txt {
        font-size: 1.6rem;
    }

    .search-sub .search-news li a {
        flex-direction: column;
        gap: 1rem;
    }

    .search-sub .search-news li a img {
        width: 100%;
    }

    .search-sub .search-news li a .search-new-img {
        max-width: 100%;
    }

    .search-sub .search-news li a .search-news-txt01 {
        font-size: 1.6rem;
    }

    .search-sub .search-news li a .search-news-txt02 {
        font-size: 1.6rem;
        margin-top: 0;
    }

    .search-sub .search-news li a .search-news-txt04 {
        margin-top: 1rem;
        font-size: 1.3rem;
    }

    .search-sub .more-btn {
        padding: 0;
    }

    .search-div .search-div-inner>div.last-div {
        padding-bottom: 9rem;
        margin-top: 2rem;
    }

    .sub-form {
        position: absolute;
        z-index: 4;
        width: 100%;
    }

    .sub-form .sub-form-inner {}

    .sub-form .sub-form-inner .sub-form-txt {
        padding: 2rem;
        max-width: 100%;
    }

    .sub-form p {
        font-size: 1.8rem;
        word-break: keep-all;
    }

    .sub-form ul {
        margin-top: 3rem;
        flex-direction: column;
    }

    .sub-form ul li {
        width: 100%;
    }

    .sub-form ul li a {
        height: 6rem;
    }

    .sub-form:before {
        height: 15rem;
        position: absolute;
        top: -15rem;
        left: 0;
    }

    .spec-detail .spec-photo p {
        font-size: 1.8rem;
        padding: 0 1rem;
        height: auto;
    }

    .spec-detail .spec-photo .none-login01 {
        height: 50rem;
        overflow: hidden;
    }

    .spec-detail .spec-photo .none-login02 {
        height: 43rem;
        overflow: hidden;
    }

    .search-sub .search-news li {
        margin-bottom: 4rem;
    }

    .search-sub .search-news li a .search-news-txt03 {
        font-size: 1.6rem;
        margin-top: 1rem;
    }

    .gnb-btn.off {
        visibility: hidden;
    }

    .menu-open02 {
        background-color: #000;
        position: fixed;
        width: 100%;
        top: -100vh;
        height: 30vh;
        transition: all 0.4s ease-in-out;
        border-top: 1px solid #222;
        z-index: 10;
        display: block;
    }

    .menu-open02.open {
        top: 6rem;
    }

    .menu-open02 .menu-inner {
        padding: 0 2rem 10rem;
    }

    .menu-open02.open .menu-bg {
        display: block;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        ;
    }

    .menu-open02 .menu-search {
        position: relative;
        margin-top: 4rem;
    }

    .menu-open02 .menu-search form {
        display: flex;
    }

    .menu-open02 .menu-search form input {
        outline: 0px;
        border: 0;
        width: calc(100% - 6rem);
        background: #000;
        font-size: 1.6rem;
        font-weight: 500;
        height: 6rem;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        color: #fff;
        border-bottom: 1px solid #fff;
    }

    .menu-open02 .menu-search form a {
        width: 6rem;
        height: 6rem;
        border: 0;
        padding: 0;
        position: relative;
        box-sizing: border-box;
        outline: none;
        background-color: #000;
        border-bottom: 1px solid #fff;
    }

    .menu-open02 .menu-search form a i {
        position: absolute;
        top: 0;
        left: 0;
        width: 6rem;
        height: 6rem;
    }

    .menu-open02 .menu-search form a i:before,
    .menu-open02 .menu-search form a i:after {
        content: "";
        position: absolute;
    }

    .menu-open02 .menu-search form a i:before {
        width: 2rem;
        height: 2rem;
        border: 2px solid #fff;
        border-radius: 50%;
        top: 48%;
        left: 50%;
        margin-top: -9px;
        margin-left: -6px;
        z-index: 2;
        transition: all 0.2s ease-in-out
    }

    .menu-open02 .menu-search form a i:after {
        width: 0.2rem;
        height: 0.8rem;
        background-color: #fff;
        transform: rotate(130deg);
        left: 46px;
        top: 38px;
        border-radius: 5px;
        z-index: 1;
        transition: all 0.2s ease-in-out
    }

    .mo-srh-btn.open i {
        display: none;
    }

    .mo-srh-btn.open {
        background: url(../images/gnb_on.png)no-repeat 0 0;
        width: 2rem;
        height: 2rem;
        background-size: 100%;
        margin-top: 1rem;
        margin-right: 1rem;
    }

    .sub-right>div.new-right-div02 {
        margin-top: 8rem
    }

    .footer .foot-div02 div>ul li:last-of-type {
        width: auto;
    }

    .agree-form {
        margin: 6rem auto 9rem;
        padding: 0 2rem;
    }

    .agree-form .agree-title h2 {
        font-size: 4rem;
        ;
        font-weight: 700;
        margin-bottom: 4rem;
    }

    .agree-form .agree-title p {
        font-size: 1.6rem;
        font-weight: 400;
        margin-bottom: 4rem;
        ;
    }

    .agree-form .agree-txt>dl>dt {
        font-size: 1.6rem
    }

    .agree-form .agree-txt>dl>dd {
        font-size: 1.5rem;
    }

    .login-cont .out-pop-info {
        margin: 0 2rem;
    }

    .sub-inner02 {
        flex-direction: column;
    }

    .chartdet-div01 {
        padding: 1rem
    }

    .chartdet-title {
        padding-top: 1rem;
    }

    .chartdet-title h3 {
        font-size: 43px;
        font-weight: 700;
        font-style: normal;
        line-height: 40px;
        color: #000000;
        letter-spacing: 1.3px;
    }

    .chartdet-title-inner {
        flex-direction: column;
        align-items: center;
        padding-bottom: 15px;
    }

    .chartdet-title-inner>a {
        font-size: 1.4rem;
        color: #1a48c4;
        font-weight: 600;
        background: url(../images/chart_arrow01.png) no-repeat 0 center;
        padding-left: 1rem;
    }

    .chartdet-title-inner>div {
        text-align: center;
    }

    .chartdet-title-inner>div ul {
        right: 0
    }

    /* .chartdet-day-inner > p{display:none;} */
    .chartdet-pop01 {
        right: unset;
        left: -50%;
    }

    .chartdet-div02-title .chartdet-div02-title-div01 {
        order: -1;
        width: 10rem;
    }

    .chartdet-div02-title .chartdet-div02-title-div02 {
        order: -1;
    }

    .chartdet-div02-title .chartdet-div02-title-div03 {
        order: -1;
    }

    .chartdet-div02-title .chartdet-div02-title-div04 {
        width: 65%;
        justify-content: flex-start;
    }

    .chartdet-div02-title .chartdet-div02-title-div04>span {
        font-size: 1rem;
        width: 20%;
        max-width: none;
    }

    .chartdet-div02-title .chartdet-div02-title-div04>span:first-of-type {}

    .chartdet-div02-title .chartdet-div02-title-div04>span:first-of-type>i {
        margin-left: 0.3rem;
        width: 1.2rem;
        height: 1.2rem;
    }

    .chartdet-div02-title .chartdet-pop04 ul li i {
        width: 1.5rem;
        height: 1.5rem;
    }

    .chartdet-div02-title>p {
        width: 15%;
        max-width: none;
    }

    .chartdet-div02-ul-title {
        gap: 1.5rem;
        background: unset;
    }

    .chartdet-div02-ul li.active .chartdet-div02-ul-title {
        background: unset;
    }

    .chartdet-div02-ul>li>a {
        /* height:auto; */
    }

    .chartdet-div02-ul-num {
        width: 15%;
        height: 100%;
        align-items: center;
        max-width: none;
    }

    .chartdet-div02-ul>li.on>a {
        height: 100px;
    }

    .chartdet-div02-ul li.on .chartdet-div02-ul-img img {
        width: 100%;
        height: 100%;
    }

    .chartdet-div02-ul-title div {
        padding: 0;
        gap: 0.5rem;
    }

    .chartdet-div02-ul-title div:nth-child(2) {
        padding-right: 0;
    }

    .chartdet-div02-ul-title .chartdet-div02-ul-txt01 {
        font-size: 1.4rem;
    }

    .chartdet-div02-ul-title .chartdet-div02-ul-txt02 {
        font-size: 1.2rem;
    }

    .chartdet-div02-ul-txt {
        max-width: unset;
        height: 5rem;
    }

    .chartdet-div02-ul-txt span {
        font-size: 1.4rem;
        width: 20%;
    }

    .chartdet-div02-ul-txt span:first-of-type {
        display: flex;
        order: 1;
    }

    .chartdet-div02-ul-txt span .more-btn {
        width: 2rem;
        height: 2rem;
        background: url(../images/plus_icon.png) no-repeat center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chartdet-div02-ul li.active span .more-btn {
        background: url(../images/minus_icon.png) no-repeat center;
    }

    .chartdet-div02-ul li.on .chartdet-div02-ul-txt span {
        font-size: 1.4rem;
    }

    .chartdet-div02-ul-img {
        order: -1;
        width: 10rem;
        margin-right: 0;
        position: relative;
        height: 10rem;
    }

    .chartdet-div02-ul-img img {
        object-fit: cover;
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .chartdet-div02-ul li.on .chartdet-div02-ul-title div {
        margin-top: 0;
    }


    .chartdet-div03 {
        flex-direction: column;
        width: 65%;
        height: 100%;
        gap: 1rem;
        justify-content: space-between;
        padding-left: 0.5rem;
    }


    .chartdet-div02 {
        padding: 0;
    }

    .chartdet-pop04 {
        right: -140%;
    }

    .chartdet-pop04:before {
        display: none;
    }

    .det-div01 {
        flex-direction: column;
        gap: 2rem;
    }

    .det-div02 {
        margin-top: 3rem;
    }

    .det-div02 .swiper .swiper-slide img {
        width: 80%;
    }

    .det-div02 .swiper-button {
        height: 100%;
    }

    .det-div02 .swiper-button .swiper-button-prev {
        top: unset;
    }

    .det-div02 .swiper-button .swiper-button-next {
        top: unset;
    }

    .det-div03 {
        margin-top: 3rem;
    }

    .det-div03 ul {
        margin-top: 1.5rem;
    }

    .det-div03 ul li a {
        font-size: 1.6rem;
    }

    .det-div04 {
        margin-top: 1.5rem;
    }

    .det-div05 {
        border-top: 1px solid #111;
    }

    .det-div05 ul {
        display: flex;
    }

    .det-div05 ul li:first-of-type {
        display: flex;
        width: 30%;
    }

    .det-div05 ul li {
        min-height: 6rem;
        height: auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        border-bottom: 0;
    }

    .det-div05 ul li:first-of-type span {
        justify-content: center;
        padding-left: 0;
        ;
    }

    .det-div05 ul li span {
        width: 18%;
        font-size: 1.2rem;
        width: 100%;
        height: 6rem;
        border-bottom: 1px solid #d1d1d1;
        justify-content: left;
        padding-left: 2rem;
    }

    .det-div05 ul li span:nth-of-type(1) {
        width: 100%;
    }

    .det-div05 ul li span:last-of-type {
        border-bottom: 1px solid #111;
    }

    .sub-inner .sub-div01 {
        padding: 0 2rem;
        margin-right: 0;
    }

    .sub-title {
        text-align: left;
    }

    .sub-inner .sub-div01 h3 {
        font-size: 2.8rem;
    }

    .chart-main {}

    .chart-main-inner h4 p {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .chart-main-img img {
        width: 100%;
        max-width: unset
    }

    .chart-main-ul {
        display: flex;
        flex-direction: column;
    }

    .chart-main-ul>li .chart-main-num {
        height: auto;
        min-height: 8rem;
    }

    .chart-main-ul>li .chart-main-num p {
        font-size: 1.6rem;
        padding: 0.5rem 0;
    }

    .chart-main-ul>li .chart-main-list {
        height: 105px;
    }

    .chart-main-ul>li .chart-main-num ul li {
        gap: 0.5rem;
    }

    .chart-main-ul>li .chart-main-num ul li p:last-of-type {
        font-size: 1.8rem;
    }

    .chart-list {
        display: flex;
        padding: 0;
        flex-direction: column;
        gap: 3rem;
        padding-bottom: 3rem;
        padding-top: 6rem;
        margin-top: 0;
        /* background-color: #000; */
    }

    .chart-list>div ul li {}

    .chart-list>div ul li div {
        margin: 0;
        /* width: calc(100% - 80px); */
    }

    .chart-list>div ul li .chart-list-p01 {
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        padding-right: 1rem;
        width: 40%;
        font-size: 2rem;
    }

    .chart-list>div ul li .chart-list-p02 {
        width: 60%
    }

    .chart-list>div ul li .chart-list-p02 span:first-of-type {
        font-size: 1.6rem;
    }

    .chart-list>div ul li .chart-list-p02 span:last-of-type {
        font-size: 1.4rem;
    }

    .chart-list>div ul li img {
        max-width: 100px;
    }

    .container.chart {
        background: unset;
        background-color: #8289a1;
    }

    .chart .trend-div {}

    .chartdet-day-inner {
        max-width: unset;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        display: flex;
        flex-direction: column;
    }

    .chartdet-day .chartdet-day-icon {
        gap: 1rem;
    }

    .chartdet-day .chartdet-day-icon>div>a>img {
        width: 100%;
    }

    /* .chartdet-day .chartdet-day-icon02:hover .chartdet-pop02{left:-5rem;} */
    .chartdet-day-inner .link-btn {
        width: auto;
    }

    .chartdet-day-inner .link-btn>a {
        width: 5rem;
        height: 5rem;
        background-color: #1a48c4;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5rem;
    }

    .chartdet-day-inner .link-btn>div.on {
        top: 60px;
    }

    .chartdet-day-inner>p a {
        display: block;
        width: 2rem;
    }

    .chartdet-pop03.on {
        right: -8rem;
    }

    .sub-inner02 .sub-div03 {
        max-width: unset;
        margin-top: 0;
        padding-left: 0;
        align-items: center;
    }

    .sub-div03-inner {
        width: 100%;
        max-width: unset;
        align-items: center;
        padding-right: 0;
        flex-wrap: nowrap;
        padding-left: 0;
    }

    .allchart {
        flex-direction: column;
        padding: 0 1rem;
        width: 100%;
    }

    .allchart-div01 {
        width: 100%;
        border-right: 0;
        padding-right: 0;
    }

    .allchart-div02 {
        width: 100%;
        display: none;
    }

    .allchart-div02.empty {
        display: none;
    }

    .chartdet-pop02.on {
        right: -10rem;
    }

    .chartdet-div02>h4 {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem;
    }

    .allchart-div02 h4 {
        font-size: 1.8rem;
    }

    .star01 {
        width: 1.5rem;
        height: 1.5rem;
    }

    .star02 {
        width: 2rem;
        height: 2rem;
    }

    .chartdet-div02-ul li.active .active-div {
        flex-direction: column;
    }

    .active-div01 {
        width: 100%;
        height: 20rem;
        display: flex;
        padding: 10px;
    }

    /*.active-div01 img{position: absolute;width: 50%;height: 100%;object-fit: cover;}*/
    .active-div01 img {
        height: calc(20rem - 20px);
        width: auto;
        padding: 0;
    }

    .active-div02 {
        width: 100%;
    }

    .chartdet-day-inner>a {
        display: none;
    }

    .chartdet-day-inner .link-btn ul.on {
        right: 0;
    }

    .chartdet-div02-title {
        justify-content: start;
    }

    .chartdet-div02-title.scroll {
        top: 15rem;
        z-index: 2;
    }
}

@media screen and (max-width:360px) {}

.legal-div {
    max-width: 960px;
    margin: 90px auto 80px;
}

.legal-div .legal-title {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 3px solid #000;
    margin-bottom: 0;
}

.legal-div .legal-summary {
    margin-left: .375rem;
    font-size: 1.125rem;
    font-weight: 300;
    font-weight: var(--wgt300, 300);
}

.legal-div .legal-section {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.legal-div .legal-section:last-of-type {
    border-bottom: none;
}

.legal-div .legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-div .legal-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-div .legal-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 4px;
}

.legal-div .legal-section p a {
    color: #1a48c4;
    text-decoration: underline;
}

.legal-div .legal-section .download-button {
    color: #fff;
    background: #000;
    display: inline-block;
    margin-left: 10px;
    height: 34px;
    line-height: 32px;
    border: 1px solid #000;
    text-align: center;
    width: 90px;
    border-radius: 21px;
    text-decoration: none;
}

/* --- Table Style --- */
.legal-div .legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-top: 2px solid #000; /* 상단 강조 라인 */
}

.legal-div .legal-table th, 
.legal-div .legal-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    text-align: left;
    line-height: 1.6;
}

.legal-div .legal-table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: #333;
}

/* --- List Style --- */
.legal-div .legal-list {
    margin: 16px 0 24px 20px; /* 왼쪽 들여쓰기 */
    padding: 0;
    list-style-type: disc; /* 기본 불렛 */
}

.legal-div .legal-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #333;
}

/* 중첩된 리스트가 있을 경우 (하위 항목) */
.legal-div .legal-list ul,
.legal-div .legal-list ol {
    margin: 8px 0 8px 20px;
    list-style-type: circle;
}

@media screen and (max-width:768px) {
    .legal-div {
        margin: 6rem auto 9rem;
        padding: 0 2rem;
    }

    .legal-div .legal-title {
        font-size: 26px;
    }

    .legal-div .legal-section h2 {
        font-size: 20px;
    }

    .legal-div .legal-section h3 {
        font-size: 16px;
    }

    .legal-div .legal-section p {
        font-size: 15px;
    }

    .legal-div .legal-table {
        display: block;
        overflow-x: auto; /* 테이블이 길어질 경우 가로 스크롤 허용 */
        white-space: nowrap; 
    }

    .legal-div .legal-table th, 
    .legal-div .legal-table td {
        font-size: 14px;
        padding: 10px;
    }

    .legal-div .legal-list li {
        font-size: 14px;
    }
}