@charset "utf-8";

@font-face {
    font-family: "PretendardMedium";
    src: url(../font/Pretendard-Medium.subset.woff);
}

@font-face {
    font-family: "PretendardEXbold";
    src: url(../font/Pretendard-ExtraBold.subset.woff);
}

@font-face {
    font-family: "PretendardLight";
    src: url(../font/Pretendard-Light.subset.woff);
}

@font-face {
    font-family: "PretendardRegular";
    src: url(../font/Pretendard-Regular.subset.woff);
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
}

button {
    font-family: "PretendardMedium";
}

.main_wrap {
    width: 100%;
    height: 100%;
    font-family: "PretendardMedium";
}

.main_wrap .row {
    width: 1305px;
    margin: 0 auto;
}

/* 헤더 */

.header_wrap {
    height: 212px;
    background-color: #fff;
}

.header_wrap .header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 148px;
}

.header_wrap .header_top .search_box {
	position: relative;
    display: flex;
    align-items: center;
    width: 582px;
    height: 60px;
    box-sizing: border-box;
    padding: 10px 10px 10px 20px;
    border: 2px solid #59ceff;
    border-radius: 50px;
}

.header_wrap .header_top .search_box > input[type="search"] {
    flex: auto;
    height: 100%;
    background-color: transparent;
    border: 0;
    color: #333;
    font-size: 14px;
    font-family: "PretendardRegular";
    outline: 0;
}

.header_wrap .header_top .search_box > input[type="search"]::placeholder {
	color: #333;
}

.header_wrap .header_top .search_box .btn_search {
    flex: none;
    width: 50px;
    height: 50px;
    background-image: url(../img/icon_search.png);
    background-repeat: no-repeat;
    background-position: center;
}

.header_wrap #searchAdressResult{
	display: none;
}
.header_wrap #searchAdressResult.on{
    display: block;
    position: absolute;
    top: 60px;
    left: 24px;
    width: 85%;
    min-height: 60px;
    max-height: 510px;
    background: #fff;
    z-index: 1;
    border: 2px solid #f6f6f6;
    border-radius: 3px;
    box-shadow: 0px 6px 5px -1px rgb(0,0,0,0.1);
}

.header_wrap #searchAdressResult .noresult_div{
	width: 100%;
	font-size: 13px;
    padding-top: 22px;
}

.header_wrap #searchAdressResult .noresult_div img{
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 5px;
}
.header_wrap #searchAdressResult .noresult_div p{
	text-align: center;
}
.header_wrap #searchAdressResult #overWrap{
	max-height: 450px;
}
.header_wrap #searchAdressResult #pagingWrap{
	height: 60px;
	box-sizing: border-box;
	padding: 17px 0;
	margin-left: 24px;
}
.header_wrap #searchAdressResult #pagingWrap button{
	width: 46px;
	height: 26px;
	margin-left: 6px;
    border: 1px solid #b2b2b2;
    color: #666;
    font-size: 12px;
}
.header_wrap #searchAdressResult #pagingWrap button.one_button{
}
.header_wrap #searchAdressResult #pagingWrap button#prevSearch
, .header_wrap #searchAdressResult #pagingWrap button#nextSearch{

}
.header_wrap #searchAdressResult ul{

}
.header_wrap #searchAdressResult ul li{
	display: flex;
	height: 64px;
	box-sizing: border-box;
	padding: 12px 36px;
	font-size: 12px;
	cursor: pointer;
}

.header_wrap #searchAdressResult ul li > div {
	flex: none;
}

.header_wrap #searchAdressResult ul li .left {
	width: 45%;
}

.header_wrap #searchAdressResult ul li .right {
	width: 55%;
}

.header_wrap #searchAdressResult ul li:hover{
	background-color: #f4f4f4;
}

.header_wrap #searchAdressResult ul h3{
	color: #111;
}

.header_wrap #searchAdressResult ul p{
	color: #666;
}

.header_wrap #searchAdressResult ul p.phone {
	margin-top: 5px;
}

.header_wrap #searchAdressResult .right p:before {
    display: inline-block;
    width: 33px;
    height: 17px;
    margin-right: 5px;
    line-height: 17px;
    /* border: 1px solid var(--main-border-color); */
    border: 1px solid #ddd;
    font-size: 11px;
    text-align: center;
    font-family: "PretendardMedium";
}

.header_wrap .header_top .search_box #searchAdressResult .right p:before {
    content: "도로명";
}

.header_wrap .header_top .search_box #searchAdressResult .right .number:before {
    content: "지번";
}


.header_wrap .header_top .btn_go {
    font-size: 16px;
    color: #686868;
}

.header_wrap .header_top .btn_go:hover {
    opacity: 0.5;
}

.header_wrap .header_top .btn_go:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 20px;
    margin-left: 8px;
    background-image: url(../img/icon_out.png);
    vertical-align: text-top;
}

.header_wrap .nav_menu {
    display: flex;
    height: 64px;
    background-image: url(../img/cc_bg.png);
    background-position: left bottom;
    background-repeat: no-repeat;
}

.header_wrap .menu_list {
    display: flex;
    margin-left: auto;
}

.header_wrap .menu_list > li > a {
    display: block;
    width: 150px;
    height: 45px;
    line-height: 45px;
    border-radius: 40px;
    text-align: center;
    font-size: 20px;
}

.header_wrap .menu_list > li:hover > a {
    background-color: #00b4ff;
    color: #fff;
}

/* 메인 콘텐츠 영역 */

.section_wrap .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section1 {
    flex: none;
    display: flex;
    align-items: center;
    width: 100%;
    height: 322px;
}

.section2,
.section3 {
    flex: none;
    display: flex;
    width: 49.5%;
    height: 348px;
}

.service_list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.service_list > li {
    display: flex;
    flex-direction: column;
    width: 245px;
    height: 245px;
    background-color: #fff;
    border-radius: 20px;;
    overflow: hidden;
    cursor: pointer;
}

.service_list > li > .title {
    flex: none;
    display: flex;
    align-items: center;
    height: 60px;
    box-sizing: border-box;
    padding: 0 20px 0 30px;
    font-size: 20px;
    font-family: "PretendardExbold";
    letter-spacing: -1px;
}

.service_list > li > .title .btn_go {
    flex: none;
    width: 35px;
    height: 35px;
    margin-left: auto;
    border-radius: 50%;
    background-image: url(../img/icon_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.service_list > li .bg_box {
    flex: auto;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
}

.service_list > li .bg_box:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    transition: transform 1s;
}

.service_list > li:hover .bg_box:before {
    transform: translateX(-30px);
    transition: transform 5s;
}

.service_list > li:nth-of-type(1) {
    border: 1px solid #2994ff;
    border-top-left-radius: 50px;
}

.service_list > li:nth-of-type(1) .bg_box {
    background: linear-gradient(-30deg,#54e5ff, #58a7ff);
}

.service_list > li:nth-of-type(1) .bg_box:before {
    background: url(../img/bg_service_1.png);
}

.service_list > li:nth-of-type(1) > .title {
    color: #2994ff;
}

.service_list > li:nth-of-type(1) > .title .btn_go {
    background-color: #2994ff;
}

.service_list > li:nth-of-type(2) {
    border: 1px solid #ffa81f;
}

.service_list > li:nth-of-type(2) .bg_box {
    background: linear-gradient(-30deg,#ffe555, #ffb86b);
}

.service_list > li:nth-of-type(2) .bg_box:before {
    background: url(../img/bg_service_2.png);
}

.service_list > li:nth-of-type(2) > .title {
    color: #ffa81f;
}

.service_list > li:nth-of-type(2) > .title .btn_go {
    background-color: #ffa81f;
}

.service_list > li:nth-of-type(3) {
    border: 1px solid #9559ff;
}

.service_list > li:nth-of-type(3) .bg_box {
    background: linear-gradient(-30deg,#70a9ff, #bf92ff);
}

.service_list > li:nth-of-type(3) .bg_box:before {
    background: url(../img/bg_service_3.png);
}

.service_list > li:nth-of-type(3) > .title {
    color: #9559ff;
}

.service_list > li:nth-of-type(3) > .title .btn_go {
    background-color: #9559ff;
}

.service_list > li:nth-of-type(4) {
    border: 1px solid #ff7d89;
}

.service_list > li:nth-of-type(4) .bg_box {
    background: linear-gradient(-30deg,#ffcab0, #ff9da9);
}

.service_list > li:nth-of-type(4) .bg_box:before {
    background: url(../img/bg_service_4.png);
}

.service_list > li:nth-of-type(4) > .title {
    color: #ff7d89;
}

.service_list > li:nth-of-type(4) > .title .btn_go {
    background-color: #ff7d89;
}

.service_list > li:nth-of-type(5) {
    border: 1px solid #8dd612;
    border-bottom-right-radius: 50px;
}

.service_list > li:nth-of-type(5) .bg_box {
    background: linear-gradient(-30deg,#ede676, #b9e14f);
}

.service_list > li:nth-of-type(5) .bg_box:before {
    background: url(../img/bg_service_5.png);
}

.service_list > li:nth-of-type(5) > .title {
    color: #8dd612;
}

.service_list > li:nth-of-type(5) > .title .btn_go {
    background-color: #8dd612;
}

.service_list > li:hover > .title .btn_go {
    animation: btnGo 1s infinite;
}

@keyframes btnGo {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* 공지사항/테마지도 */
.notice_box,
.theme_box {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 18px 24px;
    background-color: #fff;
    border: 1px solid #bcc5cd;
    border-radius: 15px;
}

.notice_box > .title,
.theme_box > .title {
    display: flex;
    align-items: center;
    height: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #bcc5cd;
    overflow: hidden;
}

.notice_box > .title > span,
.theme_box > .title > span {
    display: inline-block;
    margin-top: 1px;
    padding: 6px 18px;
    border-radius: 30px;
    background-color: #5366a2;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.notice_box > .title .btn_plus,
.theme_box > .title .btn_go {
    margin-left: auto;
    font-size: 15px;
    color: #5366a2;
}

.notice_box > .title .btn_plus {
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_plus.png);
    background-repeat: no-repeat;
    background-position: center;
}

.notice_box > .title .btn_plus:hover,
.theme_box > .title .btn_go:hover {
    color: #7286c7;
}

.notice_box .notice_list {
    display: flex;
    flex-direction: column;
    height: 80%;
    margin-top: 16px;
}

.notice_box .notice_list > li.nodata {
    cursor: unset;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 100px;
}

.notice_box .notice_list > li.nodata:before{
	display: none;
}

.notice_box .notice_list > li {
    display: flex;
    align-items: center;
    flex: none;
    height: 12.5%;
    font-size: 14px;
    font-family: "PretendardMedium";
    cursor: pointer;
}

.notice_box .notice_list > li:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 8px;
    background-color: #6e90ff;
    border-radius: 50%;
}

.notice_box .notice_list > li:not(.nodata):hover .notice_subject
, .notice_box .notice_list > li:not(.nodata):hover .notice_date{
    color: #6e90ff;
    /* cursor: pointer; */
}

/* .notice_box .notice_list > li .notice_subject:hover {
    color: #6e90ff;
    cursor: pointer;
} */

.notice_box .notice_list > li .notice_date {
    margin-left: auto;
    font-size: 13px;
}

/* 공지사항 팝업 */
.popup_notice {
	display: none;
    position: relative;
    width: 800px;
    height: 630px;
    box-sizing: border-box;
    padding: 25px 56px;
    background-color: #fff;
    font-family: "PretendardRegular";
}

.popup_notice .popup_header {
}

.popup_notice .popup_header .btn_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: url(../img/icon_x.png);
    background-repeat: no-repeat;
    background-position: center;
}

.popup_notice .popup_header .btn_close:hover {
    background-color: #f9f9f9;
}

.popup_notice .popup_header .popup_title {
    padding: 30px 0;
    text-align: center;
    font-family: "PretendardMedium";
}

.notice_detail .notice_title {
    padding: 10px 0 ;
    text-indent: 10px;
    font-size: 16px;
    font-family: "PretendardEXbold";
}

.notice_detail > table {
    width: 100%;
    border-top: 2px solid #969696;
    font-size: 13px;
}

.notice_detail > table th {
    width: 65px;
    padding: 8px 0;
    text-align: left;
    text-indent: 10px;
}

.notice_detail > table tr {
    border-bottom: 1px solid #e6e6e6;
}
#popup_notice_list .notice_detail > table tbody tr {
	cursor: pointer;
}

#popup_notice_list .notice_detail > table tbody tr:hover {
	color: #6e90ff;
}

#popup_notice_list .notice_detail > table tbody {
	min-height: 200px;
}

.notice_detail > table tbody {
    font-family: "PretendardLight";
}

.notice_detail > table tbody td {
    height: 255px;
    box-sizing: border-box;
    padding: 26px 10px;
    vertical-align: baseline;
}

.notice_detail > table tbody td#notice_contents pre{
	height: 200px;
	overflow-y: auto;
	font-family: "PretendardEX";
}

.notice_detail > table tfoot td:not(.noData){
	cursor: pointer;
}

.notice_detail > table tfoot td:not(.noData):hover {
	color: #6e90ff;
}

.notice_detail .btn_box {
    margin-top: 20px;
    text-align: right;
}

.notice_detail .btn_box .btn_list {
    padding: 5px 18px;
    background-color: #5366a2;
    border-radius: 15px;
    color: #fff;
}

.notice_detail .btn_box .btn_list:hover {
    background-color: #7386c4;
}

.notice_detail.list > table {
    border: 0;
}

.notice_detail.list > table th  {
    width: auto;
    border-bottom: 2px solid #969696;
    text-align: center;
    text-indent: 0;
}

.notice_detail.list > table td {
    height: auto;
    text-align: center;
    text-indent: 0;
    padding: 12px 0;
}

.notice_detail.admin > table tbody td {
    height: 350px;
}

.notice_detail input {
    border: 0;
    outline: 0;
    width: 100%;
    font-family: "PretendardLight";
}

.notice_detail textarea {
    border: 0;
    outline: 0;
    width: 100%;
    resize: none;
    font-family: "PretendardLight";
}

.notice_detail .btn_upload {
    width: 60px;
    height: 20px;
    /* border: 1px solid var(--main-border-color); */
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 12px;
    font-family: "PretendardLight";
}

.notice_detail .btn_upload:hover {
    border: 1px solid #bbb;
}

.notice_detail .page_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    color: #969696;
	position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.notice_detail .page_nav .page_list {
    display: flex;
}

.notice_detail .page_nav .page_list > li {
    margin: 0 8px;
    font-size: 13px;
    cursor: pointer;
}

.notice_detail .page_nav .page_list > li.active {
    color: #7386c4;
    text-decoration: underline;
}

.notice_detail .page_nav .page_list > li:hover {
    text-decoration: underline;
}
/* 공지사항 팝업 */

/* 문화재 VR투어 */
.popup_vr {
	display: none;
    position: relative;
    width: 800px;
    height: 630px;
    box-sizing: border-box;
    /* padding: 25px 56px; */
    background-color: #fff;
    font-family: "PretendardRegular";
}

.popup_vr iframe {
	width: 100%;
	height: 100%;
}
/* 문화재 VR투어 */

/* 범례사진 */
.popup_legend_pic {
	display: none;
    position: relative;
    box-sizing: border-box;
    background-color: #fff;
    font-family: "PretendardRegular";
    padding: 15px;
}
/* 범례사진 */





.popup_ctt {
	position: fixed;
	bottom: 25%;
    right: 10px;
	display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
	z-index: 5;
	box-sizing: border-box;
	width: 560px;
	height: 480px;
	min-width: 280px;
	min-height: 340px;
	padding: 12px 15px 15px 15px;
	background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 0.5px #bbb;
}

.popup_ctt .popup_head {
	height: 30px;
	/* padding: 0 0 0 13px; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* background-color: var(--main-bg-color); */
	/* background-color: #4293ff; */
	/* border-radius: 5px 5px 0 0; */
	cursor: grab;
}

.popup_ctt .popup_head span {
	/* color: #fff; */
	font-size: 15px;
}

.popup_ctt .popup_head button {
	width: 30px;
	height: 26px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 18px;
}

.popup_ctt .popup_head button:hover {
	background-color: #fafafa;
}

.popup_ctt .popup_body {
	width: 100%;
	height: calc(100% - 166px);
	margin: 12px 0;
	/* background-color: #232426; */
	display: flex;
	align-items: center;
	flex: none;
}

.popup_ctt .popup_body .maxImg {
	position: absolute;
	width: 30px;
	height: 30px;
	left: 10px;
	top: 40px;
	background-color: #fff;
	border-radius: 5px;
	color: #000;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.popup_ctt .popup_body .maxImg.active {
	/* background-color: var(--main-bg-color); */
	background-color: #4293ff;
}

.popup_ctt .popup_body img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.popup_ctt .popup_body video {
    width:100%;
    max-height: 100%;
    height:auto;
}

popup_ctt #panorama {
    width:100%;
    height:100%;
	
	position: relative;
	z-index: 1000;
	display: table; 

	-moz-transform-origin: top left;
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left; 
	transform-origin: top left;
}

.popup_ctt .popup_foot {
	height: 85px;
	/* background-color: #232426; */
	/* color: #fff; */
	padding-top: 15px;
	border-top: 1px solid #eee;
	font-size: 13px;
    font-family: "PretendardRegular";
    /* border-radius: 0 0 5px 5px; */
    /* padding: 10px;
    box-sizing: border-box; */
}

.popup_ctt .nextImg {
	width: 30px;
	height: 50px;
	position: absolute;
	right: 10px;
	top: calc(50% - 50px);
	color: #232426;
	z-index: 1001;
	display: flex;
	justify-content: center;
	font-size: 30px;
}

.popup_ctt .beforeImg {
	width: 30px;
	height: 50px;
	position: absolute;
	left: 10px;
	top: calc(50% - 50px);
	color: #232426;
	z-index: 1001;
	display: flex;
	justify-content: center;
	font-size: 30px;
}



.theme_box > .title {
    border-bottom: 0;
}

.theme_box > .title .btn_go {
    font-size: 14px;
}

.theme_box .theme_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    width: 100%;
    height: 85%;
}

.theme_box .theme_list > li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 16.666%;
    height: 33.3333%;
    font-size: 11px;
    cursor: pointer;
}

.theme_box .theme_list > li > .icon_box {
    flex: none;
    width: 100%;
    height: 50%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}

.theme_box .theme_list > li > .icon_box[k="대형마트"] {
    background-image: url(../img/theme/icon_theme_1.png);
}

.theme_box .theme_list > li > .icon_box[k="편의점"] {
    background-image: url(../img/theme/icon_theme_2.png);
}

.theme_box .theme_list > li > .icon_box[k="어린이집/유치원"] {
    background-image: url(../img/theme/icon_theme_3.png);
}

.theme_box .theme_list > li > .icon_box[k="학교"] {
    background-image: url(../img/theme/icon_theme_4.png);
}

.theme_box .theme_list > li > .icon_box[k="학원"] {
    background-image: url(../img/theme/icon_theme_5.png);
}

.theme_box .theme_list > li > .icon_box[k="주차장"] {
    background-image: url(../img/theme/icon_theme_6.png);
}

.theme_box .theme_list > li > .icon_box[k="주유소/충전소"] {
    background-image: url(../img/theme/icon_theme_7.png);
}

.theme_box .theme_list > li > .icon_box[k="지하철역"] {
    background-image: url(../img/theme/icon_theme_8.png);
}

.theme_box .theme_list > li > .icon_box[k="은행"] {
    background-image: url(../img/theme/icon_theme_9.png);
}

.theme_box .theme_list > li > .icon_box[k="문화시설"] {
    background-image: url(../img/theme/icon_theme_10.png);
}

.theme_box .theme_list > li > .icon_box[k="중개업소"] {
    background-image: url(../img/theme/icon_theme_11.png);
}

.theme_box .theme_list > li > .icon_box[k="공공기관"] {
    background-image: url(../img/theme/icon_theme_12.png);
}

.theme_box .theme_list > li > .icon_box[k="관광명소"] {
    background-image: url(../img/theme/icon_theme_13.png);
}

.theme_box .theme_list > li > .icon_box[k="숙박"] {
    background-image: url(../img/theme/icon_theme_14.png);
}

.theme_box .theme_list > li > .icon_box[k="음식점"] {
    background-image: url(../img/theme/icon_theme_15.png);
}

.theme_box .theme_list > li > .icon_box[k="카페"] {
    background-image: url(../img/theme/icon_theme_16.png);
}

.theme_box .theme_list > li > .icon_box[k="병원"] {
    background-image: url(../img/theme/icon_theme_17.png);
}

.theme_box .theme_list > li > .icon_box[k="약국"] {
    background-image: url(../img/theme/icon_theme_18.png);
}

.theme_box .theme_list > li:hover > .icon_box {
    transform: translateY(-10px);
}

/* 푸터 */

.footer_wrap {
    flex: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #f4f4f4;
    font-size: 12px;
    color: #999;
    font-family: "PretendardRegular";
}

.footer_wrap .row {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer_wrap address {
    margin-right: 20px;
}

.footer_wrap img {
    margin-right: 20px;
}

/* 스크롤 커스텀 */

.custom_scroll {
    overflow: auto;
}

.custom_scroll::-webkit-scrollbar {
    width: 14px;
}

.custom_scroll::-webkit-scrollbar-thumb {
    border: 5px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-border-radius: 24px;
    background-color: #c9ced3;
    -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.custom_scroll::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.custom_scroll::-webkit-scrollbar-corner {
    background-color: transparent;
}

.custom_scroll::-webkit-scrollbar-track {
    border: 5px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-border-radius: 24px;
    background-color: #ecf0f4;
}

/* 반응형 */

@media (max-width: 1305px) {
    .main_wrap .row {
        width: 100%;
    }

    .header_wrap .header_top {
        box-sizing: border-box;
        padding: 15px;
    }

    .section1 {
        height: auto;
    }

    .section2, .section3 {
        padding-top: 15px;
    }

    .section_wrap .row {
        box-sizing: border-box;
        padding: 15px;
    }

    .service_list {
        flex-wrap: wrap;
    }

    .service_list > li {
        width: 49%;
        margin-top: 15px;
    }

    .service_list > li:nth-of-type(1) {
        border-top-left-radius: 20px;
    }

    .service_list > li:nth-of-type(5) {
        border-bottom-right-radius: 20px;
    }

    .footer_wrap {
        box-sizing: border-box;
        padding: 15px;
    }
}

@media (max-width: 965px) {

    .header_wrap {
        height: auto;
    }

    .header_wrap .header_top {
        flex-wrap: wrap;
        height: auto;
        box-sizing: border-box;
        padding: 15px;
    }

    .header_wrap .header_top .search_box {
        order: 3;
        width: 100%;
    }

    .header_wrap .nav_menu {
        box-sizing: border-box;
        padding: 0 15px;
    }

    .header_wrap .menu_list {
        justify-content: space-evenly;
        width: 100%;
        margin: 0;
    }

    .section2, .section3 {
        width: 100%;
    }

    .section3 {
        height: 750px;
    }

    .header_wrap .menu_list > li {
        width: 20%;
    }

    .header_wrap .menu_list > li > a {
        width: 100%;
        font-size: 14px;
    }

    .header_wrap .header_top .btn_go {
        margin-left: auto;
        font-size: 12px;
    }

    .service_list > li {
        height: 150px;
    }

    .service_list > li > .title {
        height: 40px;
        padding: 0 5px 0 15px;
        font-size: 12px;
        word-break: keep-all;
    }

    .service_list > li > .title .btn_go {
        width: 25px;
        height: 25px;
        background-size: 50%;
    }

    .service_list > li .bg_box:before {
        background-size: contain !important;
    }

    .notice_box .notice_list > li .notice_subject {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .theme_box .theme_list {
        height: 45%;
    }

    .theme_box .theme_list > li {
        width: 33.3333%;
    }

    .footer_wrap .row {
        flex-direction: column;
        text-align: center;
    }
}