@charset "utf-8";
@import url("font.css");
/* style reset */

.radio_box, .check_box {position: relative; display: flex; display:-webkit-flex; flex-wrap:wrap; -webkit-flex-wrap:wrap; align-items: center; gap: 16px;}
input[type=radio] + label ,
input[type=checkbox] + label {display:inline-block; vertical-align:middle}
input[type=radio]:focus + label ,
input[type=checkbox]:focus + label {outline: 2px solid #000; border-radius: 2px;}
input[type=radio],
input[type=checkbox] {border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:0}

/*라디오박스*/
.radio_box > li {position: relative; margin-right: 24px; display: flex; display:-webkit-flex; align-items: center;}
.radio_box > li:last-child {margin-right: 0 !important;}
.radio_box input[type=radio] + label {position: relative; padding-left: 32px; display: block; line-height: 24px; font-size: 15px; color: #000; cursor:pointer;}
.radio_box input[type=radio] + label::before {content: ''; position: absolute; left: 0; top: calc(50% - 12px); width: 22px; height: 22px; border: 1px solid #aab1b8; border-radius: 100%; background-repeat: no-repeat; background-position: center center;}
.radio_box input[type=radio] + label.on::before,
.radio_box input[type=radio]:checked + label::before {border-color: #004097; background-color: #004097;}
.radio_box input[type=radio] + label.on::after,
.radio_box input[type=radio]:checked + label::after {content: ''; position: absolute; left: 8px; top: calc(50% - 4px); width: 8px; height: 8px; border-radius: 100%; background-color: #fff;}
.radio_box.line {gap: 12px;}
.radio_box.line li {width: 100%; margin-right: 0;}
.radio_box > li.others {justify-content: space-between;}
.radio_box > li.others .inpbox {width: calc(100% - 70px);}
/* 숨김 라디오: 포함 블록을 li로 두어 항목별로 겹치지 않게 */
.radio_box input[type=radio] {
	clip: auto !important;
	width: 22px !important;
	height: 22px !important;
	margin: 0 !important;
	overflow: visible !important;
	position: absolute !important;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	z-index: 2;
	cursor: pointer;
}

/*체크박스*/
.check_box > li {margin-right: 24px; display: flex; display:-webkit-flex; align-items: center;}
.check_box > li:last-child {margin-right: 0;}
.check_box input[type=checkbox] + label {position: relative; padding-left: 32px; display: block; line-height: 24px; font-size: 15px; color: #000; cursor:pointer;}
.check_box input[type=checkbox] + label::before {content: ''; position: absolute; left: 0; top: calc(50% - 12px); width: 22px; height: 22px; border: 1px solid #aab1b8; border-radius: 5px; background: #fff; background-repeat: no-repeat; background-position: center center;}
.check_box input[type=checkbox] + label.on::before, 
.check_box input[type=checkbox]:checked  + label::before {border-color: #004097; background-color: #004097; background-image: url('/gmigrant/images/hmpg/icon_check.png');}
.check_box.center input[type=checkbox] + label {margin: 0 auto; padding-left: 24px; height: 24px; outline: 0;}
.check_box.line {gap: 12px;}
.check_box.line li {width: 100%; margin-right: 0;}
.check_box > li.others {justify-content: space-between;}
.check_box > li.others .inpbox {width: calc(100% - 70px);}
.bookmark input[type=checkbox] + label {width: 19px; height: 19px; line-height: 35px; font-size: 0; background: url('/gmigrant/images/hmpg/icon_bookmark.png') no-repeat; cursor: pointer; outline: 0; }
.bookmark input[type=checkbox]:checked + label {background: url('/gmigrant/images/hmpg/icon_bookmark_active.png') no-repeat;}
.like input[type=checkbox] + label {padding-left: 20px; min-width: 24px; min-height: 24px; line-height: 24px; font-size: 17px; font-weight: 600; color: #000; background: url('/gmigrant/images/hmpg/icon_like.png') no-repeat 0 center / 20px auto; cursor: pointer; outline: 0; display: flex; display:-webkit-flex; align-items: center; gap: 4px;}
.like input[type=checkbox] + label span {font-size: 19px; font-weight: 700; color: #AAB1B8;}
.like input[type=checkbox] + label span.active {color: #008834;}
.like input[type=checkbox]:checked + label {background: url('/gmigrant/images/hmpg/icon_like_active.png') no-repeat 0 center;}
.check_box2 {position: relative; display: flex; display:-webkit-flex; flex-wrap: wrap; gap: 8px;}
.check_box2 > li {position: relative;}
.check_box2 input[type=checkbox] + label {display: block; padding: 0 14px; min-width: 80px; height: 40px; line-height: 38px; font-size: 13px; font-weight: 600; text-align: center; color: #2F353A; border-radius: 40px; border: 1px solid #DFE4EA; cursor:pointer;}
.check_box2 input[type=checkbox] {
	clip: auto !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	left: 0 !important;
	top: 0 !important;
	overflow: visible !important;
	position: absolute !important;
	opacity: 0;
	z-index: 2;
	cursor: pointer;
}
.check_box2 input[type=checkbox]:checked  + label {background-color: #E8F2FD;}

/*switch_checkbox*/
.switch_checkbox input[type=checkbox] {height: 0; width: 0; display: none;}
.switch_checkbox label {position: relative; display: block; width: 38px; height: 24px; border-radius: 24px; background: #ccc;}
.switch_checkbox label:after {content: ''; position: absolute; top: 4px; left: 4px; width: 16px; height: 16px; border-radius: 16px; background: #fff; -webkit-transition: 0.1s; transition: 0.1s;}
.switch_checkbox input:checked + label {background: #2a77ed;}
.switch_checkbox input:checked + label:after {left: calc(100% - 4px); -webkit-transform: translateX(-100%); transform: translateX(-100%);}
.switch_checkbox label:active:after {width: 38px;}

textarea {border: 1px solid #D5DADF; border-radius: 16px;}
.optionbox, .inpbox {position: relative; height: 56px; border: 1px solid #D5DADF; border-radius: 16px;}
.optionbox::after {content: ''; position: absolute; right: 16px; top: calc(50% - 3px); width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 7px solid #6F767C;}
.inpbox input:disabled {color: #949BA0; background-color: #EDEFF2;}
.optionbox select:disabled {color: #949BA0; background-color: #EDEFF2;}
.inpbox input:read-only {background-color: #EDEFF2;}
.inpbox input.ro_w:read-only {background-color: #fff;}
.calendarbox {width: 100%; display: flex; display:-webkit-flex; align-items: center;}
.calendarbox .inpbox {width: 100%;}
.calendarbox .inpbox .ui-datepicker-trigger {position: absolute; top: 0; right: 0; width: 56px; height: 100%; border-radius: 0 8px 8px 0; color: transparent; font-size: 0; line-height: 0; background-repeat: no-repeat; background-position: center center; background-image: url('/gmigrant/images/hmpg/icon_calendar.png');}
.calendarbox .inpbox input {padding: 0 56px 0 16px; width: 100%; height: 100%; border-radius: 16px;}
.calendarbox.center {justify-content: center;}
.list_box {display: flex; display:-webkit-flex; flex-wrap:wrap; -webkit-flex-wrap:wrap;}
.list_box li {position: relative; padding-right: 16px; margin-right: 16px; font-size: 13px; color: #6F767C;}
.list_box li::after {content: ''; position: absolute; right: 0; top: calc(50% - 6px); width: 1px; height: 12px; background-color: #DFE4EA;}
.list_box li:last-child {padding-right: 0; margin-right: 0;}
.list_box li:last-child::after {display: none;}
.list_box li span {margin-right: 8px; color: #000; font-weight: 500;}
.file_box {position: relative;}
.file_box li {margin-bottom: 16px; display: flex; display:-webkit-flex; align-items: center;}
.file_box li:last-child {margin-bottom: 0;}
.file_box li a {padding: 0 4px 0 26px; font-size: 15px; text-decoration: underline; color: #4E5257; background: url('/gmigrant/images/hmpg/icon_file.png') no-repeat 0 center;}
.file_box li button {margin-left: 8px;}
.character {margin: 0 10px;}
.nodata {text-align: center; font-size: 18px; padding: 50px 0 !important; color: #222 !important;}
.nodata:hover {background-color: #fff !important;}
.noresult {padding: 110px 0 120px; border-bottom: 1px solid #EDEFF2;}
.noresult p {padding: 50px 0 0; line-height: 24px; font-size: 17px; font-weight: 600; text-align: center; color: #6F767C; background: url('/gmigrant/images/hmpg/icon_noresult.png') no-repeat center 0;}

/*목록상단검색*/
.boardlist_top {position: relative; margin: 40px 0; padding: 22px 20px; border-radius: 20px; border: 1px solid #ddd;}
.boardlist_top .box {width: calc(100% - 95px); display: flex; display:-webkit-flex; align-items: center; flex-wrap: wrap; gap: 25px;}
.boardlist_top .box .inpbox {width: 200px; height: 30px;}
.boardlist_top .box .inpbox input {padding: 0 10px;}
.boardlist_top .box .calendarbox .inpbox {width: 130px;}
.boardlist_top .box .calendarbox .character {margin: 0 5px; font-size: 14px; color: #666;}
.boardlist_top .box .optionbox {width: 170px; height: 30px;}
.boardlist_top .box .optionbox.w130 {width: 130px;}
.boardlist_top .box .optionbox select {padding: 0 35px 0 10px;}
.boardlist_top dl {width: 100%; display: flex; display:-webkit-flex; align-items: center; gap: 15px;}
.boardlist_top dl dt {font-size: 15px;}
.boardlist_top dl dd {width: calc(100% - 80px); display: flex; display:-webkit-flex; align-items: center; flex-wrap: wrap; gap: 10px;}
.boardlist_top dl dd .btn_wrap2 input[type=radio] + label {width: 56px; height: 30px; line-height: 28px; font-size: 14px; font-weight: 400; background-color: #fff;}
.boardlist_top dl dd .btn_wrap2 input[type=radio]:checked + label {border-color: #278742; background-color: #278742; color: #fff;}
.boardlist_top dl dd .btn_wrap2 li:first-child input[type=radio] + label {border-radius: 8px 0 0 8px;}
.boardlist_top dl dd .btn_wrap2 li:last-child input[type=radio] + label {border-radius: 0 8px 8px 0;}
.boardlist_top .box dl dd .inpbox {width: calc(100% - 180px);}
.boardlist_top > button {position: absolute; top: 22px; right: 25px; width: 85px; height: 30px; font-size: 14px; border-radius: 8px;}

/*일반게시판 검색바*/
.board_top {margin-bottom: 16px; display: flex; display:-webkit-flex; justify-content: space-between; align-items: center; flex-wrap: wrap;}
.board_top .all {font-size: 15px; font-weight: 600; color: #000;}
.board_top .all span {color: #949BA0;}
.board_top .boardschbox {display: flex; display:-webkit-flex;}
.board_top .boardschbox .select_box {display: flex; display:-webkit-flex;}
.board_top .boardschbox .select_box .optionbox,
.board_top .boardschbox .search_box .inpbox {height: 35px; border: 1px solid #ddd; border-radius: 8px;}
.board_top .boardschbox .select_box .optionbox select,
.board_top .boardschbox .search_box .inpbox input.txt {border-radius: 8px;}
.board_top .boardschbox .select_box .optionbox {margin-right: 10px; width: 122px;}
.board_top .boardschbox .select_box .optionbox::after {border-top: 6px solid #606060;}
.board_top .boardschbox .select_box .optionbox select {padding: 0 10px; color: #666; font-size: 16px;}
.board_top .boardschbox .search_box {position: relative;}
.board_top .boardschbox .search_box .inpbox {width: 300px;}
.board_top .boardschbox .search_box .inpbox input.txt {padding: 0 35px 0 10px; font-size: 16px; color: #666;}
.board_top .boardschbox .search_box .btn_search {z-index: 120; position: absolute; top: 1px; right: 1px; display: block; width: 45px; height: 33px; border-radius: 0 8px 8px 0; background-color: #f6f6fa;}
.board_top .boardschbox .search_box .btn_search .icon {margin: 0 auto; width: 20px; height: 20px;}
.board_top .boardschbox .search_box .btn_search .icon::after {left: 0; top: 0; width: 11px; height: 11px;}
.board_top .boardschbox .search_box .btn_search .icon::before {right: 0; bottom: 3px; width: 9px;}
.board_top .calendarbox {margin-right: 10px;}
.board_top .calendarbox .inpbox {width: 130px;}
.board_top .calendarbox .inpbox input.txt {font-size: 14px;}
.board_top .button_box {margin-top: 0;}
.board_top .tab_area2 {margin-bottom: 0; width: auto;}
.board_top .tab_area2 ul li {min-width: 88px;}
.board_top .tab_area {margin-top: -20px;}

/*일반게시판 리스트*/
.boardlist {width: 100%;}
.boardlist table {width:100%; table-layout:fixed; line-height: 18px;}
.boardlist table thead tr {border-bottom: 1px solid #6F767C;}
.boardlist table thead tr th {padding: 20px 10px; font-size: 13px; font-weight: 600; color: #6F767C; }
.boardlist table tbody tr {border-bottom: 1px solid #EDEFF2;}
.boardlist table tbody tr:hover {background-color: #F8F9FA;}
.boardlist table tbody tr td {overflow: hidden; padding: 16px 10px; font-size: 13px; text-align: center; color: #6F767C;}
.boardlist table tbody tr td.m_hidden {display: table-cell !important;}
.boardlist table tbody tr td.title_box .title {display: flex; display:-webkit-flex; align-items: center;}
.boardlist table tbody tr td.title_box .title.center {justify-content: center;}
.boardlist table tbody tr td.title_box .title a {display: flex; display:-webkit-flex; align-items: center; gap: 6px; width: 100%; font-size: 15px; text-align: left; color: #1C2025;}
.boardlist table tbody tr td.title_box .title a .mycomment {width: 100%;}
.boardlist table tbody tr td.title_box .title a .txt {overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: calc(100% - 66px);}
.boardlist table tbody tr td.title_box .title a .txt:hover {text-decoration: underline;}
.boardlist table tbody tr td.title_box .title .comment {padding-left: 22px; font-size: 15px; color: #6F767C; background: url('/gmigrant/images/hmpg/icon_btn_comment2.png') no-repeat 0 center;}
.boardlist table tbody tr td.title_box .title .secret {margin-left: 5px;}
.boardlist table tbody tr td.title_box .category {min-width: 60px; line-height: 24px; font-size: 13px; font-weight: 600; text-align: center; border-radius: 8px; color: #fff;}
.boardlist table tbody tr td.title_box .category.bg1 {background-color: #4BB225;}
.boardlist table tbody tr td.title_box .category.bg2 {background-color: #008834;}
.boardlist table tbody tr td.title_box .category.bg3 {background-color: #407BDD;}
.boardlist table tbody tr td.title_box .category.bg4 {background-color: #00A5B5;}
.boardlist table tbody tr td.title_box .category.bg5{background-color: #004097;}
.boardlist table tbody tr td.title_box.more a .txt {max-width: calc(100% - 150px);}
.boardlist table tbody tr td.nodata {font-size: 15px;}
.boardlist table tbody tr.fix td .notice {font-size: 13px; font-weight: 600; text-align: center; color: #004097;}
.boardlist table tbody tr.fix td.title_box .title a {font-weight: 600;}
.boardlist.boardlist_check table tbody tr td.check {vertical-align: top;}

/*하단 버튼*/
.button_box {position: relative; margin-top: 32px; display: flex; display:-webkit-flex; align-items: center; justify-content: space-between;}
.button_box > div {display: flex; display:-webkit-flex; align-items: center; gap: 8px; width: 100%;}
.button_box .left {justify-content: flex-start}
.button_box .center {justify-content: center;}
.button_box .right {justify-content: flex-end;}
.button_box button {word-break: keep-all;}
.button_box .btn2 {padding: 0 20px; font-weight: 700;}
.button_box .btn2.bg_white {padding: 0 20px; font-weight: 700;}

/*페이징*/
.paging {margin-top: 40px; display: flex; display:-webkit-flex; justify-content: center;}
.paging button {margin: 0 3px; display: block; width: 38px; height: 38px; line-height: 36px; font-size: 15px; font-weight: 700; text-align:center; color: #6F767C; border-radius: 10px; background-repeat: no-repeat; background-position: center center; border-style: solid; border-color: #DFE4EA;}
.paging button:hover {background-color: #EDEFF2;}
.paging button.on {color: #fff; border: 1px solid #1C2025; background-color: #1C2025;}
.paging button.btn-paging-first {border-radius: 50%; background-color: #fff; background-image:url('/gmigrant/images/hmpg/paging_first.png'); border-width: 1px;}
.paging button.btn-paging-pre {margin-right: 8px; border-radius: 50%; background-color: #fff; background-image: url('/gmigrant/images/hmpg/paging_prev.png'); border-width: 1px;}
.paging button.btn-paging-next {margin-left: 8px; border-radius: 50%; background-color: #fff; background-image: url('/gmigrant/images/hmpg/paging_next.png'); border-width: 1px;}
.paging button.btn-paging-last {border-radius: 50%; background-color: #fff; background-image: url('/gmigrant/images/hmpg/paging_last.png'); border-width: 1px;}
.paging button.btn-paging-first:hover {border: 1px solid #6F767C;}
.paging button.btn-paging-pre:hover {border: 1px solid #6F767C;}
.paging button.btn-paging-next:hover {border: 1px solid #6F767C;}
.paging button.btn-paging-last:hover {border: 1px solid #6F767C;}

/*일반게시판 상세*/
.board_detail > div {border-bottom: 1px solid #D5DADF;}
.board_detail .title_box {padding: 8px 0 32px; text-align: center; border-bottom: 1px solid #6F767C;}
.board_detail .title_box .category1 {margin-bottom: 16px; line-height: 24px; font-size: 17px; font-weight: 600; color: #004097;}
.board_detail .title_box .category2 {margin-bottom: 16px; padding: 0 6px; display: inline-block; min-width: 60px; line-height: 34px; font-size: 13px; font-weight: 600; text-align: center; color: #fff; border-radius: 10px;}
.board_detail .title_box .category2.bg1 {background-color: #4BB225;}
.board_detail .title_box .category2.bg2 {background-color: #008834;}
.board_detail .title_box .category2.bg3 {background-color: #407BDD;}
.board_detail .title_box .category2.bg4 {background-color: #00A5B5;}
.board_detail .title_box .category2.bg5 {background-color: #004097;}
.board_detail .title_box .state {margin-bottom: 16px; padding: 0 6px; display: inline-block; min-width: 48px; line-height: 36px; font-size: 13px; font-weight: 600; text-align: center; color: #fff; border-radius: 10px;}
.board_detail .title_box .state.bg1 {background-color: #E8F2FD; color: #004097;}
.board_detail .title_box .state.bg2 {background-color: #004097; color: #fff;}
.board_detail .title_box .state.bg3 {background-color: #EDEFF2; color: #5C6368;}
.board_detail .title_box h3 {margin-bottom: 32px; line-height: 42px; font-size: 28px; font-weight: 700; color: #000; width: 100%;}
.board_detail .list_box {justify-content: center;}
.board_detail .info_box ul {padding: 25px 0; display: flex; display:-webkit-flex; align-items: center; flex-wrap: wrap; gap: 16px;}
.board_detail .info_box ul li {width: calc(50% - 8px); display: flex; display:-webkit-flex; align-items: center; gap: 8px;}
.board_detail .info_box ul li span {flex-shrink: 0; width: 80px; font-size: 13px; color: #6F767C;}
.board_detail .content_box {padding: 24px 0; line-height: 27px; font-size: 15px; color: #1C2025;}
.board_detail .content_box img {max-width: 100%;}
.board_detail .content_box .button_box {margin: 40px 0 16px;}
.board_detail .reply_box {padding: 24px 0 24px 36px; line-height: 27px; font-size: 15px; color: #1C2025; background: url('/gmigrant/images/hmpg/icon_reply.png') no-repeat 0 24px;}
.board_detail .reply_box img {max-width: 100%;}
.board_detail .file_wrap {margin-bottom: 24px; padding: 16px; border-radius: 20px; border: 1px solid #DFE4EA;}
.board_detail .file_wrap .title {margin-bottom: 8px; display: flex; display:-webkit-flex; justify-content: space-between; align-items: center;}
.board_detail .file_wrap .title .tit {line-height: 21px; font-size: 15px; font-weight: 600; color: #000;}
.board_detail .file_wrap .file_box {overflow-y: auto; max-height: 132px;}
.board_detail .file_wrap .file_box li {margin-bottom: 8px;}
.board_detail .keywords_box {padding: 24px 0; display: flex; display:-webkit-flex; flex-wrap: wrap; gap: 16px;}
.board_detail .keywords_box li {font-size: 15px; font-weight: 600; color: #004097;}
.utility_area {padding: 16px 0 0; display: flex; display:-webkit-flex; justify-content: space-between; align-items: center;}
.utility_area .share_panel .share_list {display: flex; display:-webkit-flex; gap: 12px;}
.utility_area .share_panel .share_list .share_item .share_anchor {display: block; width:46px; height:46px; font-size: 0;}
.utility_area .share_panel .share_list .share_item.kakao .share_anchor {background: url('/gmigrant/images/hmpg/icon_share_kakao.png') no-repeat;}
.utility_area .share_panel .share_list .share_item.facebook .share_anchor {background: url('/gmigrant/images/hmpg/icon_share_facebook.png') no-repeat;}
.utility_area .share_panel .share_list .share_item.x .share_anchor {background: url('/gmigrant/images/hmpg/icon_share_x.png') no-repeat;}
.utility_area .share_panel .share_list .share_item.line .share_anchor {background: url('/gmigrant/images/hmpg/icon_share_line.png') no-repeat;}
.utility_area .share_panel .share_list .share_item.mail .share_anchor {background: url('/gmigrant/images/hmpg/icon_share_mail.png') no-repeat;}
.utility_area .share_panel .share_list .share_item.copy .share_anchor {background: url('/gmigrant/images/hmpg/icon_share_copy.png') no-repeat;}
.utility_area .opinion_panel {display: flex; display:-webkit-flex; align-items: center; gap: 24px;}
.utility_area .opinion_panel .btn_comment {padding-left: 30px; line-height: 24px; font-size: 17px; font-weight: 600; color: #000; background: url('/gmigrant/images/hmpg/icon_btn_comment.png') no-repeat 0 center; cursor: pointer; display: flex; display:-webkit-flex; align-items: center; gap: 4px;}
.utility_area .opinion_panel .btn_comment span {font-size: 19px; font-weight: 700; color: #AAB1B8;}
.utility_area .opinion_panel .btn_comment span.active {color: #008834;}
.board_detail .video_box {position: relative; overflow: hidden;}
.board_detail .video_box .youtube, 
.board_detail .video_box .video {width: 100%; height: 282px; padding: 30px 0; text-align: center;}
.board_detail .video_box .youtube {position: relative;}
.board_detail .video_box .youtube iframe {width: 400px; height: 222px; border: 0;}
.board_detail .video_box .video .video-js {height: 100%; width: 100%; border: 0;}
.board_detail .video_box .video .video-js .vjs-big-play-button {left: calc(50% - 45px); top: calc(50% - 22px); width: 60px; height: 60px; border: 3px solid #fff; border-radius: 100%;}
.board_detail .video_box .video .video-js .vjs-big-play-button .vjs-icon-placeholder:before {top: 5px;}
.board_detail .video-js, .board_detail .video-js * {-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
.board_detail .video-js .vjs-big-play-button {left: 50%; top: 50%; transform: translate(-50%, -50%); margin: 0;}
.board_detail .video_box .contents {padding: 15px; width: 100%; height: 130px; overflow-y: auto; color: #666; font-size: 16px; line-height: 24px; border-top: 1px solid #e1e1e1;}

/*댓글*/
.comment_area {margin-top: 24px;}
.comment_area .button_box {margin-top: 10px;}
.comment_area .write_box {position: relative; padding: 16px 16px 60px; border: 1px solid #DFE4EA; border-radius: 16px;}
.comment_area .write_box textarea {padding: 0; height: 85px; line-height: 23px; font-size: 15px; border: 0; border-radius: 0; outline: 0;}
.comment_area .write_box textarea::placeholder {color: #949BA0;}
.comment_area .write_box .button_box {position: absolute; bottom: 16px; right: 16px;}
.comment_area .comment_list {margin-top: 24px; border-top: 1px solid #6F767C;}
/* 댓글 0건일 때 ul이 비어 있어도 border-top이 그려져 view_bottom 상단선과 이중으로 보임 */
.comment_area .comment_list:empty {margin-top: 0; border-top: 0;}
.comment_area .comment_list > li {padding: 20px 0; border-bottom: 1px solid #EDEFF2;}
.comment_area .comment_list > li:last-child {padding-bottom: 0; border-bottom: 0;}
.comment_area .comment_list > li dl dt {display: flex; display:-webkit-flex; align-items: center;}
.comment_area .comment_list > li dl dt .list_box li {margin-right: 8px; padding-right: 8px;}
.comment_area .comment_list > li dl dt .list_box li.name {font-size: 17px; font-weight: 700; color: #000;}
.comment_area .comment_list > li dl dt .list_box li.date {font-size: 15px; color: #6F767C;}
.comment_area .comment_list > li dl dt .list_box.button_area li {margin-right: 8px; padding-right: 0;}
.comment_area .comment_list > li dl dt .list_box.button_area li::after {display: none;}
.comment_area .comment_list > li dl dd {padding: 8px 0 0; font-size: 15px; line-height: 27px; color: #1C2025;}
.comment_area .comment_list > li .write_box {padding: 42px 16px 60px;}
.comment_area .comment_list > li .write_box .name {position: absolute; top: 16px; left: 16px; line-height: 18px; font-size: 13px; font-weight: 600; color: #000;}
.comment_area .comment_list > li.reply {padding: 20px 0 20px 30px; background: url('/gmigrant/images/hmpg/icon_comment.png') no-repeat 0 30px;}
.comment_area .comment_list > li.reply dl dd .name {padding-right: 5px; font-weight: 600; color: #004097;}
.comment_area .comment_list > li.delete p {font-size: 15px; color: #6F767C;}
.comment_area .opinion {padding: 8px 0 0; display: flex; display:-webkit-flex; align-items: center; justify-content: space-between;}
.comment_area .opinion .like input[type=checkbox] + label {padding-left: 20px; line-height: 22px; font-size: 15px; font-weight: 700; gap: 4px; background-size: 14px auto;}
.comment_area .opinion .like input[type=checkbox] + label span {font-size: 15px;}
.comment_area .opinion + .write_box {margin-top: 16px;}
.comment_area + .button_box {margin-top: 40px;}

/*이전글 다음글*/
.view_bottom {margin-top: 40px; border-top: 1px solid #6F767C;}
.view_bottom dl {padding: 16px 24px; display: flex; display:-webkit-flex; line-height: 36px;}
.view_bottom dl.prev {border-bottom: 1px solid #e4e4e4;}
.view_bottom dl dt {width: 140px; font-size: 13px; font-weight: 600; color: #5C6368;}
.view_bottom dl dt span {position: relative; padding-left: 50px;}
.view_bottom dl dt span::after {content: ''; position: absolute; left: 0; top: calc(50% - 18px); width: 36px; height: 36px; border-radius: 50%; border: 1px solid #DFE4EA;}
.view_bottom dl.prev dt span::after {background: url('/gmigrant/images/hmpg/icon_arrow_left.png') no-repeat center;}
.view_bottom dl.next dt span::after {background: url('/gmigrant/images/hmpg/icon_arrow_right.png') no-repeat center;}
.view_bottom dl:hover dt span::after {background-color: #EDEFF2;}
.view_bottom dl dd {width: calc(100% - 140px);}
.view_bottom dl dd a {overflow: hidden; display: block; text-overflow: ellipsis; white-space: nowrap; font-size: 17px; font-weight: 600; color: #1C2025;}
.view_bottom dl dd a:hover {text-decoration: underline;}

/*일반게시판 글쓰기*/
.boardview {overflow:hidden; width: 100%;}
.boardview + .boardview {margin-top: 40px;}
.boardview .point_txt {margin-bottom: 10px; color: #222; text-align: right;}
.boardview .point_txt::before {content: '*'; position: relative; top: 3px; padding-right: 3px; color: #fa0000;}
.boardview table {width: 100%; table-layout: fixed; border-top: 2px solid #222;}
.boardview table tr {border-bottom: 1px solid #ddd;}
.boardview table tr th {padding: 15px 20px; font-weight: 500; text-align: left; word-break: keep-all; background-color: #f3f4f8; color: #222;}
.boardview table tr th.th2 {background-color: #f9f9f9;}
.boardview table tr th.th3 {background-color: #eee;}
.boardview table tr th.line {border-left: 1px solid #ddd !important;}
.boardview table thead tr th {font-size: 20px; font-weight: 700; background-color: #fff;}
.boardview table tr.add th {background-color: #e5e5e5;}
.boardview table tr.add td {background-color: #f9f9f9;}
.boardview table tr th span {position: relative;}
.boardview table tr th span.point::after {content: '*'; position: relative; top: 3px; padding-left: 3px; color: #fa0000;}
.boardview table tr td {position: relative; padding: 12px 15px; color: #666; word-break: break-all;}
.boardview table tr td textarea {height: 80px;}
.boardview table tr td .optionbox {width: 200px;}
.boardview table tr td .inpbox {width: 100%;}
.boardview table tr td .inpbox.w300 {max-width: 100%;}
.boardview table tr td .box {display: flex; display:-webkit-flex; align-items: center; flex-wrap: wrap; gap: 10px;}
.boardview table tr td .box + .box {margin-top: 10px;}
.boardview table tr td .box .character {margin: 0 2px;}
.boardview table tr td .text {display: flex; display:-webkit-flex; align-items: center; font-size: 16px; color: #666;}
.boardview table tr td .text .point {margin-right: 5px; color: #f00000;}
.boardview table tr td .text2 {font-size: 16px;}
.boardview table tr td .text_no {font-size: 16px; color: #f00000;}
.boardview table tr td .text_ok {font-size: 16px; color: #0b6ae0;}
.boardview table tr td .text_box {display: flex; display:-webkit-flex; align-items: center;}
.boardview table tr td .text_box .text {margin-left: 10px;}
.boardview table tr td .text_box .text2 {margin-left: 10px;}
.boardview table tr td .text_box .text_no {margin-left: 10px;}
.boardview table tr td .text_box .text_ok {margin-left: 10px;}
.boardview table tr td .calendarbox .inpbox {width: 180px;}
.boardview table tr td .calendarbox .character {margin: 0 5px;}
.boardview table tr td .calendarbox .check_box {margin-left: 10px;}
.boardview table tr td .img_box {position: relative; width: 300px; height: 200px; border: 1px solid #ddd; border-radius: 10px;}
.boardview table tr td .img_box img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 8px;}
.boardview table tr td .file a {padding-left: 30px; color: #666;}
.boardview table tr td .file .btn_close {margin: -2px 5px 0 10px; width: 17px; height: 17px; background-color: #fff; border-radius: 3px; border: 1px solid #222;}
.boardview table tr td .file .btn_close .icon {width: 15px; height: 15px; background-color: #fff; border-radius: 3px;}
.boardview table tr td .file .btn_close .icon::after,
.boardview table tr td .file .btn_close .icon::before {width: 11px; left: 2px; top: 7px; height: 1px;}
.boardview table tr td .file_box li a {color: #666;}
.boardview table tr td .file_box li span {font-size: 13px; color: #666;}
.boardview table tr td.m_hidden {display: table-cell !important;}
.boardview table tr td.line {border-left: 1px solid #ddd !important;}
.boardview table tr td.editor {padding: 10px 0;}
.boardview table tr td.editor textarea {height: 255px;}
.boardview table tr td.tel .box .optionbox,
.boardview table tr td.tel .box .inpbox {width: 90px;}
.boardview table tr td.tel .box .inpbox input {text-align: center;}
.boardview table tr td.email .box .optionbox, 
.boardview table tr td.email .box .inpbox {width: 170px;}
.boardview table tr td.email .box .optionbox {margin-left: 10px;}
.boardview table tr td.tel .box > button,
.boardview table tr td.email .box > button {margin-left: 10px;}
.boardview table tr td .box.email  .optionbox, 
.boardview table tr td .box.email .inpbox {width: 170px;}
.boardview table tr td .box.email .optionbox {margin-left: 10px;}
.boardview table tr td .box.email > button {margin-left: 10px;}
.boardview table tr td.address .box.post .inpbox {width: 150px;}
.boardview table tr td.address .box.detail {justify-content: space-between;}
.boardview table tr td.address .box.detail .inpbox {margin: 0; width: calc(50% - 5px);}
.boardview table tr td .box.bsnum2 .inpbox {width: 160px;}
.boardview table tr td .box.bsnum2 .inpbox:nth-child(2) {width: 100px;}
.boardview table tr td .box.bsnum3 .inpbox {width: calc(50% - 50px);}
.boardview table tr td .box.bsnum3 .inpbox:nth-child(2) {width: 80px;}
.boardview table tr td .box.rrn .inpbox {width: calc(50% - 59px);}
.boardview table tr td .box.rrn .btn8 {width: 80px;}
.boardview table tr td.totalsum .box {padding: 10px 0; width: 100%; justify-content: space-between;}
.boardview table tr td.totalsum .box p { font-size: 18px; font-weight: 500; color: #222;}
.boardview table tr td.totalsum .box p span {color: #278742;}
.boardview table tr td.totalsum .box p.txt {font-weight: 600;}
.boardview + .board_title {margin-top: 30px;}
.boardview + .button_box {margin-top: 50px;}
.attachment-file-edit {width: 100%; align-items: center;}
.attachment-file {position:relative; margin-top: 10px; display: flex; display:-webkit-flex; align-items: center; gap: 8px;}
.attachment-file:first-child {margin-top: 0;}
.attachment-file .ipfile {position: relative; flex: none; width: 88px; height: 56px;}
.attachment-file .ipfile input[type="file"] {overflow: hidden; position:absolute; width: 1px; height: 1px; margin: -1px; cursor: pointer;}
.attachment-file .ipfile input.file {position:absolute; z-index:5; width: calc(100% + 2px); height: calc(100% + 2px); opacity: 0; filter:alpha(opacity=0); cursor:pointer;}
.attachment-file .ipfile input.file:focus,
.attachment-file .ipfile input.file:focus-visible{opacity: 1; background: 0;}
.attachment-file .ipfile span {position: absolute; z-index: 2; font-size: 15px; font-weight: 600; line-height:56px; display: block; left: 1px; top: 1px; color: #fff; width: 100%; height: 100%; text-align: center; background: #1C2025; cursor:pointer; border-radius: 12px;}
.attachment-file .inpbox {position:relative; max-width: 340px !important;}
.attachment-file .button_box {margin-top: 0; padding-left: 10px; flex: none;}
.attachment-file .button_box button {margin-left: 5px;}

/*게시판 작성*/
.boardwrite textarea {height: 370px;}
.boardwrite .inpbox {width: 100%;}
.boardwrite .optionbox {width: 200px;}
.boardwrite dl {margin-bottom: 40px;}
.boardwrite dl:last-child {margin-bottom: 0;}
.boardwrite dl dt {margin-bottom: 8px; font-size: 15px; font-weight: 600; color: #000;}
.boardwrite dl dt.point::after {margin: 0 0 0 2px; content: '*'; font-size: 15px; font-weight: 600; color: #E70500;}
.boardwrite dl dd {margin-bottom: 16px; display: flex; display:-webkit-flex; align-items: center; gap: 16px;}
.boardwrite dl dd:last-child {margin-bottom: 0;}
.boardwrite dl dd .text {margin-top: 10px; font-size: 13px; color: #6F767C;}
.boardwrite dl dd.line {display: block;}
.boardwrite dl dd.line .tel {display: flex; display:-webkit-flex; align-items: center; gap: 8px;} 
.boardwrite dl dd.line .tel .inpbox {width: 80px;}
.boardwrite dl dd.line .tel .inpbox input {text-align: center;}
.boardwrite dl dd.line .tel span {color: #AAB1B8;}
.agree_box {margin-top: 32px; padding: 32px; border-radius: 20px; background-color: #EDEFF2;}
.agree_box .check_box li a {position: absolute; top: 0; right: 0; line-height: 21px; font-size: 15px; border-bottom: 1px solid #000;}
.agree_box .check_box li {margin-bottom: 16px; padding-bottom: 20px; width: 100%; border-bottom: 1px solid #D5DADF;}
.agree_box .text {font-size: 13px; color: #6F767C;}
.file_img {padding: 8px 0; width: 100%; overflow-x: auto;}
.file_img ul {display: flex; display:-webkit-flex; align-items: flex-start; justify-content: flex-start; gap: 16px;}
.file_img ul li {position: relative;}
.file_img ul li .thumb {position: relative; width: 65px; height: 65px; border-radius: 8px; overflow: hidden;}
.file_img ul li .thumb img {position:absolute; top:50%; left:50%; transform: translate(-50%, -50%);}
.file_img ul li .btn_delete {position:absolute; top: -6px; right: -6px; width: 20px; height: 20px; background: url('/gmigrant/images/hmpg/icon_file_delete.png') no-repeat;}
.file_list {margin-top: 12px; width: 100%;}
.file_list ul {display: flex; display:-webkit-flex; flex-wrap: wrap; gap: 8px;}
.file_list ul li {padding: 10px 14px; border-radius: 10px; background-color: #EDEFF2; display: flex; display:-webkit-flex; flex-wrap: wrap; gap: 4px;}
.file_list ul li span {padding-left: 24px; font-size: 13px; font-weight: 500; color: #4E5257; background: url('/gmigrant/images/hmpg/icon_membership_file.png') no-repeat 0 center;}
.file_list ul li .btn_delete {width: 20px; height: 20px; background: url('/gmigrant/images/hmpg/icon_membership_delete.png') no-repeat;}

/*썸네일 게시판*/
.thumbnaillist {overflow: hidden; width:100%;}
.thumbnaillist > li {overflow: hidden; position: relative; border-bottom: 1px solid #EDEFF2;}
.thumbnaillist > li a {padding: 20px 0; display:flex; display:-webkit-flex;}
.thumbnaillist > li:first-child a {padding: 0 0 20px;}
.thumbnaillist > li a .img_box {width: 240px; height: 160px; border-radius: 8px; flex: none; background-repeat: no-repeat; background-position: center center; background-size: cover;}
.thumbnaillist > li a .text_box {position: relative; padding: 10px 0 0 20px; width: 100%;}
.thumbnaillist > li a .text_box h3 {overflow: hidden; margin-bottom: 8px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; color: #1C2025; font-size: 19px; font-weight: 600; line-height: 20px;}
.thumbnaillist > li a:hover .text_box h3 {text-decoration: underline;}
.thumbnaillist > li a .text_box h3 .category {margin-right: 8px; padding: 0 6px; display: inline-block; line-height: 20px; font-size: 13px; font-weight: 600; border-radius: 8px; color: #fff; background-color: #004097;}
.thumbnaillist > li a .text_box .text {overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; max-height: 66px; -webkit-line-clamp: 3; color: #4E5257; font-size: 15px; line-height: 22px;}
.thumbnaillist > li a .list_box {position: absolute; left: 20px; bottom: 10px;}
.thumbnaillist > li a .list_box li {padding-right: 8px; margin-right: 8px; color: #6F767C; font-size: 13px;}
.thumbnaillist > li a .list_box li::after {top: calc(50% - 6px); height: 12px; background-color: #DFE4EA;}

/*갤러리형 게시판*/
.gallerylist {display:flex; display:-webkit-flex; flex-wrap:wrap; -webkit-flex-wrap:wrap; gap: 40px;}
.gallerylist > li {width: calc((100% - 80px) / 3); border-bottom: 1px solid #EDEFF2;}
.gallerylist > li a {position: relative; display:flex; display:-webkit-flex; flex-flow: column; height: 100%}
.gallerylist > li .img_box {width: 100%; padding-top: 66.66666666666667%; background-repeat: no-repeat; background-position: center center; background-size: cover; border-radius: 16px;}
.gallerylist > li .text_box {padding: 16px 0 32px; height: 100%; display:flex; display:-webkit-flex; flex-wrap:wrap; -webkit-flex-wrap:wrap; flex-flow: column; justify-content: space-between;}
.gallerylist > li .category {width: 53px; line-height: 24px; font-size: 13px; font-weight: 600; text-align: center; border-radius: 8px; color: #fff;}
.gallerylist > li .category.bg1 {background-color: #004097;}
.gallerylist > li .category.bg2 {background-color: #008834;}
.gallerylist > li .category.bg3 {background-color: #C62828;}
.gallerylist > li .category.bg4 {background-color: #C62828;}
.gallerylist > li h3 {margin: 8px 0; line-height: 26px; font-size: 17px; font-weight: 600; color: #1C2025;}
.gallerylist > li .txt {font-size: 15px; color: #4E5257; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;}
.gallerylist > li .list_box {margin-top: 16px;}
.gallerylist > li .list_box li {padding-right: 8px; margin-right: 8px;}
.gallerylist > li.nodata {width: 100%; margin: -30px 0 0; border: 0; border-radius: 0;}
.gallerylist > li .img_box {position: relative;}
.gallerylist > li .img_box .resource_media_badge {position: absolute; bottom: 8px; right: 8px; padding: 4px 8px; line-height: 1.2; font-size: 12px; font-weight: 600; color: #fff; background: rgba(0,0,0,.65); border-radius: 6px;}
.gallerylist > li .resource_media_link a {color: #004097; text-decoration: underline;}

/*문자형 게시판*/
.documentlist > li {margin-bottom: 24px; padding-bottom: 24px; position: relative; border-bottom: 1px solid #DFE4EA; background: url('/gmigrant/images/hmpg/icon_list_arrow.png') no-repeat right 0; display:flex; display:-webkit-flex; flex-direction: column; gap: 12px;}
.documentlist > li:last-child {margin-bottom: 0;}
.documentlist > li:hover {background: url('/gmigrant/images/hmpg/icon_list_arrow_acrive.png') no-repeat right 0;}
.documentlist > li .category {line-height: 23px; font-size: 15px; color: #000;}
.documentlist > li .title_box {display:flex; display:-webkit-flex; flex-wrap: wrap; gap: 8px;}
.documentlist > li .title_box a {max-width: calc(100% - 32px); line-height: 26px; font-size: 19px; font-weight: 600; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;}
.documentlist > li .title_box a:hover {text-decoration: underline;}
.documentlist > li .title_box .like input[type=checkbox] + label {margin-top: 2px;}
.documentlist > li .btn_box {display:flex; display:-webkit-flex; overflow-y: hidden; overflow-x: auto; width: 100%;}
.documentlist > li .btn_box ul {width: 100%; display: flex; display:-webkit-flex; align-items: flex-start; justify-content: flex-start; gap: 8px;}
.documentlist > li .btn_box ul li {flex-shrink: 0;}
.documentlist > li .period_box {display:flex; display:-webkit-flex; gap: 8px;}
.documentlist > li .period_box .state {padding: 0 6px; height: 24px; line-height: 24px; font-size: 13px; font-weight: 600; border-radius: 8px;}
.documentlist > li .period_box .state.bg1 {background-color: #E8F2FD; color: #004097;}
.documentlist > li .period_box .state.bg2 {background-color: #004097; color: #fff;}
.documentlist > li .period_box .state.bg3 {background-color: #EDEFF2; color: #5C6368;}
.documentlist > li .period_box .txt {line-height: 24px; font-size: 13px; font-weight: 600; color: #004097;}
.documentlist > li .list_box li {padding-right: 8px; margin-right: 8px;}
.documentlist > li .time {position: absolute; bottom: 24px; right: 0; font-size: 13px; color: #6F767C;}
.documentlist > li .info_box {display:flex; display:-webkit-flex; flex-wrap: wrap; gap: 8px;}
.documentlist > li .info_box span {margin-right: 8px; font-size: 13px; font-weight: 600; color: #6F767C;}
.documentlist > li .keyword_box {display:flex; display:-webkit-flex; flex-wrap: wrap; gap: 4px;}
.documentlist > li .keyword_box span {margin-right: 4px; padding: 0 6px; line-height: 24px; font-size: 13px; font-weight: 600; color: #004097; border-radius: 8px; background-color: #E8F2FD;}

/*검색 게시판*/
.searchlist > li {margin-bottom: 24px; padding-bottom: 24px; position: relative; border-bottom: 1px solid #DFE4EA; display:flex; display:-webkit-flex; flex-direction: column; gap: 12px;}
.searchlist > li:last-child {margin-bottom: 0;}
.searchlist > li .category {line-height: 23px; font-size: 15px; color: #000;}
.searchlist > li a {width: 100%; line-height: 26px; font-size: 19px; font-weight: 600; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;}
.searchlist > li a:hover {text-decoration: underline;}
.searchlist > li .txt {width: 100%; line-height: 23px; font-size: 15px; color: #4E5257; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;}
.searchlist > li .keyword_box {display:flex; display:-webkit-flex; flex-wrap: wrap; gap: 4px;}
.searchlist > li .keyword_box span {margin-right: 4px; padding: 0 6px; line-height: 24px; font-size: 13px; font-weight: 600; color: #004097; border-radius: 8px; background-color: #E8F2FD;}
.searchlist > li .list_box {position: absolute; bottom: 24px; right: 0;}
.searchlist > li .list_box li {padding-right: 8px; margin-right: 8px;}
.searchlist > li .list_box li.view {padding-left: 20px; background: url('/gmigrant/images/hmpg/icon_view.png') no-repeat 0 center;}

/*상세보기 일반 테이블*/
.tablebasic {clear:both; overflow-x: auto;}
.tablebasic table {width:100%; table-layout:fixed; border-top: 2px solid #222;}
.tablebasic table thead tr {border-bottom-color: #ccc;}
.tablebasic table thead tr th:last-child {border-right: 0;}
.tablebasic table tr {border-bottom: 1px solid #ddd;}
.tablebasic table tr th {padding: 12px 15px; font-size: 15px; font-weight: 500; text-align: center; background-color: #f3f4f8; border-right: 1px solid #ddd;}
.tablebasic table tr td {padding: 10px 20px; line-height: 22px; font-size: 15px; font-weight: 400; text-align: center; color: #666; word-break: break-all; background-color: #fff; border-right: 1px solid #ddd;}
.tablebasic table tr td:last-child {border-right-width: 0;}
.tablebasic table tr td.line {border-right-width: 1px;}
.tablebasic table .box {justify-content: center;}
.tablebasic table .check_box {justify-content: center;}

/*faq*/
.faq_area {margin: 40px 0 0;}
.faq_area > li {word-break: keep-all; border-bottom: 1px solid #ddd;}
.faq_area > li:first-child {border-top: 2px solid #000;}
.faq_area > li > a {position: relative; padding: 22px 70px 22px 65px; display: block;}
.faq_area > li > a .q {position: absolute; top: 20px; left: 23px; content: ''; display: block; width: 30px; height: 30px; line-height: 30px; font-size: 18px; font-weight: 500; text-align: center; border-radius: 10px; color: #fff; background-color: #277b3f;}
.faq_area > li > a .txt { font-size: 16px;}
.faq_area > li > a .txt strong {font-weight: 400; color: #278742;}
.faq_area > li > a .icon {position: absolute; right: 20px; top: calc(50% - 12px); width: 24px; height: 24px; transition:all 0.3s; -webkit-transition:all 0.3s; -moz-transition:all 0.3s; -o-transition:all 0.3s;}
.faq_area > li.active > a .icon {transform: rotate(180deg);}
.faq_area > li > a .icon::after,
.faq_area > li > a .icon::before {content: ''; position: absolute; top: 12px; width: 14px; height: 2px; background-color: #999;}
.faq_area > li > a .icon::after {left: 0; transform: rotate(42.1deg);}
.faq_area > li > a .icon::before {right: 0; transform: rotate(-42.1deg);}
.faq_area > li > ul {display: none; background-color: #f9f9f9;}
.faq_area > li > ul li {position: relative; padding: 22px 70px 22px 65px; font-size: 16px; line-height: 24px;}
.faq_area > li > ul li .a {position: absolute; top: 20px; left: 23px; content: ''; display: block; width: 30px; height: 30px; line-height: 30px; font-size: 18px; font-weight: 500; text-align: center; border-radius: 10px; color: #fff; background-color: #cb4d01;}

/*설문조사*/
/*목록*/
.popup .boardlist_top {margin: 0 0 30px;}
.popup .boardlist_top .box {width: 100%;}
.popup .boardlist_top dl dt {width: auto;}
.popup .boardlist_top dl dd {width: calc(100% - 80px);}
.popup .boardlist_top .box dl dd .inpbox {width: 100%;}
.popup .boardlist_top .button_box button {min-width: 85px; height: 35px; line-height: 33px; font-size: 14px;}
.popup.survey .popup_inner + .button_box {margin-top: 0;}
.popup.survey .popup_inner + .button_box button {margin-left: 0; width: 100%; height: 55px; font-size: 15px; font-weight: 500; color: #fff; background-color: #5f6169;}
.popup.survey .popup_inner + .button_box button:first-child {border-radius: 0 0 0 25px; background-color: #277b3f;}
.popup.survey .popup_inner + .button_box button:last-child {border-radius: 0 0 25px 0;}
/*상세*/
.popup .board_detail .title_box h3 {width: 100%;}
.survey_question {margin-top: 30px;}
.survey_question .tit {margin-bottom: 15px; width: 98px; height: 36px; line-height: 34px; text-align: center; border-radius: 36px; color: #278742; border: 1px solid #278742;}
.survey_question .txt {margin-bottom: 5px; font-weight: 600;}
.survey_question .txt span {margin-right: 10px; color: #278742;}
/*참여*/
.survey_detail dl {margin-bottom: 30px; border-top: 2px solid #222;}
.survey_detail dl:last-child {margin-bottom: 0;}
.survey_detail dl dt {padding: 20px; font-size: 18px; font-weight: 500; background-color: #fff; border-bottom: 1px solid #ccc;}
.survey_detail dl dt span {display: block;}
.survey_detail dl dt span.point::before {content: '*'; position: relative; top: 3px; padding-right: 3px; color: #fa0000;}
.survey_detail dl dd {padding: 15px 20px; border-bottom: 1px solid #ddd;}
/*결과*/
.survey_detail dl dd ul.result_list li {position: relative; margin: 0; padding: 10px 0; display: flex; display:-webkit-flex; flex-wrap:wrap; -webkit-flex-wrap:wrap;}
.survey_detail dl dd ul.result_list li .text {margin-bottom: 10px; width: 100%; color: #666; line-height: 16px;}
.survey_detail dl dd ul.result_list li .graph {position: relative; width: 100%; height: 15px; background-color: #f3f3f3;}
.survey_detail dl dd ul.result_list li .graph span {position: absolute; left: 0; top: 0; height: 100%; background-color: #f4912b;}

.bord-detail-prevnext.view_bottom dl {padding : 16px !important; gap: 10px 40px !important;}

@media screen and (max-width:1366px) {

}
@media screen and (max-width:1240px) {

}
@media screen and (max-width:1024px) {
    .optionbox, .inpbox {height: 50px; border-radius: 12px;}
    .nodata {font-size: 16px;}
     
    /*라디오박스*/
    .radio_box > li {margin-right: 32px;}

    /*체크박스*/
    .check_box > li {margin-right: 32px;}
    .check_box2 input[type=checkbox] + label {padding: 0 8px; min-width: 76px; height: 38px; line-height: 36px; border-radius: 38px;}
    .calendarbox .inpbox input {padding: 0 48px 0 16px; border-radius: 12px;}
    .calendarbox .inpbox .ui-datepicker-trigger {width: 48px; height: 48px; border-radius: 12px; background-size: 60% auto;}
    .list_box li {padding-right: 8px; margin-right: 8px;}
    .file_box {gap: 8px;}
    .file_box li {margin-bottom: 12px;}
    .file_box li:last-child {margin-bottom: 0;}
    .file_box li a {font-size: 13px;}
    .file_box li button {margin-left: 4px;}
    .character {margin: 0 5px;}
    .noresult {padding: 120px 0;}
    .noresult p {line-height: 22px; font-size: 15px;}
    
    /*일반게시판 검색바*/
    .board_top {margin-bottom: 12px; gap: 12px;}
    .board_top .all {font-size: 13px;}
    .board_top .boardschbox {display: block;}
    .board_top .boardschbox > div {margin-bottom: 10px;}
    .board_top .boardschbox > div:last-child {margin-bottom: 0;}
    .board_top .boardschbox .search_box {width: 100%;}
    .board_top .boardschbox .select_box .optionbox, 
    .board_top .boardschbox .search_box .inpbox {width: 100%; height: 35px; border-radius: 5px;}
    .board_top .boardschbox .select_box .optionbox:last-child {margin-right: 0;}
    .board_top .boardschbox .select_box .optionbox select,
    .board_top .boardschbox .search_box .inpbox input.txt {font-size: 14px; border-radius: 5px;}
    .board_top .boardschbox .search_box .btn_search {width: 35px; height: 33px; border-radius: 0 5px 5px 0;}
    .board_top .boardschbox .search_box .btn_search .icon {transform: scale(0.9);}
    .board_top > .optionbox {float: right; margin: -28px 0 10px;}
    .board_top .calendarbox {margin-right: 0;}
    .board_top .calendarbox .inpbox {width: 100%;}
    .board_top .calendarbox .inpbox input.txt {font-size: 16px;}
    .board_top .tab_area2 ul li {min-width: 63px;}
    .board_top .tab_area {margin-top: 0;}

    /*목록상단검색*/
    .boardlist_top {margin: 20px 0 30px; padding: 15px; border-radius: 10px;}
    .boardlist_top .box {width: 100%; gap: 10px;}
    .boardlist_top .box .calendarbox {width: 100%; flex-wrap: wrap; gap: 10px;}
    .boardlist_top .box .calendarbox .inpbox {width: 165px;}
    .boardlist_top .box .calendarbox .inpbox .ui-datepicker-trigger {height: 28px; background: #f6f6f6;}
    .boardlist_top .box .calendarbox .inpbox .ui-datepicker-trigger img {width: 18px;}
    .boardlist_top .box .calendarbox .character {margin: 0; font-size: 13px;}
    .boardlist_top .box .optionbox {width: 165px;}
    .boardlist_top .box .optionbox.w130 {width: 165px;}
    .boardlist_top dl {gap: 10px;}
    .boardlist_top dl dt {width: 58px; font-size: 13px;}
    .boardlist_top dl dd {width: calc(100% - 58px); gap: 10px;}
    .boardlist_top dl dd .btn_wrap2 {width: 100%;}
    .boardlist_top dl dd .btn_wrap2 input[type=radio] + label {width: 56px; font-size: 13px; border-top: 1px solid #d2d2d2 !important;}
    .boardlist_top dl dd .btn_wrap2 input[type=radio]:checked + label {border-top: 1px solid #278742 !important;}
    .boardlist_top dl dd .btn_wrap2 li {width: auto;}
    .boardlist_top dl dd .btn_wrap2 li:first-child input[type=radio] + label {border-radius: 5px 0 0 5px;}
    .boardlist_top dl dd .btn_wrap2 li:last-child input[type=radio] + label {border-radius: 0 5px 5px 0;}
    .boardlist_top dl dd .btn_wrap2 li:nth-child(3) input[type=radio] + label,
    .boardlist_top dl dd .btn_wrap2 li:nth-last-child(3) input[type=radio] + label {border-radius: 0;}
    .boardlist_top .box dl dd .inpbox {width: 100%;}
    .boardlist_top > button {margin-top: 10px; position: static; width: 100%; font-size: 13px; border-radius: 5px;}

    /*일반게시판 리스트*/
    .boardlist table, .boardlist table tbody, .boardlist table tbody tr td {display: block;}
    .boardlist table thead {display: none;}
    .boardlist table tbody tr {position: relative; padding: 12px 0; display:flex; display:-webkit-flex; flex-wrap:wrap; -webkit-flex-wrap:wrap;}
    .boardlist table tbody tr:hover {background: 0;}
    .boardlist table tbody tr td {order: 2; padding: 4px 0; text-align: left; font-size: 13px; line-height: 18px;}
    .boardlist table tbody tr td.m_hidden {display: none !important;}
    .boardlist table tbody tr td.title_box {order: 1; width: 100%;}
    .boardlist table tbody tr td.title_box .title {font-size: 16px; line-height: 16px;}
    .boardlist table tbody tr td.title_box .title a {font-size: 16px; line-height: 16px;}
    .boardlist table tbody tr td.title_box .title a p {font-weight: 500;}
    .boardlist table tbody tr td.title_box .title .secret {margin: -2px 0 0 5px; width: 12px;}
    .boardlist table tbody tr td.title_box .title.comment a {padding-left: 20px; background-size: 12px auto;}
    .boardlist table tbody tr td.line {position: relative; padding-right: 8px; margin-right: 8px;}
    .boardlist table tbody tr td.line::after {content: ''; position: absolute; right: 0; top: calc(50% - 6px); width: 1px; height: 12px; background-color: #DFE4EA;}
    .boardlist table tbody tr td.file {order: 999;}
    .boardlist table tbody tr td.file.line::after {display: none;}
    .boardlist table tbody tr td.block {display: block; width: 100%;}
    .boardlist table tbody tr td.topright {position: absolute; right: 0; top: 10px;}
    .boardlist table tbody tr td.bottomright {position: absolute; right: 0; bottom: 10px;}
    .boardlist table tbody tr td.nodata {padding: 30px 0 !important; width: 100%; text-align: center;}
    .boardlist table tbody tr td .file {width: 16px;}
    .boardlist.boardlist_check tbody tr {padding-left: 40px;}
    .boardlist.boardlist table tbody tr td.check {position: absolute; top: 12px; left: 0;}

    /*하단 버튼*/
    .button_box {margin-top: 24px !important;}
    .button_box.more > div {width: auto;}

    /*페이징*/
    .paging {margin-top: 36px;}
    .paging button {margin: 0; width: 32px; height: 32px; line-height: 30px; background-size: 14px auto;}
    .paging button.btn-paging-pre {margin: 0 8px 0 4px;}
    .paging button.btn-paging-next {margin: 0 4px 0 8px;}

    /*일반게시판 상세*/
    .board_detail .title_box {padding: 0 0 24px; text-align: left;}
    .board_detail .title_box .category1 {margin-bottom: 12px; line-height: 20px; font-size: 13px;}
    .board_detail .title_box .category2 {margin-bottom: 12px; min-width: 53px; line-height: 24px; font-size: 11px; border-radius: 8px;}
    .board_detail .title_box h3 {margin-bottom: 12px; line-height: 27px; font-size: 19px;}
    .board_detail .list_box {justify-content: flex-start;}
    .board_detail .list_box span {display: none;}
    .board_detail .info_box ul {padding: 20px 0; gap: 12px;}
    .board_detail .info_box ul li {width: 100%; gap: 0;}
    .board_detail .info_box ul li span {width: 80px;}
    .board_detail .content_box {padding: 16px 0;}
    .board_detail .reply_box {padding: 16px 0 16px 28px; background: url('/gmigrant/images/hmpg/icon_reply.png') no-repeat 0 16px;}
    .board_detail .file_wrap {border-radius: 16px;}
    .board_detail .file_wrap .file_box {max-height: 124px;}
    .board_detail .keywords_box {padding: 16px 0; gap: 8px;}
    .utility_area {padding: 16px 0 0; display: block}
    .utility_area .share_panel .share_list {gap: 8px;}
    .utility_area .share_panel .share_list .share_item .share_anchor {width:32px; height:32px; background-size: 100% auto !important;}
    .utility_area .opinion_panel {padding: 24px 0 0; justify-content: space-between; gap: 24px;}
    .board_detail .video_box {padding: 20px 0 0; display: block; display:-webkit-block;}
    .board_detail .video_box .youtube {position: relative; width: 100%; height: auto; padding-top: 56.25%;}
    .board_detail .video_box .youtube iframe {position: absolute;top: 0;left: 0;width: 100%;height: 100%;border: 0;}
    .board_detail .video_box .video {width: 100%;}
    .board_detail .video_box .contents {padding: 15px; margin-top: 20px; font-size: 14px; line-height: 22px;}

    /*댓글*/
    .comment_area {margin-top: 24px;}
    .comment_area .board_top .all {font-size: 15px;}
    .comment_area .write_box {padding: 16px 16px 50px;}
    .comment_area .write_box textarea {height: 70px;}
    .comment_area .comment_list {margin-top: 24px;}
    .comment_area .comment_list > li {padding: 16px 0;}
    .comment_area .comment_list > li dl dt .list_box li {margin-right: 8px; padding-right: 0;}
    .comment_area .comment_list > li dl dt .list_box li::after {display: none;}
    .comment_area .comment_list > li dl dt .list_box li.name {font-size: 15px; font-weight: 600;}
    .comment_area .comment_list > li dl dt .list_box li.date {font-size: 13px;}
    .comment_area .comment_list > li dl dt .list_box.button_area li {margin-right: 4px; padding-right: 0;}
    .comment_area .comment_list > li dl dt .list_box.button_area li:last-child {margin-right: 0;}
    .comment_area .comment_list > li dl dd {padding: 4px 0 0;}
    .comment_area .comment_list > li .write_box {padding: 42px 16px 50px;}
    .comment_area .comment_list > li.reply {padding: 16px 0 16px 24px; background: url('/gmigrant/images/hmpg/icon_comment.png') no-repeat 0 20px;}
    .comment_area .comment_list > li.reply dl dd .name {padding-right: 5px; font-weight: 600; color: #004097;}

    .comment_area .opinion {padding: 4px 0 0;}
    .comment_area + .button_box {margin-top: 24px;}

    /*이전글 다음글*/
    .view_bottom {margin-top: 24px;}
    .view_bottom dl {padding: 16px 0;}
    .view_bottom dl dt {width: 110px;;}
    .view_bottom dl dt span {padding-left: 44px;}
    .view_bottom dl dd {width: calc(100% - 110px);}

    /*일반게시판 글쓰기*/
    .boardview + .boardview {margin-top: 20px;}
    .boardview .point_txt {margin-bottom: 5px;}
    .boardview .boardview_title {margin-bottom: 5px; font-size: 13px;}
    .boardview > table, .boardview > table > thead, .boardview > table > thead > tr, .boardview > table > thead > tr > th, .boardview > table > tbody, .boardview > table > tbody > tr, .boardview > table > tbody > tr > th, .boardview > table > tbody > tr > td {display: block;}
    .boardview > table {padding: 15px 0;}
    .boardview > table > tbody > tr {margin-bottom: 10px; padding-bottom: 15px;}
    .boardview > table > tbody > tr:last-child {margin-bottom: 0;}
    .boardview > table > tbody > tr > th {padding: 0; margin: 15px 0 5px; font-size: 13px; color: #666; background-color: #fff;}
    .boardview > table > tbody > tr > th:first-child {margin-top: 0;}
    .boardview > table > tbody > tr > td {padding: 0; font-size: 13px; line-height: 20px; color: #222;}
    .boardview table tr th.th2 {background: 0;}
    .boardview table tr th.th3 {background: 0;}
    .boardview table tr th.line {border-left: 0 !important;}
    .boardview table thead {width: 100%;}
    .boardview table thead tr {margin-top: -15px; width: 100%;}
    .boardview table thead tr th {padding: 15px 0; width: 100%; font-size: 20px;}
    .boardview table thead + tbody tr:first-child {padding-top: 10px;}
    .boardview table tr td .optionbox {max-width: 100%;}
    .boardview table tr td .inpbox.w200 {width: 100% !important;}
    .boardview table tr td .box {gap: 5px;}
    .boardview table tr td .box .character {font-size: 12px;}
    .boardview table tr td .text {margin-top: 5px; font-size: 11px;}
    .boardview table tr td .text .icon {margin-right: 5px; width: 13px; height: 13px; background-size: 100% auto;}
    .boardview table tr td .text2 {margin-top: 5px; font-size: 11px;}
    .boardview table tr td .text_no {margin-top: 5px; font-size: 11px;}
    .boardview table tr td .text_ok {margin-top: 5px; font-size: 11px;}
    .boardview table tr td .text_box {display: block;}
    .boardview table tr td .text_box .text {margin-left: 0; margin-top: 5px;}
    .boardview table tr td .text_box .text2 {margin-left: 0; margin-top: 5px;}
    .boardview table tr td .text_box .text_no {margin-left: 0; margin-top: 5px;}
    .boardview table tr td .text_box .text_ok {margin-left: 0; margin-top: 5px;}
    .boardview table tr td .calendarbox .inpbox {width: 100%;}
    .boardview table tr td .calendarbox + .ml10 {margin-left: 0 !important;}
    .boardview table tr td .file .btn_close {width: 15px; height: 15px;}
    .boardview table tr td .file .btn_close .icon {width: 13px; height: 13px;}
    .boardview table tr td .file .btn_close .icon::after, 
    .boardview table tr td .file .btn_close .icon::before {width: 9px; top: 6px;}
    .boardview table tr td .file_box li {justify-content: left;}
    .boardview table tr td .file_box li a {background-position: 0 3px;}
    .boardview table tr td .file_box li span {line-height: 24px; font-size: 11px;}
    .boardview table tr td.m_hidden {display: none !important;}
    .boardview table tr td.line {border-left: 0 !important;}
    .boardview table tr td.editor textarea {height: 150px;}
    .boardview table tr td.email .box .optionbox, 
    .boardview table tr td.email .box .inpbox {width: 170px;}
    .boardview table tr td.email .box .optionbox {margin-left: 10px;}
    .boardview table tr td.email .box .btn_check {margin-left: 10px;}
    .boardview table tr td .box.email .optionbox, 
    .boardview table tr td .box.email .inpbox {width: 170px;}
    .boardview table tr td .box.email .optionbox {margin-left: 10px;}
    .boardview table tr td .box.email .btn_check {margin-left: 10px;}
    .boardview table tr td.address .box button {margin-left: 0; font-size: 12px; height: 35px;}
    .boardview table tr td.address .box.post .inpbox {width: calc(100% - 70px); max-width: 300px;}
    .boardview table tr td.address .box.detail {margin-top: 5px;}
    .boardview table tr td.address .box.detail .inpbox {width: 100%;}
    .boardview table tr td .box.bsnum2 .inpbox {max-width: calc(50% - 70px);}
    .boardview table tr td .box.bsnum2 .inpbox:nth-child(2) {max-width: 60px;}
    .boardview table tr td .box.bsnum2 button {height: 35px;}
    .boardview table tr td .box.rrn .inpbox {width: calc(50% - 8px);}
    .boardview table tr td .box.rrn .btn8 {width: 100%; height: 33px;}
    .boardview table tr td.totalsum .box {padding: 10px 0 7px;}
    .boardview table tr td.totalsum .box p {font-size: 15px;}
    .attachment-file .ipfile {height: 50px;}
    .attachment-file .ipfile span {line-height: 50px; font-size: 13px;}
    .attachment-file .inpbox {width: calc(100% - 88px);}
    .attachment-file .button_box {width: 80px;}

    /*게시판 작성*/
    .boardwrite .optionbox {width: calc(50% - 4px);}
    .boardwrite dl {margin-bottom: 20px;}
    .boardwrite dl dt {margin-bottom: 8px; font-size: 13px;}
    .boardwrite dl dd {gap: 8px;}
    .agree_box {margin-top: 20px; padding: 20px; border-radius: 16px;}

    /*썸네일 게시판*/
    .thumbnaillist > li a {padding: 15px 0;}
    .thumbnaillist > li:first-child a {padding: 0 0 15px;}
    .thumbnaillist > li a .img_box {width: 110px; height: 80px; border-radius: 10px;}
    .thumbnaillist > li a .text_box {padding: 0 0 0 15px;}
    .thumbnaillist > li a .text_box h3 {margin-bottom: 5px; font-size: 15px;}
    .thumbnaillist > li a .text_box h3 .category {margin-right: 4px; padding: 0 4px; font-size: 11px; border-radius: 6px;}
    .thumbnaillist > li a .text_box .text {max-height: 36px; line-height: 18px; font-size: 13px; -webkit-line-clamp: 2;}
    .thumbnaillist > li a .list_box {position: static;}
    .thumbnaillist > li a .list_box li {font-size: 11px;}

    /*갤러리형 게시판*/
    .gallerylist > li {border-bottom: 0;}
    .gallerylist > li .text_box {padding: 16px 0 0;}

    /*문자형 게시판*/
    .documentlist {padding-top: 12px;}
    .documentlist > li {background: 0; gap: 8px;}
    .documentlist > li:hover {background: 0;}
    .documentlist > li .title_box .like {position: absolute; top: 0; right: 0;}
    .documentlist > li .title_box .like input[type=checkbox] + label {margin-top: 0; padding-left: 18px; min-width: 18px; min-height: 18px; background-size: auto 100%;}
    .documentlist > li .time {position: static;}

    /*검색 게시판*/
    .searchlist {padding-top: 12px;}
    .searchlist > li {gap: 8px;}
    .searchlist > li .category {line-height: 20px; font-size: 13px;}
    .searchlist > li a {font-size: 17px;}
    .searchlist > li .txt {line-height: 20px; font-size: 13px;}
    .searchlist > li .list_box {position: static;}

    /*상세보기 일반 테이블*/
    .tablebasic {overflow-x: auto;}
    .tablebasic table {min-width: 500px;}
    .tablebasic table tr {word-break: break-all;}
    .tablebasic table tr th {padding: 10px; font-size: 15px !important;}
    .tablebasic table tr td {padding: 10px; font-size: 14px !important;}
    .tablebasic table tbody tr th {background-color: #fff;}
    
    /*faq*/
    .faq_area {margin: 20px 0 0;}
    .faq_area > li:first-child {border-top: 1px solid #000;}
    .faq_area > li > a {padding: 13px 42px;}
    .faq_area > li > a .q {top: 31px; left: 12px; width: 22px; height: 22px; line-height: 22px; font-size: 14px; border-radius: 5px;}
    .faq_area > li > a .txt {line-height: 21px; font-size: 14px;}
    .faq_area > li > a .txt strong {display: block;}
    .faq_area > li > a .icon {right: 15px; top: calc(50% - 12px); transform: scale(0.625);}
    .faq_area > li.active > a .icon {transform: rotate(180deg) scale(0.625);}
    .faq_area > li > ul li {padding: 13px 42px; font-size: 13px; line-height: 20px;}
    .faq_area > li > ul li .a {top: 13px; left: 12px; width: 22px; height: 22px; line-height: 22px; font-size: 14px; border-radius: 5px;}

    /*설문조사*/
    /*목록*/
    .popup .boardlist_top {margin: 0 0 20px;}
    .popup .boardlist_top dl dd {width: calc(100% - 67px);}
    .popup .boardlist_top .button_box {margin-top: 15px;}
    .popup .boardlist_top .button_box button {min-width: 75px; height: 30px; line-height: 28px; font-size: 13px;}
    .popup.survey .popup_inner + .button_box button {height: 35px; font-size: 13px;}
	.popup.survey .popup_inner + .button_box button:first-child {border-radius: 0 0 0 11px;}
	.popup.survey .popup_inner + .button_box button:last-child {border-radius: 0 0 11px 0;}
    /*상세*/
    .survey_question {margin-top: 20px;}
    .survey_question .tit {margin-bottom: 10px; width: 86px; height: 32px; line-height: 30px; border-radius: 32px; font-size: 14px;}
    .survey_question .txt {font-size: 14px;}
    .survey_question .txt span {margin-right: 5px;}
    /*참여*/
    .survey_detail dl {margin-bottom: 25px;}
    .survey_detail dl dt {padding: 15px 0; font-size: 15px;}
    .survey_detail dl dd {padding: 15px 0;}
    /*결과*/
    .survey_detail dl dd ul.result_list li {padding: 5px 0;}
    .survey_detail dl dd ul.result_list li .text {font-size: 14px; line-height: 14px;}
    .survey_detail dl dd ul.result_list li .graph {height: 12px;}

    .bord-detail-prevnext.view_bottom dl {flex-direction : row !important; padding : 16px 0 !important;}
    .bord-detail-prevnext.view_bottom dl dt {padding-top : 2px !important;}
    .bord-detail-prevnext.view_bottom dl dd {padding-left : 24px !important;}
}
@media screen and (max-width:784px){
    /*갤러리형 게시판*/
    .gallerylist > li {width: calc((100% - 40px) / 2);}
}
@media screen and (max-width:640px){
    /*일반게시판 글쓰기*/
    .boardview table tr td .optionbox {width: 100%;}
    .boardview table tr td.email .box {flex-wrap:wrap; -webkit-flex-wrap:wrap; justify-content: space-between;}
    .boardview table tr td.email .box .inpbox {width: calc(33.3333333333% - 10px);}
    .boardview table tr td.email .box .optionbox {margin-left: 0; width: calc(33.3333333333% - 10px);}
    .boardview table tr td .box.email {flex-wrap:wrap; -webkit-flex-wrap:wrap; justify-content: space-between;}
    .boardview table tr td .box.email > div {margin-bottom: 5px;}
    .boardview table tr td .box.email .character.name + .inpbox {width: calc(100% - 25px);}
    .boardview table tr td .box.email .optionbox,
    .boardview table tr td .box.email .inpbox {width: calc(50% - 5px);}
    .boardview table tr td .box.email .optionbox {margin-left: 0;}
    .boardview table tr td .img_box {width: 100%; height: 0; padding-bottom: 66.66666666666667%;}
    .boardview table tr td .img_box img {width: calc(100% + 2px); height: calc(100% + 2px);}
}
@media screen and (max-width:420px){
    /*갤러리형 게시판*/
    .gallerylist > li {width: 100%;}
}