@charset "UTF-8";
/*=========================================================================
* container
===========================================================================*/
:root {
    --color-white: #fff;
    --color-basic: #00b9ef;
    --color-blue: #003de5;
    --color-basic-alpha: rgba(27, 27, 50, 0.8);
    --color-gray: #e1e1e1;
    --color-lightgray: #f1f1f1;
}
.inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 0;
}

/*  서브페이지 타이틀  */
.page-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 6rem;
}
.page-title h3 {
    font-size: 1.5rem;
}
.page-title .bar {
    display: block;
    width: 100px;
    height: 2px;
    background: #666;
    margin: 0 20px;
}
.page-title h4 {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}
.bg-gray {
    background: #f7f7f7;
}

/*=================================================================================
* Main 
=================================================================================*/
#main {
    width: 100%;
}
#main .main-slide {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#main .main-slide .swiper-slide {
    flex: 1;
}
#main .main-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 6rem 0;
}
#main .main-item:before {
    display: block;
    clear: both;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: brightness(1);
    backdrop-filter: brightness(1)
    z-index: 0;
}
#main .main-item.slide-flow {
    background: #fff /*url(../img/flow.png)*/ center/cover no-repeat;
}
#main .main-item.slide-on {
    background: #fff /*url(../img/on.png)*/ center/cover no-repeat;
}
#main .main-item.slide-hope {
    background: #fff /*url(../img/hope.png)*/ center/cover no-repeat;
}
#main .main-item a {
    display: block;
    position: relative;
    z-index: 1;
}
#main .main-item .title-01 {
    margin-bottom: 4rem;
    font-size: 6rem;
}
#main .main-item .img-area {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 3rem;
    background: #f8f8f8;
}
#main .main-item .img-area img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
#main .main-item:nth-of-type(2) .img-area {
    height: 25rem;
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
}
#main .main-item:nth-of-type(2) .img-area img {
    transform: rotate(45deg) scale(150%);
}
/*=================================================================================
* 서브 인트로 
=================================================================================*/
.intro-wrap .left-area {
    width: 30%;
    height: calc(140vh - 100px);
    flex-direction: column;
    /*background: var(--color-lightgray);*/
}
.intro-wrap .left-area .text-area {
    margin-bottom: 4rem;
    padding: 0 3rem;
}
.intro-wrap .left-area .title-02 {
    margin-bottom: 2rem;
}
.intro-wrap .ad-area .img-area {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.intro-wrap .ad-area .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-wrap .right-area {
    flex: 1;
    padding: 4rem 4rem;
    height: calc(100vh - 100px);
    background: var(--color-white);
    overflow-y: auto;
}
.intro-wrap .right-area .menu-wr ul {
    width: 100%;
    margin-bottom: 3rem;
}
.intro-wrap .right-area .menu-wr li {
    flex: 1;
}
.intro-wrap .right-area .menu-wr li a {
    position: relative;
    margin: 0 1rem 0 0;
    padding: 1.2rem 1rem;
    display: block;
    background: #f1f1f1;
    text-align: center;
    border-radius: 1.2rem 0 1.2rem 0;
    z-index: 1;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.intro-wrap .right-area .menu-wr li a:hover,
.intro-wrap .right-area .menu-wr li a.active {
    background: var(--color-basic);
    letter-spacing: 1.2px;
    -webkit-box-shadow: 0px 5px 40px -10px var(--color-basic-alpha);
    -moz-box-shadow: 0px 5px 40px -10px var(--color-basic-alpha);
    box-shadow: 5px 40px -10px var(--color-basic-alpha);
    transition: all 0.4s ease 0s;
}
.intro-wrap .right-area .menu-wr li:last-child a {
    margin-right: 0;
}
.intro-wrap .right-area .menu-item {
    width: 49%;
    margin: 0 1rem 1rem 0;
    border: 1px solid var(--color-lightgray);
}
.intro-wrap .right-area .menu-item:nth-child(even) {
    margin-right: 0;
}
.intro-wrap .right-area .menu-item .thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.intro-wrap .right-area .menu-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-wrap .right-area .menu-item .text-area {
    padding: 3rem 1rem 1.6rem;
}
.intro-wrap .right-area .menu-item .text-area .title-03 {
    margin-bottom: 1rem;
}
.intro-wrap .right-area .menu-item .text-area .text-02 {
    height: 58px;
}
/*=================================================================================
* 검색결과 
=================================================================================*/
.search-wrap .title-area {
    margin-bottom: 6rem;
}
.search-wrap .title-area .title-02 {
    margin-bottom: 2rem;
}
.search-wrap .item-list .item {
    background: var(--color-white);
    margin-bottom: 1.2rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray);
}
.search-wrap .item-list .item-thumb {
    margin-left: 2rem;
    width: 200px;
    height: 150px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}
.search-wrap .item-list .item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-wrap .item-list .item-body {
    flex: 1;
    padding: 1rem 0 0 0;
}
.search-wrap .item-list .item-body .text-03 {
    margin-bottom: 1rem;
}
/*=================================================================================
* 서브페이지 비주얼 BG 
=================================================================================*/
.visual-wrap.sub01-01 {
    background: url(../img/k-water_foh01.png) center/cover no-repeat;
}

.visual-wrap.sub01-02 {
    background: url(../img/k-water_foh02.png) center/cover no-repeat;
}

.visual-wrap.sub01-03 {
    background: url(../img/k-water_foh03.png) center/cover no-repeat;
}

.visual-wrap.sub01-04 {
    background: url(../img/k-water_foh04.png) center/cover no-repeat;
}

.visual-wrap.sub02-05 {
    background: url(../img/k-water_foh05.png) center/cover no-repeat;
}

.visual-wrap.sub02-06 {
    background: url(../img/k-water_foh06.png) center/cover no-repeat;
}

.visual-wrap.sub02-07 {
    background: url(../img/k-water_foh07.png) center/cover no-repeat;
}

.visual-wrap.sub02-08 {
    background: url(../img/k-water_foh08.png) center/cover no-repeat;
}

.visual-wrap.sub02-09 {
    background: url(../img/k-water_foh09.png) center/cover no-repeat;
}

.visual-wrap.sub03-10 {
    background: url(../img/k-water_foh10.png) center/cover no-repeat;
}

.visual-wrap.sub03-11 {
    background: url(../img/k-water_foh11.png) center/cover no-repeat;
}

.visual-wrap.sub03-12 {
    background: url(../img/k-water_foh12.png) center/cover no-repeat;
}

.visual-wrap.sub03-13 {
    background: url(../img/k-water_foh13.png) center/cover no-repeat;
}

.visual-wrap.sub03-14 {
    background: url(../img/k-water_foh14.png) center/cover no-repeat;
}

.visual-wrap.sub03-15 {
    background: url(../img/k-water_foh15.png) center/cover no-repeat;
}

.visual-wrap.sub03-16 {
    background: url(../img/k-water_foh16.png) center/cover no-repeat;
}

.visual-wrap.sub03-17 {
    background: url(../img/k-water_foh17.png) center/cover no-repeat;
}

.visual-wrap.sub03-18 {
    background: url(../img/k-water_foh18.png) center/cover no-repeat;
}

.visual-wrap.sub03-19 {
    background: url(../img/k-water_foh19.png) center/cover no-repeat;
}

.visual-wrap.sub03-20 {
    background: url(../img/k-water_foh20.png) center/cover no-repeat;
}

.visual-wrap.sub04-21 {
    background: url(../img/k-water_foh21.png) center/cover no-repeat;
}

.visual-wrap.sub04-22 {
    background: url(../img/k-water_foh22.png) center/cover no-repeat;
}
/*=================================================================================
* 구분선
=================================================================================*/
.blue-divider {
    height: 2px; /* 구분선의 두께 */
    background-color: navy; /* 파란색 배경색을 가진 구분선 */
    margin: 5px 0; /* 상하 여백을 조절하여 다른 내용과 구분 */
  }
/*=================================================================================
* 구분선
=================================================================================*/
.blue-divider {
    height: 2px; /* 구분선의 두께 */
    background-color: navy; /* 파란색 배경색을 가진 구분선 */
    margin: 5px 0; /* 상하 여백을 조절하여 다른 내용과 구분 */
  }