/*sub-common*/
.title .tit {
    font-size: 4rem;
    font-weight: 700;
}
.title .txt {
    font-size: 2rem;
    font-weight: 950;
    margin-top: 1.6rem;
    font-family: "Wanted";
}
.title .txt span {
    color: var(--main-color);
    line-height: 1.6;
}
.txt-dot {
    padding-left: 1rem;
    position: relative;
}
.txt-dot::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 3px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 100%;
    transition: all 0.4s ease;
}

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

.sub-content {
    padding: 14rem 0 10rem;
}

.sub-content.bg-gray {
    padding: 14rem 0 20rem;
}

.sub-sec {
    margin-bottom: 16rem;
}

.title-box .tit {
    font-family: "Wanted";
    font-size: 6rem;
    font-weight: 950;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 2.4rem;
}

.title-box .tit span {
    color: var(--main-color);
}

.title-box .txt {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    color: #4d4d4d;
}

.btn-box * {
    transition: all 0.4s ease;
}

.btn-box {
    border: 2px solid #eeeeee;
    display: inline-block;
}

.btn-box a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 1.2rem 2.4rem;
}

.btn-box a .f-box {
    gap: 2.5rem;
    align-items: center;
}

.btn-box a .btn-txt {
    font-size: 1.8rem;
    font-weight: 500;
}

.btn-box:hover {
    border: 2px solid #161616 !important;
    background-color: #161616;
}

.btn-box:hover a .btn-txt,
.btn-box:hover a span {
    color: #ffffff;
}

.btn-box:hover a span {
    transform: translateX(1rem);
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 보여줄 줄 수 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*sub-common//*/

/*breadcrumbs*/
.breadcrumbs {
    margin-bottom: 1rem;
}

.breadcrumbs .t-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transform: translate(0px, 0px);
    opacity: 1;
}

.breadcrumbs .t-nav li {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #ffffff80;
}

.breadcrumbs .t-nav li a {
    line-height: 1;
}

.breadcrumbs .t-nav li.active {
    color: #fff;
    font-weight: 500;
}
/*breadcrumbs//*/

/*sub-top*/
.sub-top {
    width: 100%;
    height: var(--sub-top-height);
    position: relative;
    overflow: hidden;
}
/*sub-top//*/

/*sub-visual*/
.sub-visual {
    height: 100%;
    width: 100%;
    position: relative;
}

.sub-visual .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center;
    transform: scale(1.3, 1.3);
    transition: all 0.4s ease;
    animation: image-zoom-out02 4s 0.4s forwards;
    z-index: -1;
}

@keyframes image-zoom-out02 {
    0% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1, 1);
    }
}

.sub-visual .info {
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sub-visual .info .info-wrap .tit {
    font-family: "Wanted";
    font-size: 6rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
}

.sub-visual .sub-nav-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.sub-visual .sub-nav-wrap .sub-nav {
    background-color: #00000040;
}

.sub-visual .sub-nav-wrap .sub-nav .menu {
    gap: 12rem;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li {
    color: #ffffff80;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 2.2rem 0;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li:hover {
    color: #ffffff;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li.on {
    color: #ffffff;
}

.company .sub-visual .bg {
    background-image: url("../img/sub01-bg.webp");
}
.product .sub-visual .bg {
    background-image: url("../img/sub02-bg.webp");
}
.certificate .sub-visual .bg {
    background-image: url("../img/sub03-bg.webp");
}
.news .sub-visual .bg {
    background-image: url("../img/sub04-bg.webp");
}
.contact .sub-visual .bg {
    background-image: url("../img/sub05-bg.webp");
}
/*sub-visual//*/

/*overview*/
.overview .ceo .img-box {
    margin: 4rem 0 5rem;
}

.overview .ceo .info-box {
    gap: 2rem;
}

.overview .ceo .info-box .left {
    width: 35%;
}

.overview .ceo .info-box .left .tit {
    font-size: 3.4rem;
}

.overview .ceo .info-box .left .tit span {
    color: var(--main-color);
}

.overview .ceo .info-box .right {
    width: 65%;
}

.overview .ceo .info-box .right .txt {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.overview .business {
    background-color: #f9f9f9;
    padding: 14rem 0;
}

.overview .business .title {
    text-align: center;
    margin-bottom: 4rem;
}

.overview .business .business-wrap .list {
    gap: 4rem;
}

.overview .business .business-wrap .list .item {
    width: calc((100% - 12rem) / 4);
    text-align: center;
}

.overview .business .business-wrap .list .img-box {
    margin-bottom: 1.5rem;
}

.overview .business .business-wrap .list .item .txt {
    font-size: 2.4rem;
    font-weight: 600;
}
/*overview//*/

/*history*/
.history .title {
    text-align: center;
}

.history .txt {
    color: #555555;
}

.history .tit {
    font-size: 4.4rem;
    line-height: 1.4;
    margin-bottom: 60px;
}

.history_content {
    position: relative;
    max-width: 152rem;
    margin: 0 auto;
}

.history-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #D9D9D9;
    transform: translateX(-50%);
    z-index: 1;
}

.history-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--main-color);
    transition: height 0.4s ease;
    height: var(--lineHeight, 0);
}

.history-indicator {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 50%;
    background-color: var(--main-color);
    box-shadow: 0 0 20px rgba(136, 16, 16, 0.4);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-indicator::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
    height: var(--lineHeight, 0);
}

.history-item-wrap {
    padding: 18rem 0 0;
}

.history-items {
    position: relative;
    margin: 0 auto;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20rem;
    position: relative;
}

.item-side {
    width: 50%;
    box-sizing: border-box;
}

.history-item .year {
    text-align: right;
    font-weight: bold;
    padding-right: 10rem;
    font-size: 8rem;
    line-height: 100%;
}

/* .history-item:nth-child(even) .year {
    text-align: left;
    padding-left: 90px;
    padding-right: 0;
} */

.history-item .content li {
    font-size: 2rem;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.history-item .content li .num {
    font-weight: 600;
}

.history-item .content li .text {
    text-align: left;
    color: #555;
    font-weight: 400;
}

.history-item:nth-child(odd) .content {
    padding-left: 10rem;
}

.history-item:nth-child(even) .content {
    padding-left: 10rem;
}

/* .history-item:nth-child(even) .content li {
    justify-content: flex-end;
} */
/* 
.history-item:nth-child(even) .content li .num {
    order: 2;
    margin-left: 20px;
    font-weight: bold;
}

.history-item:nth-child(even) .content li .num {
    order: 2;
    margin-right: 20px;
    font-weight: bold;
}

.history-item:nth-child(odd) .content li .num {
    margin-right: 20px;
}

.history-item:nth-child(even) .content li .text {
    order: 1;
    text-align: right;
} */

/*history//*/

/*partner*/
.partner .pt-wrap {
    justify-content: space-between;
    gap: 10rem;
}
.partner .left {
    width: 34rem;
}

.partner .right {
    width: calc(100% - 44rem);
}

.partner .right .list {
    flex-wrap: wrap;
    gap: 3rem;
}

.partner .right .list .item {
    width: calc((100% - 9rem) / 4);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.partner .right .list .item img {
    width: 80%;
}
/*partner//*/

/*location*/
.location .location-info-box {
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    margin-bottom: 14rem;
}

.location .img-wrap,
.location .info-wrap {
    width: 50%;
}

.location .info-wrap .title {
    text-align: left;
    margin-bottom: 3rem;
}

.location .location-item dl,
.location .location-item dl dt {
    align-items: center;
}

.location .location-item dl {
    gap: 3rem;
    margin-bottom: 1.2rem;
}

.location .location-item dl dt {
    gap: 1rem;
    min-width: 10rem;
}

.location .location-item .tit,
.location .location-item .txt {
    font-size: 1.8rem;
}

.location .location-item .txt {
    color: #565656;
}

/*location//*/

/*pd-list*/
/**pd-list**/
.pd-list .con-box {
    overflow: visible;
    align-items: flex-start;
    justify-content: space-between;
    gap: 7rem;
}

.pd-list .pd-menu-wrap {
    width: 25rem;
    position: sticky;
    top: 8rem;
    z-index: 1;
}
.pd-list .pd-menu {
    position: relative;
    width: 100%;
    background-color: #ffffff;
}

.pd-list .pd-menu .list {
    padding: 2rem;
}

.pd-list .pd-menu .list .menu {
    height: 6rem;
}

.pd-list .pd-menu .list .menu a {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.pd-list .pd-menu .list .menu a p {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4d4d4d;
    text-align: center;
    font-family: "Wanted";
    line-height: 1.4;
    z-index: 2;
    width: 100%;
    padding: 1.4rem 0;
}

.pd-list .pd-menu .list .menu.on a p,
.pd-list .pd-menu .list .menu.on.fix a p {
    color: #ffffff;
}

/**pd-on-move**/
.pd-list .pd-menu .pd-on-move {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    height: 6rem;
}

.pd-list .pd-menu .pd-on-move span {
    width: calc(100% - 4rem);
    height: 6rem;
    background: linear-gradient(90deg, #E60012 0%, #FF4755 100%);
    position: absolute;
    left: 2rem;
    top: 2rem;
    text-align: center;
}

.pd-list .item-list {
    width: calc(100% - 32rem);
}

.pd-list .item-list .pd-title {
    margin-bottom: 4rem;
}

.pd-title .txt {
    font-family: "Wanted";
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    color: #ffffff;
    padding: 0.4rem 1.4rem;
    background: var(--grd-color);
    border-radius: 10rem;
    display: inline-block;
    margin: auto;
}

.pd-title .tit {
    font-size: 5.5rem;
    font-weight: 950;
}

.pd-list .item-list .list {
    gap: 2rem;
    flex-wrap: wrap;
}

.pd-list .item-list .list .item {
    width: calc((100% - 4rem) / 3);
    background-color: #ffffff;
    position: relative;
}

.pd-list .item-list .item a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 6rem 3rem;
    z-index: 2;
    position: relative;
}

/* .pd-list .item-list .list .item a::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E60012;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
} */
/* 
.pd-list .item-list .list .item:hover a::before {
    opacity: 0.8;
    z-index: 1;
} */

.pd-list .item-list .item:hover .pd-hover-con {
    opacity: 1;
    visibility: visible;
}

.pd-list .item-list .item:hover .pd-hover-con img {
    transform: rotate(180deg);
}

.pd-hover-con {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E60012;
}

.pd-list .item-list .list .item:hover .pd-hover-con {
    opacity: 0.8;
    z-index: 1;
}

.pd-hover-con .image {
    padding-bottom: 1rem;
    margin: auto;
}

.pd-hover-con .image img {
    width: 3rem;
    height: 3rem;
    margin: auto;
}

.pd-hover-con .txt {
    font-family: "Wanted";
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
}

.pd-list .item-list .item a > .image {
    margin-bottom: 4rem;
    min-height: 30rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-list .item-list .item a > .image img {
    max-height: 30rem;
    width: auto;
}

.pd-list .item-list .item a .pd-info {
    text-align: center;
}

.pd-list .item-list .item a .pd-info .pd-name {
    font-family: "Wanted";
    font-size: 2.4rem;
    font-weight: 800;
}

.pd-list .item-list .item a .pd-info .pd-type {
    font-size: 1.6rem;
    color: #c0c0c0;
}
/*pd-list//*/

/*pd-drop*/
.pd-toggle-btn {
    display: none;
    background: var(--grd-color);
    color: #ffffff;
    padding: 2rem;
    font-size: 2rem;
    cursor: pointer;
}
.pd-toggle-btn::after {
    content: "";
    position: absolute;
    top: 48%;
    right: 16px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transition: transform 0.3s ease;
}

.pd-toggle-btn.open::after {
    transform: rotate(225deg);
}
/*pd-drop//*/

/*pd-view*/
.pd-view .pd-title {
    text-align: center;
}

.pd-view .pd-info-wrap {
    margin-top: 13rem;
    position: relative;
    margin-bottom: 4rem;
}

.pd-view .pd-info-wrap .con-box {
    gap: 4rem;
    overflow: visible;
    align-items: flex-start;
    justify-content: space-between;
}

.pd-view .pd-info-wrap .pd-img-btn {
    width: 50%;
    /* background-color: #565656; */
    gap: 6rem;
    padding-right: 1rem;
    position: sticky;
    top: 6rem;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box {
    max-width: 14rem;
    width: 100%;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item {
    margin-bottom: 2rem;
    text-align: center;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2rem 2.8rem;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item img {
    max-height: 3.2rem;
    height: 100%;
    width: auto;
    margin: auto;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item .txt {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 1rem;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item.download {
    background-color: var(--main-color);
}
.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item.download:hover {
    background-color: #c1000f;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item.contact:hover img,
.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item.download:hover img {
    transform: translateY(0.5rem);
}
.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item.contact {
    background-color: #212121;
}

.pd-view .pd-info-wrap .pd-img-btn .pd-btn-box .btn-item.contact:hover {
    background-color: #111111;
}

.pd-view .pd-info-wrap .pd-view-info-wrap {
    width: 46%;
    /* background-color: #E60012; */
}

.pd-view .pd-info-wrap::before {
    display: block;
    content: "";
    position: absolute;
    background-color: #f9f9f9;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}

.pd-img-box {
    /* background-color: aquamarine; */
    width: 100%;
    max-width: 50rem;
    overflow: hidden;
}
/*pd-swiper*/
.pd-view .swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pd-view .pd-img-big .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 44rem;
    overflow: hidden;
}

.pd-view .swiper-slide .pd-view .pd-img-big {
    width: 100%;
}

.pd-view .pd-img-list {
    height: 28%;
    box-sizing: border-box;
    padding: 2rem 0;
}

.pd-view .pd-img-list .swiper-slide {
    height: 100%;
    opacity: 0.4;
    max-height: 10rem;
    border: 2px solid #eeeeee;
    cursor: pointer;
    position: relative;
    padding-top: 18%;
    overflow: hidden;
}

.pd-view .pd-img-list .swiper-slide.swiper-slide-thumb-active {
    opacity: 1 !important;
    border: 2px solid var(--main-color);
}

.pd-view .pd-img-big .swiper-slide img {
    display: block;
    width: auto;
    max-height: 44rem;
    margin: auto;
}

.pd-view .pd-img-list .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    /* object-fit: cover; */
    margin: auto;
    padding: 0.4rem 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/*pd-view//*/

.pd-view-info-wrap {
    margin-top: 6rem;
}

.pd-view-info-wrap .pd-info-box {
    margin-bottom: 14rem;
}

.pd-view-info-wrap .pd-info-category .tit {
    font-family: "Wanted";
    font-size: 4.5rem;
    font-weight: 800;
    border-bottom: 2px solid #161616;
    margin-bottom: 3rem;
    line-height: 1.2;
    padding-bottom: 1.4rem;
}

.pd-view-info-wrap .txt {
    color: #464646;
    line-height: 1.8;
    font-weight: 500;
}

.pd-view-info-wrap .explanation .txt {
    font-size: 1.8rem;
}

.pd-view-info-wrap .characteristic .txt {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.pd-view-info-wrap .table-wrap table {
    width: 100%;
    text-align: left;
}

.pd-view-info-wrap .table-wrap th {
    background-color: #E2E2E2;
    font-size: 2rem;
}

.pd-view-info-wrap .table-wrap td {
    background-color: #ffffff;
    color: #464646;
    font-size: 1.8rem;
    /* border-bottom: 1px solid #eeeeee; */
}

.pd-view-info-wrap .table-wrap td,
.pd-view-info-wrap .table-wrap th {
    padding: 1.6rem 3rem;
}

/*certificate*/
.certi .title {
    margin-bottom: 8rem;
}

.certi .c-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap:
}

.certi .c-list > li {
    width: 23%;
    margin: 0 1% 4.8rem;
}

.certi .c-list > li > a .img-wrap {
    position: relative;
    background: #fafafa;
    padding-top: 110%;
}
.certi .c-list > li > a .img-wrap .hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.5s;
    opacity: 0;
    background: var(--grd-color);
    border-radius: 100%;
}
.certi .c-list > li > a:hover .img-wrap .hover-img {
    opacity: 1;
}
.certi .c-list > li > a .img-wrap .hover-img > img {
    width: 5rem;
    padding: 1.4rem;
}
.certi .c-list > li > a:hover .img-wrap .hover-img > img {
    transform: rotate(360deg);
}
.certi .c-list > li > a .img-wrap .img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem;
}
.certi .c-list > li > a .img-wrap .img > img {
    width: auto;
    max-width: 95%;
    height: auto;
    max-height: 95%;
    position: relative;
    background-color: #D8BF6D;
    padding: 1rem;
}

.certi .c-list > li > a .img-wrap .img > img::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1rem solid #D8BF6D;
    z-index: 1;
}

.certi .c-list > li > a .txt {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*certificate//*/

/*news*/
.notice .title {
    text-align: center;
    margin-bottom: 8rem;
}

.notice .n-list {
    width: 100%;
    border-top: 2px solid #222;
    transition: all 0.4s;
}

.notice .n-list li:hover {
    background-color: #fce7e73c;
}

.notice .n-list li {
    border-bottom: 1px solid #ddd;
    transition: all 0.4s;
}

.notice .n-list:hover li {
    /* border-bottom: 1px solid var(--main-color); */
}

.notice .n-list li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 3rem;
}

.notice .n-list li > a .txt-wrap .title {
    transition: all 0.4s;
}

.notice .n-list li > a .img-wrap {
    flex-basis: 18%;
    max-width: 18%;
    position: relative;
}

.notice .n-list li > a .img-wrap .hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.5s;
    opacity: 0;
}
.notice .n-list li > a:hover .img-wrap .hover-img {
    opacity: 1;
}
.notice .n-list li > a .img-wrap .hover-img > img {
    width: 5.5rem;
    transition: all 0.5s;
}
.notice .n-list li > a:hover .img-wrap .hover-img > img {
    transform: rotate(180deg);
}

.notice .n-list li > a .img-wrap .img {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.notice .n-list li > a .img-wrap .img > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.notice .n-list li > a .txt-wrap {
    flex-basis: 100%;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.notice .n-list li > a .txt-wrap .cate {
    font-size: 1.6rem;
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.notice .n-list li > a .txt-wrap .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    margin: 0 3rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: calc(50% - 15rem);
    font-size: 2.2rem;
    font-weight: 600;
    text-align: left;
}
.notice .n-list li > a .txt-wrap .main_p {
    color: #444;
    font-size: 1.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* max-height: 6rem; */
    line-height: 1.4;
    width: 50%;
    font-weight: 300;
}
.notice .n-list li > a .txt-wrap .date {
    /* color: #666; */
    font-size: 1.8rem;
    font-weight: 300;
    width: 100%;
    max-width: 15rem;
    text-align: left;
    line-height: 1.4;
}

/*news//*/

/*view-page*/
.view-page-wrap .sub-visual {
    display: none;
}

.view-page-wrap .breadcrumbs {
    margin-bottom: 1rem;
    display: none;
}

.view-page .top-box {
    text-align: center;
    margin-bottom: 6rem;
}

.view-page .top-box .category {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.6rem;
}

.view-page .top-box .day {
    font-size: 1.8rem;
    color: var(--color-g-text);
    font-weight: 400;
}

.view-page .tit-info-wrap {
    padding: 2rem;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #eeeeee;
}

.view-page .tit-info-wrap .tit-box {
    margin-bottom: 1.6rem;
}

.view-page .tit-info-wrap .tit-box .tit {
    font-size: 3rem;
}

.view-page .tit-info-wrap .info-box .info {
    margin-right: 2.5rem;
}

/* .view-page .info-box img {
    max-width: 50%;
    margin: auto;
} */

.view-page .tit-info-wrap .info-box .info .txt {
    margin-right: 0.6rem;
}

.view-page .tit-info-wrap .info-box .info .txt span {
    font-weight: 600;
}

.view-page .tit-info-wrap .file-box {
    margin-top: 1rem;
}

.view-page .tit-info-wrap .file-box a {
    gap: 0.6rem;
}

.view-page .tit-info-wrap .file-box img {
    width: 1.4rem;
}

.view-page .list-move-btn {
    margin: auto;
    text-align: center;
}

/* .view-page .list-move-btn .btn-box {
  background-color: #161616;
}

.view-page .list-move-btn .btn-box .txt,
.view-page .list-move-btn .btn-box span {
  color: #ffffff;
} */

.view-page .attachment {
    background-color: #f9f9f9;
}

.view-page .attachment .bbs-file-list {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eeeeee;
}

.view-page .attachment .bbs-file-list {
    gap: 1.4rem;
}

.view-page .attachment .bbs-file-list dt {
    font-weight: 600;
}

.view-page .attachment .bbs-file-list dd {
    color: #464646;
}

.view-page .ckeditor_area {
    margin-top: 6rem;
}

/*page-btn*/

.prev-next-list-wrap {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.prev-next-box .page-btn {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.prev-next-box .page-btn:nth-child(even) {
    border-top: 0;
}

.prev-next-box .page-btn a {
    padding: 2rem;
    align-items: center;
}

.prev-next-box .page-btn .txt {
    width: 10rem;
}

.prev-next-box .page-btn .info {
    width: calc(100% - 10rem);
    color: var(--color-text3);
}

.prev-next-box .page-btn a:hover .info {
    color: var(--color-text2);
}

.prev-next-list-wrap .list-box {
    text-align: center;
    margin-top: 4rem;
}
/*page-btn//*/
/*view-page//*/

/*inquiry*/
.inquiry .con-box {
    gap: 4rem;
}

.inquiry .con-box > div {
    width: 50%;
}

.inquiry .con-box .info-box {
    margin-top: 4rem;
}

.inquiry .mail-box {
    margin-top: 5rem;
}

.inquiry .mail-box .tit {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.inquiry .mail-box .info {
    align-items: center;
    gap: 1rem;
}

.inquiry .mail-box .info .txt {
    font-size: 1.8rem;
    color: #4d4d4d;
}

.inquiry .mail-box .info img {
    /* max-height: 2.6rem; */
    width: auto;
}

.inquiry .form-box-wrap .list-wrap {
    flex-direction: column;
    gap: 1.2rem;
}

.inquiry .form-box-wrap .notification {
    text-align: right;
    margin-bottom: 1rem;
}

.inquiry .form-box-wrap .notification .txt {
    font-size: 1.6rem;
}

.inquiry .form-box-wrap .notification .txt span {
    color: var(--main-color);
}

.inquiry .form-box-wrap .form-box {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 1rem 2rem;
    width: 100%;
    min-height: 6rem;
}

.inquiry .form-box-wrap .info-box > .f-box {
    gap: 2rem;
    flex-wrap: wrap;
}

.inquiry .form-box-wrap .f-box {
    align-items: center;
}

.inquiry .form-box-wrap .f-box.f-start {
    align-items: flex-start;
}

.inquiry .form-box-wrap .f-box.h-auto {
    height: auto;
}

.inquiry .form-box-wrap .form-box .l-box {
    min-width: 10rem;
    max-width: 10rem;
}

.inquiry .form-box-wrap .form-box .r-box {
    width: calc(100% - 10rem);
}

.inquiry .form-box-wrap .form-box .l-box .txt {
    font-size: 1.6rem;
    font-weight: 500;
}

.inquiry .form-box-wrap .form-box .l-box .essential span {
    color: var(--main-color);
}

.inquiry .form-box-wrap .form-box .r-box input,
.inquiry .form-box-wrap .form-box .r-box textarea {
    width: 100%;
    border: none;
}

.inquiry .form-box-wrap .form-box .r-box textarea {
    height: 12rem;
    resize: vertical;
}

.inquiry .form-box-wrap .nice-select.open .list {
    width: 100%;
}

/* .inquiry .form-box-wrap .nice-select {
    line-height: inherit;
} */

.inquiry .form-box-wrap .nice-select .current {
    font-size: 1.6rem;
    font-weight: 500;
    width: 100%;
    overflow: hidden;
}

.inquiry .form-box-wrap .agree-btn-wrap {
    margin-top: 1.2rem;
    justify-content: space-between;
}

.inquiry .agree-check .checkwrap {
    cursor: pointer;
}
.inquiry .agree-check input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
.inquiry .agree-check .checkwrap .material-icons {
    vertical-align: middle;
    font-size: 2.2rem;
    margin-top: -0.2rem;
}
.inquiry .agree-check .checkwrap > input[type="checkbox"] {
    margin: 0;
}

.inquiry .agree-check .checkwrap > p {
    font-size: 1.6rem;
    display: inline-block;
    margin-left: 0.5rem;
}

.inquiry .agree-check .checkwrap {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.inquiry .agree-check .checkwrap .material-icons {
    vertical-align: middle;
    font-size: 2.6rem;
    margin-top: -0.2rem;
    color: #d3d3d3;
}
.inquiry .agree-check .checkwrap > input[type='checkbox'] {
    margin: 0;
}
.inquiry .agree-check .checkwrap > input[type='checkbox']:checked + .material-icons {
    color: var(--main-color);
}
.inquiry .agree-check .checkwrap > p {
    font-size: 1.6rem;
    display: inline-block;
    margin-left: 0.5rem;
    color: #6E6E6E;
}

.inquiry .btn-box {
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
}

.inquiry .btn-box .btn-txt,
.inquiry .btn-box span {
    color: #ffffff;
}

.inquiry .privacy-policy {
    width: 100%;
    background: #ffffff;
    color: #222;
    padding: 1rem 2rem;
    margin-top: 1.2rem;
    border: 1px solid #eeeeee;
}
.inquiry .privacy-policy .a-txt > h4 {
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: 1px solid #888;
    padding-bottom: 1.5rem;
}

.inquiry .privacy-policy .a-txt .txt-wrap {
    margin: 2rem 0;
    overflow-y: scroll;
    height: 10rem;
}
.inquiry .privacy-policy .a-txt .txt-wrap .txt-box .tit {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}
.inquiry .privacy-policy .a-txt .txt-wrap .txt-box .sub {
    font-size: 1.4rem;
    opacity: 0.4;
}
.inquiry .privacy-policy .a-txt .txt-wrap .txt-box + .txt-box {
    margin-top: 3rem;
}

.inquiry .privacy-policy .a-txt .txt-wrap {
    overscroll-behavior: contain;
    /* 바깥 페이지 스크롤로 빠져나가는 것을 막음 */
    -webkit-overflow-scrolling: touch;
    /* iOS 부드러운 스크롤 */
}
/*inquiry//*/

/*모바일 드롭다운*/
.mobile-dropdown-toggle,
.pd-toggle-btn {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #00000040;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    z-index: 2;
}

.mobile-dropdown-toggle::after,
.pd-toggle-btn::after {
    content: "";
    position: absolute;
    top: 44%;
    right: 16px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open::after {
    transform: rotate(225deg);
}
/*모바일 드롭다운//*/
