@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;800;900&family=Roboto&display=swap");

:root {
    --white-100: #fff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --text-100: #404040;
    --text-777: #777;
    --text-555: #d5d5d5;
    --text-point: #c4183e;
    --sub-point: #67594d;
    --border-fff: 1px solid #fff;
    --board-555: 1px solid #d5d5d5;
    --board-777: 1px solid #777;
    --header-text: #404040;
    --gray-999: #f9f9f9;
}

span.icon {
    font-family: xeicon;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
dl,
li,
dd {
    list-style: none;
}

a,
a:visited {
    text-decoration: none;
    color: var(--text-100);
}

a:hover,
a:active {
    color: var(--text-point);
}

img {
    max-width: 100%;
    height: auto;
}
button {
    border: var(--board-555);
    background: var(--white-100);
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
    opacity: 0;
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", "Noto Sans KR", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1;
    background-color: var(--white-100);
    color: var(--text-100);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.site {
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.return-top {
    right: 12px;
    bottom: 30px;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-point);
}

.return-top > .icono-caretUp {
    text-align: center;
}

.return-top > .icono-caretUp i {
    line-height: 40px;
    font-size: 1.5em;
    color: var(--white-100);
    font-weight: 600;
}

.site-main,
.site-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.site-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100px;
    padding: 0 1rem;
    z-index: 1000;
    transition: top 0.3s;
}

.header-sticky {
    height: 90px;
    background: var(--white-70);
}

.site-branding {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.site-branding a img {
    max-width: 200px;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    color: var(--header-text);
}
@media screen and (min-width: 1025px) {
    nav .menu-menu-1-container {
        height: 100%;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    nav ul {
        display: flex;
        flex-flow: nowrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    nav ul > li {
        display: flex;
        flex-flow: nowrap;
        flex-direction: row;
        align-items: center;
        position: relative;
        flex-grow: 1;
        padding: 0;
        transition: 0.5s;
    }

    nav ul > li:not(:last-child) {
        margin-right: 2em;
    }

    nav li a {
        height: 100px;
        justify-content: center;
        align-items: center;
        display: flex;
        font-size: 1.2em;
        color: var(--header-text);
        transition: 0.5s;
    }

    nav ul li:hover a {
        color: var(--text-point);
        transition: 0.5s;
    }
    nav ul > li > ul {
        position: absolute;
        top: 95%;
        width: 180px;
        height: auto;
        left: 0;
        z-index: 1000;
        display: none;
        background: var(--white-70);
        transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    }

    nav ul > li > ul > li {
        flex-direction: column;
        width: 100%;
        height: 50px;
        line-height: 50px;
        margin: 0;
    }

    nav ul > li.menu-item-has-children > ul > li a {
        display: inline-block;
        width: 100%;
        height: 100%;
        color: var(--header-text);
    }
}

nav ul li:hover ul {
    display: block;
}

nav ul > li.menu-item-has-children > ul > li:hover a {
    color: var(--text-point);
}

.xi-angle-down:before {
    margin-left: 4px;
}

li.current_page_item > a {
    color: var(--text-point);
}

.navbar-icons {
    align-items: center;
    justify-content: flex-end;
    font-size: 1.8em;
    letter-spacing: -0.6px;
    font-weight: 800;
}

/* menu-toggle
------------------------------------------------------------------- */

.menu-toggle {
    background: transparent;
    border: 0;
    width: 50px;
    height: 50px;
    z-index: 1;
    letter-spacing: 1px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle .line1 {
    width: 70%;
    height: 2px;
    background: var(--header-text);
    display: block;
    margin: 0 auto;
    position: relative;
    top: 10px;
    transition: all 0.2s;
}

.menu-toggle .line2 {
    width: 70%;
    height: 2px;
    background: var(--header-text);
    display: block;
    margin: 0 auto;
    position: relative;
    top: 15px;
}

.menu-toggle .line3 {
    width: 70%;
    height: 2px;
    background: var(--header-text);
    display: block;
    margin: 0 auto;
    position: relative;
    top: 20px;
    transition: all 0.2s;
}

.menu-toggle:hover .line1 {
    height: 2px;
    background: var(--header-text);
    width: 70%;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 6px;
}

.menu-toggle:hover .line2 {
    height: 2px;
    background: var(--header-text);
    width: 70%;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 18px;
}

.menu-toggle:hover .line3 {
    height: 2px;
    background: var(--header-text);
    width: 70%;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 30px;
}

@media screen and (max-width: 1024px) {
    .site-header {
        top: 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 10px;
    }
    .site-branding {
        flex-grow: 1;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    nav {
        display: none;
    }
    nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        width: 350px;
        height: 100vh !important;
        top: 0;
        left: 0;
        padding: 50px 0 50px 20px;
        background-color: var(--white-70);
        z-index: 999;
        text-align: left;
    }

    nav .menu-menu-1-container {
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
        height: 100%;
    }

    .close-btn {
        position: absolute;
        top: 60px;
        right: 0;
        transform: translateY(-60%);
        width: 70px;
        height: 70px;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .close-btn::before,
    .close-btn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1px;
        height: 40px;
        background: var(--header-text);
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    .close-btn::after {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }

    .close-btn:hover {
        transform: translateY(-60%) rotate(-90deg);
    }

    nav ul {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }
    nav ul > li {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: left;
        flex-grow: 0;
        position: relative;
    }

    nav li a {
        width: 100%;
        display: inline-flex;
        align-items: center;
        height: 50px;
    }

    nav ul > li > ul {
        padding: 10px 0;
        width: 100%;
        top: 100%;
        position: static;
        background: transparent;
        z-index: 1000;
        display: none;
    }

    nav ul > li > ul > li {
        padding-left: 10px;
    }

    .return-top {
        bottom: 60px;
    }
}

/* site-main
------------------------------------------------------------------- */

.site-main {
    padding: 0;
    margin: 0;
    margin-top: 150px;
    height: auto;
    width: 100%;
    flex: 1;
}

.custom-main {
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    min-width: 100%;
    height: auto;
}

article.page {
    width: 100%;
    padding: 0;
    margin: 0;
}

.entry-header {
    height: 200px;
    width: 100%;
    background: url(../img/menubg01.webp) center no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-100);
}
.entry-header .entry-title {
    text-align: center;
    font-size: 2em;
    position: relative;
    display: block;
}

.entry-header .dash {
    height: 1px;
    width: 50px;
    background: var(--white-100);
    display: block;
    margin: 15px 0;
}
.entry-header p {
    display: block;
    line-height: 1.5;
    font-size: 1em;
    letter-spacing: -1px;
}
.entry-content {
    width: 100%;
    text-align: center;
}

.tabmenu {
    width: 100%;
    text-align: center;
    border-bottom: var(--board-555);
    padding: 20px 0;
}

.tabmenu a {
    margin: 0 auto;
    padding: 20px;
}

.tabmenu a.active {
    color: var(--text-point);
}

.entry-content .inner {
    width: 100%;
    text-align: center;
    margin: 100px 0 50px;
	padding:0 10px;
}

div.main {
    width: 100%;
    height: auto;
}

.topimg{
  width:100%;
	display:block;
}

.img01{
  width:40%;
  top:0;
  left:0;
  position:absolute;
  z-index:1;
}

.img02{
  width:30%;
  top:0;
  right:0;
  position:absolute;
  z-index:1;
}
.imgbg{
  width:100%;
  position:absolute;
  top:0;
  padding:50px 0 0;
  z-index:2;
}

.elementor.elementor-38{display:block!important;}

@media screen and (max-width: 1024px) {
    .site-main {
        margin-top: 120px;
    }
    .mobile-hidden {
        display: none;
    }
}

/* main slick
------------------------------------------------------------------- */

.section1 {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
}

.section1 .slider {
    margin: 0 auto;
    width: 100%;
    height: 100vh;
}

.slide_viewer {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slide_group {
    height: 100vh;
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    height: 100vh;
    position: absolute;
    width: 100%;
}

.slide:first-child {
    display: block;
}

.slide1 {
    background: url(../img/main01.jpg) center center / cover no-repeat;
}
.slide2 {
    background: url(../img/main02.jpg) center center / cover no-repeat;
}
.slide3 {
    background: url(../img/main03.jpg) center center / cover no-repeat;
}

.slide_buttons {
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}

a.slide_btn {
    color: #474544;
    font-size: 42px;
    margin: 0 0.175em;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.slide_btn.active,
.slide_btn:hover {
    color: #428cc6;
    cursor: pointer;
}

.directional_nav {
    height: 340px;
    margin: 0 auto;
    max-width: 940px;
    position: relative;
    top: -340px;
}

.previous_btn {
    bottom: 0;
    left: 100px;
    margin: auto;
    position: absolute;
    top: 0;
}

.next_btn {
    bottom: 0;
    margin: auto;
    position: absolute;
    right: 100px;
    top: 0;
}

.previous_btn,
.next_btn {
    cursor: pointer;
    height: 65px;
    opacity: 0.5;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    width: 65px;
}

.previous_btn:hover,
.next_btn:hover {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .previous_btn {
        left: 50px;
    }
    .next_btn {
        right: 50px;
    }
}

.slide .slide-up-text {
    top: 40%;
    left: 5%;
    position: absolute;
    color: var(--white-100);
}
.slide-up-text .title {
    font-size: 2.5em;
    overflow: hidden;
    letter-spacing: -1px;
    line-height: 1.5;
    font-weight: 700;
}

.slide-up-text .sub {
    font-size: 0.9em;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
}

.img_t {
    position: absolute;
    display: block;
    color: #fff;
    opacity: 0.7;
    font-size: 13px;
    margin-left: 30px;
    bottom: 50px;
}

.slick-slide.slick-current.slick-active li p {
    animation: tx3 1.6s 1.5s ease-in-out both;
}
@keyframes tx3 {
    0% {
        top: -20px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

.slick-slide.slick-current.slick-active li div b:nth-child(1) {
    animation: tx 1.6s ease-in-out both;
}
@keyframes tx {
    0% {
        top: -20px;
        width: 0px;
        opacity: 0;
    }
    100% {
        top: 0;
        width: 38px;
        opacity: 1;
    }
}

.slick-slide.slick-current.slick-active li div b:nth-child(3) {
    animation: tx2 1.6s 0.8s ease-in-out both;
}
@keyframes tx2 {
    0% {
        top: -20px;
        width: 0px;
        opacity: 0;
    }
    100% {
        top: 0;
        width: 38px;
        opacity: 1;
    }
}

#map {
    width: 100%;
    height: 500px;
}

/* home
------------------------------------------------------------------- */

.section {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.section .wrap {
    width: 100%;
    display: flex;
    padding: 30px 0;
    margin: 0;
}

.section1 {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
}

.section2 {
    background: var(--gray-999);
    width: 100%;
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
    flex-direction: row;
}

.section2 .box {
    flex: 1;
    box-sizing: border-box;
    padding: 30px 0;
    line-height: 1.6;
}

.section2 .box i {
    color: var(--text-point);
    font-size: 5em !important;
    flex-direction: column;
}
.section2 .box i:hover {
    color: var(--text-100);
}

.section2 .box h1.title {
    font-size: 1.5em;
    font-weight: 600;
    flex-direction: column;
    color: var(--text-100);
}

.section2 .box h3.sub {
    font-size: 1.2em;
    line-height: 2;
    flex-direction: column;
    color: var(--text-point);
}

.section2 .box p.cont {
    line-height: 1.5;
    letter-spacing: -1px;
    font-size: 0.9em;
    padding: 14px 0;
}

@media screen and (max-width: 1024px) {
    .section2 .box {
        flex-basis: 50%;
    }
}

@media screen and (max-width: 968px) {
    .section2 .box {
        flex-basis: 100%;
        padding: 20px 0;
    }
}

.owl-carousel {
    width: 400px;
    height: 300px;
    margin: 0 auto;
}

/* overview
------------------------------------------------------------------- */

.section3 .inner {
    flex-basis: 100%;
    box-sizing: border-box;
}

.sc3 .inner {
    margin: 100px 10px;
}


table {
    width: 100%;
    margin: 30px 0 0;
}
table,
th td {
    border-collapse: collapse;
}

table tr {
    border-top: 1px solid var(--sub-point);
    border-bottom: 1px solid var(--sub-point);
}
table th {
    width: 30%;
    border-right: 1px solid var(--sub-point);
    font-weight: 400;
}

table th,
table td {
    padding: 16px 0;
    font-size: 1em;
    letter-spacing: -0.6px;
    word-spacing: -0.6px;
}

table td.tit {
    font-size: 1.5em;
    background: var(--sub-point);
    color: var(--white-100);
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .sc3 .inner {
        margin: 50px 10px;
    }
    .section3 .table {
        margin: 50px 0;
        flex-basis: 100%;
    }

    table th {
        width: 20%;
    }
}
/* unit
------------------------------------------------------------------- */

.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
}
.tabset .tab-panel {
    display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
}

.tabset > label {
    position: relative;
    display: inline-block;
    width: calc(100% / 5.5);
    border: 1px solid var(--text-point);
    cursor: pointer;
    font-weight: 600;
    padding: 20px 0;
    color: var(--text-point);
    text-align: center;
}

.tabset > label::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 10px;
    height: 4px;
}
.tabset > label:not(:last-child) {
    border-left: 0;
}
.tabset > label:first-of-type {
    border-left: 1px solid var(--text-point) !important;
}
.tabset {
    width: 100%;
    text-align: center;
}
input:focus-visible + label {
    background: var(--text-point);
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
    background: var(--text-point);
    color: var(--white-100);
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
    background: var(--text-point);
}

.tabset > input:checked + label {
    border: 1px solid var(--text-point);
    background: var(--text-point);
    color: var(--white-100);

    margin-bottom: -1px;
}

.tab-panel {
    padding: 30px 0;
}

.tab-panel h1 {
    width: 100%;
    font-weight: 500;
    font-size: 1.5em;
    margin: 20px 0 0;
    color: var(--text-555);
}

.tabset1 > label {
    width: calc(100% / 2);
}

/* community
------------------------------------------------------------------- */

.section3 {
    width: 100%;
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
    flex-direction: row;
}

.section3 .table {
    flex-basis: 50%;
    box-sizing: border-box;
    margin: 50px 0;
}

.section3 .table h1 {
    background: #c4183e;
    width: 100%;
    font-size: 1.5em;
    padding: 20px 0;
    color: var(--white-100);
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: 500;
}

.sc2 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sc2 .txt2 {
    display: flex;
    flex-direction: row;
    width: auto;
    max-height:300px;
    margin: 2em 0;
	padding:2rem;
}

.sc2 .txt2 .left {
	width:auto;
    color: var(--sub-point);
    align-items: center;
	width:25%;
	height:auto;
}

.sc2 .txt2 .right{
	width:60%;
	padding-left:5%;
	height:auto;
	text-align:left;
	align-items:center;
}

.sc2 .txt2 .right .tit {
    color: var(--sub-point);
    text-align: left;
    font-size: 1.2em;
    line-height: 2;
    font-weight: 500;
    letter-spacing: -1px;
    word-spacing: -1px;
}
.sc2 .txt2 .right .icon {
    font-size: 3em;
    line-height: 1.2;
    color: var(--sub-point);
	padding-top:1rem;
}

.sc2 .txt2 .right .cont {
	padding-top:1rem;
    font-size: 1.1em;
    line-height: 1.2;

}


.sc2 .txt2 .left img {
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .section3 .table {
        margin: 30px 0;
        flex-basis: 100%;
    }

    .sc2 .txt2 .left {
        width: 100%;
        display: block;
    }
    .sc2 .txt2 .right {
        width: 100%;
        display: block;
    }
}
/* footer
------------------------------------------------------------------- */
.f-btn {
    width: 100px;
    bottom: 30%;
    right: 0;
    position: fixed;
    z-index: 9999;
    padding: 0;
    margin: 0;
}

.f-btn a {
    width: 100%;
    height: 100px;
    line-height: 100px;
    text-align: center;
    align-items: center;
    display: block;
    font-weight: 500;
}

.f-btn .tel {
    background: var(--text-point);
    border: 1px solid var(--text-point);
    color: var(--white-100);
}

.f-btn .tel:hover {
    background: var(--white-50);
    color: var(--text-point);
}

.f-btn .contact {
    background: var(--sub-point);
    border: 1px solid var(--sub-point);
    color: var(--white-100);
}

.f-btn .contact:hover {
    background: var(--white-50);
    color: var(--sub-point);
}
.site-footer {
    padding: 0;
    width: 100%;
    margin: 3.5rem 0 0;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.ft-info {
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}

.ft-info p {
    line-height: 1.5;
	letter-spacing:-1px;
}

.site-footer .copyright {
    text-align: center;
    margin: 2rem 0;
}

.tab {
    margin: 0 0.5rem;
}

.ft-info .ft1 {margin:0 0 1em 0;
}

.ft-info .ft2, .ft-info .ft3{
	margin: 0 0 1.2em 0;
}

.ft-info .ft1 b {
    margin: 0 4px 0 1.5rem;
}

.ft-info .ft1 b:nth-child(1){
	margin-left:0;
	
}

@media screen and (max-width: 1024px) {
    .f-btn {
        width: 100%;
        bottom: 0;
        left: 0;
        position: fixed;
    }
    .f-btn .tel,
    .f-btn .contact {
        width: 50%;
        height: 50px;
        line-height: 50px;
        font-size: 1.5em;
        text-align: center;
        display: inline-block !important;
    }
    .site-footer {
        margin: 1.5rem 0 2.5rem;
    }
	
	.ft-info .ft1 b {
    margin: 0 3px 0 1rem;
}
}

@media screen and (max-width:900px){
	span.tab.mhidden{
		display:none;
	}
	span.mblock{
		display:block!important;
		line-height:1.5;
	}
}
