@charset "utf-8";

body, div, ul, li, p, strong, span, b, h1, h2, h3, h4, h5, h6 {
    word-break: keep-all;
    line-height: 1.4;
}
h1, h2, h3, h4, h5, h6 {line-height: 1.3}
img {max-width: 100%}
.title {
    position: relative;
    margin-bottom: 100px;
}
.title h2 {
    font-family: "Nanum Myeongjo", serif;
    font-size: 50px;
    font-weight: 400;
}
.title h2 b {font-weight: 700;}
.title p {line-height: 1.5}
.desc {
    font-size: 18px;
    line-height: 1.7;
    color: #585956;
    letter-spacing: -0.2px;
}
.desc b {color: #30312f;}
.arrow-btn {
    display: flex;
    align-items: center;
}
.arrow-btn span {
    font-family: "Nanum Myeongjo", serif;
    font-size: 15px;
    color: #30312f;
    font-weight: 600;
}
.circle {
    width: 46px;
    height: 46px;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #585956;
    margin-left: 15px;
    transition: all .3s;
}
.circle .st0 {
    fill: none;
    stroke: #585956;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2px;
}
a:hover .circle {background: #585956;}
a:hover .circle .st0 {stroke: #fff;}
.more-btn {
    max-width: 220px;
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background: #585956;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s;
}
.more-btn:hover {background: #30312f;}
.admin-btn {
    position: relative;
    z-index: 10;
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: #ef2727;
    display: inline-block;
}
@media all and (max-width: 767px) {
    .title {margin-bottom: 40px;}
    .title h2 {font-size: 26px;}
    .desc {font-size: 15px;}
    .arrow-btn span {font-size: 13px;}
    .more-btn {
        height: 45px;
        font-size: 15px;
        max-width: 180px;
    }
    .circle {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }
}

/*main*/
.main section {
    position: relative;
    overflow: hidden;
}
.main .title h2 {font-size: 36px;}
.main .title p {
    font-size: 22px;
    font-weight: 300;
}
.main .hero {padding: 0;}
.main .hero .swiper-slide {
    height: 100vh;
    background: #000;
    overflow: hidden;
}
.main .hero .swiper-slide .bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    opacity: 0.85;
    transform: scale(1.15);
    transition: transform 0.5s ease;
}
.main .hero .swiper-slide-active .bg.animate {animation: banner 5s ease forwards;}
.main .hero .swiper-slide .txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc((100% - 1400px)/2);
    color: #fff;
}
.main .hero .swiper-slide .txt .sub-txt {
    font-size: 36px;
    font-family: "Nanum Myeongjo", serif;
}
.main .hero .swiper-slide .txt .main-txt {
    font-size: 80px;
    font-family: "Nanum Myeongjo", serif;
}
.main .hero .swiper-slide .txt p {
    font-size: 22px;
    font-weight: 500;
    margin-top: 35px;
    margin-left: 100px;
}
.main .hero .swiper-slide .txt .sub-txt,
.main .hero .swiper-slide .txt .main-txt,
.main .hero .swiper-slide .txt p {
    opacity: 0;
    transform: translateY(50px);
}
.main .hero .swiper-slide-active .txt.animate .sub-txt {
    animation: fadeUp 0.8s ease-out forwards;
}
.main .hero .swiper-slide-active .txt.animate .main-txt {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}
.main .hero .swiper-slide-active .txt.animate p {
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}
@keyframes banner {
    0% {transform: scale(1.15)}
    100% {transform: scale(1)}
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.main .hero .slider-controls > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-bottom: 1px solid #fff;
    width: 100px;
    padding-bottom: 10px;
    z-index: 1;
    cursor: pointer;
}
.main .hero .slider-controls > div span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.main .hero .slider-controls .prev-btn {
    left: 0;
    text-align: right;
}
.main .hero .slider-controls .next-btn {right: 0;}
.main .hero .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    width: 100%;
}
.main .hero .swiper-pagination > div {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    margin-right: 10px;
    opacity: 1;
    transition: all .3s;
}
.main .hero .swiper-pagination > div:last-child {margin-right: 0;}
.main .hero .swiper-pagination > div span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #fff;
}
.main .hero .swiper-pagination .swiper-pagination-bullet-active {border-color: #fff;}
.main .hero .admin-btn {
    position: absolute;
    left: 50px;
    bottom: 50px;
}
.main .story {padding: 180px 0 280px;}
.main .story .title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}
.main .story .title > div {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    width: calc(100% - 151px);
}
.main .story .title h2 {width: 26%;}
.main .story .title .arrow-btn {width: 151px;}
.main .story .content {position: relative;}
.main .story .content .txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
}
.main .story .content .img {
    background: url(/img/assets/main_story_img.jpg) center / cover no-repeat;
    margin-left: 23%;
    max-width: 1080px;
    width: 100%;
    aspect-ratio: 1080 / 600;
}
.main .space {padding-bottom: 250px;}
.main .space::after {
    content: "";
    background: #eaeeef;
    width: 100%;
    height: 850px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.main .space .title {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
}
.main .space .title h2 {margin-bottom: 50px;}
.main .space .space-slider {margin-left: calc((100% - 1400px)/2)}
.main .space .space-slider a {
    display: block;
    aspect-ratio: 600 / 750;
    position: relative;
    overflow: hidden;
}
.main .space .space-slider a .bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transition: all .4s;
}
.main .space .space-slider a .bg::after {
    content: "";
    background: linear-gradient(to top, #000, transparent);
    height: 300px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
.main .space .space-slider a:hover .bg {transform: scale(1.15)}
.main .space .space-slider a p {
    position: absolute;
    left: 60px;
    bottom: 80px;
    z-index: 2;
    color: #fff;
    font-family: "Nanum Myeongjo", serif;
    font-size: 36px;
}
.main .space .slider-controls {
    display: flex;
    align-items: center;
}
.main .space .slider-controls .prev-btn,
.main .space .slider-controls .next-btn {cursor: pointer}
.main .space .swiper-pagination {
    background: rgba(0,0,0,0.1);
    width: 300px;
    height: 1px;
    margin: 0 20px;
    position: static;
}
.main .space .swiper-pagination span {background: #30312f;}
.main .experience {
    display: flex;
    flex-wrap: wrap;
    min-height: 940px;
}
.main .experience .left {
    width: 50%;
    position: relative;
    background: url(/img/assets/main_dining_bg.jpg) center / cover no-repeat;
}
.main .experience .left .img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.main .experience .left .img .tab-content > div {display: none;}
.main .experience .left .img .tab-content > div.active {display: block;}
.main .experience .right {
    position: relative;
    width: 50%;
    padding: 190px 0;
    padding-left: 12.5%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}
.main .experience .right .title h2 {margin-bottom: 50px;}
.main .experience .right .tab-menu li {margin-bottom: 40px;}
.main .experience .right .tab-menu li:last-child {margin-bottom: 0;}
.main .experience .right .tab-menu li a {
    display: block;
    font-size: 30px;
    line-height: 1.5;
}
.main .experience .right .tab-menu li b {
    opacity: 0.5;
    transition: all .3s;
}
.main .experience .right .tab-menu li a .circle {
    display: inline-block;
    line-height: 36px;
    text-align: center;
    margin-left: 10px;
    opacity: 0;
}
.main .experience .right .tab-menu li.active b,
.main .experience .right .tab-menu li:hover b {opacity: 1}
.main .experience .right .tab-menu li.active .circle,
.main .experience .right .tab-menu li:hover .circle {opacity: 1}
@media all and (max-width: 1600px) {
    .main .hero .swiper-slide .txt {left: 95px;}
    .main .hero .slider-controls > div {width: 60px;}
}
@media all and (max-width: 1400px) {
    .main .hero .swiper-slide .txt {left: 80px;}
    .main .hero .slider-controls > div {display: none;}
}
@media all and (max-width: 1300px) {
    .main .experience .right .tab-menu li a {font-size: 24px;}
}
@media all and (max-width: 1024px) {
    .main .hero .swiper-slide .txt {left: 100px;}
    .main .story .title h2 {width: 36%;}
    .main .space::after {height: 500px;}
    .main .space .space-slider .swiper-slide {
        width: 70%;
        max-width: 500px;
    }
    .main .space .space-slider a p {
        left: 40px;
        bottom: 40px;
    }
    .main .experience .left {
        width: 100%;
        padding: 50px 40px 0;
    }
    .main .experience .left .img {
        position: static;
        transform: none;
    }
    .main .experience .left .img img {
        max-width: none;
        width: 100%;
    }
    .main .experience .right {
        width: 100%;
        padding: 80px 40px;
    }
}
@media all and (max-width: 767px) {
    .main .title h2 {font-size: 24px;}
    .main .title p {font-size: 15px;}
    .main .hero .swiper-slide .txt {left: 15px;}
    .main .hero .swiper-slide .txt .sub-txt {
        font-size: 24px;
    }
    .main .hero .swiper-slide .txt .main-txt {font-size: 50px;}
    .main .hero .swiper-slide .txt p {
        font-size: 16px;
        margin-top: 20px;
        margin-left: 30px;
    }
    .main .hero .swiper-pagination {bottom: 30px;}
    .main .story {padding: 60px 0 80px;}
    .main .story .title > div {width: 100%;}
    .main .story .title h2 {
        width: 100%;
        margin-bottom: 20px;
    }
    .main .story .title .arrow-btn {
        width: 100%;
        margin-top: 30px;
    }
    .main .story .content .txt img {max-width: 250px;}
    .main .story .content .img {margin-left: 20%;}
    .main .space {padding-bottom: 80px;}
    .main .space::after {height: 300px;}
    .main .space .title h2 {margin-bottom: 20px;}
    .main .space .slider-controls {
        width: 100%;
        margin-top: 30px;
    }
    .main .space .space-slider a p {
        left: 20px;
        bottom: 20px;
        font-size: 24px;
    }
    .main .space .space-slider a .bg::after {height: 150px;}
    .main .experience {min-height: auto;}
    .main .experience .left {padding: 50px 15px 0;}
    .main .experience .right {
        padding: 40px 15px 60px;
    }
    .main .experience .right .title h2 {margin-bottom: 20px;}
    .main .experience .right .tab-menu li {margin-bottom: 20px;}
    .main .experience .right .tab-menu li a {
        font-size: 16px;
        line-height: 1.3;
    }
}


/*sub*/
.sub section {
    position: relative;
    overflow: hidden;
    padding: 200px 0;
}
.sub section:first-child {padding-top: 0;}
.sub section:last-child {padding-bottom: 0;}
.sub .title::after {
    content: "";
    background: #30312f;
    width: 200px;
    height: 1px;
    position: absolute;
    top: 0;
    right: 0;
}
@media all and (max-width: 767px) {
    .sub section {padding: 60px 0;}
    .sub .title::after {
        width: 60px;
        top: 5px;
    }
}

/*스토리*/
.sub-story .about .desc {padding-left: 14%;}
.sub-story .about .img {
    background: url(/img/assets/story_about_img.jpg) center / cover no-repeat;
    width: 100%;
    height: 750px;
    margin-top: 120px;
    position: relative;
}
.sub-story .about .img::after {
    content: none;
    background: url(/img/assets/symbol_vertical.svg) center / cover no-repeat;
    display: block;
    width: 90px;
    aspect-ratio: 90 / 392;
    position: absolute;
    top: -80px;
    right: 50px;
}
.sub-story .about .img p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    text-align: justify;
    position: absolute;
    right: 100px;
    bottom: 100px;
    max-width: 500px;
}
.sub-story .video {padding: 0;}
.sub-story .video video {width: 100%;}
.sub-story .map-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
}
.sub-story .map-wrap .img {order: 2;}
.sub-story .map-wrap .txt {
    order: 1;
    background: #f5f7f8;
    padding: 50px;
}
@media all and (max-width: 1200px) {
    .sub-story .map-wrap .img {
        width: 100%;
        order: 1;
        margin-bottom: 60px;
        text-align: center;
    }
    .sub-story .map-wrap .txt {
        order: 2;
        width: 100%;
        text-align: center;
    }
}
@media all and (max-width: 767px) {
    .sub-story .about .img {
        margin-top: 60px;
        padding: 100px 60px;
        height: auto;
    }
    .sub-story .about .img::after {
        width: 40px;
        top: -30px;
        right: 15px;
    }
    .sub-story .about .img p {
        font-size: 12px;
        line-height: 1.5;
        position: static;
        transform: none;
        margin: 0 auto;
    }
    .sub-story .map-wrap .img {margin-bottom: 30px;}
    .sub-story .map-wrap .txt {padding: 30px;}
}

/*인사말*/
.sub-greeting {
    display: flex;
    flex-wrap: wrap;
}
.sub-greeting > div {
    width: 50%;
    min-height: 1560px;
}
.sub-greeting .img {
    background: url(/img/assets/greeting_img.jpg) center bottom / cover no-repeat;
    padding-top: 150px;
    padding-left: calc((100% - 1400px)/2);
}
.sub-greeting .img .title::after {content: none;}
.sub-greeting .img .title img {
    opacity: 0.1;
    margin-bottom: 40px;
}
.sub-greeting .img .title h2 {font-size: 42px;}
.sub-greeting .txt {padding: 200px 100px 200px 150px;}
.sub-greeting .txt > div {}
.sub-greeting .txt > div::after {
    content: "";
    background: #30312f;
    width: 200px;
    height: 1px;
    display: block;
    margin: 80px 0;
}
.sub-greeting .txt > div h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: "Nanum Myeongjo", serif;
    font-weight: 600;
}
.sub-greeting .txt .sign {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 80px;
}
.sub-greeting .txt > div:nth-child(3)::after,
.sub-greeting .txt .sign::after {content: none;}
.sub-greeting .txt .sign span {
    font-size: 16px;
    margin-right: 15px;
}
.sub-greeting .txt .sign img {max-height: 43px;}
@media all and (max-width: 1400px) {
    .sub-greeting .img {padding-left: 80px;}
    .sub-greeting .txt {padding: 200px 80px 200px 80px;}
}
@media all and (max-width: 1200px) {
    .sub-greeting {
        background: url(/img/assets/greeting_img.jpg) center bottom / contain no-repeat;
        min-height: 3000px;
        display: block;
    }
    .sub-greeting > div {min-height: auto;}
    .sub-greeting .img {
        width: 100%;
        background: none;
        padding: 200px 80px 0;
    }
    .sub-greeting .txt {
        width: 100%;
        padding: 0 80px;
    }
}
@media all and (max-width: 1024px) {
    .sub-greeting .img {padding-left: 40px;}
    .sub-greeting .txt {padding: 0 40px;}
}
@media all and (max-width: 991px) {
    .sub-greeting {min-height: 2600px;}
}
@media all and (max-width: 767px) {
    .sub-greeting {min-height: 1900px;}
    .sub-greeting .img {padding: 60px 15px 0;}
    .sub-greeting .img .title img {
        width: 36px;
        margin-bottom: 20px;
    }
    .sub-greeting .txt {padding: 0 15px;}
    .sub-greeting .img .title h2 {font-size: 24px;}
    .sub-greeting .txt > div h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .sub-greeting .txt > div::after {
        width: 150px;
        margin: 40px 0;
    }
    .sub-greeting .txt .sign {margin-top: 40px;}
    .sub-greeting .txt .sign span {
        font-size: 14px;
        margin-right: 10px;
    }
    .sub-greeting .txt .sign img {max-height: 30px;}
}

/*철학*/
.sub-philosophy .feature .content > div {
    position: relative;
    margin-bottom: 100px;
    padding-top: 100px;
}
.sub-philosophy .feature .content > div::before {
    content: "";
    background: #f8f8f8;
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
}
.sub-philosophy .feature .content > div:last-child {margin-bottom: 0;}
.sub-philosophy .feature .content .txt {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    margin-bottom: 50px;
}
.sub-philosophy .feature .content .txt h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: "Nanum Myeongjo", serif;
    font-weight: 600;
    width: 18%;
    padding-right: 10px;
    margin-top: 3px;
}
.sub-philosophy .feature .content .txt .desc {width: 82%;}
.sub-philosophy .feature .content .img {
    position: relative;
    z-index: 1;
    display: flex;
}
.sub-philosophy .feature .content .img > div {
    width: calc((100% - 20px)/3);
    margin-right: 10px;
}
.sub-philosophy .feature .content .img > div:last-child {margin-right: 0;}
.sub-philosophy .feature .content .img > div img {
    max-width: none;
    width: 100%;
}
.sub-philosophy .member {padding-top: 0;}
.sub-philosophy .member ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -80px;
}
.sub-philosophy .member ul li {
    width: calc((100% - 200px)/3);
    margin-right: 100px;
    margin-bottom: 80px;
}
.sub-philosophy .member ul li:nth-child(3n) {margin-right: 0;}
.sub-philosophy .member ul li .inner {cursor: pointer;}
.sub-philosophy .member ul li .img {
    aspect-ratio: 1000 / 750;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.sub-philosophy .member ul li .txt {
    padding-top: 25px;
}
.sub-philosophy .member ul li .txt p {
    font-size: 18px;
    color: #585956;
    margin-bottom: 12px;
}
.sub-philosophy .member ul li .txt .name {
    font-size: 30px;
    font-family: "Nanum Myeongjo", serif;
    font-weight: bold;
}
.sub-philosophy .member ul li .txt .name span {
    font-size: 24px;
    margin-left: 3px;
}
.sub-philosophy .member .group {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 100px;
    padding-top: 50px;
}
.sub-philosophy .member .group h3 {
    font-size: 18px;
    color: #585956;
    margin-bottom: 26px;
    font-weight: normal;
}
.sub-philosophy .member .group .group-list > div {
    font-size: 23px;
    font-family: "Nanum Myeongjo", serif;
    font-weight: bold;
    margin-bottom: 10px;
}
.sub-philosophy .member .group .group-list > div:last-child {margin: 0;}
.sub-philosophy .member .group .group-list span {
    font-size: 16px;
    margin-left: 5px;
}
.sub-philosophy .member .group .left {width: calc(100% - ((100% - 200px)/3));}
.sub-philosophy .member .group .left .group-list {
    display: flex;
    flex-wrap: wrap;
}
.sub-philosophy .member .group .left .group-list > div {
    width: 50%;
    padding-right: 30px;
}
.sub-philosophy .member .group .right {width: calc((100% - 200px)/3);}
.sub-philosophy .member .group .right > div {margin-bottom: 40px;}
.sub-philosophy .member .group .right > div:last-child {margin-bottom: 0;}
.member-modal .modal-dialog {max-width: 800px;}
.member-modal .modal-body {padding: 50px;}
.member-modal .modal-content {margin: 100px 0;}
.member-modal .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1000 / 750;
}
.member-modal .slider-controls > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.member-modal .slider-controls .prev-btn {left: 30px;}
.member-modal .slider-controls .next-btn {right: 30px;}
.member-modal .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: 100%;
}
.member-modal .swiper-pagination > div {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    margin-right: 10px;
    opacity: 1;
    transition: all .3s;
}
.member-modal .swiper-pagination > div:last-child {margin-right: 0;}
.member-modal .swiper-pagination > div span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #fff;
}
.member-modal .swiper-pagination .swiper-pagination-bullet-active {border-color: #fff;}
.member-modal .btn-close {
    background: none;
    border: none;
    position: absolute;
    top: -60px;
    right: 0;
}
.member-modal .detail {padding-top: 60px;}
.member-modal .detail .top {
    border-bottom: 1px solid #111;
    padding-bottom: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
}
.member-modal .detail .top .profile {
    width: 40%;
    padding-right: 30px;
    color: #30312f;
}
.member-modal .detail .top .profile p {
    font-size: 18px;
    margin-bottom: 8px;
}
.member-modal .detail .top .profile .name {
    font-size: 36px;
    font-family: "Nanum Myeongjo", serif;
    font-weight: bold;
}
.member-modal .detail .top .profile .name span {
    font-size: 24px;
    display: block;
    margin-top: 3px;
}
.member-modal .detail .top .desc {width: 60%;}
.member-modal .detail .bottom {line-height: 2}

@media all and (max-width: 1400px) {
    .sub-philosophy .feature .content .txt h3 {width: 25%;}
    .sub-philosophy .feature .content .txt .desc {width: 75%;}
}
@media all and (max-width: 1200px) {
    .sub-philosophy .member ul li .txt .name span {
        display: block;
        margin: 3px 0 0;
    }
    .member-modal .modal-content {
        margin: 100px 15px;
        width: calc(100% - 30px);
    }
}
@media all and (max-width: 1024px) {
    .sub-philosophy .member .group .left {width: 100%;}
    .sub-philosophy .member .group .right {
        width: 100%;
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
    }
    .sub-philosophy .member .group .right > div {
        width: 50%;
        margin: 0;
    }
}
@media all and (max-width: 991px) {
    .sub-philosophy .member ul li {
        width: calc((100% - 100px) / 3);
        margin-right: 50px;
    }
}
@media all and (max-width: 767px) {
    .sub-philosophy .feature .content > div::before {height: 90%;}
    .sub-philosophy .feature .content > div {
        padding-top: 50px;
        margin-bottom: 50px;
    }
    .sub-philosophy .feature .content .txt {margin-bottom: 30px;}
    .sub-philosophy .feature .content .txt h3 {
        width: 100%;
        font-size: 20px;
        margin: 0 0 15px;
        padding: 0;
    }
    .sub-philosophy .feature .content .txt .desc {width: 100%;}
    .sub-philosophy .feature .content .img {margin: 0 -15px;}
    .sub-philosophy .feature .content .img > div {
        width: calc((100% - 6px) / 3);
        margin-right: 3px;
    }
    .sub-philosophy .member ul {margin-bottom: 0;}
    .sub-philosophy .member ul li {
        width: 100%;
        margin: 0 0 15px;
    }
    .sub-philosophy .member ul li:last-child {margin-bottom: 0;}
    .sub-philosophy .member ul li .inner {
        background: #f8f8f8;
        padding: 30px;
    }
    .sub-philosophy .member ul li .txt {padding-top: 15px;}
    .sub-philosophy .member ul li .txt p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .sub-philosophy .member ul li .txt .name {font-size: 25px;}
    .sub-philosophy .member ul li .txt .name span {
        font-size: 17px;
        display: inline-block;
    }
    .sub-philosophy .member .group {margin-top: 50px;}
    .sub-philosophy .member .group h3 {
        font-size: 15px;
        margin-bottom: 22px;
    }
    .sub-philosophy .member .group .group-list > div {
        font-size: 19px;
        margin-bottom: 8px;
    }
    .sub-philosophy .member .group .group-list span {font-size: 14px;}
    .sub-philosophy .member .group .left .group-list > div {
        width: 100%;
        padding-right: 0;
    }
    .sub-philosophy .member .group .right {margin-top: 40px;}
    .sub-philosophy .member .group .right > div {
        width: 100%;
        margin: 0 0 40px;
    }
    .sub-philosophy .member .group .right > div:last-child {margin-bottom: 0;}
    .member-modal .modal-content {
        margin: 50px 15px;
        width: calc(100% - 30px);
    }
    .member-modal .btn-close {top: -30px;}
    .member-modal .btn-close img {width: 20px;}
    .member-modal .modal-body {padding: 20px;}
    .member-modal .slider-controls .prev-btn {left: 15px;}
    .member-modal .slider-controls .next-btn {right: 15px;}
    .member-modal .swiper-pagination {bottom: 15px;}
    .member-modal .detail {padding-top: 30px;}
    .member-modal .detail .top {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .member-modal .detail .top .profile {
        width: 100%;
        padding: 0 0 15px;
    }
    .member-modal .detail .top .profile p {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .member-modal .detail .top .profile .name {font-size: 27px;}
    .member-modal .detail .top .profile .name span {font-size: 17px;}
    .member-modal .detail .top .desc {width: 100%;}
    .member-modal .detail .bottom {line-height: 1.7}
}

/*공간*/
.sub-space .title {
    display: flex;
    flex-wrap: wrap;
}
.sub-space .title::after {content: none;}
.sub-space .title h2 {
    width: 39%;
    font-weight: normal;
}
.sub-space .title .desc {width: 61%;}
.sub-space .img-slider {margin-bottom: 10px;}
.sub-space .img-slider .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1400 / 840;
}
.sub-space .img-slider .swiper-slide p {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 18px 25px;
    font-size: 24px;
    font-family: "Nanum Myeongjo", serif;
    font-weight: 700;
    color: #fff;
}
.sub-space .img-slider .slider-controls > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.sub-space .img-slider .slider-controls .prev-btn {left: 30px;}
.sub-space .img-slider .slider-controls .next-btn {right: 30px;}
.sub-space .thumb-slider .swiper-slide {
    width: 155px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1400 / 840;
    cursor: pointer;
    margin-right: 10px;
    opacity: 0.3;
    transition: all .3s;
}
.sub-space .thumb-slider .swiper-slide:last-child {margin-right: 0;}
.sub-space .thumb-slider .swiper-slide-thumb-active {opacity: 1;}
@media all and (max-width: 767px) {
    .sub-space .title h2 {
        width: 100%;
        margin-bottom: 20px;
    }
    .sub-space .title .desc {width: 100%;}
    .sub-space .img-slider .swiper-slide p {
        font-size: 16px;
        padding: 10px 15px;
    }
    .sub-space .img-slider .slider-controls .prev-btn {left: 15px;}
    .sub-space .img-slider .slider-controls .next-btn {right: 15px;}
    .sub-space .thumb-slider .swiper-slide {width: 70px;}
}

/*경험*/
.sub-experience {
    display: flex;
    flex-wrap: wrap;
}
.sub-experience > div {width: 50%;}
.sub-experience .title {padding-right: 50px;}
.sub-experience .title::after {content: none;}
.sub-experience .title h2 {margin-bottom: 100px;}
.sub-experience .img > div {margin-bottom: 50px;}
.sub-experience .img > div:last-child {margin-bottom: 0;}
.sub-experience .img .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 750 / 500;
}
.sub-experience .img .slider-controls > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.sub-experience .img .slider-controls .prev-btn {left: 30px;}
.sub-experience .img .slider-controls .next-btn {right: 30px;}
.sub-experience .img .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: 100%;
}
.sub-experience .img .swiper-pagination > div {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    margin-right: 10px;
    opacity: 1;
    transition: all .3s;
}
.sub-experience .img .swiper-pagination > div:last-child {margin-right: 0;}
.sub-experience .img .swiper-pagination > div span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #fff;
}
.sub-experience .img .swiper-pagination .swiper-pagination-bullet-active {border-color: #fff;}
.sub-experience .img p {
    font-size: 24px;
    font-family: "Nanum Myeongjo", serif;
    margin-top: 20px;
}
@media all and (max-width: 767px) {
    .sub-experience > div {width: 100%;}
    .sub-experience .title {padding: 0;}
    .sub-experience .title h2 {margin-bottom: 20px;}
    .sub-experience .img > div {margin-bottom: 10px;}
}

/*오시는길*/
.sub-location {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.sub-location .title {
    width: 39%;
    padding-right: 50px;
}
.sub-location .title::after {content: none;}
.sub-location .content {width: 61%;}
.sub-location .content .map {
    aspect-ratio: 850 / 500;
    overflow: hidden;
    margin-bottom: 50px;
}
.sub-location .content .map .root_daum_roughmap {width: 100% !important;}
.sub-location .content .map .root_daum_roughmap .wrap_map {height: 100% !important;}
.sub-location .content .txt > div {
    border-bottom: 1px solid #ddd;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.sub-location .content .txt > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.sub-location .content .txt > div > div {margin-bottom: 50px;}
.sub-location .content .txt > div > div:last-child {margin-bottom: 0;}
.sub-location .content .txt h3 {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.sub-location .content .txt h3::before {
    content: "";
    background: #aaa;
    width: 5px;
    height: 5px;
    border-radius: 5px;
}
.sub-location .content .txt h3 span {
    font-size: 18px;
    font-weight: bold;
    padding-left: 8px;
    width: calc(100% - 5px);
}
.sub-location .content .txt .desc b {font-weight: 600;}
.sub-location .content .txt ul li {
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
}
.sub-location .content .txt ul li:last-child {margin-bottom: 0;}
.sub-location .content .txt ul li::before {
    content: "-";
    margin-left: 8px;
    margin-right: 10px;
}
.sub-location .content .txt .note {font-size: 16px;}
.sub-location .content .txt > div:first-child .note {
    color: #ff2828;
    margin-top: 5px;
}
.sub-location .content .txt > div:last-child .note {
    color: #585956;
    margin-left: 15px;
    margin-top: 4px;
}
@media all and (max-width: 767px) {
    .sub-location .title {
        width: 100%;
        padding: 0;
    }
    .sub-location .content {width: 100%;}
    .sub-location .content .map {margin-bottom: 30px;}
    .sub-location .content .txt > div {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .sub-location .content .txt > div > div {margin-bottom: 20px;}
    .sub-location .content .txt h3 {margin-bottom: 8px;}
    .sub-location .content .txt h3 span {font-size: 16px;}
    .sub-location .content .txt .note {font-size: 13px;}
}

/*멤버십*/
.sub-membership .title {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.sub-membership .title::after {content: none;}
.sub-membership .title img {width: 150px;}
.sub-membership .more-btn {margin: 100px auto 80px;}
.sub-membership .box {
    background: #f5f5f5;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sub-membership .box h3 {
    font-size: 24px;
    width: 22%;
}
.sub-membership .box ul {
    width: 78%;
    border-left: 1px solid #ddd;
    padding: 10px 0;
    padding-left: 80px;
    display: flex;
    flex-wrap: wrap;
}
.sub-membership .box ul li {
    margin-right: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #585956;
    font-size: 20px;
}
.sub-membership .box ul li:last-child {margin-right: 0;}
.sub-membership .box ul li b {
    margin-left: 10px;
    margin-right: 40px;
}
@media all and (max-width: 1200px) {
    .sub-membership .box ul li {margin: 0 0 10px;}
    .sub-membership .box ul li:last-child {margin-bottom: 0;}
}
@media all and (max-width: 1024px) {
    .sub-membership .box {align-items: start;}
    .sub-membership .box h3 {width: 30%;}
    .sub-membership .box ul {width: 70%;}
}
@media all and (max-width: 991px) {
    .sub-membership .box h3 {width: 100%;}
    .sub-membership .box ul {
        width: 100%;
        border-left: none;
        border-top: 1px solid #ddd;
        padding-top: 40px;
        margin-top: 40px;
        padding-left: 0;
    }
}
@media all and (max-width: 767px) {
    .sub-membership .title img {width: 60px;}
    .sub-membership .more-btn {margin: 40px auto;}
    .sub-membership .box {padding: 25px;}
    .sub-membership .box h3 {font-size: 18px;}
    .sub-membership .box ul {
        padding-top: 20px;
        margin-top: 20px;
    }
    .sub-membership .box ul li {font-size: 15px;}
    .sub-membership .box ul li img {
        max-width: 12px;
        max-height: 12px;
    }
    .sub-membership .box ul li b {
        margin-left: 8px;
        margin-right: 15px;
    }
    .sub-membership .box ul li span {
        display: block;
        width: 100%;
        margin-top: 5px;
    }
}