/* ----- intro ----- */
.fix-intro { 
    overflow:hidden; 
    display:flex; 
    justify-content:center; 
    align-items:center; 
    position: fixed; 
    width: 100%; 
    height: 100%;
    z-index: 9999;
    background:#fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;    
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
}

.fix-intro.bg-none { 
    background:transparent;
}

.fix-intro:before { 
    content: ""; 
    position: absolute; 
    left: 0; 
    top: 0; 
    z-index:9999; 
    width: 100%; 
    height: 100vh; 
    background: url('../images/main_bg_circle.png') no-repeat center center; 
    /* background: #fff; */
    background-size:cover; 
    -webkit-transition: transform 1s ease;
    -moz-transition: transform 1s ease;
    -ms-transition: transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
}
/* 
.fix-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    text-align: center;
    font-size: 35px;
    line-height: 280px;
    -webkit-font-smoothing: antialiased;
}

.fix-animation::after,
.fix-animation::before {
    content: "";
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
}

.fix-animation::after {
box-shadow: inset 0 17.5px 0 rgba(250, 250, 0, 0.6), inset 17.5px 0 0 rgba(250, 200, 0, 0.6), inset 0 -17.5px 0 rgba(250, 150, 0, 0.6), inset -17.5px 0 0 rgba(250, 100, 0, 0.6);
-webkit-animation: rotar 2s -0.5s linear infinite;
        animation: rotar 2s -0.5s linear infinite;
}

.fix-animation::before {
box-shadow: inset 0 17.5px 0 rgba(0, 250, 250, 0.6), inset 17.5px 0 0 rgba(0, 200, 200, 0.6), inset 0 -17.5px 0 rgba(0, 150, 200, 0.6), inset -17.5px 0 0 rgba(0, 200, 250, 0.6);
-webkit-animation: rotarIz 2s -0.5s linear infinite;
        animation: rotarIz 2s -0.5s linear infinite;
}

@-webkit-keyframes rotar {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }
    50% {
        transform: rotateZ(180deg) scaleX(0.82) scaleY(0.95);
    }
    100% {
        transform: rotateZ(360deg) scaleX(1) scaleY(1);
    }
}

@keyframes rotar {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }
    50% {
        transform: rotateZ(180deg) scaleX(0.82) scaleY(0.95);
    }
    100% {
        transform: rotateZ(360deg) scaleX(1) scaleY(1);
    }
}

@-webkit-keyframes rotarIz {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }
    50% {
        transform: rotateZ(-180deg) scaleX(0.95) scaleY(0.85);
    }
    100% {
        transform: rotateZ(-360deg) scaleX(1) scaleY(1);
    }
}

@keyframes rotarIz {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }
    50% {
        transform: rotateZ(-180deg) scaleX(0.95) scaleY(0.85);
    }
    100% {
        transform: rotateZ(-360deg) scaleX(1) scaleY(1);
    }
} */


/* .fix-intro.imgnone strong img{
    opacity: 0;
} */

.fix-intro strong img {
    opacity:1;
    visibility:visible;
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display:block;
    z-index: 99999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;   
}

.fix-intro strong.action img{
    top: 43%;
}

.fix-intro.active strong img{ 
    opacity:0; 
    visibility:hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;    
}

.fix-intro.active:before {
	-webkit-transform: scale(4);
	-moz-transform: scale(4);
	-ms-transform: scale(4);
	-o-transform: scale(4);
    transform: scale(4);
}

.fix-intro.hidden { 
    display:none;
}

.fix-btn{
    opacity:0; 
    visibility:visible;
    position:absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    display:block;
    z-index: 99999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; 
}

.fix-btn.on{
    opacity: 1;
}

.fix-btn .hompagebtn{
    cursor: pointer;
    display: block;
    background: linear-gradient(45deg, #009944, #3b93ff);
    border-radius: 50px;
    width: 300px;
    padding: 20px 0;
    margin: auto;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    color: #fff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.fix-btn .hompagebtn:hover{
    background: #fff;
    color: #009944;
}

/*20220328 메인 슬라이드 수정*/
.main_slide{
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* .main_slide .slick-track{
    width: 100% !important;
} */

.main_slide .slick-arrow {
    width: 42px;
    height: 68px;
}

.main_slide .slick-arrow.slick-next {
    right: 20px;
    background: url("../images/next_ico_arr.svg") no-repeat;
}

.main_slide .slick-arrow.slick-prev {
    left: 20px;
    background: url("../images/pre_ico_arr.svg") no-repeat;
}

.main_slide .slide {
    position: relative;
    height: 700px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slide1{
    background: url('../images/main_banner_2.jpg');
}

.slide2{
    background: url('../images/main_banner_1.jpg');
}

.slide3{
    background: url('../images/main_banner_3.jpg');
}

.slide .txt_box {
    position: absolute;
    right:0;
    top: 50%;
    width: 700px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slide .txt_box * {
    color: #fff;
    opacity: 0;
}

.slide .txt_box span {
    position: relative;
    font-size: 53px;
    font-weight: bold;
    display: block;
    letter-spacing: -0.35px;
    margin-bottom: 15px;
    color: #222;
    line-height: normal;
}

.slide .txt_box strong{
    font-weight: bold;
    color: #138333;
}

.slide .txt_box p {
    position: relative;
    font-size: 53px;
    font-weight: bold;
    letter-spacing: -0.35px;
    color: #222;
    line-height: normal;
}

.slick-active .txt_box * {
    -webkit-animation: faderight 1.5s alternate;
    animation: faderight 1.5s alternate;
    -webkit-animation-name: faderight;
    animation-name: faderight;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
}

.slick-active .txt_box span {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.slick-active .txt_box p {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes faderight {
    0% {
        -webkit-transform: translate(50px, 0px);
        transform: translate(50px, 0px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

@keyframes faderight {
    0% {
        -webkit-transform: translate(50px, 0px);
        transform: translate(50px, 0px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

.custom_paging {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.custom_paging li{
    display: none;
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
    color: #232323;
}

.custom_paging li.slick-active{
    display: block;
}

.custom_paging li.slick-active strong{
    color: #158335;
    font-weight: bold;
}

/*20220328 메인 슬라이드 수정*/

.main-visual-bg{
    width: 100%; 
    height: 100vh; 
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/mainbg.jpg') no-repeat center center; 
    background-size:cover; 
}

#mainVisual{
    height: 100vh;
}

/* .main-visual-con .slick-track,
.main-visual-con .slick-list {
    -webkit-perspective: 2000;
    -webkit-backface-visibility: hidden;
}

.main-visual-con,
.main-visual-inner,
.main-visual-list,
.main-visual-list .slick-list,
.main-visual-list .slick-track,
.main-visual-item {
    height: 100%;
} */

/* #mainVisual .area-box {
    width: 1600px;
    height: 100%;
    margin: 0px auto;
    display: flex;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.main-visual-con {
    position: relative;
    z-index: 1;
    width: 800px;
    height: 520px;
} */

/* .main-visual-con:before {
    position: absolute;
    top: -54px;
    right: -54px;
    content: '';
    width: 164px;
    height: 162px;
    background: url("../images/main_visual_effect_img.png") center/cover no-repeat;
} */
/* 
.main-visual-inner {
    overflow: hidden;
    -webkit-border-radius: 80px 80px 0 80px;
    border-radius: 80px 80px 0 80px;
    -webkit-box-shadow: 12px 12px 40px -6px rgba(0, 0, 0, 0.2);
    box-shadow: 12px 12px 40px -6px rgba(0, 0, 0, 0.2);
    background: #fff url("../images/main_visual_bnr_bg.png") center/cover no-repeat;
}

.main-visual-item {
    position: relative;
}

.main-visual-item .main-visual-pc-img {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.main-visual-con:before {
    -webkit-animation: spin 8s infinite linear;
    -o-animation: spin 8s infinite linear;
    -moz-animation: spin 8s infinite linear;
    animation: spin 8s infinite linear;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(-360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
} */

.main-visual-txt-con {
    /* width: calc(100% - 800px);
    padding: 0 6.9%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: visible; */
    width: 800px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding: 0 6.9%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: visible;
}

/* .main-visual-txt-con .slick-list {
    overflow: visible;
} */

.main-visual-txt-con .main-visual-txt1,
.main-visual-txt-con .main-visual-txt2,
.main-visual-txt-con .main-visual-txt3,
.main-visual-txt-con .main-visual-more-btn {
    opacity: 0;
}

.main-visual-txt-con .main-visual-txt1 {
    padding-top: 40px !important;
    position: relative;
    font-size: 53px;
    font-weight: bold;
    letter-spacing: -0.35px;
    color: #222;
    margin-bottom: 20px;
}

.main-visual-txt-con .main-visual-txt1 strong{
    color: #138333;
    font-weight: bold;
}

.main-visual-txt-con .main-visual-txt1.cm-word-split-JS {
    overflow: visible;
}

.main-visual-txt-con .main-visual-txt1 .word {
    line-height: 1.1;
}

/* .main-visual-txt-con .main-visual-txt1:before {
    position: absolute;
    top: 7px;
    left: -32px;
    display: block;
    content: '';
    width: 76px;
    height: 40px;
    background: url("../images/icon_leaf.png") center/cover no-repeat;
} */

.main-visual-txt-con .main-visual-txt2 {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #222;
}

/* 메인 비주얼 :: active효과 */
.main-visual-txt-inner.active-item .main-visual-txt1,
.main-visual-txt-inner.active-item .main-visual-txt2 {
    -webkit-animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.main-visual-txt-con .main-visual-txt-inner.active-item .main-visual-txt1 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.main-visual-txt-con .main-visual-txt-inner.active-item .main-visual-txt2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.main-visual-txt-inner.active-item .main-visual-txt1.splitting .char {
    -webkit-animation: text-fade-out 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: text-fade-out 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    -webkit-animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes text-active-animation {
    from {
        opacity: 0;
        filter:Alpha(opacity=0);
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1.0;
        filter:Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes text-fade-out {
    from {
        opacity: 1.0;
        filter:Alpha(opacity=100);
    }
    to {
        opacity: 0;
        filter:Alpha(opacity=0);
    }
}

.main-visual-conuter {
    position: absolute;
    bottom: 55px;
    left: 0;
    width: 100%;
    z-index: 11;
    font-size: 0;
    text-align: center;
}

/* 메인 비주얼 :: 화살표 */
.main-visual-conuter button {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    font-size: 25px;
    color: #fff;
    background: transparent;
}

.main-visual-prev {
    margin-right: 50px;
}

.main-visual-next {
    margin-left: 50px;
}

/* 메인 비주얼 :: 카운터 */
.main-visual-conuter span,
.main-visual-conuter .middle {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.25px;
}

.main-visual-conuter .cur-num {
    /* opacity: 0.2; */
    color: #000;
    font-weight: bold;
}

.main-visual-conuter .middle {
    margin: 0 3px;
}


.cm-word-split-JS{
    overflow:hidden; opacity:0; 
}

.cm-word-split-JS.splitting{
    opacity:1.0; 
}

.cm-word-split-JS.splitting .word{
    overflow:hidden; 
    line-height:1.4; 
    display:inline-block;
}

.cm-word-split-JS.splitting .char{
    display:inline-block; 
    position:relative;
    font-size:inherit;
    font-family:inherit;
    font-weight:inherit;
    opacity:0;
}

.main_visual_wrap{
    width: 100%;
    position: relative;
    /* background: #fff; */
}

.main_visual_wrap::before{
    content: "";
    width: 250px;
    height: 250px;
    opacity: 0.7;
    display: block;
    position: absolute;
    right: 0;
    top: 12px;
    background: url('../images/visual_bg.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.main_visual_img_area{
    position: absolute;
    bottom: 0px;
    left: 10px;
    z-index: 9;
}

.main_visual_area{
    width: 1500px;
    margin: 0 auto;
    position: relative;
    /* padding: 140px 0; */
    padding: 200px 0 230px;
}

.main_visual_area .visualtitle{
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: #222;
}

.main_visual_area .visualtxt{
    margin-top: 30px;
    font-size: 20px;
    text-align: center;
    line-height: 1.6;
    letter-spacing: -0.75px;
    color: #666;
}

.main_notice_wrap{
    width: 100%;
    position: relative;
    margin: 0 auto; 
    margin-top: 60px;
}

.main_notice_wrap ul{
    font-size: 0;
    width: 100%;
}

.main_notice_wrap ul li{
    width: 50%;
    display: inline-block;
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
    vertical-align: top;
}

.main_notice_wrap ul li .noticetitle{
    font-weight: bold;
    font-size: 30px;
    color: #222;
    line-height: 1.6;
    letter-spacing: -0.65px;
    text-align: left;
}

.main_notice_wrap ul li .noticetitle strong{
    font-weight: bold;
    color: #009944;
}

.main_notice_wrap ul li .morebtn{
    position: absolute;
    right: 45px;
    top: 10px;
    font-size: 15px;
    display: block;
    background: #009944;
    color: #fff;
    line-height: normal;
    font-weight: bold;
    padding: 8px 13px;
    border-radius: 30px;
}

.main_notice_area{
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.main_notice_area #kboard-default-latest{
    border-top: 1px solid #222;
}

.main_notice_area #kboard-default-latest table {
    border-bottom: 1px solid #ddd;
}

.main_notice_area #kboard-default-latest table td {
    padding: 15px 10px;
    padding-left: 10px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;   
}

.main_notice_area #kboard-default-latest table td.std:hover{
    padding-left: 25px;
}

.main_notice_area #kboard-default-latest table td.ftd:hover .flatest .kboard-default-cut-strings{
    color: #009944;
}

.main_notice_area #kboard-default-latest table td a{
    color: #222;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.main_notice_area #kboard-default-latest table td .flatest{
    padding-left: 120px;
    display: block;
}

.main_notice_area #kboard-default-latest table td .latestdate{
    position: absolute;
    left: 10px;
    width: 100px;
    height: 100px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100px;
    background: #009944;
}

.main_notice_area #kboard-default-latest table td .latestdate p{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main_notice_area #kboard-default-latest table td .latestdate span{
    display: block;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    line-height: 1.1;
}

.main_notice_area #kboard-default-latest table td .latestdate .k_day{
    font-weight: bold;
    font-size: 28px;
}

.main_notice_area #kboard-default-latest table td .latestdate .k_year{
    font-size: 16px;
}

.main_notice_area #kboard-default-latest table td .flatest .kboard-default-cut-strings{
    color: #222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 20px;
}

.main_notice_area #kboard-default-latest table td .kboard-default-txt{
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    word-wrap: normal;
    height: 50px;
    line-height: 1.8;
    display: block;
    -webkit-line-clamp: 2;
    font-size: 14px;
    color: #666;
}

.main_gallery_wrap{
    width: 100%;
    position: relative;
    /* background: #ddd; */
    /* background: url('../images/main_gallery_bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%; */
}

.main_gallery_wrap::before{
    content: "";
    width: 100%;
    height: 750px;
    position: absolute;
    bottom: 0;
    display: block;
    z-index: -1;
    background: url('../images/main_gallery_bg_2.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%; 
}

.main_gallery_area{
    /* width: 1500px; */
    width: 1500px;
    margin: 0 auto;
    margin-right: 0;
    position: relative;
    padding: 120px 0;
    height: 590px;
}

.gallery_text_area{
    position:absolute;
    top: 120px;
    /* left: 0; */
    left: -150px;
    text-align: left;
}

.gallery_text_area .gallerytitle{
    font-size: 45px;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
}

.gallery_text_area .gallerytxt{
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 25px;
    line-height: 1.4;
    color: #000;
}

.gallery_inner_wrap{
    /* width: calc(100% - 300px);
    margin: 0 auto;
    margin-right: 0;
    position: relative; */
    width: 100%;
    margin: 0 auto;
    margin-right: 0;
    position: absolute;
    left: 300px;
    overflow: hidden;
}

.gallery_inner_area{
    width: 100%;
    /* margin-left: -40px; */
}

.gallery_inner_area #kboard-pure-gallery-list .kboard-pure-gallery-list .kboard-list-item .kboard-list-thumbnail {
    margin-bottom: 0;
    height: 200px !important;
    background: #fff;
    /* padding: 13px; */
    padding-bottom: 0;
    /* border-top-left-radius: 50px; */
}

/* .gallery_inner_area #kboard-pure-gallery-list .kboard-pure-gallery-list .kboard-list-item .kboard-list-thumbnail .kboard-list-thumbnail-child{
    border-top-left-radius: 30px;
} */

.gallery_inner_area #kboard-pure-gallery-list .kboard-pure-gallery-list .kboard-list-item .kboard-list-title{
    background: #fff;
    line-height: 1.6;
    padding: 20px;
    height: auto;
    text-align: left;
}

.gallery_inner_area #kboard-pure-gallery-list .kboard-pure-gallery-list .kboard-list-item .kboard-list-title .kboard-pure-gallery-cut-strings{
    color: #222;   
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 20px;
}

.gallery_inner_area #kboard-pure-gallery-list .kboard-pure-gallery-list .kboard-list-item .kboard-list-title .kboard-pure-gallery-txt{
    color: #666;   
    font-weight: 400;
    font-size: 13px;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: normal;
    display: -webkit-box;
}

.gallery_inner_area #kboard-pure-gallery-list .kboard-pure-gallery-list {
    overflow: initial;
}

.gallery_inner_area #kboard-pure-gallery-list .kboard-pure-gallery-list .kboard-list-item {
    overflow: hidden;
    transition: all .3s;
    padding: 0;
    margin: 0;
}

.gallery_inner_area .gallerylist{
    /* width: 480px; */
    width: 350px;
    margin: 0 auto;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.2);
}

.swiper_button_area .swiper-button-next,
.swiper_button_area .swiper-button-prev {
    top:200px;
    text-align:center;
    line-height:55px;
    width:55px;
    height:55px;
    background: rgb(0 153 68);
    text-indent:-999px;
    overflow:hidden;
    z-index:1;
    margin-top: 0;
}

.swiper_button_area .swiper-button-next::after{
    content: "";
    display:inline-block;
    width:9px;
    height:16px;
    background:url('../images/s_next_ico_arr.svg') no-repeat 0 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper_button_area .swiper-button-prev::after{
    content: "";
    display:inline-block;
    width:9px;
    height:16px;
    background:url('../images/s_pre_ico_arr.svg') no-repeat 0 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper_button_area .swiper-button-next{
    left:65px;
}

.swiper_button_area .swiper-button-prev{
    left:0;
}

/*media query*/
@media all and (max-width: 1700px) {
    .main_gallery_wrap::before {
        background-size: cover;
        background-position: center;
    }

    .main_gallery_area {
        width: 90%;
    }

    .gallery_text_area {
        left: -5px;
    }
}

@media all and (max-width: 1600px) {
    .main_visual_area{
        width: 90%;
    }
}

@media all and (max-width: 1500px) {
    .slide .txt_box {
        width: 550px;
    }

    .slide .txt_box span, .slide .txt_box p{
        font-size: 45px;
    }

    .main_visual_area .visualtitle {
        font-size: 38px;
    }

    .main_notice_wrap ul li {
        padding: 0 25px;
    }

    .gallery_text_area .gallerytitle {
        font-size: 40px;
    }

    .gallery_text_area .gallerytxt {
        font-size: 15px;
    }

    .gallery_inner_area .gallerylist {
        width: 300px;
    }
}

@media all and (max-width: 1400px) {
    .gallery_inner_area .gallerylist {
        width: 260px;
    }
}

@media all and (max-width: 1200px) {
    .main_slide .slide {
        height: 580px;
    }

    .main_visual_area {
        padding: 150px 0 180px;
    }

    .main_visual_wrap::before {
        width: 200px;
        height: 200px;
    }

    .gallery_inner_wrap {
        left: 200px;
    }

    .gallery_inner_area .gallerylist {
        width: 230px;
    }
}

@media all and (max-width: 1050px) {
    .slide .txt_box {
        width: 400px;
    }

    .slide .txt_box span, .slide .txt_box p{
        font-size: 35px;
    }

    .main_visual_area .visualtitle {
        font-size: 32px;
    }

    .main_visual_area .visualtxt {
        font-size: 18px;
    }

    .main_notice_wrap ul li .noticetitle {
        font-size: 22px;
    }

    .main_notice_wrap ul li .morebtn {
        right: 30px;
        top: 3px;
    }

    .main_notice_area #kboard-default-latest table td .latestdate {
        width: 80px;
        height: 80px;
    }

    .main_notice_area #kboard-default-latest table td .latestdate .k_day {
        font-size: 23px;
    }

    .main_notice_area #kboard-default-latest table td .latestdate .k_year {
        font-size: 14px;
    }

    .main_notice_area #kboard-default-latest table td .flatest {
        padding-left: 95px;
    }

    .main_notice_area #kboard-default-latest table td .flatest .kboard-default-cut-strings {
        font-size: 18px;
    }

    .main_notice_area #kboard-default-latest table td .kboard-default-txt {
        font-size: 13px;
    }

    .main_notice_area #kboard-default-latest table td a {
        font-size: 15px;
    }

    .main_gallery_area {
        margin-right: auto;
        height: auto;
    }

    .gallery_text_area {
        position: relative;
        top: auto;
        left: auto;
    }

    .gallery_text_area .gallerytxt br{
        display: none;
    }

    .gallery_text_area .gallerytxt span{
        display: block;
    }

    .gallery_inner_wrap {
        left: auto;
        position: relative;
        margin-right: auto;
        margin-top: 50px;
    }

    .gallery_inner_area .gallerylist {
        width: 90%;
    }

    .swiper_button_area {
        right: 30px;
        top: 15px;
        position: absolute;
        width: 100px;
    }

    .swiper_button_area .swiper-button-next, .swiper_button_area .swiper-button-prev {
        top: 0;
    }

    .main_slide .slick-arrow {
        width: 20px;
        height: 36px;
    }

}

@media all and (max-width: 850px) {
    .main_visual_wrap::before {
        width: 150px;
        height: 150px;
    }

    .main_visual_area .visualtitle span{
        display: block;
    }

    .main_notice_wrap ul li {
        width: 450px;
        margin: 0 auto;
        padding: 0;
        display: block;
    }

    .main_notice_wrap ul li .morebtn {
        right: 0px;
    }
    
    .main_notice_wrap ul li:first-child{
        margin-bottom: 60px;
    }
}

@media all and (max-width: 700px) {
    .fix-intro strong{
        width: 250px;
        display: block;
    }

    .fix-intro strong img{
        width: 280px;
    }

    .main_visual_img_area{
        width: 100px;
    }

    .main_visual_img_area img{
        width: 100%;
    }

    .main_slide .slide {
        height: 480px;
    }

    .slide .txt_box {
        width: 95%;
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .slide .txt_box span, .slide .txt_box p{
        text-shadow: 0px 2px 7px rgba(255,255,255,0.3);
    }
}

@media all and (max-width: 500px) {
    .fix-intro strong img{
        width: 200px;
    }

    .fix-btn .hompagebtn {
        width: 200px;
        font-size: 17px;
    }
    
    .main_slide .slide {
        height: 350px;
    }

    .slide .txt_box span, .slide .txt_box p {
        font-size: 30px;
    }

    .main_visual_area {
        padding: 110px 0 130px;
    }

    .main_visual_area .visualtitle {
        font-size: 28px;
    }

    .main_visual_area .visualtxt {
        font-size: 17px;
    }

    .main_notice_wrap ul li {
        width: 100%;
    }
}

@media all and (max-width: 400px) {
    .slide .txt_box span, .slide .txt_box p {
        font-size: 28px;
    }

    .main_visual_area .visualtitle {
        font-size: 23px;
    }

    .main_visual_area .visualtxt span{
        display: block;
    }

    .main_notice_area #kboard-default-latest table td .latestdate {
        width: 60px;
        height: 60px;
    }

    .main_notice_area #kboard-default-latest table td .latestdate .k_day {
        font-size: 18px;
    }

    .main_notice_area #kboard-default-latest table td .latestdate .k_year {
        font-size: 12px;
    }

    .main_notice_area #kboard-default-latest table td .flatest {
        padding-left: 75px;
    }

    .main_notice_area #kboard-default-latest table td .flatest .kboard-default-cut-strings {
        font-size: 16px;
    }

    .main_notice_area #kboard-default-latest table td a {
        font-size: 14px;
    }

    .gallery_text_area .gallerytitle {
        font-size: 30px;
    }

    .gallery_text_area .gallerytxt {
        font-size: 13px;
        line-height: 1.6;
    }

    .swiper_button_area {
        width: 70px;
        top: 5px;
    }

    .swiper_button_area .swiper-button-next, .swiper_button_area .swiper-button-prev {
        line-height: 35px;
        width: 35px;
        height: 35px;
    }

    .swiper_button_area .swiper-button-next {
        left: 48px;
    }

    .main_slide .slick-arrow.slick-prev {
        left: 10px;
    }

    .main_slide .slick-arrow.slick-next {
        right: 10px;
    }

    .main_slide .slick-arrow {
        width: 15px;
        height: 28px;
    }
}