@charset "utf-8";
@import url('/skin/notokr/notokr.css');
@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css);

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

.body-layout {
    background-color: #fff;
    word-break: keep-all !important;
    padding-top: 105px;
}

.container_contents,
.intro-html-layout {
    width: 100%;
    margin: 0;
    padding: 0;
}

.intro-html-layout>div {
    padding: 0;
}

/* 플로팅 */
.banner-box {
    position: fixed;
    right: 36px;
    bottom: 150px;
    display: flex;
    gap: 15px;
    /* display: none; */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-box .banner {
    position: relative;
    width: 169px;
    padding: 8px 40px 8px 16px;
    background: #fff;
    border: 4px solid #957351;
    border-radius: 25px;
}

.banner-box .banner p {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    position: relative;
    display: flex;
}

.banner-box .banner span {
    position: absolute;
    content: "";
    display: block;
    bottom: -3px;
    right: 26px;
}

.banner .img-box {
    width: 75px;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.banner .img-box img {}

/* 애니메이션 */
.ani .child,
.ani {
    opacity: 0;
    animation-duration: .8s;
    animation-fill-mode: both;
}

.active .child.fi-in,
.active.ani.fi-in {
    animation-name: fadeIn;
}

.active .child.fi-up,
.active.ani.fi-up {
    animation-name: fadeInUp;
}

.active .child.fi-buble,
.active.ani.fi-buble {
    animation-name: fadeBuble;
}

.active .child.fi-down,
.active.ani.fi-down {
    animation-name: fadeInDown;
}

.active .child.fi-left,
.active.ani.fi-left {
    animation-name: fadeInLeft;
}

.active .child.fi-right,
.active.ani.fi-right {
    animation-name: fadeInRight;
}

.active .child.fi-diagonal,
.active.ani.fi-diagonal {
    animation-name: fadeDiagonal;
}

.active .child.fi-up-down,
.active.ani.fi-up-down {
    animation-name: fadeUpDown;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.active .child.fi-up2,
.active.ani.fi-up2 {
    animation-name: fadeInUp2;
}

.active .child.fi-down2,
.active.ani.fi-down2 {
    animation-name: fadeInDown2;
}

.active .child.fi-left2,
.active.ani.fi-left2 {
    animation-name: fadeInLeft2;
}

.active .child.fi-right2,
.active.ani.fi-right2 {
    animation-name: fadeInRight2;
}

.active .child.fi-right-main,
.active.ani.fi-right-main {
    animation-name: fadeInRightMain;
}

.active .child.fi-left-main,
.active.ani.fi-left-main {
    animation-name: fadeInLeftMain;
}

.active.ani.fi-gradient {
    opacity: 1;
    animation-duration: 3s;
    animation-name: fadeGradient;
    animation-iteration-count: infinite;
}

.active.ani.fi-gradient02 {
    opacity: 1;
    animation-duration: 2s;
    animation-name: fadeGradient02;
    animation-iteration-count: infinite;
}

.active.ani.fi-gradient02 {
    opacity: 1;
    animation-duration: 5s;
    animation-name: fadeGradient02;
    animation-iteration-count: infinite;
}

@keyframes fadeBuble {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes fadeDiagonal {
    0% {
        opacity: 0;
        top: -30px;
        left: 80%;
    }

    100% {
        opacity: 1;
        top: 20px;
        left: 50%;
    }
}

@keyframes fadeUpDown {
    0% {
        opacity: 1;
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes fadeInDown2 {
    0% {
        opacity: 0;
        transform: translateY(-15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes fadeInLeft2 {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes fadeInRight2 {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes fadeInRightMain {
    0% {
        opacity: 0;
        transform: translateX(30%) rotate(10deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0%) rotate(10deg);
    }
}

@keyframes fadeInLeftMain {
    0% {
        opacity: 0;
        transform: translateX(-30%) rotate(10deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0%) rotate(10deg);
    }
}

/* @keyframes fadeGrowIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fadeGrowIn2 {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
} */

@keyframes fadeGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeGradient02 {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.active .child.t1,
.active.ani.t1 {
    animation-delay: 0.1s;
}

.active .child.t2,
.active.ani.t2 {
    animation-delay: 0.2s;
}

.active .child.t3,
.active.ani.t3 {
    animation-delay: 0.3s;
}

.active .child.t4,
.active.ani.t4 {
    animation-delay: 0.4s;
}

.active .child.t5,
.active.ani.t5 {
    animation-delay: 0.5s;
}

.active .child.t6,
.active.ani.t6 {
    animation-delay: 0.6s;
}

.active .child.t7,
.active.ani.t7 {
    animation-delay: 0.7s;
}

.active .child.t8,
.active.ani.t8 {
    animation-delay: 0.8s;
}

.active .child.t9,
.active.ani.t9 {
    animation-delay: 0.9s;
}

.active .child.t10,
.active.ani.t10 {
    animation-delay: 1s;
}

.active .child.t11,
.active.ani.t11 {
    animation-delay: 1.1s;
}

.active .child.t12,
.active.ani.t12 {
    animation-delay: 1.2s;
}

.active .child.t13,
.active.ani.t13 {
    animation-delay: 1.3s;
}

.active .child.t14,
.active.ani.t14 {
    animation-delay: 1.4s;
}

.active .child.t15,
.active.ani.t15 {
    animation-delay: 1.5s;
}

.active .child.t16,
.active.ani.t16 {
    animation-delay: 1.6s;
}

.active .child.t17,
.active.ani.t17 {
    animation-delay: 1.7s;
}

.active .child.t18,
.active.ani.t18 {
    animation-delay: 1.8s;
}

.active .child.t19,
.active.ani.t19 {
    animation-delay: 1.9s;
}

.active .child.t20,
.active.ani.t20 {
    animation-delay: 2s;
}

.active .child.t21,
.active.ani.t21 {
    animation-delay: 2.1s;
}

.active .child.t22,
.active.ani.t22 {
    animation-delay: 2.2s;
}

.active .child.t23,
.active.ani.t23 {
    animation-delay: 2.3s;
}

.active .child.t24,
.active.ani.t24 {
    animation-delay: 2.4s;
}

.active .child.t25,
.active.ani.t25 {
    animation-delay: 2.5s;
}

.active .child.t26,
.active.ani.t26 {
    animation-delay: 2.6s;
}

.active .child.t27,
.active.ani.t27 {
    animation-delay: 2.7s;
}

.active .child.t28,
.active.ani.t28 {
    animation-delay: 2.8s;
}


/* 폰트 설정 */
.body-layout,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button {
    font-family: 'notokr', 'Apple SD Neo Gothic', 'Malgun Gothic', sans-serif;
}

/* h1, h2, h3, h4, h5, h6, p { margin: 0px; } */
ol,
ul,
li {
    list-style: none;
    list-style-position: inside;
}



.navbar .caret,
.navbar .divider-vertical,
.navbar~br,
.footer-social-layout,
.footer_copy .text-center>br,
.topmarginLay_a {
    display: none;
}

.sub-layout {}

/* 상단 네비게이션 */

.navbar.navbar-inverse {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.navbar-header {
    margin-top: 37px;
}

.navbar-header .navbar-brand {
    display: block;
    padding: 0;
    vertical-align: bottom;
    font-size: 30px;
    margin-left: 0 !important;
    font-weight: 800;
    color: #957351;
    font-family: 'NanumSquare', 'notokr' !important;
    line-height: 1;
}

.navbar-header .navbar-brand:hover {
    color: #957351;
}

.navbar-collapse {
    line-height: 0;
}

.navbar-nav>li {
    line-height: 0;
}

.navbar-right {
    margin-top: 20px;
}

.nav.navbar-nav>li>a {
    display: block;
    height: 100%;
    padding: 0px 20px 20px;
    font-size: 20px;
    color: #111;
    font-weight: 600;
    letter-spacing: -0.4px;
    font-family: 'NanumSquare', 'notokr' !important;
    line-height: 65px;
}

.nav.navbar-nav>li:hover>a,
.nav.navbar-nav>li.open>a,
.nav.navbar-nav>li:focus>a,
.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
    color: #957351;
    background-color: transparent;
}

.nav.navbar-nav li .dropdown-menu {
    left: 0;
    right: 0;
    min-width: 175px;
    border-radius: 0;
    border: 0;
    padding: 15px 0;
    background: #333;
}

.nav.navbar-nav li .dropdown-menu li a {
    padding: 6px 20px;
    color: #fff;
    font-size: 15px;
}

.nav.navbar-nav li .dropdown-menu li a:hover {
    font-weight: 600;
    background: rgba(0, 0, 0, 0);
    color: #C6A381
}

@media (max-width: 767px) {
    .body-layout {
        padding-top: 71px;
    }

    .navbar.navbar-inverse {
        padding: 20px 0;
    }

    .navbar.navbar-inverse .navbar-header {
        margin: 0;
    }

    .navbar-inverse .navbar-toggle {
        border-color: #957351;
        background: #957351;
        margin: 0;
        padding: 7px 10px;
    }

    .navbar-inverse .navbar-toggle:focus,
    .navbar-inverse .navbar-toggle:hover {
        border-color: #957351;
        background: #957351;
    }

    .nav.navbar-nav>li>a {
        font-size: 17px;
        line-height: 40px;
        text-align: center;
        padding-bottom: 0;
    }

    .nav.navbar-nav li .dropdown-menu li a {
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .nav.navbar-nav>li>a {
        padding: 0px 10px 20px;
        font-size: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 1200px) {}

/* //상단 네비게이션 */

/* 슬라이드 영역 */

.container.container_slide {
    width: 100%;
    padding: 0;
}

.fill {
    height: 700px;
    background-position-y: top;
}

.carousel-inner .item .carousel-caption {
    top: 105px;
    bottom: auto;
    padding: 0;
}

.carousel-inner .item .carousel-caption h1,
.carousel-inner .item .carousel-caption p {
    text-align: left;
}

.carousel-inner .item .carousel-caption h1 {
    font-weight: 700;
    font-size: 36px;
    font-family: 'NanumSquare', 'notokr' !important;
    line-height: 1.3;
    letter-spacing: -0.6px;
    word-spacing: -1px;
    margin: 0 0 22px;
}

.carousel-inner .item .carousel-caption h1>span>span {
    color: #C6A381;
}

.carousel-inner .item .carousel-caption p {
    font-size: 17px;
    letter-spacing: -0.5px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.carousel-inner .item .carousel-caption h1 span,
.carousel-inner .item .carousel-caption p span {
    background-color: transparent;
    text-shadow: none;
    opacity: 1;
    padding: 0;
}

.carousel-inner .item .carousel-caption .product-link {
    text-align: left;
}

.carousel-inner .item .carousel-caption .product-link:after {
    content: "";
    clear: both;
    display: block;
}

.carousel-inner .item .carousel-caption .product-link a {
    display: inline-block;
    float: left;
    padding: 43px 20px 0;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 130px;
    height: 130px;
    transition: all ease 0.3s;
    text-shadow: none;
}

.carousel-inner .item .carousel-caption .product-link a:hover {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2)
}

/* .carousel-inner .item .carousel-caption .product-link a:first-child{
    padding-top: 35px;
} */

.carousel-control {
    display: none;
}

.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators li {
    width: 10px !important;
    height: 10px !important;
    border: none;
    background: #fff;
    margin: 0 5px !important;
}

.carousel-indicators li.active {
    background: #c6a381;
}

@media (max-width: 767px) {
    .fill {
        height: 260px;
    }

    .carousel-inner .item .carousel-caption {
        top: 26px;
        bottom: auto;
        padding: 0;
        left: 5%;
        right: auto;
        background: rgba(0, 0, 0, 0.4);
        padding: 15px;
    }

    .carousel-inner .item .carousel-caption h1 {
        font-size: 18px;
        margin: 0 0 9px;
    }

    .carousel-inner .item .carousel-caption p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .carousel-inner .item .carousel-caption .product-link a {
        width: auto;
        height: auto;
        padding: 10px 5px;
        margin-right: 5px;
        font-size: 13px;
    }

    .carousel-inner .item .carousel-caption .product-link a:last-child {
        margin-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .carousel-inner .item .carousel-caption {
        left: 10%;
        right: auto;
        background: rgba(0, 0, 0, 0.4);
        padding: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .carousel-inner .item .carousel-caption {
        left: 10%;
        background: rgba(0, 0, 0, 0.4);
        padding: 15px;
        right: auto;
    }
}

@media (min-width: 1200px) {}

/* //슬라이드 영역 */

/* new 221121 */
.container_contents>.intro-html-layout>.col-sm-12 .mainpage {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    gap: 70px;
}

/* 메인 중단영역 */
.mobile-btn-layout-container {
    display: none;
}

.mainPage {
    overflow: hidden;
    /* padding-top: 80px; */
    /* padding-bottom: 45px; */
}

.product-wrap.box_outer {
    /* min-height: 370px; */
}

.product-wrap.box_outer>.row {
    margin: 0 -4px;
}

.product-wrap.box_outer>.row>div {
    padding: 0 4px;
    margin: 0 0 8px;
}

.product-wrap .box .box-inner {
    /* padding: 35px 0 0; */
    height: 181px;
    background: #333;
    border-radius: 10px;
}

.product-wrap .box:nth-child(1) .box-inner {
    /* padding-top: 54px; */
    background: url('/skin/img/main/box_bg1.jpg') no-repeat center / cover;
}

.product-wrap .box:nth-child(2) .box-inner {
    /* padding-top: 42px; */
    background: url('/skin/img/main/box_bg2.jpg') no-repeat center / cover;
}

.product-wrap .box:nth-child(3) .box-inner {
    /* padding-top: 65px; */
    background: url('/skin/img/main/box_bg3.jpg') no-repeat center / cover;
}

.product-wrap .box:nth-child(4) .box-inner {
    /* padding-top:54px; */
    background: url('/skin/img/main/box_bg5.jpg') no-repeat center / cover;
}

.product-wrap .box .box-inner a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.product-wrap .box .box-inner h4 {
    margin: 0;
    font-size: 28px;
}

.product-wrap .box .box-inner .more {
    width: 90px;
    margin: 15px auto 0;
    padding: 6px 8px;
    font-size: 12px;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    line-height: 1;
    transition: all ease .15s;
}

.product-wrap .box .box-inner a:hover .more {
    background: #957351;
    border-color: #957351;
}

/* .mainPage .box .box-inner p {
    font-size: 15.5px;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.2px;
    line-height: 1.6;
    font-weight: 400;
} */

/* --- 200715 수정

.product-wrap.box_outer {
    background: url(/skin/img/main/box_outer_bg.jpg) no-repeat;
    padding: 50px 48px;
    min-height: 370px;
}
.product-wrap.box_outer > .row {
    margin: 0;
}
.product-wrap.box_outer > .row > div {
    padding: 0;
}
.mainPage .box .box-inner {
    padding: 35px 0 0;
    height: 135px;
}
.mainPage .box:nth-child(1) .box-inner {
    padding-top: 25px;
    padding-right: 25px;
}
.mainPage .box:nth-child(2) .box-inner {
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-top: 14px;
    padding-left: 25px;
}
.mainPage .box:nth-child(3) .box-inner {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 47px;
    padding-right: 25px;
}
.mainPage .box:nth-child(4) .box-inner {
    border-top: 1px solid rgba(0,0,0,0.1);
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 20px;
}
.mainPage .box .box-inner p {
    font-size: 15.5px;
    color: #001b33;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.6;
    font-weight: 500;
} */

/* .mainPage .box .box-inner {
    padding: 56px 0 0;
	margin-bottom: 30px;
    height: 170px;
    filter: grayscale(1);
}

.mainPage .box:nth-child(2) .box-inner,
.mainPage .box:nth-child(3) .box-inner{
    border:1px solid #d3d3d3;
}
.mainPage .box:nth-child(1) .box-inner{
    background: #967452 url('/skin/img/main/main-box1.png') no-repeat right bottom;
    background: #484848 url('/skin/img/main/main-box1.png') no-repeat right bottom;
    padding-top: 47px;
}
.mainPage .box:nth-child(2) .box-inner{
    background: #6B6866 url('/skin/img/main/main-box2.png') no-repeat right bottom;
    background: #fff url('/skin/img/main/main-box2.png') no-repeat right bottom;
    padding-top: 33px;
}
.mainPage .box:nth-child(3) .box-inner{
    background: #d68a3e url('/skin/img/main/main-box3.png') no-repeat right bottom;
    background: #fff url('/skin/img/main/main-box3.png') no-repeat right bottom;
}
.mainPage .box:nth-child(4) .box-inner{
    background: #484848 url('/skin/img/main/main-box4.png') no-repeat right bottom;
    padding-top: 47px;
}
.mainPage .box .box-inner p {
    font-size: 17.5px;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.5;
    font-weight: 350;
}
.mainPage .box:nth-child(2) .box-inner p,
.mainPage .box:nth-child(3) .box-inner p{
    color:#333;
    font-weight: 500;
} */
.intro-board-widget-layout {
    /* margin-bottom: 80px; */
}

.intro-board-widget-layout .intro-boardbox .wrap,
.main-bottom .wrap {
    border: 1px solid #ddd;
    padding: 40px 40px;
    min-height: 562px;
}

.intro-board-widget-layout .intro-boardbox {
    width: 50%;
}

.intro-board-widget-layout .intro-boardbox .panel-default {
    border: 0;
    margin: 0;
}

.intro-boardbox .panel-body {
    padding: 0;
}

.intro-board-widget-layout .intro-boardbox .page-header {
    border-bottom: none;
    margin: 0 0 20px;
    padding-bottom: 0;
}

.intro-boardbox .page-header h4 {
    font-size: 25px;
    font-family: 'NanumSquare' !important;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1;
    margin: 0;
}

.intro-board-widget-layout .intro-boardbox .page-header a {
    color: #333;
    margin-top: 3px;
    padding: 0;
    border: none;
    width: 18px;
    height: 18px;
    display: inline-block;
    background: url(/skin/img/main/main-board-icon.png) no-repeat;
    opacity: 0.5;
}

.intro-board-widget-layout .intro-boardbox .page-header a i {
    display: none;
}

.intro-board-widget-layout .intro-boardbox .dh-front-list2-words {
    position: relative;
    margin: 4px 0;
    padding: 2px 0;
}

.intro-board-widget-layout .intro-boardbox .dh-front-list2-words:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    display: block;
    width: 2px;
    height: 2px;
    background: #222;
}

.intro-board-widget-layout .intro-boardbox .list-row-contents {
    display: none;
}

.dh-front-list2 h6 a,
.dh-front-list2 h6 a span {
    font-size: 15px;
    color: #555;
    letter-spacing: -0.5px;
}

.intro-board-widget-layout .intro-boardbox h6 b a .list-row-subject {
    font-weight: 400;
    padding-left: 8px;
}

.intro-board-widget-layout .intro-boardbox h6 b a .row-separator {
    display: none;
}

.intro-board-widget-layout .intro-boardbox h6 b a .list-row-regdate {
    float: right;
    font-weight: 400;
    color: #999;
}

.intro-board-widget-layout .intro-boardbox h6 b a small span {
    color: #EB9B4D !important;
    background: transparent;
}

.main-bottom {
    padding-left: 15px;
    padding-right: 15px;
    float: left;
    width: 100%;
}

.main-bottom .inner-depth2 {
    padding: 62px 0 0;
    text-align: center;
}

.main-bottom .inner-depth2:after {
    content: '';
    display: table;
    clear: both;
}

.main-bottom .inner-depth2 img {
    /* float: left; */
    /* margin-top: 15px; */
    /* margin-left: 8px; */
    margin: 0 auto;
    display: block;
}

.main-bottom .inner-depth2 dl {
    /* float: left; */
    /* margin-top: 13px; */
    /* margin-left: 15px; */
    /* margin-bottom: 0; */
    text-align: center;
    margin: 35px 0 0;
}

.main-bottom .inner-depth2 dl dt {
    font-size: 29px;
    font-weight: 500;
    color: #444;
    letter-spacing: -0.3px;
    line-height: 1;
    margin: 0 auto 10px;
}

.main-bottom .inner-depth2 dl dt span,
.main-bottom .inner-depth2 dl dt span a {
    color: #EA9745;
    font-size: 34px;
    font-weight: 800;
    font-family: 'NanumSquare';
    letter-spacing: -0.5px;
    display: inline-block;
    margin-left: 2px;
    text-decoration: none;
}

.main-bottom .inner-depth2 dl dd {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.05em;
    color: #333;
    font-weight: 350;
    margin-top: 5px;
}

.main-bottom .inner-depth2 .link {
    float: right;
    display: inline-block;
    text-align: center;
    margin-top: 44px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.5px;
    background: #957351;
    border: 1px solid #957351;
    color: #fff;
    right: auto;
    float: none !important;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 3px;
    line-height: 1;
}

.main-bottom .inner-depth2 .link:hover {
    background: #957351;
    color: #fff;
}

.main-bottom.online {
    /* display: none; */
}

.main-bottom.online #mod_type_formForm {
    margin: 0 -10px !important;
}

.main-bottom.online #mod_type_formForm::after {
    content: '';
    display: table;
    clear: both;
}

.main-bottom.online #mod_type_formForm .q_number {
    padding: 0 10px;
    width: 50%;
    float: left;
    margin-bottom: 10px;
}

.main-bottom.online #mod_type_formForm .q_number:nth-of-type(5),
.main-bottom.online #mod_type_formForm .q_number:nth-of-type(6) {
    width: 100%;
}

.main-bottom.online #mod_type_formForm .q_number::after {
    content: '';
    display: table;
    clear: both;
}

.main-bottom.online #mod_type_formForm .q_number>.col-sm-12 {
    padding: 0;
}

.main-bottom.online #mod_type_formForm .q_number>.col-sm-12:nth-child(1) {
    float: left;
}

.main-bottom.online #mod_type_formForm .q_number>.col-sm-12:nth-child(2) {
    display: none;
}

.main-bottom.online #mod_type_formForm .q_number>.col-sm-12:last-child {
    float: left;
    display: block !important;
}

.main-bottom.online #mod_type_formForm .q_number h3 {
    margin: 0 0 5px !important;
    font-size: 14px;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.main-bottom.online #mod_type_formForm .q_number input {
    margin: 0;
    border-radius: 0;
    border: none;
    background: #eee;
    box-shadow: none;
}

.main-bottom.online #mod_type_formForm .q_number input[type=checkbox] {
    margin-left: -20px;
    margin-top: 4px;
}

.main-bottom.online #mod_type_formForm .q_number textarea {
    margin: 0;
    border-radius: 0;
    height: 140px;
    border: none;
    box-shadow: none;
    background: #eee;
}

.main-bottom.online #mod_type_formForm .q_number .fa-square,
.main-bottom.online #mod_type_formForm .q_number .checkbox label:nth-child(2) {
    display: none;
}

.main-bottom.online #mod_type_formForm .checkbox label {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.015em;
}

@media (max-width: 767px) {
    .product-wrap.box_outer {
        /* background: url(/skin/img/main/box_outer_bg.jpg) #cadef3 no-repeat;
        padding: 0px 48px;
        min-height: 370px;
        background-position: 0% 101%; */
    }

    .mainPage .box .box-inner {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* padding: 15px 0 15px 0; */
        min-height: 96px;
    }

    /* .mainPage .box:nth-child(1) .box-inner{
    }
    .mainPage .box:nth-child(2) .box-inner{
        padding-top: 42px;
    }
    .mainPage .box:nth-child(3) .box-inner{
        padding-top: 65px;
    }
    .mainPage .box:nth-child(4) .box-inner{
    }
    .mainPage .box .box-inner p{
    } */
    .main-top>.row {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .product-wrapimg {
        /* margin-bottom: 30px; */
    }

    .intro-board-widget-layout::before,
    .intro-board-widget-layout::after {
        display: none;
    }

    .intro-board-widget-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .intro-board-widget-layout .intro-boardbox {
        width: 100%;
        /* margin-bottom: 30px; */
    }

    .intro-board-widget-layout .intro-boardbox .wrap,
    .main-bottom .wrap {
        min-height: 10px;
        padding: 30px 30px 40px;
    }

    .main-bottom .inner-depth2 {
        text-align: center;
        padding-top: 15px;
    }

    .main-bottom .inner-depth2 img {
        float: none;
        margin: 0 auto;
        max-width: 75px;
    }

    .main-bottom .inner-depth2 dl {
        float: none;
        margin-top: 25px;
        margin-bottom: 0;
        margin-left: 0;
    }

    .main-bottom .inner-depth2 dl dt {
        font-size: 18px;
    }

    .main-bottom .inner-depth2 dl dt>span {
        font-size: 26px;
    }

    .main-bottom .inner-depth2 dl dd {
        font-size: 15px;
    }

    .main-bottom .inner-depth2 .link {
        float: none;
        display: inline-block;
        margin-top: 20px;
        margin-bottom: 0;
        margin-left: 0;
        padding: 15px 30px;
        font-size: 14px;
        width: auto;
        height: auto;
    }

    .main-bottom.online {
        display: block;
    }

    .main-bottom.online #mod_type_formForm .q_number,
    .main-bottom.online #mod_type_formForm .q_number>.col-sm-12 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-wrap.box_outer {
        /* background: url(/skin/img/main/box_outer_bg.jpg) no-repeat center / cover;
        padding: 15px 7px;
        height: auto;
        min-height: auto; */
    }

    .mainPage .box .box-inner {
        padding: 26px 0 0;
        height: 148px;
    }

    .mainPage .box:nth-child(1) .box-inner {
        padding-top: 42px;
    }

    .mainPage .box:nth-child(2) .box-inner {
        padding-top: 30px;
    }

    .mainPage .box:nth-child(3) .box-inner {
        padding-top: 53px;
    }

    .mainPage .box:nth-child(4) .box-inner {
        padding-top: 42px;
    }

    .mainPage .box .box-inner p {
        font-size: 14px;
        line-height: 1.1;
    }

    .main-bottom .inner-depth2 {
        padding-top: 0;
    }

    .main-bottom .inner-depth2 img {
        margin-top: 0;
        margin-left: 3px;
        margin-bottom: 37px;
    }

    .main-bottom .inner-depth2 dl {
        margin-top: 0px;
        margin-left: 15px;
        margin-bottom: 0;
    }

    .main-bottom .inner-depth2 dl dt {
        font-size: 16px;
    }

    .main-bottom .inner-depth2 dl dt span {
        font-size: 22px;
    }

    .main-bottom .inner-depth2 dl dd {
        font-size: 12px;
        margin-top: 5px;
    }

    .main-bottom .inner-depth2 .link {
        float: left;
        padding: 3px 24px;
        width: auto;
        height: auto;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: -0.5px;
        line-height: 1.3;
        margin-top: 13px;
        margin-left: 17px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product-wrap.box_outer {
        /* padding: 15px 48px;
        min-height: auto; */
    }

    .mainPage .box:nth-child(1) .box-inner {
        padding-top: 40px;
    }

    .mainPage .box:nth-child(2) .box-inner {
        padding-top: 33px;

    }

    .mainPage .box:nth-child(3) .box-inner {
        padding-top: 52px;
    }

    .mainPage .box:nth-child(4) .box-inner {
        padding-top: 40px;
    }

    .mainPage .box .box-inner p {
        font-size: 14px;
    }

    .mainPage .box .box-inner {
        padding: 40px 0 0;
        height: 148px;
    }

    .main-bottom .inner-depth2 img {
        margin-top: 15px;
        margin-left: 0px;
    }

    .main-bottom .inner-depth2 dl dt {
        font-size: 18px;
    }

    .main-bottom .inner-depth2 dl dt span {
        font-size: 25px;
    }

    .main-bottom .inner-depth2 .link {
        width: 80px;
        height: 85px;
        padding: 21px 0 0;
    }
}

@media (min-width: 1200px) {}

/* //메인 중단영역 */

/* 서브페이지 */

.container.sub-layout {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.subHeader {
    height: 330px;
    background-image: url(/skin/img/sub/sub-title.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.subHeader .container h2 {
    text-align: center;
    color: #fff;
    font-size: 54px;
    margin-top: 125px;
    margin-bottom: 10px;
    font-family: 'NanumSquare';
    font-weight: 600;
    letter-spacing: 4px;
}

.subHeader .container .breadcrumb {
    text-align: center;
    background: transparent;
    padding: 0;
    margin: 15px 0 0;
    opacity: 0.8;
}

.subHeader .container .breadcrumb li a {
    color: #ccc;
}

.subHeader .container .breadcrumb li.active {
    color: #fff;
}

.subBody {
    padding-bottom: 80px;
}

.subContent_title {
    text-align: center;
    letter-spacing: -0.8px;
    font-size: 40px;
    color: #222;
    margin: 70px 0 50px;
}

.subContent_title:after {
    content: '';
    margin: 25px auto 0px;
    display: block;
    width: 40px;
    height: 3px;
    background: #957351;
    border-radius: 30px;
}

#About .subContent_inner .intro {
    font-weight: 350;
    font-size: 28px;
    letter-spacing: -0.8px;
    margin: 0 0 55px;
    color: #222;
    line-height: 1.4;
}

#About {}

#About h6 {
    font-size: 16px;
}

#About .list {
    margin-top: 10px;
}

#About .list p {}

#About .check-txt {
    margin-top: 20px;
}

#About .check-list {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 5px 0;
}

#About .check-list li {}

#About .check-list li+li {
    margin-top: 7px;
}

#About .sub-tit {
    text-align: center;
    margin-bottom: 60px;
}

#About .sub-tit h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

#About .sub-tit p {}

#About .sub-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

#About .sub-box .txt-box {}

#About .sub-box .txt-box h5 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #000;
    font-weight: 600;
}

#About .sub-box .txt-box p {
    margin: 0;
}

#About .sub-box .txt-box p+p {
    margin-top: 10px;
}

#About .sub-box .img-box {}

#About .sub-box .img-box img {
    width: 100%;
    object-fit: cover;
    /* height: 100%; */
}

#About .sub-box+.sub-box {
    margin-top: 90px;
}

.company {
    /* font-weight: 400; */
    color: #957351;
}

#About .subContent_inner p {
    font-size: 17px;
    letter-spacing: -0.5px;
    line-height: 1.75;
    color: #555;
    font-weight: 350;
    margin-top: 18px;
}

.about-box-wrap {
    margin: 80px 0 60px;
    background: #f7f5f4;
    padding: 65px 50px 35px;
}

#About .about-box {
    min-height: 195px;
    margin-bottom: 30px;
    padding: 32px 28px 25px;
    background: #f7f7f7;
    background: #fff;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #d2bfad;
}

#About .about-box h5 {
    font-size: 19px;
    margin: 0px 0 10px;
    position: relative;
    letter-spacing: -0.3px;
    font-weight: 600;
    line-height: 1.2;
}

#About .about-box h5 i {
    display: none;
}

#About .about-box p {
    line-height: 1.6;
    font-size: 15px;
    color: #333;
    margin: 0;
}

#About .subContent_inner .epilogue {
    text-align: center;
    font-weight: 350;
    font-size: 24px;
    letter-spacing: -0.8px;
    margin: 0 0 80px;
    line-height: 1.5;
    color: #6b635b;
}

[id^="Product"] .subMenu-wrap {}

[id^="Product"] .subMenu-wrap .subMenu {}

[id^="Product"] .subMenu-wrap .subMenu .nav {
    margin-top: 40px;
    margin-bottom: 0;
    background: #ececec;
}

[id^="Product"] .subMenu-wrap .subMenu .nav li {
    width: 25%;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
}

[id^="Product"] .subMenu-wrap .subMenu .nav li a {
    border-radius: 0;
    color: #333;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 60px;
    padding: 0;
}

[id^="Product"] .subMenu-wrap .subMenu .nav li.active a {
    color: #fff;
    background: #957351;
    font-weight: 400;
}

[id^="Product"] .content {
    width: 55%;
    /* width: 40%; */
    padding: 40px 35px 20px;
    /* padding: 25px 35px 40px; */
    margin: 0 auto;
    /* text-align: center; */
    border: 1px solid #e0e0e0;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
}

[id^="Product"] .content .intro {
    font-size: 18px;
    letter-spacing: -0.5px;
    color: #222;
    font-weight: 500;
    margin: 10px 0 5px;
}

[id^="Product"] h3 span {
    color: #C6823E;
}

.product_bg {
    width: 100%;
    background: url(/skin/img/sub/product-bg.jpg) no-repeat center;
    margin-bottom: 30px;
}

[id^="Product"] .content .product-list {
    padding-left: 0;
    margin-bottom: 0;
}

[id^="Product"] .content .product-list li {
    position: relative;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 5px 0 15px 165px;
    /* padding: 8px 15px; */
    border-bottom: 1px solid #eee;
    letter-spacing: -0.5px;
}

[id^="Product"] .content .product-list li:last-child {
    border-bottom: none;
}

[id^="Product"] .content .product-list li .tit {
    top: 0;
    left: 0;
    min-width: 140px;
    position: absolute;
    padding: 9px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1em;
    background: #C6823E;
    border-radius: 30px;
}

[id^="Product"] .content .sub-text {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

[id^="Product"] .content img {
    display: none;
}


#Process .con2>.row,
#Process .con3>.row,
#Process .con4>.row {
    background: #f7f5f4;
    margin: 0;
    padding: 50px 35px 20px;
}

#Process .content {
    margin-bottom: 80px;
}

#Process .con4 {
    margin-bottom: 100px;
}

#Process .content .process-box {
    margin: 0 auto;
}

#Process .content .process-box dl {
    padding: 30px;
    border: 1px solid #ddd;
    min-height: 380px;
}

#Process .content .process-box .img-box {
    margin: 0 -30px;
    margin-bottom: 30px;
}

#Process .content .process-box dl dt {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    background: #333;
    margin: -30px -30px 0px;
    padding: 13px;
    font-weight: 500;
}

#Process .content .process-box dl dd {
    margin-bottom: 13px;
    padding-bottom: 13px;
    font-size: 15px;
    letter-spacing: -0.5px;
    border-bottom: 1px solid #eee;
    line-height: 1.4;
    padding-left: 10px;
    position: relative;
    color: #555;
}

#Process .content .process-box dl dd:before {
    content: "";
    width: 3px;
    height: 3px;
    background: #333;
    position: absolute;
    left: 0;
    top: 8px;
}

#Process .content .process-box dl dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 5px;
}

#Process .content h4 {
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 0 0 12px;
}

#Process .content p.intro {
    font-size: 18px;
    font-weight: 350;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    line-height: 1.5;
}

#Process .row+.intro {
    background: #e6e6e6;
    padding: 18px;
}

#Process .content .content-inner {
    background: #fff;
    padding: 25px 20px;
    margin-bottom: 30px;
    min-height: 145px;
    position: relative;
}

#Process .con4 .content-inner {
    min-height: 215px;
}

#Process .content .content-inner:after {
    content: '\f0da';
    font-family: FontAwesome;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #777;
}

#Process .content .row .col-xs-12:last-child .content-inner:after {
    content: '';
}

#Process .content .content-inner p {
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    font-weight: 350;
    letter-spacing: -0.5px;
    margin: 0;
}

#Process .content .content-inner p span {
    font-size: 1.1em;
    font-weight: 500;
    color: #C6823E;
}

#Process .content .content-inner h5 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}

#Process .content.con5 .content-inner:after {
    content: '';
}

#Process .content.con5 .content-inner {
    background: transparent;
    border-radius: 0;
    border: 1px solid #eee;
    padding: 45px;
    background: #f8f8f8;
    margin: 40px 0 0;
}

#Process .content.con5 .content-inner h5 {
    font-size: 20px;
    margin-bottom: 9px;
    text-align: center;
}

#Process .content.con5 .content-inner p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

#Process .content.con5 .content-inner .after-list {
    width: 900px;
    margin: 35px auto 20px;
    border-top: 2px solid #222;
    background: #fff;
    padding: 0 0 15px;
}

#Process .content.con5 .content-inner .after-list>li {
    margin-bottom: 10px;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
    letter-spacing: -0.4px;
    padding: 18px 30px 0;
    color: #555;
}

#Process .content.con5 .content-inner .after-list>li:first-child {
    border-top: none;
}

#Process .content.con5 .content-inner .after-list>li:after {
    content: '';
    clear: both;
    display: table;
}

#Process .content.con5 .content-inner .after-list>li>span {
    display: block;
    width: 25%;
    float: left;
    font-weight: 600;
    height: 3.3em;
    font-size: 15px;
    color: #333;
}

#Process .content.con5 .content-inner .inner-list {
    padding: 0 0 0 4px;
    width: 75%;
    float: left;
}

#Process .content.con5 .content-inner .inner-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 8px;
}

#Process .content.con5 .content-inner .inner-list li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    display: block;
    width: 2px;
    height: 2px;
    background: #222;
}

#About .about-img,
#Process .process-img,
#Info .info-img {
    margin-top: 65px;
    margin-bottom: 65px;
}

#Info .content {
    padding-bottom: 80px;
}

#Info .content h4 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 0 0 15px;
}

#Info .content p {
    font-size: 16px;
    letter-spacing: -0.5px;
    line-height: 1.75;
    color: #555;
    font-weight: 350;
    margin: 15px 0px;
}

#Info .content p.epilogue {
    font-weight: 350;
    font-size: 22px;
    letter-spacing: -0.8px;
    margin: 25px 0 0;
    line-height: 1.5;
    color: #23211e;
}

#Info .content p.epilogue>span {
    color: #C6823E;
}

#Info .con2 .content-inner {

    background: #f7f5f4;
}

#Info .con2 .content-inner .row {
    margin: 0px 0 0px;
    padding: 65px 50px 35px;
}

#Info .content.con2 h5 {
    font-size: 20px;
    margin: 0 0 35px;
    text-align: center;
    color: #333;
}

#Info .content.con2 .charnel {
    margin-bottom: 30px;
    padding: 35px 30px 25px;
    background: #fff;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #d2bfad;
    min-height: 175px;
}

#Info .content.con2 .charnel h6 {
    font-size: 19px;
    margin: 0px 0 10px;
    position: relative;
    letter-spacing: -0.3px;
    font-weight: 600;
    line-height: 1.2;
}

#Info .content.con2 .charnel ul {
    padding: 0;
    margin: 0;
}

#Info .content.con2 .charnel ul li {
    line-height: 1.4;
    font-size: 15px;
    color: #333;
    letter-spacing: -0.5px;
    font-weight: 350;
    margin: 5px 0;
}

.dh-margin-top {
    margin-top: 50px;
    display: inline-block;
}

.dh-margin-top form#insertForm {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 0 0;
}

.btnRead {
    font-weight: 500;
}

.btn-default,
.btn-primary,
.btn-danger {
    background-image: none;
}

.btn-group,
.btn-group-vertical {
    margin: 10px 0 30px;
}

.dh-view-box {
    margin-top: 40px;
}

.dh-view-info .pull-right {
    display: none;
}

.sns-box {
    display: none;
}

.dh-view-box>.row:nth-child(2)>div:nth-child(3) {
    padding: 15px 20px 40px !important;
}

.dh-view-box.dh-margin-topx2 {
    margin-top: 0;
}

.dh-view-box>.row>.page-header {
    border-top: 1px solid #333;
    border-bottom: 1px solid #ccc;
    background: #f8f8f8;
    margin: 0;
    padding: 15px 20px;
}

.dh-view-box>.row>.page-header {
    padding: 50px 15px 0;
    margin: 0 0 25px;
    border-top: 2px solid #333;
    border-bottom: none;
    color: #333;
    background: #fff;
    text-align: center;
}

.dh-view-box>.row>.page-header h4 {
    line-height: 1;
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.034em;
}

.dh-view-box>.row>.dh-view-info {
    background: #ffffff;
    opacity: 0.6;
    border-bottom: 1px solid #ccc;
    text-align: center;
    padding: 0 0 50px;
}


.dh-board .table-hover {
    margin: 0;
    border-top: 2px solid #222;
    border-bottom: 1px solid #333;
}

.dh-board .table-hover thead tr th,
.dh-board .table-hover tbody tr th,
.dh-board .table-hover tbody tr td {
    padding: 13px 15px;
    font-size: 15px;
    color: #616161;
    letter-spacing: -0.03em;
    line-height: 1.6;
    border-bottom: 1px solid #e5e5e5;
}

.dh-board .table-hover thead tr th,
.dh-board .table-hover tbody tr th {
    color: #222;
    background: #f6f6f6;
    padding: 13px 15px;
    font-weight: 500;
}

.dh-board .table-hover>tbody>tr:hover {
    background-color: #fff;
}

.dh-board>.table-hover>tbody>tr>td>strong>a {
    font-weight: 400;
}

.dh-board>.table-hover>tbody>tr>td>strong>a:hover {
    color: #222;
    text-decoration: underline;
}

.pagination>li>a,
.pagination>li>span {
    border: 1px solid #fff;
    border-radius: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
    color: #555 !important;
    font-size: 16px;
    width: 35px;
    height: 35px;
    padding: 0;
    line-height: 33px;
    text-align: center;
}

.pagination>li:first-child>a,
.pagination>li:last-child>a {
    border: 1px solid #ddd;
    font-size: 13px;
}

.pagination>li:last-child>a {
    margin-left: 10px;
}

.pagination>li:first-child>a {
    margin-right: 10px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    border: 1px solid #957351;
    background: #957351 !important;
    font-weight: 600;
    color: #fff !important;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    border-color: #fff;
    background: #fff;
}

#insertForm .input-group .btn {
    border-radius: 0;
    border-color: #ddd;
}

#insertForm .input-group .form-control {
    box-shadow: none;
    border-color: #ddd;
}

#insertForm .input-group #btnNew {
    background: #333;
    border: 1px solid #333;
    color: #fff;
}


.dh-board .label {
    background: rgba(0, 0, 0, 0) !important;
    font-size: 12px;
}

.dh-board .label-danger {
    color: #d9534f;
}

.dh-board .label-default {
    color: #888;
}

.dh-board .label-primary {
    color: #2976c3;
}


#Customer .con1 {
    background: #f8f8f8;
    padding: 40px;
    margin-bottom: 20px;
}

#Customer .con2 {
    background: #f9f6ec;
    padding: 40px;
    margin-bottom: 60px;
}

#Customer .content h4 {
    font-weight: 600;
}

#Customer .content p {
    font-size: 16px;
    margin: 20px 0;
    letter-spacing: -0.5px;
    font-weight: 350;
    line-height: 1.65;
}

#Customer .content p.call {
    font-size: 22px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
}

#Customer .content p.call span {
    color: #C6823E;
    display: inline-block;
    font-size: 24px;
    margin-left: 8px;
    line-height: 1;
    font-family: 'NanumSquare';
    font-weight: 800;
}

#Customer .content p.call br {
    display: none;
}

#Customer .content p.call span .fa {
    margin-right: 6px;
    font-size: 20px;
    line-height: 1;
}

#mailForm {
    /*
    max-width: 800px;
    margin: 0 auto;
*/
    padding: 0 215px;
}

#mailForm .form-group {
    overflow: hidden;
    margin-bottom: 25px;
}

#mailForm .form-group label {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    margin: 0 0 10px;
}

#mailForm .form-group input,
#mailForm .form-group textarea {
    box-shadow: none;
    height: auto;
    padding: 10px 12px;
    border-radius: 3px;
    transition: all ease 0.3s;
    background: #f8f8f8;
    border: 0;
    border-radius: 0;
}

#mailForm .form-group input:focus,
#mailForm .form-group textarea:focus {
    border-color: #957351;
}

#mailForm .form-group label[for='mail_agree'] {
    float: none;
    width: 100%;
    font-weight: 400;
    color: #555;
    font-size: 14px;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.7;
}

#mailForm .form-group label[for='mail_agree'] input {
    float: none;
    width: auto;
}

/*
#mailForm input[type="submit"] {
    max-width: 200px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: #957351;
    border: none;
    border-radius: 3px;
    padding: 15px 30px;
    margin-top: 40px;
    transition: all ease 0.2s;
}
#mailForm input[type="submit"]:hover {
    opacity:0.6
}
*/

#Online .con1 {
    margin-bottom: 50px;
}

#Online .con1 h4 {
    margin: 0;
    text-align: center;
    font-size: 25px;
}

#Online #mod_type_formForm {
    padding: 0 215px;
}

#Online #mod_type_formForm .q_number {}

#Online #mod_type_formForm .q_number .pull-left {
    margin-bottom: 5px !important;
}

#Online #mod_type_formForm .q_number .pull-left .fa-square {
    display: none;
}

#Online #mod_type_formForm .q_number .form-control {
    border: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    background: #f8f8f8;
}

.main-bottom.online #mod_type_formForm .btn-wrap {
    padding: 0 !important;
    margin-top: 10px !important;
}

#Online #mod_type_formForm .btn-primary,
#mailForm input[type="submit"],
.main-bottom.online #mod_type_formForm button[type="submit"] {
    border-radius: 0;
    background: #fff;
    color: #fff;
    background: #957351;
    border: 1px solid #957351;
    right: auto;
    float: none !important;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 3px;
    line-height: 1;
}

#Online #mod_type_formForm .btn-primary:hover,
#mailForm input[type="submit"]:hover,
.main-bottom.online #mod_type_formForm button[type="submit"]:hover {
    background: #957351;
    color: #fff;
}

#Online #mod_type_formForm .checkbox>label:nth-of-type(2) {
    display: none;
}

@media (max-width: 767px) {
    .subHeader {
        height: 180px;
    }

    .subHeader .container h2 {
        font-size: 37px;
        margin-top: 60px;
    }

    .subContent_title {
        font-size: 26px;
    }

    #About .subContent_inner .intro {
        font-size: 21px;
    }

    #About .about-img img,
    #Process .process-img img,
    #Info .info-img img {
        margin-bottom: 15px;
    }

    .about-box-wrap {
        padding: 35px 10px 20px;
    }

    #About .subContent_inner .epilogue {
        font-size: 17px;
    }

    [id^="Product"] .subMenu-wrap .subMenu .nav li {
        width: 100%;
    }

    [id^="Product"] .subMenu-wrap .subMenu .nav li a {
        line-height: 45px;
        font-size: 15px;
    }

    [id^="Product"] .content {
        width: 100%;
        padding: 25px 20px 20px;
        /* padding: 25px 20px 40px; */
        text-align: center;
    }

    [id^="Product"] .content .product-list li {
        padding: 45px 0 15px 10px;
        font-size: 14px;
    }

    [id^="Product"] .content .product-list li .tit {
        width: 100%;
        font-size: 14px;
    }

    #Process .con2>.row,
    #Process .con3>.row,
    #Process .con4>.row {
        padding: 30px 20px 20px;
    }

    #Process .content.con5 .content-inner {
        padding: 15px;
    }

    #Process .content .content-inner:after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -50px;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    #Process .content.con5 .content-inner .after-list {
        width: auto;

    }

    #Process .content.con5 .content-inner .after-list>li {
        width: auto;
    }

    #Process .content.con5 .content-inner .after-list>li>span {
        float: none;
        width: auto;
        height: 2em;
    }

    .table .writer {
        display: none;
    }

    #Customer .con1,
    #Customer .con2 {
        padding: 15px;
    }

    #mailForm {
        padding: 0;
    }

    #Online #mod_type_formForm {
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .subHeader {
        height: 260px;
    }

    .subHeader .container h2 {
        font-size: 42px;
        margin-top: 88px;
    }

    .subContent_title {
        font-size: 32px;
    }

    #About .subContent_inner .intro {
        font-size: 24px;
    }

    #About .subContent_inner p {
        margin-top: 0;
    }

    .about-box-wrap>.col-sm-3 {
        width: 50%;
    }

    #Process .content .process-box dl dd {
        font-size: 13px;
    }

    #Process .content.con2>.row>.col-sm-4,
    #Process .content.con3>.row>.col-sm-3,
    #Process .content.con4>.row>.col-sm-3 {
        width: 50%;
    }

    #Process .content .content-inner {
        min-height: 167px;
    }

    #Process .content.con5 .content-inner .after-list {
        width: 100%;
    }

    #Info .content.con2 .charnel {
        padding-left: 15px;
        padding-right: 15px;
    }

    #Online #mod_type_formForm,
    #mailForm {
        padding: 0 100px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-box-wrap>.col-sm-3 {
        width: 33.33333333333%;
    }

    #Process .content .process-box dl dd {
        font-size: 14px;
    }

    #Process .content.con2 .content-inner {
        min-height: 230px;
    }

    #Process .content.con4 .content-inner {
        min-height: 275px;
    }
}

@media (min-width: 1200px) {}

/* //서브페이지 */

/* 푸터 */
.footer_copy .text-center {
    padding: 30px 0 30px;
    text-align: left;
    background: #EFEFEF;
    color: #888;
}

.footer_copy .wrap-footer {}

.footer_copy .wrap-footer ul {
    padding-left: 0;
}

.footer_copy .wrap-footer p {
    margin-bottom: 4px;
}

.footer_copy .wrap-footer address {
    margin: 0;
}

.footer_copy .wrap-footer ul:after {
    content: '';
    clear: both;
    display: table;
}

.footer_copy .wrap-footer ul li {
    float: left;
    margin-right: 13px;
}

.copyrights {
    color: #aaa;
}

@media (max-width: 767px) {
    .footer_copy .text-center {
        text-align: center;
    }

    .footer_copy .wrap-footer ul li {
        float: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 1200px) {}

/* //푸터 */


.maintenance {
    margin-top: 5px;
    border: 7px solid #E5E5E5;
    padding: 50px 25px;
    text-align: center;
}

.maintenance .icon {
    display: block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}

.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}



/* login */
.login-layout,
.id-find-layout,
.pw-find-layout {
    padding: 100px 15px 100px;
    background: #f6f6f6;
    margin-top: -30px;
}

.login-layout .panel,
.id-find-layout .panel,
.pw-find-layout .panel {
    max-width: 500px;
    padding: 80px 40px 80px;
    margin: 0 auto;
    border: none;
    border-radius: 0;
}

.login-layout .panel hr,
.id-find-layout .panel hr,
.pw-find-layout .panel hr {
    display: none;
}

.login-layout .panel .panel-body,
.id-find-layout .panel .panel-body,
.pw-find-layout .panel .panel-body {
    padding: 0;
}

.login-layout .panel-body>div.col-sm-12,
.id-find-layout .panel-body>div.col-sm-12,
.pw-find-layout .panel-body>div.col-sm-12 {
    float: none;
}

.login-layout .panel-body>div.col-sm-12 h2,
.id-find-layout .panel-body>div.col-sm-12 h2,
.pw-find-layout .panel-body>div.col-sm-12 h2 {
    text-align: center;
    margin: 0 0 15px;
    line-height: 1;
    color: #222;
    font-size: 32px;
}

.inner-box-msg {
    width: 100%;
    text-align: center;
    float: none;
    margin-bottom: 30px;
    padding: 0;
}

.inner-box-msg p {
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #555;
    margin: 0;
}

.inner-box-form {
    width: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

.login-layout label,
.id-find-layout label,
.pw-find-layout label {
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #222;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 1;
}

.login-layout .form-control,
.id-find-layout .form-control,
.id-find-layout .form-control {
    box-shadow: none;
    border-radius: 3px;
    width: 100%;
    height: 40px;
    color: #555;
    font-size: 1em;
}

.login-layout .form-control:focus,
.id-find-layout .form-control:focus,
.pw-find-layout .form-control:focus {
    border-color: #957351;
}

.login-layout .btn-warning,
.id-find-layout .btn-warning,
.pw-find-layout .btn-warning {
    float: none;
    border: none;
    width: 220px;
    height: 50px;
    padding: 10px 15px;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    background: #957351;
    font-size: 17px;
    text-decoration: none;
    display: block;
    margin: 10px auto 20px;
    transition: all ease 0.3s;
}

.login-layout .btn-warning:hover,
.id-find-layout .btn-warning:hover,
.pw-find-layout .btn-warning:hover {
    opacity: 0.6
}

.login-layout form>div>p,
.id-find-layout form>div>p,
.pw-find-layout form>div>p {
    width: 50%;
    margin: 0;
    float: left;
    text-align: center;
    line-height: 1;
}

.login-layout form>div>p+p,
.id-find-layout form>div>p+p,
.pw-find-layout form>div>p+p {
    border-left: 1px solid #ccc;
}

.login-layout form>div>p>a,
.id-find-layout form>div>p>a,
.pw-find-layout form>div>p>a {
    font-size: 14px;
    color: #555;
    letter-spacing: -0.03em;
    display: block;
    padding: 2px 0;
}

@media (max-width:768px) {
    .container_contents>.intro-html-layout>.col-sm-12 .mainpage {
        padding: 50px 0px;
        gap: 30px;
    }

    .mainPage .login-layout,
    .id-find-layout,
    .pw-find-layout {
        padding: 20px 15px;
    }

    .login-layout .panel,
    .id-find-layout .panel,
    .id-find-layout .panel {
        padding: 40px;
    }

    .login-layout .panel-body>div.col-sm-12 h2,
    .id-find-layout .panel-body>div.col-sm-12 h2,
    .pw-find-layout .panel-body>div.col-sm-12 h2 {
        font-size: 24px;
    }

    .inner-box-msg p {
        font-size: 12px;
    }

    .login-layout label,
    .id-find-layout label,
    .pw-find-layout label {
        font-size: 14px;
    }

    .login-layout .form-control,
    .id-find-layout .form-control,
    .pw-find-layout .form-control {
        font-size: 13px;
        height: 36px;
    }

    .login-layout form>div>p>a,
    .id-find-layout form>div>p>a,
    .pw-find-layout form>div>p>a {
        font-size: 12px;
    }

    .login-layout .btn-warning,
    .id-find-layout .btn-warning,
    .pw-find-layout .btn-warning {
        height: 45px;
        font-size: 14px;
        margin-top: 10px;
    }
}

/* 2022-11-28 */
.detail-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.detail-wrap .item {
    display: flex;
    flex-direction: column;
}

.detail-wrap .item:last-child {
    grid-column: 2;
}

.detail-wrap .call-box {
    padding: 0 15px;
}

.detail-wrap .call-box a {
    display: flex;
    gap: 15px;
    height: 55px;

    border-radius: 50px;
    font-size: 22px;
    color: #fff;
    background-color: #957351;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.detail-wrap .img-box {
    margin-top: auto;
}

.detail-wrap p {
    text-align: center;
}

.detail-wrap p::after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    margin: 10px auto;
    background-color: #C6823E;
}

.li-caution {
    padding: 0;
    margin-top: 70px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 16px;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.new_product_wrap+.new_product_wrap {
    margin-top: 70px;
}

.new_product_wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    justify-content: center;
}

.new_product_wrap .wp_title {
    grid-column: span 4;
}

.new_product_wrap .wp_title h4 {
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin: 0 0 12px;
}

.new_product_wrap .item {
    background: #fff;
    box-shadow: 8px 8px 15px rgb(0 0 0 / 8%);
    border-bottom: 2px solid #d2bfad;
}

.new_product_wrap .item .text {
    padding: 20px 20px;
}

.new_product_wrap h5 {
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: #957351;
    line-height: 1.5;
}

.new_product_wrap p {
    font-size: 15px;
    color: #111;
}

.mainpage::before,
.mainpage::after {
    content: none;
}

.mainpage .product-wrap {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* display: none; */
}

.mainpage .product-wrap .item {
    display: flex;
    flex-direction: column;
    transition: .3s;
    text-decoration: none;
    border: 3px solid transparent;
}

.bbs-blog-index-layout .dh-board {
    border-top: 2px solid #333;
}

.bbs-blog-index-layout .dhb-txt-box {
    padding: 30px 30px;
    border: 0;
    border-bottom: 1px solid #ddd;
    background: none;
    margin: 0;
    display: flex;
    align-items: center;
}

.bbs-blog-index-layout .dhb-txt-box+.clearfix {
    border-top: 1px solid #ccc;
}

.bbs-blog-index-layout .dhb-txt-box>div {
    padding: 0;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list {
    width: 80%;
    border: 0;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list>.row {
    display: flex;
    align-items: center;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-5 {
    width: 32%;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-5 .thumb-hidden {
    border: 0;
    box-shadow: none;
    max-height: 250px;
    width: auto;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-5 .thumb-hidden .btnRead {}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-5 .thumb-hidden .btnRead img {}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 {
    padding-left: 29px;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h4 {
    margin: 0;
    font-size: 26px;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h4 strong {}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h4 strong .btnRead {
    font-weight: 500;
    letter-spacing: -0.034em;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h4 small {}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h4 small .label {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    padding: 0;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h4 small .label-danger {
    display: none;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h5 {
    margin: 0;
}

.bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h5 .btnRead {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    letter-spacing: -0.005em;
}

.bbs-blog-index-layout .dhb-txt-box .text-right {
    width: 20%;
    color: #000;
    opacity: 0.4;
    font-size: 15px;
}

.bbs-blog-index-layout .dhb-txt-box .text-right h5 {
    display: none;
}

.bbs-blog-index-layout .dhb-txt-box .text-right h6 {
    display: none;
}


.intro-boardbox-6 {}

.intro-boardbox-6 .wrap {}

.intro-boardbox-6 .page-header {
    border: 0;
    margin: 50px 0 45px;
    padding: 0;
}

.intro-boardbox-6 .page-header h4 {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
}

.intro-boardbox-6 .page-header h4 small {}

.intro-boardbox-6 .page-header h4 .btn {
    float: none !important;
    display: block;
    padding: 10px 20px;
    width: 135px;
    border: none;
    margin: 25px auto 10px;
    background: #957352;
    border-radius: 0;
    color: #fff;
    border-radius: 3px;
}

.intro-boardbox-6 .page-header h4 .btn:hover,
.intro-boardbox-6 .page-header h4 .btn:focus {
    /* background: none; */
}

.intro-boardbox-6 .page-header h4 .btn:before {
    content: '더 보기 +';
    display: block;
    font-size: 16px;
    margin: 0;
}

.intro-boardbox-6 .page-header h4 .btn i {
    display: none;
}

.intro-boardbox-6 .dh-front-blog {
    margin: 0 -15px;
    /* padding: 0; */
    /* border-top: 2px solid #333; */
}

.intro-boardbox-6 .dh-front-blog>div {
    width: 50%;
    padding: 0 15px;
}

.intro-boardbox-6 .dh-front-blog .thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    border: 0;
    /* border-bottom: 1px solid #ddd; */
    /* padding: 30px 30px; */
    margin: 0 0 30px;
    text-align: c;
}

.dh-front-blog>.col-md-4>.thumbnail>a.blogthumb {
    width: 100%;
    aspect-ratio: 1.8;
    height: auto;
    max-height: none;
    border-radius: 20px;
}

.intro-boardbox-6 .dh-front-blog .thumbnail .caption {
    /* width: calc(100% - 300px); */
    width: 100%;
    padding: 10px 0 0;
    /* padding-left: 50px; */
}

.intro-boardbox-6 .dh-front-blog .thumbnail .caption:hover {
    text-decoration: none;
}

.intro-boardbox-6 .dh-front-blog .thumbnail .caption .blog-row-subject {
    margin: 0 0 0px;
    font-size: 26px;
    padding: 0 !important;
    letter-spacing: -0.034em;
    text-align: center;
}

.intro-boardbox-6 .dh-front-blog .thumbnail .caption .blog-row-subject .label-danger {
    display: none;
}

.intro-boardbox-6 .dh-front-blog .thumbnail .caption .blog-row-contents {
    font-size: 16px;
    margin: 0 0 35px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    letter-spacing: -0.005em;
    display: none !important;
}

.intro-boardbox-6 .dh-front-blog .thumbnail .caption .blog-row-regdate {
    display: block;
    opacity: 0.5;
    font-size: 15px;
    display: none !important;
}

@media (hover:hover) {

    .mainpage .product-wrap .item:hover {
        transform: translateY(-20px);
        border-color: #957351;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    }

    .mainpage .product-wrap .item:hover img {
        transform: scale(1.2);
    }
}

.mainpage .product-wrap .img-box {
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #f7f7f7;
}

.mainpage .product-wrap .item img {
    transition: 1s ease;
}

.mainpage .product-wrap .info {
    flex: 1;
    position: relative;
    padding: 35px 25px 20px;
    color: #000;
    border: 1px solid #c6a381;
    border-top: 0;
}

.mainpage .product-wrap .icon {
    position: absolute;
    left: 0;
    top: -25px;
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0 25px;
    background-color: #957351;
    color: #fff;
    font-size: 15px;
}

.mainpage .product-wrap h4 {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.35;
}

.bbs-blog2-index-layout .dh-board {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bbs-blog2-index-layout .clearfix {
    display: none !important;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b {
    padding: 0;
    border: 0;
    margin: 0;
    background: none;
    width: calc(25% - 15px);
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .row {
    margin: 0;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .row::before,
.bbs-blog2-index-layout .dhb-txt-box-type-b .row::after {
    display: none;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-img-layout {
    padding: 0;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-img-layout .thumb-hidden {
    height: auto;
    aspect-ratio: 1;
    max-height: none;
    border: 0;
    box-shadow: none;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-img-layout .thumb-hidden .btnRead {}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-img-layout .thumb-hidden .btnRead img {}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout {
    padding: 0;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout h4 {}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout h4 strong {}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout h4 strong .btnRead {}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout h4 small {
    display: none;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout .txt-box-footer {
    display: none;
}

.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout .txt-box-footer br,
.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout .txt-box-footer em,
.bbs-blog2-index-layout .dhb-txt-box-type-b .dhb-txt-box-type-b-text-layout .txt-box-footer .hits {
    display: none;
}



@media(max-width:768px) {
    .banner-box {
        right: 20px;
        bottom: 100px;
    }

    .banner .img-box {
        width: 55px;
        right: -15px;
    }

    .banner-box .banner p {
        font-size: 12px;
    }

    .banner-box .banner {
        position: relative;
        width: 135px;
        padding: 6px 15px 6px 15px;
        border: 2px solid #957351;
    }

    .banner-box .banner span {
        bottom: 0px;
        right: 30px;
        font-size: 20px;
    }

    .mainpage .item img {
        width: 100%;
    }

    #About .sub-box .txt-box h5 {
        font-size: 16px;
    }

    #About .subContent_inner p {
        font-size: 13px;
    }

    #About .sub-box+.sub-box {
        margin-top: 80px;
    }

    #About .sub-box {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    #About .sub-box .img-box {
        order: 2;
    }

    .container_contents,
    .intro-html-layout {
        width: auto;
    }

    .detail-wrap {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin: 0 -15px;
    }

    .slider-bottom {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .mainpage .product-wrap {
        margin-top: 0;
    }

    .new_product_wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .new_product_wrap .wp_title {
        grid-column: span 2;
    }

    .new_product_wrap .wp_title h4 {
        font-size: 24px;
    }

    .new_product_wrap .item .text {
        padding: 15px;
    }

    .new_product_wrap h5 {
        font-size: 16px;
    }

    .new_product_wrap p {
        font-size: 14px;
    }

    .li-caution {
        font-size: 14px;
    }

    .mainpage {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .mainpage .product-wrap {
        display: flex;
        flex-direction: column;
    }

    .mainpage .product-wrap .info {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .intro-boardbox-6 .page-header h4 {
        font-size: 30px;
    }

    .intro-boardbox-6 .page-header {
        margin-bottom: 35px;
    }

    .intro-boardbox-6 .page-header h4 .btn {
        padding: 8px;
        margin-top: 18px;
    }

    .intro-boardbox-6 .dh-front-blog>div {
        float: left;
    }

    .intro-boardbox-6 .dh-front-blog .thumbnail {
        display: block;
        padding: 20px 0px;
    }

    .dh-front-blog>.col-md-4>.thumbnail>a.blogthumb {
        height: 150px;
    }

    .dh-front-blog>.col-md-4>.thumbnail>a.blogthumb {
        width: 100%;
    }

    .intro-boardbox-6 .dh-front-blog .thumbnail .caption {
        width: 100%;
        padding: 25px 10px 0;
    }

    .intro-boardbox-6 .dh-front-blog .thumbnail .caption .blog-row-subject {
        font-size: 22px;
    }

    .intro-boardbox-6 .dh-front-blog .thumbnail .caption .blog-row-contents {
        font-size: 14px;
        line-height: 1.65;
        margin-top: -8px;
        margin-bottom: 20px;
    }

    .intro-boardbox-6 .dh-front-blog .thumbnail .caption .blog-row-regdate {
        font-size: 13px;
    }

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list>.row {
        display: block;
    }

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-5 {
        width: 100%;
    }

    .bbs-blog-index-layout .dhb-txt-box .text-right {
        width: 100%;
    }

    .bbs-blog-index-layout .dhb-txt-box {
        display: block;
        padding: 25px 0;
    }

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list {
        width: 100%;
    }

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-5 .thumb-hidden {
        min-height: 150px;
        height: 150px;
    }

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-5 .thumb-hidden .btnRead img {}

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 {
        padding: 25px 25px 15px;
    }

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h4 strong .btnRead {
        font-size: 22px;
    }

    .bbs-blog-index-layout .dhb-txt-box .dhb-txt-list .col-md-7 h5 .btnRead {
        font-size: 14px;
        line-height: 1.65;
        margin-top: -8px;
        margin-bottom: 0;
    }

    .bbs-blog-index-layout .dhb-txt-box .text-right {
        text-align: left;
        padding-left: 10px;
        font-size: 13px;
    }

    .dh-margin-top {
        margin-top: 25px;
    }

    .dh-margin-top .col-md-5 .pagination {
        margin-bottom: 15px;
    }

    .dh-view-box>.row>.page-header {
        padding: 30px 15px 0;
        margin: 0 0 15px;
    }

    .dh-view-box>.row>.page-header h4 {
        font-size: 22px;
    }

    .dh-view-box>.row>.dh-view-info {
        padding: 0 0 30px;
    }

    .dh-view-box>.row>.dh-view-info>span {
        font-size: 10px;
        padding: 0 0 0 3px;
    }

    .dh-view-box>.row>.dh-view-info>span>strong {
        padding: 0 2px 0 0;
    }

    .bbs-blog2-index-layout .dhb-txt-box-type-b {
        width: calc(50% - 10px);
    }

    #About .check-list li {
        font-size: 13px;
    }

    #About h6 {
        font-size: 14px;
    }
}