@charset "UTF-8";
/*=================================================================================

* Wrap 

=================================================================================*/
:root {
    --color-white: #fff;
    --color-basic: #00b9ef;
    --color-blue: #003de5;
    --color-basic-alpha: rgba(0, 156, 229, 0.8);
    --color-gray: #e1e1e1;
    --color-lightgray: #f1f1f1;
    --culture-color_01: #fbddc3;
    --culture-color_02: #f08337;
}
html,
body {
    font-size: 16px;
    overflow-x: hidden;
    background: #fff;
}
.Bebas {
    font-family: 'Bebas Neue', sans-serif;
}
#container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*===============================================================================
* button style
=================================================================================*/
.btn {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 20px;
    text-align: center;
    border-radius: 6px;
}
.btn-basic {
    background: var(--color-basic);
    color: var(--color-white);
}
.btn-line {
    border: 1px solid var(--color-gray);
}
.btn-white {
    background: var(--color-lightgray);
}
/*=================================================================================
* margin padding
=================================================================================*/
.mb-0 {
    margin-bottom: 0 !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pt-0 {
    padding-top: 0 !important;
}
/*=================================================================================
* Text Style
=================================================================================*/
.title-01 {
    /*56px;*/
    font-size: 4rem;
}
.title-02 {
    /*46px;*/
    font-size: 3rem;
}
.title-03 {
    /*36px;*/
    font-size: 2rem;
}
.text-01 {
    /*26px;*/
    font-size: 1.7rem;
}
.text-02 {
    /*24px;*/
    font-size: 1.5rem;
}
.text-03 {
    /*21px;*/
    font-size: 1.3rem;
}
.text-04 {
    /*18px;*/
    font-size: 1.1rem;
}
}
.text-05 {
    /*16px;*/
    font-size: 0.9rem;
}
.bold {
    font-weight: bold;
}
.light {
    font-weight: 100;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-white {
    color: var(--color-white);
}
.text-blue {
    color: var(--color-blue);
}
.text-gray {
    color: var(--color-gray);
}
.text-lightgray {
    color: var(--color-lightgray);
}
.text-line {    
    /*21px;*/
    font-size: 1.3rem;
    display: inline-block; 
    border-bottom: 2px solid #8A2BE2;
}
.text-wave {
    /*18px;*/
    font-size: 1.1rem;    
    text-decoration: red wavy underline;
}
/*=================================================================================
* Flex 
=================================================================================*/
.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex-wrap {
    flex-wrap: wrap;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
.space-between {
    justify-content: space-between;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.flex-col {
    flex-direction: column;
}
/*=================================================================================
* Grid Style
=================================================================================*/
.grid-box {
    display: grid;
    width: 100%;
    grid-auto-columns: 1fr;
    gap: 1em;
}
.grid-box.grid-ty01 {
    grid-template-areas: 'one two';
}
.grid-box.grid-ty02 {
    grid-template-areas: 'two one';
}
.grid-item.one {
    grid-area: one;
}
.grid-item.two {
    grid-area: two;
}
/*=================================================================================
* Header
=================================================================================*/
#header {
    position: relative;
    width: 100%;
    height: 100px;
    padding: 0 3rem;
    border-bottom: 1px solid #f1f1f1;
    background: var(--color-white);
}
.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
/*  hamburger  */
.menu-open {
    position: relative;
    width: 40px;
    height: 40px;
    transition-duration: 0.5s;
    z-index: 20;
}
.menu-open:hover {
    cursor: pointer;
}
.menu-open .icon,
.menu-open .icon:before,
.menu-open .icon:after {
    display: block;
    position: absolute;
    transition-duration: 0.5s;
    width: 40px;
    height: 4px;
    background-color: #232323;
    z-index: 10;
}
.menu-open .icon {
    top: 50%;
    transform: translateY(-50%);
}
.menu-open .icon:before {
    content: '';
    top: -12px;
}
.menu-open .icon:after {
    content: '';
    top: 12px;
}
.menu-open.open .icon {
    transition-duration: 0.5s;
    background: transparent;
}
.menu-open.open .icon:before {
    transform: rotateZ(45deg) scaleX(1.25) translate(6.5px, 6.5px);
    background: var(--color-white);
}
.menu-open.open .icon:after {
    transform: rotateZ(-45deg) scaleX(1.25) translate(8px, -8px);
    background: var(--color-white);
}
/* Panel  */
#side-panel {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    display: none;
    transition: all ease 0.2s;
}
#side-panel.active {
    display: flex;
}
#side-panel .left-area {
    width: 20%;
    height: 123%;
    flex-direction: column;
    background: var(--color-blue);
}
#side-panel .left-area .text-area {
    padding: 8rem 3rem 4rem;
    color: var(--color-white);
}
#side-panel .left-area .title-02 a {
    display: block;
    margin-bottom: 2rem;
    color: var(--color-white);
} 
#nav {
    flex: 1;
    padding: 4rem 6rem;
    background-color: white;
}
#nav .menu-wr {
    margin-bottom: 3rem;
}
#nav .menu-wr .title-02 {
    margin-bottom: 1.2rem;
}
#gnb .link-depth2 {
    flex: 1;
    margin-right: 1rem;
}
#gnb .link-depth2:last-child {
    margin-right: 0;
}
#gnb .link-depth2 a {
    position: relative;
    padding: 1.4rem 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;
}
#gnb .link-depth2 a:hover {
    background: var(--color-basic);
    letter-spacing: 1.2px;
    font-size: 1.4rem;
    -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;
}
#nav .menu-wr.hope .link-depth2 {
    flex: none;
    width: 24%;
    margin-bottom: 1rem;
}
#nav .menu-wr.hope .link-depth2:nth-child(4n) {
    margin-right: 0;
}
/*  date */
#header .date {
    margin-right: 1rem;
}
/*  lag tab  */
#header .language-tab {
    width: 100px;
    height: 29px;
    border: 2px solid #e1e1e1;
    border-radius: 20px;
    transition: opacity 0.35s;
    box-sizing: border-box;
}
#header .language-tab > li {
    position: relative;
    padding: 0 0.5rem;
}
#header .language-tab > li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #e1e1e1;
    width: 2px;
    height: 80%;
}
#header .language-tab > li a {
    font-size: 0.9rem;
    font-weight: bold;
    color: #e1e1e1;
    transition: color 0.2s;
}
#header .language-tab > li.active a,
#header .language-tab > li:hover a {
    color: var(--color-blue);
}
/*  Search box  */
.search-box {
    position: absolute;
    top: 50%;
    left: 8rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    line-height: 40px;
    border-radius: 60px;
}
.search-box .search-input {
    background: #f5f5f5;
    outline: none;
    border: none;
    line-height: 40px;
    width: 0px;
    transition: 0.7s ease;
    border-radius: 40px;
}
.search-box .search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: #f5f5f5;
    border-radius: 50%;
    transition: 0.4s ease;
}
.search-box .icon-search {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/icon-search.png) center/20px no-repeat;
}
.search-box:hover {
    width: 300px;
}
.search-box:hover > .search-input {
    width: 240px;
    margin: 0px 8px;
}
.search-box:hover > .search-btn {
    background: #f5f5f5;
}
.search-input:focus + .search-btn {
    background: #f5f5f5;
}
/*  Floating Menu  */
.floating-menu {
    position: fixed;
    left: 1rem;
    bottom: 52%;
    transition: 0.5s;
    z-index: 20;
}
.plus-link {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.5s;
    box-sizing: border-box;
    background: #232323 url(../img/icon-plus.svg) center no-repeat;
}
.plus-link.active {
    transform: rotate(315deg);
}
.float-inner {
    display: none;
}
.float-inner.active {
    display: block;
}
.floating-list .floating-linker {
    margin-bottom: 10px;
}
.floating-linker a {
    width: 120px;
    display: block;
    padding: 0.4rem;
    border-radius: 28px;
    box-shadow: 0 4px 11px 0 rgb(0 0 0 / 15%);
    background: #fff;
    font-size: 0.8rem;
    flex-direction: row;
    transition: 0.3s;
}
.floating-linker .icon {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ccc;
    margin-right: 0.5rem;
}
.floating-linker .icon-subs {
    background: #ccc url(../img/quick-subs.svg) center/15px no-repeat;
}
.floating-linker .icon-ebook {
    background: #ccc url(../img/quick-ebook.svg) center/15px no-repeat;
}
.floating-linker .icon-pdf {
    background: #ccc url(../img/quick-pdf.svg) center/15px no-repeat;
}
.floating-linker a:hover {
    background: #232323;
    color: var(--color-white);
}
/*=================================================================================
* Hash Slide 
=================================================================================*/
.hashtag-slide-wrap {
    position: relative;
    width: 100%;
    padding: 3rem 1rem 3rem;
    background: var(--color-blue);
}
.hashtag-slide-wrap .swiper-container {
    width: 100%;
    margin-bottom: 1rem;
}
.hashtag-slide-wrap .tag-item {
    color: var(--color-white);
}
.hashtag-slide-wrap .swiper-slide {
    width: auto;
}
/* waves */
.ocean {
    height: 180px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-blue);
    z-index: 1;
}
.wave {
    background: url(../img/wave.svg) repeat-x;
    position: absolute;
    top: -46px;
    width: 6400px;
    height: 65px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
}
.wave:nth-of-type(2) {
    top: -36px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 1;
}
@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}
@keyframes swell {
    0%,
    100% {
        transform: translate3d(0, -25px, 0);
    }
    50% {
        transform: translate3d(0, 5px, 0);
    }
}
/*=================================================================================
* Footer 
=================================================================================*/
#footer {
    width: 100%;
    background: #232323;
}
#footer .inner {
    position: relative;
    padding: 40px 0;
    color: #fff;
}
.footer .logo-footer {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 150px;
    height: 50px;
    background: url(../img/logo-footer.svg) center/contain no-repeat;
}
.footer-info {
    padding-left: 200px;
    font-size: 0.9rem;
    font-weight: 100;
}
.footer-info .btn {
    margin-bottom: 1rem;
    margin-right: 0.4rem;
}
.footer-info p {
    line-height: 1.6;
}
.footer-info .copyright {
    opacity: 0.5;
    margin-top: 2rem;
}
.sns-wrap {
    position: absolute;
    top: 40px;
    right: 0;
}
.sns-wrap:after {
    display: block;
    clear: both;
    content: '';
}
.sns-icon {
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    background-color: var(--color-lightgray);
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    cursor: pointer;
}
.sns-icon:not(:last-child) {
    margin-right: 4px;
}
.sns-icon.print {
    background-image: url(../img/icon-print.png);
}
.sns-icon.share {
    background-image: url(../img/icon-share.png);
}
.sns-icon.kakaotalk {
    background-image: url(../img/sns-kakaotalk.png);
}
.sns-icon.facebook {
    background-image: url(../img/sns-facebook.png);
}
.sns-icon.instagram {
    background-image: url(../img/sns-instagram.png);
}
.sns-icon.blog {
    background-image: url(../img/sns-blog.png);
}
.sns-icon.twitter {
    background-image: url(../img/sns-twitter.png);
}
.sns-icon.kakaostory {
    background-image: url(../img/sns-kakao.png);
}
.sns-icon.youtube {
    background-image: url(../img/sns-youtube.png);
}
.sns-icon.k-water {
    background-image: url(../img/sns-kwater.png);
}
/*=================================================================================
* 서브 공통 사항
=================================================================================*/
.subArea {
    position: relative;
}

.subArea b {
    font-weight: bold;
}

.subArea p {
    font-size: 18px;
    line-height: 1.6em;
    letter-spacing: -0.05em;
}

.subArea .sub_text {
    font-size: 18px;
    line-height: 1.6em;
    letter-spacing: -0.05em;
}

.subArea h5 {
    font-size: 24px;
    line-height: 1.3em;
    letter-spacing: -0.05em;
    font-weight: bold;
}
/*=================================================================================
* 서브 비주얼 
=================================================================================*/
.visual-wrap {
    position: relative;
    width: 100%;
    min-height: 500px;
    animation: bgmove 1s ease;
}
.visual-wrap:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 0;
}
.visual-wrap:after {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(248, 248, 248, 0) 20%, rgba(248, 248, 248, 1) 70%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(248, 248, 248, 0) 20%, rgba(248, 248, 248, 1) 70%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 20%, rgba(248, 248, 248, 1) 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.visual-wrap .title-area {
    position: relative;
    z-index: 1;
    /* color: var(--color-white); */
    top: 10rem;
    padding-top: 0;
    padding-bottom: 0;
}
.visual-wrap .title-area .text-04 {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.3rem 2rem;
    border: 1px solid #131313;
    border-radius: 30px;
}
.visual-wrap .title-area .title-02 {
    margin-bottom: 1.2rem;
}
.visual-wrap .title-area .text-03 {
    margin-bottom: 3rem;
}
@keyframes bgmove {
    0% {
        background-size: 110% auto;
    }
    100% {
        background-size: 100% auto;
    }
}
/*=================================================================================
* 서브 컨텐츠 
=================================================================================*/
.sub-contents {
    padding: 8rem 0 6rem;
}
.sub-contents .low {
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    margin-bottom: 5rem;
}
.sub-contents .low > div {
    margin-bottom: 2rem;
}
.sub-contents .low .title-03 {
    margin-bottom: 1.2rem;
}
.sub-contents .low .text-04 {
    margin-bottom: 1rem;
}
.sub-foot .inner {
    position: relative;
    padding: 2rem 0 6rem;
    border-top: 1px solid var(--color-gray);
}
.sub-foot .page-nav > div:first-of-type {
    margin-right: 2rem;
}
.sub-foot .page-nav .list-prev:before,
.sub-foot .page-nav .list-next:after {
    display: inline-block;
    clear: both;
    content: '';
    vertical-align: middle;
    width: 1rem;
    height: 1rem;
    background: url(../img/icon-arrow.svg) center no-repeat;
    margin-right: 1rem;
}
.sub-foot .page-nav .list-next:after {
    transform: rotate(180deg);
    margin-left: 1rem;
    margin-right: 0;
}
.sub-foot .page-nav .none {
    opacity: 0.3;
    cursor: default;
}
.sub-foot .sns-wrap {
    position: absolute;
    top: 1rem;
    right: 0;
}
/*=================================================================================
* 서브 페이지 시작 - 검색 + 과월호 + 이벤트 페이지 .sub_search *
=================================================================================*/
.sub_search {
    margin-top: 100px;
    padding-bottom: 70px;
}

.sub_search #tipue_search_results_count {
    position: absolute;
    top: -280px;
    left: 0;
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.sub_search .tipue_search_result {
    overflow: hidden;
    position: relative;
    min-height: 260px;
    padding-left: 390px;
}

.sub_search .tipue_search_image {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    max-width: 360px;
}

.sub_search .tipue_search_image > a {
    display: block;
    width: 100%;
    height: 100%;
}

.sub_search .tipue_search_image .tipue_search_../img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.sub_search .tipue_search_content_url {
    display: none;
}

.sub_search .tipue_search_content_title {
    font-size: 28px;
    line-height: 36px;
    color: #222;
    font-weight: 700;
    padding-top: 20px;
    text-align: left;
}

.sub_search .tipue_search_content_text {
    font-size: 18px;
    line-height: 26px;
    color: #666;
    padding-top: 30px;
    text-align: left;
}

.sub_search .tipue_search_content_bold {
    color: #25aae2;
    font-weight: 700;
}

.sub_search #tipue_search_foot_boxes {
    display: flex;
    justify-content: center;
}

.sub_search #tipue_search_foot_boxes .current {
    font-size: 18px;
    color: #25aae2;
    font-weight: 700;
    padding: 0 20px;
    cursor: default;
}

.sub_search #tipue_search_foot_boxes .tipue_search_foot_box {
    font-size: 18px;
    padding: 0 20px;
    cursor: pointer;
}

.sub_search #tipue_search_foot_boxes .prev_button,
.sub_search #tipue_search_foot_boxes .next_button {
    color: #ccc;
}

.sub_search #tipue_search_error {
    text-align: center;
    font-size: 19px;
}
/*=================================================================================
* .sub_thumlist  
=================================================================================*/
.sub_thumlist {
    margin-top: 100px;
}

.sub_thumlist .tlTitle {
    margin: 0 auto;
    font-size: 27px;
    text-align: center;
    font-weight: 700;
}

.sub_thumlist .tlTitle > span {
    color: #25aae2;
    display: inline-block;
    vertical-align: middle;
}

.sub_thumlist .thumbList {
    overflow: hidden;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
}

.sub_thumlist .thumbList:after {
    display: block;
    content: '';
    clear: both;
    height: 0;
}

.sub_thumlist .thumbList .tlLink {
    width: 25%;
    float: left;
    margin-top: 50px;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}

.sub_thumlist .thumbList .tlLink .tlthumb {
    text-align: center;
    padding-right: 15px;
    padding-left: 15px;
}

.sub_thumlist .thumbList .tlLink .tlthumb .thumbImg {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

.sub_thumlist .thumbList .tlLink .tlthumb .thumbImg img {
    position: relative;
    z-index: 7;
}

.sub_thumlist .thumbList .tlLink img {
    max-width: 175px;
    height: 235px;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_con {
    font-size: 18px;
    text-align: center;
    display: block;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_con .tl0 {
    font-size: 17px;
    color: #222;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_con .tl1 {
    font-size: 15px;
    color: #222;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_con .tl2 {
    font-size: 15px;
    color: #999;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_con .tl3 {
    font-size: 17px;
    font-weight: 800;
    color: #25aae2;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_btn {
    margin-top: 20px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_btn:after {
    display: block;
    content: '';
    clear: both;
    height: 0;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_btn ul {
    text-align: center;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_btn ul li {
    display: inline-block;
    width: 32.3333333333%;
    text-align: center;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_btn ul li a {
    display: block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px;
    border: 1px solid #ddd;
    margin-left: 5px;
    margin-right: 5px;
    color: #3d3d3d;
    transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_btn ul li a:hover {
    background-color: #25aae2;
    border: 1px solid #25aae2;
    color: #fff;
}

.sub_thumlist .thumbList .tlLink .tlthumb .tlthumb_btn ul:after {
    display: block;
    content: '';
    clear: both;
    height: 0;
}
/*=================================================================================
* 서브페이지 제작 
=================================================================================*/
b {
    font-weight: 700;
}

.pbr {
    display: block;
}

.mbr {
    display: none;
}

.pc_img {
    display: block;
}

.mo_img {
    display: none;
}

.sub {
    margin-top: 100px;
    margin-bottom: 100px;
    overflow: hidden;
}

.sub p {
    margin-bottom: 1em;
    color: black;
}

.sub .img img {
    width: 100%;
}

.sub .img span {
    margin-bottom: 10px;
    display: inline-block;
}

.img_center {
    width: 100%;
    margin-bottom: 20px;
}

.img_center img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

img_contain img {
    width: 300px;
    height: 300px;
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border:1px solid black;
}

.sec {
    margin-bottom: 50px;
}

.sub .con_center {
    text-align: center;
}

.sub .con_left {
    float: left;
    width: 48%;
}

.sub .con_right {
    float: right;
    width: 48%;
}

.sub h5.sub_title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sub .con_txt {
    margin-bottom: 40px;
    word-break: break-all;
    letter-spacing: -0.075em;
    font-size: 1.1rem;
}

.sub .con_notice {
    font-size: 17px;
    color: #999;
}

.photo1-400 {
    margin-bottom: 30px;
}

.photo1-400 img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.photo1-600 {
    width: 100%;
}

.photo1-600 img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.photo1-600 span {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
}

.photo1-800 img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.photo1-800 span {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
}

ul.photo2 {
    display: flex;
    justify-content: space-between;
}

ul.photo2 li {
    width: calc(50% - 5px);
}

ul.photo2 li img {
    width: 100%;
}

ul.photo2 li span {
    font-size: 15px;
    margin-top: 7px;
}

ul.photo3 {
    display: flex;
    justify-content: space-between;
}

ul.photo3 li {
    width: calc(33.3333% - 10px);
}

ul.photo3 li > img {
    width: 100%;
}

@media screen and (max-width: 780px) {
    ul.photo2 {
        flex-direction: column;
    }

    ul.photo2 li {
        width: 100% !important;
        margin-bottom: 10px;
    }

    ul.photo3 {
        flex-direction: column;
    }

    ul.photo3 li {
        width: 100%;
        margin-bottom: 10px;
    }
}

ul.photo_list2 {
    overflow: hidden;
}

ul.photo_list2 li {
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
}

ul.photo_list2 li:nth-child(2n) {
    margin-right: 0;
}

ul.photo_list2 li img {
    width: 100%;
    height: auto;
}

ul.photo_list2 li span {
    font-size: 15px;
    margin-top: 7px;
}

ul.photo_list2-64 {
    display: flex;
    justify-content: space-between;
    overflow: visible;
}

ul.photo_list2-64 li:first-child {
    width: calc(70% - 10px);
}

ul.photo_list2-64 li:last-child {
    width: calc(30% - 10px);
}

ul.photo_list2-64 li img {
    width: 100%;
}

ul.photo_list2-64 li {
    position: relative;
    top: 0;
    left: 0;
}

ul.photo_list2-64 li span {
    font-size: 15px;
    margin-top: 7px;
}

ul.photo_list4 {
    overflow: hidden;
}

ul.photo_list4 li {
    float: left;
    width: 24.25%;
    margin-right: 1%;
}

ul.photo_list4 li:last-child {
    margin-right: 0;
}

ul.photo_list4 li img {
    width: 100%;
    height: auto;
}

/***********
  row /col
************/
.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.row img {
    max-width: 100%;
}

.row > .col-25 {
    width: calc((100% - 96px) / 4);
}

/*아이템 4분할*/
.row > .col-3 {
    width: calc(30% - 16px);
}

.row > .col-33 {
    width: calc((100% - 64px) / 3);
}

/*아이템 3분할*/
.row > .col-4 {
    width: calc(40% - 16px);
}

.row > .col-5 {
    width: calc(50% - 16px);
}

.row > .col-6 {
    width: calc(60% - 16px);
}

.row > .col-7 {
    width: calc(70% - 16px);
}

.row.m-order li:first-child {
    order: 1;
}

.row.m-order li:last-child {
    order: 2;
}

.row.ai-center {
    align-items: center;
}

@media screen and (max-width: 780px) {
    .row {
        flex-direction: column;
    }

    .row > li {
        margin-bottom: 3.6rem;
    }

    .row > li:last-child {
        margin-bottom: 0;
    }

    .row > .col-25 {
        width: 100%;
    }

    .row > .col-3 {
        width: 100%;
    }

    .row > .col-33 {
        width: 100%;
    }

    /*아이템 3분할*/
    .row > .col-4 {
        width: 100%;
    }

    .row > .col-5 {
        width: 100%;
    }

    .row > .col-6 {
        width: 100%;
    }

    .row > .col-7 {
        width: 100%;
    }

    .row.m-order li:first-child {
        order: 2;
    }

    .row.m-order li:last-child {
        order: 1;
    }

    .row.ai-center {
        align-items: center;
    }

    .row.m-order > li:first-child {
        margin-bottom: 0;
    }

    .row.m-order > li:last-child {
        margin-bottom: 3.6rem;
    }
}

/* .z_trip 제로여행 */
.z_trip .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.z_trip .sec2 {
    overflow: hidden;
    margin-bottom: 50px;
}

.z_trip .sp_title {
    font-size: 24px;
    color: #f092a4;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.z_trip .trip_list li {
    overflow: hidden;
    margin-bottom: 30px;
}

.z_trip .trip_list li:last-child {
    margin-bottom: 0;
}

.z_trip .trip_list li .img {
    float: left;
    width: 45%;
}

.z_trip .trip_list li .txt_w {
    float: right;
    width: 45%;
    margin-top: 30px;
}

.z_trip .trip_list li .txt_w h6.trip_name {
    margin-bottom: 20px;
    position: relative;
    top: 0;
    left: 0;
}

.z_trip .trip_list li .txt_w h6.trip_name::after {
    content: '';
    display: block;
    background: #789c2d;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -1;
}

.z_trip .trip_list li .txt_w h6.trip_name span {
    display: inline-block;
    font-size: 21px;
    color: #fff;
    font-weight: 700;
    background: #789c2d;
    border-radius: 60px;
    padding: 10px 30px;
}

.z_trip .trip_list li .txt_w .txt {
    margin-bottom: 30px;
}

.z_trip .trip_list li .txt_w .address {
    color: #222;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.z_trip .trip_list li .txt_w .address i {
    position: absolute;
    top: 0;
    left: 0;
}

.z_trip .trip_list li .txt_w .address i img {
    width: 24px;
    height: auto;
}

.z_trip .con_right p {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 2em;
}

/*221102 마진추가 추후 삭제*/
.z_trip img.po-a_img {
    position: absolute;
    width: 150px;
}

@media screen and (max-width: 600px) {
    .z_trip .con_right p {
        margin-bottom: 0em;
    }

    /*221102 마진추가 추후 삭제*/
}

/* .z_shop 제로상점 */
.z_shop .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.z_shop .sec1 .con_left {
    margin-top: 00px;
}

.z_shop .sec2 {
    overflow: hidden;
    margin-bottom: 50px;
}

.z_shop .sec2 .ment_type2 {
    text-align: left;
    font-size: 28px;
    color: #405f89;
    line-height: 1.4;
}

.z_shop .sec2 .ment_type2 .que {
    display: block;
}

.z_shop .sec2 .ment_type2 .que img {
    width: 60px;
    height: auto;
    margin: 15px 0 0;
}

.z_shop .sp_title {
    font-size: 32px;
    color: #f7976a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.z_shop .sec3 .ment {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.z_shop .sec3 .ment span {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
}

.z_shop .ceo_img {
    text-align: center;
    margin-bottom: 30px;
}

.z_shop .shop_info {
    overflow: hidden;
}

.z_shop .shop_info .left_img {
    float: left;
    margin-right: 50px;
}

.z_shop .shop_info .left_img img {
    width: 480px;
    height: auto;
}

.z_shop .shop_info .shop_txt {
    float: left;
}

.z_shop .shop_name {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.z_shop .address {
    color: #222;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.z_shop .address i {
    position: absolute;
    top: 0;
    left: 0;
}

.z_shop .address i img {
    width: 24px;
    height: auto;
}

.z_shop .con_center .img {
    width: 50%;
    margin: 0 auto 70px;
}

.z_shop .comma-word {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.z_shop .con_right p {
    position: relative;
    top: 0;
    left: 0;
}

.z_shop img.po-a_img {
    position: absolute;
    width: 250px;
    box-sizing: border-box;
    border: 10px solid #fff;
}

@media screen and (max-width: 780px) {
    .z_shop img.po-a_img {
        position: absolute;
        width: 100px;
    }
}

/* .people 무해한 사람 */
.people .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.people .sec1 .con_right .img {
    text-align: right;
    margin-bottom: 20px;
}

.people .sec1 .con_right .img img {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    margin-top: 0px;
}

.people .sec2 {
    margin-bottom: 40px;
}

.people .sec3 {
    margin-bottom: 50px;
}

.people h4.interview {
    font-size: 28px;
    color: #d66384;
    line-height: 1.4;
    font-family: 'Noto Serif KR', serif;
    font-weight: 600;
}

.people .shop_info {
    overflow: hidden;
    margin-top: 50px;
}

.people .shop_info .left_img {
    float: left;
    margin-right: 50px;
}

.people .shop_info .left_img img {
    width: 480px;
    height: auto;
}

.people .shop_info .shop_txt {
    float: left;
}

.people .shop_name {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.people .address {
    color: #222;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.people .address i {
    position: absolute;
    top: 0;
    left: 0;
}

.people .address i img {
    width: 24px;
    height: auto;
}

.people .po-r {
    position: relative;
    top: 0;
    left: 0;
}

.people .po-a_img {
    position: absolute;
    max-width: 200px;
    bottom: -10%;
    left: -20px;
}

@media screen and (max-width: 1280px) {
    .people h4.interview {
        transform: translateY(50%);
    }
}

@media screen and (max-width: 1000px) {
    .people h4.interview {
        transform: translateY(0);
    }
}

@media screen and (max-width: 600px) {
    .people .po-a_img {
        max-width: 130px;
        bottom: -8%;
        left: 0px;
    }

    /*플랫이미지 크기조정*/
}

/* .earth 지구보고서 */
.earth .con_center {
    margin-bottom: 30px;
}

.earth .con_center img {
    width: 1000px;
}

.earth .con_notice {
    margin-bottom: 0;
}

/* .city 내가 그린 도시 */
.city .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.city .sec1 .ment_type4 {
    text-align: left;
    font-size: 28px;
    color: #239ed9;
    line-height: 1.4;
}

.city .sec1 .ment_type4 .que {
    display: block;
}

.city .sec1 .ment_type4 .que img {
    width: 60px;
    height: auto;
    margin: 15px 0 0;
}

.city .sec2 {
    margin-bottom: 100px;
}

.city .con_center {
    margin-bottom: 30px;
}

.city .con_center img {
    width: 100%;
}

.city .photo2 li h5.sub_title {
    font-size: 21px;
}

.city .photo2 li h5 {
    position: relative;
    padding-left: 30px;
    top: 0;
    left: 0;
}

.city .photo2 li h5::before {
    content: '';
    width: 25px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
}

.city .photo2 li:nth-child(1) h5::before {
    background: url(../img/con_city_icon1.svg) no-repeat;
    background-position-y: center;
}

.city .photo2 li:nth-child(2) h5::before {
    background: url(../img/con_city_icon2.svg) no-repeat;
    background-position-y: center;
}

.city .sec2 .photo2 li {
    width: calc(50% - 50px);
}

.city img.po-a_img {
    position: absolute;
    width: 200px;
    box-sizing: border-box;
    bottom: -30px;
    right: 30px;
}

@media screen and (max-width: 780px) {
    .city img.po-a_img {
        width: 150px !important;
        position: relative;
    }

    .city .sec2 .photo2 li {
        width: 100%;
    }
}

/* .doit 두잇두잇 */
.doit .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.doit .sec1 .con_right {
    margin-top: 0px;
}

.doit .sec1 .con_txt {
    margin-bottom: 0;
}

.doit .sec2 {
    overflow: hidden;
    margin-bottom: 50px;
}

.doit .sec3 {
    overflow: hidden;
}

.doit .con_txt {
    letter-spacing: -0.05em;
}

.doit .notice {
    font-size: 15px;
    text-align: right;
}

.doit .photo1-290,
.doit .photo1-350 {
    margin-bottom: 30px;
}

.doit .photo1-290 img,
.doit .photo1-350 img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.doit .photo1-290 img {
    max-width: 290px;
}

.doit .photo1-350 img {
    max-width: 350px;
}

/* photo1- 클래스 -> 이미지 사이즈 조정(290px, 350px) css로, 11월호 외에는 삭제하거나 수정해서 사용 */

/* .health 건강처방전 */
.health .sec1 {
    overflow: hidden;
    margin-bottom: 0;
}

.health .sec2 {
    overflow: hidden;
    margin-bottom: 0;
}

.health .sec3 .con_txt {
    margin-bottom: 0;
}

.health .sp_title {
    font-size: 24px;
    color: #f58675;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    left: 0px;
    top: 0;
}

.health .tag {
    overflow: hidden;
    margin-bottom: 50px;
}

.health .tag .left {
    float: left;
    font-size: 32px;
    color: #f58675;
    font-weight: 700;
    line-height: 1.6;
    padding-top: 140px;
}

.health .tag .right {
    float: right;
}

.health .tag .right img {
    width: 600px;
    height: auto;
}

/* .sutarbugs 수(水)타벅스가 간다 */
.sutarbugs .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.sutarbugs .sec1 .con_right {
    margin-top: 0;
}

.sutarbugs .sec2 {
    overflow: hidden;
    margin-bottom: 50px;
}

.sutarbugs .sec2 .circle .img {
    float: left;
    width: 200px;
    height: auto;
    margin-right: 50px;
}

.sutarbugs .sec2 .circle .txt {
    float: left;
    font-size: 32px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 50px;
}

.sutarbugs .sec2 .circle img {
    border-radius: 100%;
}

.sutarbugs .sec3 {
    overflow: hidden;
    margin-bottom: 50px;
}

.sutarbugs .sec4 {
    overflow: hidden;
    margin-bottom: 50px;
    margin-top: 20px;
}

.sutarbugs .message {
    padding: 50px;
    border: #666 1px solid;
    overflow: hidden;
    margin-bottom: 50px;
}

.sutarbugs .message .con_txt {
    margin-bottom: 0;
}

.sutarbugs .message .sp_title {
    margin-bottom: 20px;
    text-decoration: underline;
    line-height: 1.4;
}

.sutarbugs .message .info {
    overflow: hidden;
}

.sutarbugs .message .info .man {
    float: left;
    width: 250px;
    height: auto;
    margin-right: 50px;
}

.sutarbugs .message .info img {
    width: 100%;
    border-radius: 100%;
}

.sutarbugs .message .info .ment {
    float: left;
    font-size: 28px;
    color: #f16e94;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: underline;
    margin-top: 50px;
}

.sutarbugs .message .info .ment span {
    display: block;
    margin-bottom: 10px;
    font-size: 19px;
    color: #333;
    font-weight: 700;
    text-decoration: none;
}

.sutarbugs .sec5 .img {
    margin-bottom: 0;
}

/* .k_su K-water의 수 */
.k_su .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.k_su .sec2 .con_txt {
    margin-bottom: 0;
}

/* .k_report K-water 리포트 */
.k_report .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.k_report .sec2 {
    overflow: hidden;
    margin-bottom: 50px;
}

.k_report .sec3 {
    overflow: hidden;
    margin-bottom: 0;
}

.k_report .sec1 .con_left .img {
    margin-bottom: 7px;
}

.k_report .sec1 .con_left .img img {
    margin-bottom: 0;
}

.k_report .sec1 .con_left .sub_title {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.k_report .sec1 .con_left .con_txt {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

.k_report .sec4 ul.photo_list2 li span {
    font-size: 18px;
    color: #666;
}

.k_report .img_tag {
    position: relative;
    top: 0;
    left: 0;
}

.k_report .con_txt {
    letter-spacing: -0.05em;
}

.k_report .img_tag img {
    width: 100%;
}

/*.k_report .img_tag .po-a { position:absolute; bottom:-1em; right:1em; width:150px;}*/
/* .po-a 12월호부터 다시 사용할 수 있으므로 남겨둠*/

.k_report .img_tag .temp_char {
    width: 35%;
    max-width: 200px;
}

/* 방울이 이미지, 다음호(22년 12월호 부터) .po-a 클래스 사용해서 레이아웃 잡고 하고 해당 css 삭제 */

/* .k_esg  */
.k_esg .img_center {
    margin: 30px 0 50px 0;
}

.k_esg .notice {
    font-size: 15px;
}

.k_esg .img_center span {
    font-size: 17px;
    margin-top: 10px;
    max-width: 1000px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.k_esg .con_txt span {
    background: #f7ee96;
}

.k_esg .page_wrap {
    box-sizing: border-box;
    padding: 30px 5%;
    border: 2px solid #aadfcc;
    border-radius: 30px;
}

.k_esg .img_center {
    margin: 30px 0 50px 0;
}

.k_esg .notice {
    font-size: 15px;
}

.k_esg .img_center span {
    font-size: 17px;
    margin-top: 10px;
    max-width: 1000px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

/* .goodday 어느 멋진 날 */
.goodday .sec1 .mb2em0 {
    margin-bottom: 0em;
}

.goodday .sec1 {
    overflow: hidden;
    margin-bottom: 40px;
}

.goodday .sec1 .mb2em0 {
    margin-bottom: 2em;
}

.goodday .sec1 .con_left p:last-child {
    margin-bottom: 0;
}

.goodday .sec1 .con_right {
    margin-top: 0;
}

.goodday .sec2 {
    margin-bottom: 40px;
}

.goodday .sec3 {
    margin-bottom: 50px;
}

.goodday .sec4 .con_right > .ment_type1 {
    text-align: left;
    font-size: 28px;
    color: #00ab89;
    line-height: 1.4em;
    margin-top: 0;
}

.goodday .sec4 .con_right > .ment_type1 .que {
    display: block;
}

.goodday .sec4 .con_right > .ment_type1 .que:last-child {
    margin-top: 10px;
}

.goodday .sec4 .con_right > .paint_img {
    margin-top: 20px;
}

.goodday .sec4 .con_right > .paint_img img {
    width: 100%;
    height: auto;
}

.goodday .sec4 > .img {
    margin-bottom: 0;
}

.goodday .sec4 .ment_type1 {
    text-align: left;
    font-size: 28px;
    color: #ed6c00;
    line-height: 1.4em;
    margin-top: 0;
}

.goodday .sec4 .ment_type1 .que {
    display: block;
}

.goodday .sec4 .ment_type1 .que:last-child {
    margin-top: 10px;
}

/* .mind 마음상담소 */
.mind > div:last-child > .con_txt {
    margin-bottom: 0;
}

.mind .sec1 {
    margin-bottom: 50px;
    overflow: hidden;
}

.mind .sec1 .ment_type1 {
    color: #e45e73;
    font-size: 28px;
    line-height: 1.4em;
    letter-spacing: -0.075px;
    float: left;
}

.mind .sec1 .img {
    float: right;
}

.mind .sec1 .left {
    width: 70%;
    color: #e95372;
    font-size: 28px;
    line-height: 1.4em;
    letter-spacing: -0.075px;
}

.mind .sec1 .que1,
.mind .sec1 .que2 {
    display: block;
}

.mind .sec1 .que1 {
    margin-bottom: 10px;
}

.mind .sec1 .que2 {
    margin-top: 10px;
}

.mind .sec1 .right {
    width: 20%;
}

.mind .sec1 .right img {
    width: 100%;
    max-width: 300px;
}

/* sub_videoevent 퀴즈있수다 */
.sub_videoevent {
    margin-top: 100px;
    padding-bottom: 70px;
}

.sub_videoevent .mgt100-50 {
    margin-top: 100px;
}

.sub_videoevent h5 {
    color: #25aae2;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.04em;
}

.sub_videoevent .sec1 p {
    margin-top: 1em;
}

.sub_videoevent .sec2 {
    width: 100%;
    box-sizing: border-box;
    border: 5px solid #231815;
    border-radius: 20px;
    overflow: hidden;
    margin: 50px auto 50px;
    position: relative;
    padding-bottom: 50px;
}

.sub_videoevent .sec2 .event_title {
    width: 100%;
    height: 110px;
    background: #e19cab;
    border-bottom: 5px solid #231815;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub_videoevent .sec2 .event_title span {
    font-family: 'JalnanOTF';
    font-size: 48px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    display: inline-block;
}

.sub_videoevent .sec2 .event_title span:first-child {
    color: #fff;
    margin-right: 0.4em;
}

.sub_videoevent .sec2 .event_title span:last-child {
    color: #fff;
}

.sub_videoevent .sec2 .event_title2 {
    width: 100%;
    height: 110px;
    background: #99c7c7;
    border-bottom: 5px solid #231815;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub_videoevent .sec2 .event_title2 span {
    font-family: 'JalnanOTF';
    font-size: 48px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    display: inline-block;
}

.sub_videoevent .sec2 .event_title2 span:first-child {
    color: #fff;
    margin-right: 0.4em;
}

.sub_videoevent .sec2 .event_title2 span:last-child {
    color: #fff;
}

.sub_videoevent .sec2 .sec2_bg {
    background: url('../img/con_videoevent_bg.jpg') no-repeat;
}

.sub_videoevent .sec2 b {
    display: inherit;
    text-align: center;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.075em;
    color: #333;
    margin: 0px auto;
    padding: 50px 0;
}

.sub_videoevent .sec2 .sub_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 765px;
    padding: 0 20px;
}

.sub_videoevent .sec2 .sub_inner .yt_wrap {
    position: relative;
    padding-top: 56.25%;
    margin-bottom: 40px;
}

.sub_videoevent .sec2 .sub_inner .yt_wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

.sub_videoevent .sec3 {
    padding: 50px 0;
    box-sizing: border-box;
    border: solid 2px #25aae2;
    border-radius: 20px;
}

.sub_videoevent .sec3 .sub_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 765px;
    padding: 0 20px;
}

.sub_videoevent .sec3 b {
    display: inherit;
    text-align: center;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.075em;
    color: #333;
    margin: 0px auto;
    padding: 50px 0;
}

.sub_videoevent .mailpost {
    padding-bottom: 30px;
}

.sub_videoevent .mailpost label,
.sub_videoevent .mailpost .agree > .agree_check ul li > input {
    pointer-events: inherit;
    cursor: pointer;
}

.sub_videoevent .mailpost .agree {
    background-color: #ededed;
    padding: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}

.sub_videoevent .mailpost .agree > .agreeTit {
    color: #cc3333;
}

.sub_videoevent .mailpost .agree > .agreeItem li {
    line-height: 1.6;
}

.sub_videoevent .mailpost .agree > .agree_check > p {
    margin-bottom: 20px;
}

.sub_videoevent .mailpost .agree > .agree_check ul {
    display: flex;
}

.sub_videoevent .mailpost .agree > .agree_check ul li {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.sub_videoevent .mailpost .agree > .agree_check ul li > input.radioAgree {
    margin: 0;
    margin-right: 4px;
    width: 20px;
    height: 20px;
}

.sub_videoevent .mailpost .agree > .agree_check ul li > label {
    font-size: 15px;
    color: #666;
}

.sub_videoevent .mailpost .detail {
    background-color: #ededed;
    padding: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}

.sub_videoevent .mailpost .detail ul > li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.sub_videoevent .mailpost .detail ul > li:last-child {
    margin-bottom: 0;
}

.sub_videoevent .mailpost .detail ul > li > span {
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
}

.sub_videoevent .mailpost .videoevent_submit {
    padding: 15px 10px;
    border: 1px solid #999;
    border-radius: 10px;
    margin: 5px auto 20px;
    box-sizing: border-box;
    width: 100%;
    font-size: 18px;
}

.sub_videoevent .mailpost .videoevent_txt_answer {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 80px;
    border: 1px solid #999;
    border-radius: 10px;
    margin: 5px auto 20px;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.sub_videoevent .mailpost .event_submit {
    display: block;
    width: 370px;
    margin: 30px auto;
    height: 90px;
    text-align: center;
    background-color: #fff;
    border: 5px solid #231815;
    border-radius: 15px;
    position: relative;
    box-sizing: border-box;
}

.sub_videoevent .mailpost .event_submit > input:hover,
.sub_videoevent .mailpost .event_submit > a:hover {
    left: -5px;
    top: -5px;
    background-color: #2192c1;
}

.sub_videoevent .mailpost .event_submit > input,
.sub_videoevent .mailpost .event_submit > a {
    position: absolute;
    left: -15px;
    top: -15px;
    color: #fff;
    background-color: #25aae2;
    width: 370px;
    height: 90px;
    border-radius: 15px;
    font-size: 36px;
    font-weight: 700;
    border: 5px solid #231815;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.5s;
    transition-property: background-color, top, left;
    line-height: 80px;
}

/* issue 이슈있수다*/
.issue .sec1 {
    margin-bottom: 50px;
}

.issue .con_right {
    padding: 5%;
    box-sizing: border-box;
    border: 5px solid #66c6de;
    border-radius: 20px;
    position: relative;
}

.issue .con_right p {
    margin-bottom: 0;
}

.issue .con_right::after {
    content: '';
    background-color: #fad9e7;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #66c6de;
    border-radius: 20px 20px 0 0;
    box-sizing: border-box;
    width: calc(100% + 10px);
    height: 40px;
}

@media screen and (max-width: 1024px) {
    .issue .con_right {
        padding: 60px 5% 5% 5%;
    }
}

/* k_focus1 K-water 포커스 1 */
.k_focus1 .sec1 {
    overflow: hidden;
    margin-bottom: 0;
}

.k_focus1 .sec1 .img {
    margin-bottom: 50px;
}

.k_focus1 .sec1 .con_left .img,
.k_focus1 .sec1 .con_right .img {
    margin-bottom: 40px;
}

.k_focus1 .sec1 .con_txt {
    margin-bottom: 50px;
}

.k_focus1 .sec2 {
    overflow: hidden;
    margin-bottom: 40px;
}

.k_focus1 .sec2 .img {
    margin-bottom: 0;
}

.k_focus1 .sec2 .ment_type2 {
    text-align: left;
    font-size: 28px;
    color: #005195;
    line-height: 1.4;
    margin-top: 60px;
}

.k_focus1 .sec2 .ment_type2 .que {
    display: block;
}

.k_focus1 .sec2 .ment_type2 .que img {
    width: 60px;
    height: auto;
    margin: 15px 0 0;
}

.k_focus1 .sec3 {
    clear: both;
}

.k_focus1 .con_notice {
    margin-bottom: 0;
}

.k_focus1 .box {
    max-width: 800px;
    margin: 0 auto;
    background: #eae5f2;
}

.k_focus1 .box .sub_title {
    line-height: 1.4;
    background: #9c7ab5;
    color: #fff;
    font-weight: 600;
    padding: 20px 5%;
    box-sizing: border-box;
    text-align: center;
}

.k_focus1 .box .inner {
    padding: 20px 5%;
    box-sizing: border-box;
}

.k_focus1 .box .inner .con_txt {
    margin-bottom: 0;
    line-height: 2;
}

/* k_focus2 K-water 포커스 2 */
.k_focus2 .sec1 {
    margin-bottom: 50px;
}

.k_focus2 .sec2 {
    overflow: hidden;
    margin-bottom: 50px;
}

.k_focus2 .sec2 .con_txt {
    margin-bottom: 0;
}

.k_focus2 .sec2 .img {
    text-align: right;
}

.k_focus2 .sec3 {
    overflow: hidden;
}

.k_focus2 .sec3 p.img {
    margin-bottom: 0;
}

.k_focus2 .sec3 .con_notice {
    margin-bottom: 0;
}

.k_focus2 .ment_type2 {
    text-align: left;
    font-size: 28px;
    color: #405f89;
    line-height: 1.4;
}

.k_focus2 .ment_type2 .que {
    display: block;
}

.k_focus2 .ment_type2 .que img {
    width: 60px;
    height: auto;
    margin: 15px 0 0;
}

.k_focus2 .comma-word {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

@media screen and (max-width: 780px) {
    .k_focus2 .ment_type2 {
        text-align: left;
        font-size: 18px;
        color: #405f89;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .k_focus2 .ment_type2 .que {
        display: block;
    }

    .k_focus2 .ment_type2 .que img {
        width: 40px;
        height: auto;
        margin: 10px 0 0;
    }

    .k_focus2 .comma-word {
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: center;
    }
}

/* .news K-water News */
.news .sec1,
.news .sec2,
.news .sec3,
.news .sec4,
.news .sec5 {
    overflow: hidden;
    margin-bottom: 50px;
}

.news .sec6 {
    overflow: hidden;
    margin-bottom: 0;
}

.news .con_txt {
    /*18px;*/
    font-size: 1.1rem;
    margin-bottom: 0;  
}

.news .con_txt_line {
    /*18px;*/
    font-size: 1.1rem;
    color: #8A2BE2;
    margin-bottom: 0;
    display: inline-block; 
    border-bottom: 2px solid #8A2BE2;  
}

.news .num {
    background: url('../img/dot_3b4c89.jpg') repeat-x 50%;
    margin-bottom: 20px;
}

.news .num span {
    display: inline-block;
    color: #3b4c89;
    font-weight: 700;
    background: #fff;
    border: #3b4c89 1px solid;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.news .con_left {
    float: left;
    width: 38%;
}

.news .con_right {
    float: right;
    width: 54%;
}

/* .diy 방울이와 DIY */
.diy {
    background: #fff;
    margin-bottom: 0;
}

.diy .img img {
    width: 70%;
    height: auto;
}

.diy .sec3 {
    overflow: hidden;
    margin-bottom: 10px;
}

.diy h5.sub_title {
    font-size: 36px;
    color: #407abe;
    font-weight: 700;
    line-height: 1.2;
}

.diy h5.sub_title span {
    font-size: 30px;
    font-weight: 100;
}

.diy .con_txt {
    color: #333;
}

.diy .sp_title {
    display: inline-block;
    font-size: 24px;
    color: #407abe;
    font-weight: 700;
    padding-bottom: 0;
    margin-bottom: 10px;
    border-bottom: #407abe 1px solid;
}

.diy .sec5 {
    background: #e0f1ed;
    padding: 50px;
}

.diy .sec5 .sp_title {
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 0;
}

.diy .sec5 a {
    display: inline-block;
    font-size: 24px;
    color: #407abe;
    background: #fff;
    padding: 10px 30px;
    border-radius: 10px;
}

.diy2 {
    overflow: hidden;
    /* background-image: url('../img/con_diy_bg.jpg'); */
    margin-top: 0;
    padding-top: 100px;
    background-size: cover;
    background-position: center top;
}

.diy2 .sec1 {
    overflow: hidden;
    margin-bottom: 50px;
}

.diy2 p {
    margin-bottom: 1em;
    color: #666;
    text-align: center;
}

.diy2 .img img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.diy2 .i img {
    width: 24px;
    height: auto;
}

.diy2 .con_center {
    text-align: center;
}

.diy2 .sec2 {
    display: block;
    text-align: center;
    background: #f3bcc5;
    padding: 30px;
}

.diy2 .sec2 em {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.diy2 .con_left {
    float: left;
    width: 38%;
}

.diy2 .con_right {
    float: right;
    width: 54%;
}

.diy2 h5.sub_title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.diy2 .con_txt {
    margin-bottom: 40px;
    word-break: break-all;
}

/* .culture 수놓은 문화 */
.culture .cir_tag {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid var(--culture-color_01);
}

.culture .cir_tag::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--culture-color_01);
}

.culture .info {
    max-width: fit-content;
    margin: 0 auto;
}

.culture ul.photo2 {
    display: flex;
    justify-content: space-between;
}

.culture ul.photo2 li {
    width: calc(50% - 20px);
}

.culture ul.photo2 li img {
    width: 100%;
}

.culture ul.photo2 li span {
    font-size: 15px;
    margin-top: 7px;
}

.culture .sub_title {
    text-align: center;
    display: inline-block;
    background: var(--culture-color_02);
    color: #fff;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 30px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 780px) {
    .sub_event .event_submit {
        width: 280px;
        margin: 30px auto;
        height: 70px;
        border: none;
    }

    .sub_event .event_submit > input,
    .sub_videoevent .mailpost .event_submit > a {
        width: 280px;
        height: 70px;
        font-size: 24px;
        top: 0;
        left: 0;
        border: 3px solid #231815;
        line-height: 70px;
    }

    .sub_event .event_submit > input:hover,
    .sub_videoevent .mailpost .event_submit > a:hover {
        top: 0;
        left: 0;
        background-color: #25aae2;
    }

    .sub_event .sub_title {
        color: #25aae2;
    }

    .sub_event .eventpost {
        padding: 30px 5%;
        border: 2px solid #ccc;
        box-sizing: border-box;
        border-radius: 30px;
        margin: 0 auto;
        max-width: 1000px;
    }

    .sub_event .mt15 {
        margin-top: 15px;
    }

    .sub_event label {
        font-size: 17px;
        line-height: 1;
        cursor: pointer;
    }

    .sub_event .eventform_1_1,
    .sub_event .eventform_1_2,
    .sub_event .eventform_1_3,
    .sub_event .eventform_2_1,
    .sub_event .eventform_2_2,
    .sub_event .eventform_2_3,
    .sub_event .eventform_2_4,
    .sub_event .eventform_3_1,
    .sub_event .eventform_3_2,
    .sub_event .eventform_3_3,
    .sub_event .eventform_3_4,
    .sub_event .eventform_4_1 {
        box-sizing: border-box;
        padding-left: 0px;
        margin-bottom: 30px;
    }

    .sub_event .eventform textarea {
        width: 100%;
        max-width: 800px;
        height: 4em;
        font-size: 17px;
    }

    .sub_event .eventform {
        box-sizing: border-box;
        padding-left: 5px;
        margin-bottom: 30px;
    }

    .sub_event fieldset dl {
        margin-bottom: 15px;
    }

    .sub_event fieldset dl > dt {
        margin-bottom: 10px;
    }

    .sub_event .event_nametel {
        flex-direction: column;
        align-items: start;
    }
}

/* k_sns k-water SNS */
.sns-bg-g {
    background-color: #fffaea;
}

.k_sns {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.k_sns .sec:first-of-type {
    margin-top: 50px;
}

.k_sns .sec {
    border-top: 1px dashed #666;
    padding-top: 30px;
}

.k_sns h5.sub_title {
    margin-bottom: 0px;
}

.k_sns .photo2 {
    align-items: end;
}

.k_sns h6 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 600;
}

@media screen and (max-width: 780px) {
    .culture ul.photo2 {
        flex-direction: column;
    }

    .culture ul.photo2 li {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 900px) {
    .k_report .img_tag .p-absol {
        display: none;
    }
}

/*print visual*/
#superPrinter .people_visual {
    background: url('../img/con_people_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 60% top;
}

#superPrinter .earth_visual {
    background: url('../img/con_earth_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 50% top;
}

#superPrinter .doit_visual {
    background: url('../img/con_doit_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 45% top;
}

#superPrinter .sutarbugs_visual {
    background: url('../img/con_sutarbugs_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 57% top;
}

#superPrinter .k_su_visual {
    background: url('../img/con_k_su_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 40% top;
}

#superPrinter .goodday_visual {
    background: url('../img/con_goodday_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 35% top;
}

#superPrinter .mind_visual {
    background: url('../img/con_mind_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 60% top;
}

#superPrinter .quiz_visual {
    background: url('../img/con_quiz_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 54% top;
}

#superPrinter .k_esg_visual {
    background: url('../img/con_k_esg_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 40% top;
}

#superPrinter .k_focus1_visual {
    background: url('../img/con_k_focus1_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 80% top;
}

#superPrinter .k_focus2_visual {
    background: url('../img/con_k_focus2_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 40% top;
}

#superPrinter .news_visual {
    background: url('../img/con_news_visual2.jpg') no-repeat;
    background-size: cover;
    background-position: 45% top;
}

#superPrinter .diy_visual {
    height: 350px;
    background: url('../img/con_diy_mvisual.jpg') no-repeat;
    background-size: cover;
    background-position: left top;
}

#superPrinter .k_report_visual {
    background: url('../img/con_k_report_visual.jpg') no-repeat;
    background-size: cover;
    background-position: 65% top;
}

.cul-poster {
    width: 100%;
    height: 560px;
}
.cul-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1400px) {
    .sub_content_inner {
        padding: 0 40px;
    }

    /* -------------------------------------------- */
    /* 서브 비주얼 공통 */
    .vis_txt {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1280px) {
    /* -------------------------------------------- */
    /* 서브 비주얼 이미지 설정 */
    .sub_thumlist_visual {
        height: 436px;
        background: #bfd3dd url('../img/con_thumlist_0.jpg') no-repeat;
        background-size: cover;
        background-position: center top;
    }
}

@media screen and (max-width: 1000px) {
    /* -------------------------------------------- */
    /* .sub_thumlist */
    .sub_thumlist .thumbList_Box .thumb_book li {
        width: 50%;
    }

    .sub_thumlist .thumbList_Box .thumbYear span {
        font-size: 35px;
    }

    .sec {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 910px) {
    /* -------------------------------------------- */
    /* .sub_thumlist */
    .thumbList .tlLink {
        width: 50%;
        transform: rotateY(360deg);
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        -ms-transform: rotateY(360deg);
    }
}

@media screen and (max-width: 600px) {
    /* 기본 폼 */
    .sub {
        margin-top: 70px;
        margin-bottom: 70px;
        overflow: hidden;
    }

    .sub p {
        margin-bottom: 0.5em;
    }

    .pbr {
        display: none !important;
    }

    .mbr {
        display: block !important;
    }

    .pc_img {
        display: none !important;
    }

    .mo_img {
        display: block !important;
    }

    .mo_img img {
        width: 100%;
        height: auto;
    }

    .sub .con_left {
        float: none;
        width: 100%;
    }

    .sub .con_right {
        float: none;
        width: 100%;
    }

    .content_txt > li {
        margin-top: 50px;
    }

    .sub_content_inner {
        padding: 0 20px;
    }

    .button_wrap {
        text-align: center;
        margin-top: 30px;
    }

    .sub_common {
        flex-direction: column;
    }

    .sub_common .button_wrap {
        text-align: center;
        margin-top: 30px;
    }

    .sub_common .sub_sns_wrap {
        display: flex;
        justify-content: center;
    }

    ul.photo_list2 li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }

    ul.photo_list2 li:last-child {
        margin-bottom: 0;
    }

    ul.photo_list2 li span {
        display: block;
        margin-top: 7px;
        margin-bottom: 20px;
    }

    ul.photo_list2-64 {
        flex-direction: column;
    }

    ul.photo_list2-64 li:first-child {
        width: 100%;
    }

    ul.photo_list2-64 li:last-child {
        width: 100%;
    }

    ul.photo_list2-64 li span {
        display: block;
        margin-top: 7px;
        margin-bottom: 20px;
    }

    ul.photo_list4 li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }

    ul.photo_list4 li:last-child {
        margin-right: 0;
    }

    ul.photo_list4 li img {
        width: 100%;
        height: auto;
    }

    .img_tag img {
        width: 100%;
        height: auto;
    }

    /* 검은 글씨 ver. */
    .sub_visual_wrap .vis_txt > .tb1_2 > span {
        display: inline-block;
        font-size: 48px;
        line-height: 1.2em;
        font-weight: bold;
    }

    .sub_visual_wrap .vis_txt > .tb1_2 > span em {
        display: inline-block;
        font-size: 28px;
        font-weight: 500;
        line-height: 1.2em;
        margin-top: 15px;
    }

    /* 흰 글씨 ver. */
    .sub_visual_wrap .vis_txt > .tw1_2 > span {
        color: #fff;
        display: inline-block;
        font-size: 48px;
        line-height: 1.2em;
        font-weight: bold;
    }

    .sub_visual_wrap .vis_txt > .tw1_2 > span em {
        display: inline-block;
        font-size: 28px;
        font-weight: 500;
        line-height: 1.2em;
        margin-top: 15px;
    }

    /* -------------------------------------------- */
    /* 서브 비주얼 공통 */
    .sub_visual_wrap .vis_txt {
        margin: 90px auto 0;
        padding: 0 20px 50px;
    }

    /* 서브 비주얼 공통 텍스트 */
    .sub_visual_wrap .vis_txt > .tb1_1,
    .sub_visual_wrap .vis_txt > .tw1_1 {
        font-size: 22px;
    }

    .sub_visual_wrap .vis_txt > .tb1_2 > span,
    .sub_visual_wrap .vis_txt > .tw1_2 > span {
        font-size: 36px;
        font-weight: bold;
    }

    .sub_visual_wrap .vis_txt > .tb1_3,
    .sub_visual_wrap .vis_txt > .tw1_3 {
        font-size: 16px;
    }

    .sub_visual_wrap .vis_txt > .tb1_4 {
        font-size: 16px;
    }

    /* 중앙배치 - 검색, 과월호 */
    .sub_visual_wrap .tw2_1 {
        margin-top: 130px;
        font-size: 36px;
    }

    .sub_visual_wrap .tb2_1 {
        margin-top: 130px;
        font-size: 36px;
    }

    /* 서브 물결 */
    .sub_visual_wrap .sub_wave {
        position: absolute;
        background: url('../../images/common/sub_wave.png') repeat-x;
        width: 100%;
        height: 12px;
        bottom: 0;
    }

    .sub_visual_wrap .sub_wave {
        position: absolute;
        background: url('../../images/common/sub_wave.png') repeat-x;
        width: 100%;
        height: 12px;
        bottom: 0;
    }

    /* -------------------------------------------- */
    /* 서브 비주얼 이미지 설정 */

    .sub_thumlist_visual {
        height: 340px;
        background: #bfd3dd url('../img/con_thumlist_m0.jpg') no-repeat;
        background-size: contain;
        background-position: 0 bottom;
    }

    .sub_videoevent_visual {
        height: 400px;
        background: url('../img/con_videoevent_m0.jpg') no-repeat;
        background-size: cover;
        background-position: right top;
    }

    .z_life_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../../images/main/main_3.jpg') no-repeat;
        background-size: cover;
        background-position: 80% center;
    }
    .z_office_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_z_office_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 77% top;
    }

    .z_shop_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_shop_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 77% top;
    }

    .people_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_people_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 80% center;
    }

    .earth_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_earth_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 85% top;
    }

    .doit_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_doit_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 80%;
    }

    .health_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_health_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 70% center;
    }

    .sutarbugs_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_sutarbugs_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 40% top;
    }

    .k_su_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_k_su_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 40% top;
    }

    .goodday_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_goodday_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 80% center;
    }

    .mind_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_mind_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 30% top;
    }

    .quiz_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_quiz_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 60% top;
    }

    .k_esg_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_k_esg_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 80% top;
    }

    .k_focus1_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_k_focus1_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 91% top;
    }

    .k_focus2_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_k_focus2_visual.jpg') no-repeat;
        background-size: cover;
        background-position: 30% top;
    }

    .news_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_news_visual2.jpg') no-repeat;
        background-size: cover;
        background-position: 40% top;
    }

    .diy_visual {
        height: 350px;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_diy_mvisual.jpg') no-repeat;
        background-size: cover;
        background-position: 50% top;
    }

    .culture_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_culture_visual_m.jpg') no-repeat;
        background-size: cover;
        background-position: 80% top;
    }

    .k_sns_visual {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../img/con_k_sns_visual.jpg') no-repeat;
        background-size: cover;
        background-position: center top;
    }
    .sub_visual_wrap .vis_txt > .tw1_3 {
        width: 100%;
    }
    .sub_visual_wrap .vis_txt > .tw1_4 {
        font-size: 13px;
        line-height: 1.2em;
    }
    /* 서브 페이지 모바일 시작 */
    /* // - 검색 + 과월호 + 이벤트 페이지 */
    /* -------------------------------------------- */
    /* .sub_search */
    .sub_search {
        margin-top: 50px;
        padding-bottom: 70px;
    }

    .sub_search #tipue_search_results_count {
        font-size: 20px;
    }

    .sub_search .tipue_search_result {
        padding-left: 0px;
    }

    .sub_search .tipue_search_content_title {
        padding-bottom: 20px;
    }

    .sub_search .tipue_search_image {
        position: relative;
        max-width: none;
    }

    .sub_search .tipue_search_content_text {
        padding-top: 10px;
    }

    .sub_search #tipue_search_foot_boxes {
        padding-top: 40px;
    }

    .sub_search #tipue_search_foot_boxes .tipue_search_foot_box,
    .sub_search #tipue_search_foot_boxes .current {
        padding: 0 10px;
    }

    /* -------------------------------------------- */
    /* .sub_thumlist */
    .sub_thumlist .thumbList .tlLink {
        width: 100%;
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
    }

    .sub_thumlist .thumbList .tlLink {
        width: 100%;
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
    }

    /* -------------------------------------------- */

    /* 서브페이지 모바일 제작 */
    /* -------------------------------------------- */
    /* .z_trip 제로여행 */
    .z_trip .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .z_trip .sec2 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    /*.z_trip .ment_type1 {margin-bottom:40px;text-align:center;font-size: 20px;color:#01ab8a;line-height:1.4;}
    .z_trip .ment_type1 .que img {width:40px;height:auto;margin:10px 0 0;}*/

    .z_trip .sp_title {
        margin-bottom: 20px;
    }

    .z_trip .trip_list li {
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: #999 1px dashed;
    }

    .z_trip .trip_list li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .z_trip .trip_list li .img {
        float: none;
        width: 100%;
    }

    .z_trip .trip_list li .txt_w {
        float: none;
        width: 100%;
        margin-top: 10px;
    }

    .z_trip .trip_list li .txt_w h6.trip_name {
        margin-bottom: 20px;
    }

    .z_trip .trip_list li .txt_w h6.trip_name span {
        display: inline-block;
        /*			background-color: ;*/
        font-size: 21px;
        color: #fff;
        font-weight: 700;
        border-radius: 60px;
        padding: 10px 30px;
    }

    .z_trip .trip_list li .txt_w .txt {
        margin-bottom: 30px;
    }

    .z_trip .trip_list li .txt_w .address {
        color: #222;
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

    .z_trip .trip_list li .txt_w .address i {
        position: absolute;
        top: 0;
        left: 0;
    }

    .z_trip .trip_list li .txt_w .address i img {
        width: 24px;
        height: auto;
    }

    /* .z_shop 제로상점 */
    .z_shop .sec1 {
        overflow: hidden;
        margin-bottom: 0;
    }

    .z_shop .sec1 .con_left {
        margin-top: 0;
    }

    .z_shop .sec2 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .z_shop .sec2 .ment_type2 {
        text-align: left;
        font-size: 20px;
        line-height: 1.4;
    }

    .z_shop .sec2 .ment_type2 .que {
        display: block;
    }

    .z_shop .sec2 .ment_type2 .que img {
        width: 40px;
        height: auto;
        margin: 10px 0 0;
    }

    .z_shop .sp_title {
        font-size: 32px;
        color: #b17f9e;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .z_shop .sec3 .ment {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
    }

    .z_shop .sec3 .ment span {
        display: block;
        font-size: 19px;
        margin-top: 10px;
    }

    .z_shop .ceo_img {
        text-align: center;
        margin-bottom: 30px;
    }

    .z_shop .ceo_img img {
        width: 100%;
        height: auto;
    }

    .z_shop .shop_info .left_img {
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .z_shop .shop_info .left_img img {
        width: 100%;
        height: auto;
    }

    .z_shop .shop_info .shop_txt {
        float: none;
    }

    .z_shop .shop_name {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .z_shop .address {
        color: #222;
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

    .z_shop .address i {
        position: absolute;
        top: 0;
        left: 0;
    }

    .z_shop .address i img {
        width: 24px;
        height: auto;
    }

    .z_shop .con_center .img {
        width: 100%;
        margin: 0 auto 30px;
    }

    .z_shop .comma-word {
        display: block;
    }

    /* .people 무해한 사람 */
    .people .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .people .sec1 .con_right .img {
        text-align: center;
    }

    .people .sec1 .con_right .img img {
        width: 80%;
        height: auto;
    }

    .people .sec3 {
        margin-bottom: 50px;
    }

    .people h4.interview {
        font-size: 20px;
        line-height: 1.4;
    }

    .people .shop_info {
        overflow: hidden;
        margin-top: 30px;
    }

    .people .shop_info .left_img {
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .people .shop_info .left_img img {
        width: 100%;
        height: auto;
    }

    .people .shop_info .shop_txt {
        float: none;
    }

    .people .shop_name {
        font-size: 32px;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
    }

    .people .address {
        color: #222;
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

    .people .address i {
        position: absolute;
        top: 0;
        left: 0;
    }

    .people .address i img {
        width: 24px;
        height: auto;
    }

    /* .earth 지구보고서 */
    .earth .con_center img {
        width: 100%;
    }

    /* .city 내가 그린 도시 */
    .city .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .city .sec1 .ment_type4 {
        text-align: left;
        font-size: 20px;
        color: #239ed9;
        line-height: 1.4;
    }

    .city .sec1 .ment_type4 .que {
        display: block;
    }

    .city .sec1 .ment_type4 .que img {
        width: 40px;
        height: auto;
        margin: 10px 0 0;
    }

    .city .con_center img {
        width: 100%;
    }

    /* .doit 두잇두잇 */
    .doit .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .doit .sec1 .con_right {
        margin-top: 30px;
    }

    .doit .sec2 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .doit .notice {
        text-align: left;
    }

    /* .health 건강처방전 */
    .health .sec1 {
        overflow: hidden;
        margin-bottom: 0;
    }

    .health .sec2 {
        overflow: hidden;
        margin-bottom: 0;
    }

    .health .sec3 .con_txt {
        margin-bottom: 0;
    }

    .health .tag {
        overflow: hidden;
        margin-bottom: 50px;
    }

    .health .tag .left {
        float: none;
        font-size: 26px;
        color: #58b971;
        font-weight: 700;
        line-height: 1.6;
        padding-top: 0;
        margin-bottom: 20px;
    }

    .health .tag .left span {
        display: block;
    }

    .health .tag .right {
        float: none;
    }

    .health .tag .right img {
        width: 100%;
        height: auto;
    }

    .health .sp_title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    /* .sutarbugs 수(水)타벅스가 간다 */
    .sutarbugs .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .sutarbugs .sec2 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .sutarbugs .sec2 .circle .img {
        float: left;
        width: 40%;
        height: auto;
        margin-right: 4%;
    }

    .sutarbugs .sec2 .circle .txt {
        float: left;
        width: 56%;
        font-size: 24px;
        color: #333;
        font-weight: 700;
        line-height: 1.3;
        margin-top: 20px;
    }

    .sutarbugs .sec3 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .sutarbugs .sec3 .con_txt {
        margin-bottom: 0;
    }

    .sutarbugs .sec4 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .sutarbugs .message {
        padding: 4%;
        border: #666 1px solid;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .sutarbugs .message .con_txt {
        margin-bottom: 0;
    }

    .sutarbugs .message .sp_title {
        margin-bottom: 10px;
        text-decoration: underline;
        line-height: 1.4;
    }

    .sutarbugs .message .info {
        overflow: hidden;
        margin-bottom: 20px;
    }

    .sutarbugs .message .info .man {
        float: none;
        width: 50%;
        height: auto;
        margin: auto;
        margin-bottom: 10px;
    }

    .sutarbugs .message .info img {
        width: 100%;
        border-radius: 100%;
    }

    .sutarbugs .message .info .ment {
        float: none;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.4;
        text-decoration: underline;
        margin-top: 10px;
    }

    .sutarbugs .message .info .ment span {
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
        color: #333;
        font-weight: 700;
        text-decoration: none;
    }

    .sutarbugs .sec5 .img {
        margin-bottom: 0;
    }

    /* .k_suK-water의 수 */
    .k_su .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .k_su .sec1 .con_txt {
        margin-bottom: 0;
    }

    .k_su .sec2 .con_txt {
        margin-bottom: 0;
    }

    /* .k_report K-water 리포트 */
    .k_report .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .k_report .sec2 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .k_report .sec1 .con_txt {
        margin-bottom: 10px;
    }

    .k_report .sec2 .con_txt {
        margin-bottom: 10px;
    }

    .k_report .sec3 {
        overflow: hidden;
        margin-bottom: 0;
    }

    .k_report .sec3 .con_txt {
        margin-bottom: 10px;
    }

    .k_report .sec1 .con_left {
        margin-bottom: 30px;
    }

    .k_report .sec1 .con_left .img {
        margin-bottom: 7px;
    }

    .k_report .sec1 .con_left .img img {
        margin-bottom: 0;
    }

    .k_report .sec1 .con_left .sub_title {
        color: #333;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .k_report .sec1 .con_left .con_txt {
        font-size: 16px;
        color: #333;
        margin-bottom: 0;
    }

    .k_report .sec4 .con_txt {
        margin-bottom: 10px;
    }

    .k_report .sec4 ul.photo_list2 li span {
        font-size: 18px;
        color: #666;
    }

    /*.k_report .img_tag .po-a{ display:none; }*/
    /* .po-a 12월호부터 다시 사용할 수 있으므로 남겨둠 */

    /* .k_esg K-water 사전 */

    /* .goodday 어느 멋진 날 */
    .goodday .sec1 .mb2em0 {
        margin-bottom: 1em;
    }

    .goodday .sec1 .con_left {
        margin-bottom: 30px;
    }

    .goodday .sec1 .con_left p:first-child {
        margin-bottom: 1em;
    }

    .goodday .sec4 .con_right > .ment_type1 {
        font-size: 20px;
    }

    .goodday .sec4 .ment_type1 {
        font-size: 20px;
    }

    .goodday .sec4 .ment_type1 .que img {
        width: 40px;
    }

    /* .mind 마음상담소 */
    .mind .sec1 {
        display: block;
    }

    .mind .sec1 .ment_type1 {
        font-size: 20px;
        float: none;
    }

    .mind .sec1 .img {
        float: none;
        text-align: center;
    }

    .mind .sec1 .img img {
        width: 30%;
    }

    .mind .sec1 .left {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 20px;
    }

    .mind .sec1 .ment_type1 > .que1,
    .mind .sec1 .ment_type1 > .que2 {
        width: 40px;
    }

    .mind .sec1 .ment_type1 > .que1 {
        margin-bottom: 5px;
    }

    .mind .sec1 .ment_type1 > .que2 {
        margin-top: 5px;
    }

    .mind .sec1 .right {
        width: 90%;
        text-align: center;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    /* sub_videoevent 퀴즈있수다 */
    .sub_videoevent {
        margin-top: 70px;
        padding-bottom: 70px;
    }

    .sub_videoevent h5 {
        font-size: 20px;
        line-height: 1.3;
    }

    .sub_videoevent .sec2 {
        padding-bottom: 0px;
        margin-bottom: 30px;
    }

    .sub_videoevent .sec2 b {
        font-size: 22px;
        line-height: 28px;
        padding: 30px 20px;
    }

    .sub_videoevent .sec2 .sec2_bg {
        background: url('../img/con_videoevent_mbg.jpg') no-repeat;
        background-size: cover;
    }

    .sub_videoevent .sec2 .event_title span {
        font-size: 34px;
    }

    .sub_videoevent .sec2 .event_title2 span {
        font-size: 34px;
    }

    .sub_videoevent .mailpost {
        padding-bottom: 0;
    }

    .sub_videoevent .mailpost .event_submit {
        width: 280px;
        margin: 30px auto;
        height: 70px;
        border: none;
    }

    .sub_videoevent .mailpost .event_submit > input,
    .sub_videoevent .mailpost .event_submit > a {
        width: 280px;
        height: 70px;
        font-size: 24px;
        top: 0;
        left: 0;
        border: 3px solid #231815;
        line-height: 70px;
    }

    .sub_videoevent .mailpost .event_submit > input:hover,
    .sub_videoevent .mailpost .event_submit > a:hover {
        top: 0;
        left: 0;
        background-color: #25aae2;
    }

    .sub_videoevent .mgt100-50 {
        margin-top: 50px;
    }

    .sub_videoevent_visual {
        background-position: 80% 35%;
    }

    .sub_videoevent .sec3 {
        padding: 0 0 30px 0;
    }

    .sub_videoevent .sec3 b {
        font-size: 22px;
        line-height: 28px;
        padding: 30px 20px;
    }

    /* k_focus1 K-water 포커스 1 */
    .k_focus1 .sec1 {
        overflow: hidden;
        margin-bottom: 0;
    }

    .k_focus1 .sec1 .img {
        margin-bottom: 0;
    }

    .k_focus1 .sec1 .con_txt {
        margin: 20px 0;
    }

    .k_focus1 .sec1 .con_left .img,
    .k_focus1 .sec1 .con_right .img {
        margin-bottom: 20px;
    }

    .k_focus1 .sec2 {
        margin-bottom: 0;
    }

    .k_focus1 .sec2 .con_right {
        margin-top: 10px;
    }

    .k_focus1 .sec2 .ment_type2 {
        text-align: left;
        font-size: 20px;
        color: #00559e;
        line-height: 1.4;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .k_focus1 .sec2 .ment_type2 .que {
        display: block;
    }

    .k_focus1 .sec2 .ment_type2 .que img {
        width: 40px;
        height: auto;
        margin: 10px 0 0;
    }

    .k_focus1 .sec3 .con_right {
        margin-top: 30px;
    }

    /* k_focus2 K-water 포커스 2 */
    .k_focus2 .sec1 {
        margin-bottom: 30px;
    }

    .k_focus2 .sec2 {
        margin-bottom: 0;
    }

    .k_focus2 .sec2 .con_right {
        margin-top: 30px;
    }

    .k_focus2 .sec2 .con_txt {
        margin-bottom: 0;
    }

    .k_focus2 .sec2 img {
        width: 100%;
    }

    .k_focus2 .sec3 .con_left {
        margin-bottom: 30px;
    }

    /* .news K-water News */
    .news .sec1 {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .news {
        margin-top: 70px;
        margin-bottom: 70px;
        overflow: hidden;
    }

    .news p {
        margin-bottom: 0.5em;
    }

    .news .con_left {
        float: none;
        width: 100%;
    }

    .news .con_right {
        float: none;
        width: 100%;
    }

    .news .con_txt {
        margin-bottom: 0;
    }

    /* .diy 방울이와 DIY */
    .diy {
        margin-bottom: 0;
    }

    .diy2 {
        margin-top: 0;
    }

    .diy .img img {
        width: 100%;
    }

    .diy .sec5 {
        padding: 20px;
    }

    .diy .con_txt {
        margin-bottom: 20px;
    }

    .diy .sec3 {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 320px) {
    /* .sub_videoevent 퀴즈있수다 */
    .sub_videoevent .sec2 .mailpost .event_submit {
        width: 100%;
        max-width: 200px;
        margin: 30px auto;
        height: 60px;
    }

    .sub_videoevent .sec2 .mailpost .event_submit > input {
        width: 105%;
        max-width: 200px;
        height: 60px;
        font-size: 18px;
    }
}