@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap');

* {
    word-break: keep-all;
}

#site {
    padding-top: 100px;
    font-family: 'Roboto', 'Noto Sans KR', 'notokr', sans-serif;
}

#site>.container {
    width: 100%;
    padding: 0;
}

/*=================================== reset =================================== */

ol,
ul,
li,
dl {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-position: inside;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dt {
    position: relative;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

button {
    border-radius: 0;
    background: transparent;
    border: 1px solid #444;
}

span[class^="material-icons"] {
    vertical-align: middle;
    line-height: 1;
    user-select: none;
}

.internet.explorer span[class^="material-icons"] {
    transform: translateY(5px);
}

br {
    visibility: visible;
    opacity: 0;
}

/* =================================== navbar =================================== */

/* 불필요 항목 삭제 */
.navbar .caret {
    display: none;
}

/* 상단 메뉴 */
.navbar-header,
.navbar>.container {
    display: flex;
}

.navbar-header {
    justify-content: center;
    align-items: center;
}

.navbar>.container {
    justify-content: space-between;
}

.navbar>.container::before,
.navbar>.container::after {
    display: none;
}

.navbar-inverse {
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0px 0px;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 0
}

.navbar-inverse .navbar-right {
    margin-right: 0 !important;
}

.navbar-brand {
    margin-left: 0px !important;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
}

.navbar-brand>img {
    width: 190px;
}

.navbar-brand::after {
    content: '';
    display: block;
    width: 73px;
    height: 55px;
    margin-bottom: 3px;
    background-image: url(/public/img/logo/logo-square.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 12px;
}

/* nav 메뉴 속성 */
.navbar-inverse .navbar-nav>li>a {
    position: relative;
    z-index: 10;
    padding: 40px 0px 40px;
    margin: 0 25px;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 500;
    color: #000;
}

.navbar-inverse .navbar-nav>li>a::after {
    transition: .25s;
    content: '';
    position: absolute;
    left: 0;
    bottom: 37px;
    display: block;
    height: 1px;
    width: 0%;
    background: #ee3349;
}

.navbar-inverse .navbar-nav>li>a:hover::after {
    width: 100%;
}

/* nav 메뉴 클릭 및 후버 시 */
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle {
    background: none;
    color: #c30e23;
}

/* dropdown-menu 배경 */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: #000;
}

/* dropdown-menu 메뉴 기본 */
.navbar-inverse .navbar-nav .dropdown-menu>li>a {
    color: #fff;
}

/* dropdown-menu 메뉴 후버 */
.navbar-inverse .navbar-nav .dropdown-menu>li>a:hover {
    background: #222;
    color: #fff;
}

@media (min-width: 768px) {

    /* pc nav 드롭다운 */
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: .25rem;
        border: 0;
        padding: 10px 0;
        text-align: center;
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu>li>a {
        padding: 10px 25px;
        font-size: 14px;
        line-height: 1;
    }
}

/* =================================== footer =================================== */

#site footer {
    margin-top: 0px;
    padding: 40px 0 50px;
    border-top: 1px solid #eee;
}

.footer-wrap{
    display: flex;
    align-items: flex-start;
}
.footer-logo{
    margin-right: 30px;
}

.footer-info {
    color: #8a8a8a;
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 1.5;
}

.footer-info li {
    display: inline;
    line-height: 1.65em;
    position: relative;
}

.footer-info li.tel {
    color: #be4a4a;
}

.footer-info li strong {
    font-weight: 500;
    color: #666;
}

.footer-info li+li {
    margin-left: 16px;
}

.footer-info li+li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #ddd;
    position: absolute;
    top: 2px;
    left: -9px;
}

.copyright {
    font-size: 12px;
    color: #9f9f9f;
    margin: 0;
}

#scrolltop {
    position: fixed;
    z-index: 1000;
    right: 50px;
    bottom: 50px;
    display: none;
    font-size: 18px;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    background: #000;
}

#scrolltop .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

/* mobile*/
@media(max-width:767px) {
    .footer-info {
        margin-top: 15px;
    }

    .footer-info li {
        display: block;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .footer-info li+li {
        border: 0;
        margin-left: 0;
        padding-left: 0;
    }
}

.maintenance {
    background: #f4f4f4;
    padding: 120px 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;
}

/* =================================== mainCarousel =================================== */

/* 슬라이드 */
#mainCarousel {
    /* user-select: none; */
}

#mainCarousel .carousel-inner .item {
    height: calc(100vh - 100px);
}

#mainCarousel .carousel-inner .item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .3;
}

.carousel-caption {
    top: 48%;
}

.carousel-caption h1 {
    margin: 0 0 40px;
    position: relative;
    font-size: 102px;
    line-height: 1.02;
}

.carousel-caption h1 span {
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.3em;
    margin-bottom: -43px;
}

.carousel-caption h1 strong {
    letter-spacing: 0.034em;
    text-transform: uppercase;
}

.carousel-caption p {
    font-size: 35px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.034em;
}

.link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 46px;
    margin: 60px auto 0;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.95);
    letter-spacing: 0;
    font-weight: 400;
}

.link-btn:focus,
.link-btn:hover {
    color: #000;
    background: #fff;
    text-decoration: none;
    font-weight: 500;
}

.carousel-control {
    display: none;
    /* display: flex; */
    align-items: center;
    opacity: 1;
    width: 4%;
}

.carousel-control.right,
.carousel-control.left {
    background: transparent;
}

.carousel-control.right {
    justify-content: flex-end;
}

.carousel-control.right span {
    margin-right: 0;
}

.carousel-control.left {
    justify-content: flex-start;
}

.carousel-control.left span {
    margin-left: 0;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 100px;
    font-size: 28px;
    left: auto;
    right: auto;
    top: auto;
    position: relative;
    background: #333;
}

.glyphicon.glyphicon-chevron-right::before,
.glyphicon.glyphicon-chevron-left::before {
    color: #fff;
}

.glyphicon.glyphicon-chevron-right::before {
    content: '\e5e1';
    font-family: 'Material Icons';
}

.glyphicon.glyphicon-chevron-left::before {
    content: '\e2ea';
    font-family: 'Material Icons';
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 0;
    margin: 0 3px;
}

.carousel-indicators li {
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, .1);
    transition: ease-in-out .15s all;
}

.carousel-indicators li.active {
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .0);
}

.carousel-caption {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .0);
}


/* =================================== mainpage common =================================== */
.mainpage section {
    padding: 85px 0 95px;
}

/* =================================== subpage header =================================== */
/* .subpage{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.subpage > *{
    width: 100%;
}
.subpage > .snb{
    order: 1;
}
.subpage > .subpage-header{
    order: 2;
}
.subpage > .subpage-content{
    order: 3;
} */
.subpage-header {
    position: relative;
    display: flex;
    flex-flow: wrap;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/public/img/sub/sub-top01.jpg);
}

/* 
.subpage-header.visual01 {
    background-image: url(/public/img/sub/sub-top01.jpg);
}

.subpage-header.visual02 {
    background-image: url(/public/img/sub/sub-top02.jpg);
}

.subpage-header.visual03 {
    background-image: url(/public/img/sub/sub-top03.jpg);
}

.subpage-header.visual04 {
    background-image: url(/public/img/sub/sub-top04.jpg);
}

.subpage-header.visual05 {
    background-image: url(/public/img/sub/sub-top05.jpg);
} */

.subpage-header::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .5;
}

.subpage-header .sub-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.subpage-header .sub-title h2 {
    margin-top: 80px;
    font-size: 50px;
    text-align: center;
    font-weight: 900;
    color: #fff;
}

.breadcrumb {
    background: none;
    margin: 10px 0 0 0;
    padding: 0 0 0 3px;
    font-size: 12px;
    letter-spacing: 0;
}

.breadcrumb>li {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb>li.active {
    color: #fff;
}



/* =================================== subpage section, title =================================== */
.subpage-content section {
    padding: 100px 0 150px;
}

/* .subpage-content section.se-content{
    position: relative;
}
.subpage-content section.se-content::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .7;
} */
.subpage-content section>.row+.row {
    margin-top: 100px;
}

.subpage-content .right+.col-sm-12 {
    margin-top: 120px;
}

.subpage-content .wrap-title > h3 {
    margin: 0 0 25px;
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: -0.04em;
    font-weight: 700;
    text-align: left;
    color: #333;
    position: relative;
    padding-left: 10px;
}

.subpage-content .wrap-title > h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 25px;
    background: #333;
    position: absolute;
    left: 0;
    top: 6px;
}

.subpage-content h4 {
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 500;
    color: #444;
}

.subpage-content h5 {
    width: 100%;
    font-size: 17px;
    letter-spacing: -0.034em;
    line-height: 1.35;
    font-weight: 600;
}

/* =================================== subpage content =================================== */
p.img-caption,
span.img-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

.sub-con-wrap .right {
    width: 100%;
}

.subpage-content .row *+.text {
    margin-top: 15px;
}

.subpage-content .row p.top {
    font-weight: 700;
    font-size: 30px;
    color: #333;
    letter-spacing: -0.034em;
    line-height: 1.45em;
    position: relative;
    margin-bottom: 30px;
}

.subpage-content .row p.top span {
    letter-spacing: 0;
    color: #c30f23;
}

.subpage-content .row .text p.top::before {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: #e73843;
    margin: 0 0 15px 2px;
}

.subpage-content .text p {
    font-size: 18px;
    letter-spacing: 0;
}

.subpage-content p {
    letter-spacing: -0.02em;
    font-size: 16px;
    line-height: 1.65;
    color: #555;
}

.subpage-content p+p {
    margin-top: 25px;
}

.subpage-content .row ul+p,
.subpage-content .row p+img,
.subpage-content .row p+.img-wrap,
.subpage-content .row .img-wrap+p {
    margin-top: 30px;
}

.subpage-content .row p+h4 {
    margin-top: 40px;
}

.sub-con-wrap .wrap-title {
    margin-bottom: 40px;
    display: none;
}

/* 01 */
.sub-greet-wrap .left {
    width: 53%;
    margin-right: 12%;
}

.sub-greet-wrap .right {
    width: 35%;
    padding: 140px 15px 0 20px;
}

.sub-greet-wrap h3 {
    font-size: 26px;
    color: #c30e23;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0;
    font-style: italic;
    margin: 20px 0 0;
    padding: 0;
}

.sub-greet-wrap .text p.top {
    font-weight: 700;
    font-size: 36px;
    color: #222;
    letter-spacing: -0.06em;
    line-height: 1.4em;
    position: relative;
}
.sub-greet-wrap .text p.top::before {
    display: none !important;
}
.sub-greet-wrap .text p.top::after {
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    background: #999;
    margin: 25px 0 54px;
}

.sub-greet-wrap .text p {
    line-height: 1.75em;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.sub-greet-wrap .text p:last-child {
    font-weight: 500;
    color: #333;
}

/* map */

/* map-google */
.map-google iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -5px;
}

.map-info {
    margin-top: 30px;
}

.map-wrap .address {
    display: flex;
    justify-content: center;
}

.map-wrap .address dt {
    font-size: 17px;
    text-align: left;
    font-weight: 500;
    letter-spacing: -0.034em;
    width: 45%;
}

.map-wrap .address dt span {
    transform: translateY(-3px);
    font-size: 22px;
    color: #e00d26;
}

.map-wrap .address dd {
    font-size: 18px;
    width: 55%;
    text-align: right;
}

.map-wrap .address dd+dd {
    margin-left: 30px;
}

.map-wrap .address dd strong {
    margin-right: 10px;
    font-weight: 900;
    color: #d63d50;
    font-size: 14px;
}

.map-wrap .address dd ul li {
    display: inline-block;
    margin-left: 25px;
    font-size: 18px;
}

.map-wrap .map-btn {
    display: inline-block;
    padding: 13px 18px;
    background: #666;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #fff;
}

.map-wrap .map-btn:hover {
    background: #000
}

.map-wrap .map-btn span {
    font-size: 16px;
    margin-left: 20px;
}

/* 02 */
.trip-wrap {
    margin: 0;
}

.trip-wrap>div {
    position: relative;
    padding: 0;
}

.trip-wrap>div::before,
.trip-wrap .box01::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: #e6e6e6;
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
}

.trip-wrap .box01::after {
    width: 6px;
    height: 185px;
    right: 0;
    bottom: 0;
    transform: inherit;
}

.trip-wrap>.box02 {
    margin-top: 80px;
}

.trip-wrap h5 {
    font-size: 17px;
    font-weight: 700;
    padding: 10px 0 0 10px;
}

.trip-wrap .box02 .icon-wrap {
    flex-direction: row-reverse;
}

.icon-wrap {
    display: flex;
    margin: 0;
}

.icon-wrap>div {
    padding: 0;
}

.icon-wrap .item::before,
.icon-wrap .item::after {
    position: absolute;
    top: -2px;
    font-weight: 500;
    font-size: 52px;
    font-family: 'Material Icons';
    color: #e6e6e6;
    z-index: 10;
}

/* right */
.box01 .icon-wrap>div+div .item::before {
    content: '\e5cc';
    left: -32px;
}

/* down */
.box01 .icon-wrap>div:last-child .item::after {
    content: '\e5cf';
    top: inherit;
    right: -10px;
    bottom: -75px;
    display: none;
}

/* left */
.box02 .icon-wrap>div .item::before {
    content: '\e5cb';
    left: 53px;
}

.trip-wrap .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eb4d4d;
    color: #fff;
    text-align: left;
    margin: 0;
    border: 5px solid #fff;
}

.trip-wrap .icon span {
    font-size: 28px;
}

/* 03 */
*+.img-wrap {
    margin-top: 50px;
}

.sub-con-wrap .img-wrap {
    margin-left: -30px;
    margin-right: -30px;
}

.sub-con-wrap .img-wrap>div {
    padding: 0 30px;
}

.sub-con-wrap .img-wrap .img-caption {
    margin-top: 30px;
    text-align: left;
    padding-left: 2px;
}

.sub-con-wrap .img-wrap h5 {
    color: #333;
    font-size: 26px;
    letter-spacing: 0;
    font-weight: 900;
}

.sub-con-wrap .img-wrap h5 span {
    font-size: 17px;
    display: block;
    font-weight: 400;
    color: #df4b5c;
    font-style: italic;
}

.sub-con-wrap .img-wrap p {
    margin-top: 10px;
    color: #666;
}
.service-wrap > div {
    width: 32%;
}
.service-wrap > div:nth-child(2) {
    width: 30%;
}
.service-wrap > div:nth-child(3) {
    width: 38%;
}
.sub-service-wrap {
    border-top: 1px solid #999;
    margin: 150px 0 0 !important;
    padding-top: 40px;
}
.sub-service-wrap>div{
    padding: 0;
}
.sub-service-wrap>.left {
    width: 20%;
}

.sub-service-wrap>.right {
    width: 80%;
}

.sub-service-wrap .wrap-title > h3 {
    font-size: 24px;
    color: #333;
    padding: 0 0 0 10px;
    letter-spacing: -0.034em;
    font-weight: 700;
}

.sub-service-wrap .wrap-title > 
h3::before {
    height: 22px;
    width: 3px;
    top: 5px;
}

.service-wrap .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eb4d4d;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-right: 15px;
    color: #fff;
}

.service-wrap .icon span {
    font-size: 24px;
}

.service-wrap {
    display: flex;
    align-items: center;
    margin: 0 -15px;
}

.service-wrap .item {
    position: relative;
    display: flex;
    align-items: center;
}

.service-wrap .item p{
    flex: 1;
    text-align: left;
    font-weight: 500;
    line-height: 1.45em;
    font-size: 17px;
    color: #333;
}

/* 04 */

/* 05 */

/* table */
.sub-table-wrap {
    margin-top: 30px;
}

.sub-table-wrap:first-child {
    margin-top: 0;
}

.sub-table-wrap .table-style th,
.sub-table-wrap .table-style td {
    border-color: #ddd;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    vertical-align: middle;
}

.sub-table-wrap .table-style thead th {
    border-bottom: 0;
}

.sub-table-wrap .table-style tbody th {
    background: #efefef;
}

/* =================================== board, bbs =================================== */
.bbs-area h4 {
    font-weight: 500;
    font-size: 20px;
    padding: 0;
    color: #222;
}

.bbs-area h4::before,
.bbs-area h4::after {
    content: none !important;
}

.bbs-area h4.title {
    text-align: center;
}

.bbs-area .reply_wrap h4 {
    text-align: left;
}

.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.bbs-area .search_wrap>*+* {
    margin-left: 5px;
}

.board_wrapper .text-center .btn.btn-lg,
.board_wrapper .text-center .btn+.btn {
    min-width: 200px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.034em;
}

.board_wrapper .table.board_write_table tbody tr th>span.required_text {
    color: #e00d26;
}

.btn.btn-primary {
    font-family: 'notokr';
    background-color: #db3749;
    border: 0;
    color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #c30f24;
}

/* member */
.member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    transition: all ease 0.3s
}

.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: #5dae57
}

.table_blog2 dd .inner {
    border: none;
}

.table.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: 17px;
    color: #333;
}

.table.table_default tr th,
.table.table_default tr td {
    font-size: 15px;
    border-bottom: 1px solid #ddd;
}

.table.table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
}

.table_default {
    border-top: 1px solid #333;
}


.table.table_default tr td {
    color: #777;
}

.text-muted {
    font-size: 14px !important;
    margin-top: 8px !important;
}

input.form-control {
    font-family: 'notokr', sans-serif;
}

/* wrapper */
.board_wrapper {
    margin: 0;
    font-family: 'notokr';
}

.board_wrapper i::after,
.board_wrapper i::before {
    font-family: 'Font Awesome 5 Free';
}

.board_wrapper .text-center .btn {
    padding: 15px 0 !important;
}

.board_wrapper .table.board_write_table .input-group.input-group-big,
.board_wrapper .table.board_write_table .form-control.form-control-big,
.board_wrapper .table.board_write_table tbody tr td .btn,
.board_wrapper .table.board_write_table tbody tr td .form-control {
    width: 50%;
}

.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}

.board_wrapper .table.board_write_table .files+.sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

.board_wrapper .table.board_write_table tbody tr th {
    font-size: 14px;
}

.board_box_blog2 .row {
    margin-left: -5px;
    margin-right: -5px;
}

.board_box_blog2 .row>div[class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.board_box_blog2 .inner {
    margin-top: 0;
    margin-bottom: 0;
}

.board_box_blog2 .inner .bottom {
    padding: 12px 10px;
}

.board_box_blog2 .inner .bottom .title {
    font-size: 25px;
    letter-spacing: -0.02em;
}

.board_box_blog2 .inner .bottom .title a {
    font-size: 14px;
}

.board_data_view {
    border-top: 1px solid #333;
}

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
}

.board_data_view .contents_wrap p {
    font-size: 17px;
}

.board_box_blog2 .inner .bottom .info {
    display: none;
}

.board_box_blog2 .inner .top a .thumb {
    height: 180px;
}

.checkbox label,
.radio label {
    font-size: 15px;
    letter-spacing: -0.06em;
}

.custom_checkbox+span a {
    color: #e00d26;
    font-weight: 500;
}

.privacy_body {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 100px;
}

.badge {
    padding: 6px 6px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 13px;
    margin-right: 3px;
}
.form_history_title {
    margin-top: 50px;
    font-size: 28px;
    font-weight: 700;
}

.alert-info {
    border-radius: 0;
    border: 0;
    background: #f3f3f3;
    color: #333;
    font-size: 15px;
    letter-spacing: -0.02em;
    padding: 20px;
    margin-bottom: 40px;
}

.alert-info ul li {
    position: relative;
    padding-left: 13px;
}
.alert-info ul li::before {content: '';display: block;width: 6px;height: 3px;background: #666;position: absolute;left: 0;top: 12px;}

#kakao-add-channel-button{
    /* position: fixed; */
    width: 300px;
    right: 30px;
    bottom: 30px;
}
.chatStart{
    width: 230px;
    margin-left: auto;
}